/* Minghong Product Stage homepage */
.mh-stage-site-nav {
    position: relative;
    z-index: 50;
    height: 80px;
    background: #fff;
    border-bottom: 1px solid #e3e8ed;
    box-shadow: none;
}

.mh-stage-site-nav .nav-container {
    width: min(1280px, calc(100% - 48px));
    height: 80px;
    margin: 0 auto;
    padding: 0;
}

.mh-stage-site-nav .nav-wrapper {
    margin-left: auto;
    gap: 34px;
}

.mh-stage-site-nav .mh-stage-nav-links {
    gap: clamp(28px, 3vw, 52px);
    align-items: center;
}

.mh-stage-site-nav .mh-stage-nav-links > li > a {
    color: #17212b;
    font-size: 15px;
    font-weight: 600;
}

.mh-stage-site-nav .mh-stage-nav-links > li > a:hover {
    color: #075bd8;
}

.mh-stage-site-nav .mh-stage-nav-links .nav-cta a {
    min-width: 132px;
    min-height: 44px;
    margin-left: 6px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #075bd8;
    border: 1px solid #075bd8;
    border-radius: 4px;
    color: #fff;
}

.mh-stage-site-nav .mh-stage-nav-links .nav-cta a:hover {
    background: #064eb8;
    color: #fff;
}

.mh-stage-site-nav .lang-switch {
    margin-left: 0;
}

.mh-stage-search {
    position: relative;
}

.mh-stage-search-toggle {
    min-height: 44px;
    padding: 0 4px;
    border: 0;
    background: transparent;
    color: #17212b;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.mh-stage-search-toggle:hover,
.mh-stage-search-toggle:focus-visible {
    color: #075bd8;
}

.mh-stage-search-form {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 360px;
    padding: 12px;
    display: none;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    background: #fff;
    border: 1px solid #dce3e9;
    border-radius: 4px;
    box-shadow: 0 12px 30px rgba(17, 27, 37, 0.12);
}

.mh-stage-search.is-open .mh-stage-search-form {
    display: grid;
}

.mh-stage-search-form input,
.mh-stage-search-form button {
    min-height: 44px;
    border-radius: 4px;
    font: inherit;
}

.mh-stage-search-form input {
    min-width: 0;
    padding: 0 12px;
    border: 1px solid #cfd7df;
}

.mh-stage-search-form input:focus {
    border-color: #075bd8;
    outline: 3px solid rgba(7, 91, 216, 0.12);
}

.mh-stage-search-form button {
    padding: 0 16px;
    border: 1px solid #075bd8;
    background: #075bd8;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.mh-stage-home {
    --mh-stage-blue: #075bd8;
    --mh-stage-blue-dark: #064eb8;
    --mh-stage-ink: #111b25;
    --mh-stage-muted: #5f6c79;
    --mh-stage-line: #dce3e9;
    --mh-stage-surface: #f4f7f9;
    --mh-stage-max: 1280px;
    background: #fff;
    color: var(--mh-stage-ink);
    overflow: clip;
}

.mh-stage-home *,
.mh-stage-home *::before,
.mh-stage-home *::after {
    box-sizing: border-box;
}

.mh-stage-home img {
    display: block;
    max-width: 100%;
}

.mh-stage-hero {
    background: #fff;
}

.mh-stage-hero-inner {
    width: min(var(--mh-stage-max), calc(100% - 48px));
    margin: 0 auto;
}

.mh-stage-hero-grid {
    height: clamp(430px, 58svh, 620px);
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(410px, 42%) minmax(0, 58%);
    border-bottom: 1px solid var(--mh-stage-line);
}

.mh-stage-copy {
    padding: clamp(64px, 8vh, 98px) 64px 64px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: #fff;
}

.mh-stage-eyebrow {
    margin: 0 0 22px;
    color: var(--mh-stage-blue);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.mh-stage-copy h1 {
    max-width: 470px;
    margin: 0;
    color: var(--mh-stage-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0;
}

.mh-stage-lead {
    max-width: 475px;
    margin: 26px 0 0;
    color: #465463;
    font-size: 17px;
    line-height: 1.65;
}

.mh-stage-actions {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.mh-stage-btn {
    min-height: 50px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 4px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.mh-stage-btn-primary {
    background: var(--mh-stage-blue);
    border-color: var(--mh-stage-blue);
    color: #fff;
}

.mh-stage-btn-primary:hover {
    background: var(--mh-stage-blue-dark);
    border-color: var(--mh-stage-blue-dark);
    color: #fff;
}

.mh-stage-text-link {
    color: var(--mh-stage-blue);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.mh-stage-text-link span {
    display: inline-block;
    margin-left: 8px;
    transition: transform 180ms ease;
}

.mh-stage-text-link:hover span {
    transform: translateX(4px);
}

.mh-stage-media {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    background: #fff;
}

.mh-stage-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% center;
    transform: scale(1.1);
    transform-origin: 72% 62%;
}

.mh-stage-rfq {
    position: relative;
    z-index: 3;
    width: min(var(--mh-stage-max), calc(100% - 48px));
    margin: -24px auto 0;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 1.2fr 1.35fr 0.72fr 1.15fr 0.8fr;
    gap: 24px;
    align-items: end;
    background: #fff;
    border: 1px solid var(--mh-stage-line);
    border-radius: 4px;
    box-shadow: 0 10px 28px rgba(17, 27, 37, 0.06);
}

.mh-stage-rfq > label {
    min-width: 0;
    display: grid;
    gap: 8px;
    color: var(--mh-stage-ink);
}

.mh-stage-field-label {
    color: #455361;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 700;
}

.mh-stage-rfq input,
.mh-stage-rfq select,
.mh-stage-rfq textarea {
    width: 100%;
    height: 48px;
    min-width: 0;
    padding: 0 13px;
    border: 1px solid #cfd7df;
    border-radius: 4px;
    background: #fff;
    color: var(--mh-stage-ink);
    font: inherit;
    font-size: 14px;
    outline: none;
}

.mh-stage-rfq input:focus,
.mh-stage-rfq select:focus,
.mh-stage-rfq textarea:focus {
    border-color: var(--mh-stage-blue);
    box-shadow: 0 0 0 3px rgba(7, 91, 216, 0.12);
}

.mh-stage-message {
    grid-column: 1 / 5;
}

.mh-stage-rfq textarea {
    min-height: 58px;
    padding: 10px 13px;
    line-height: 1.45;
    resize: vertical;
}

.mh-stage-upload {
    min-height: 72px;
    padding: 12px 14px;
    align-content: center;
    border: 1px dashed #bac5cf;
    border-radius: 4px;
    cursor: pointer;
}

.mh-stage-upload:hover {
    border-color: var(--mh-stage-blue);
}

.mh-stage-upload small,
.mh-stage-file-status {
    color: #7a8793;
    font-size: 11px;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.mh-stage-upload input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.mh-stage-submit {
    grid-column: 5;
    grid-row: 2;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid var(--mh-stage-blue);
    border-radius: 4px;
    background: var(--mh-stage-blue);
    color: #fff;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease;
}

.mh-stage-submit:hover {
    background: var(--mh-stage-blue-dark);
    border-color: var(--mh-stage-blue-dark);
}

.mh-stage-submit:disabled {
    opacity: 0.62;
    cursor: wait;
}

.mh-stage-form-status {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--mh-stage-muted);
    font-size: 12px;
    line-height: 1.4;
}

.mh-stage-form-status:empty {
    display: none;
}

.mh-stage-form-status.is-success {
    color: #087443;
}

.mh-stage-form-status.is-error {
    color: #a12a2a;
}

.mh-stage-trust {
    width: min(var(--mh-stage-max), calc(100% - 48px));
    min-height: 84px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    border-bottom: 1px solid var(--mh-stage-line);
}

.mh-stage-trust span {
    padding: 0 34px;
    color: #2d3945;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
    text-align: center;
    border-right: 1px solid var(--mh-stage-line);
}

.mh-stage-trust span:last-child {
    border-right: 0;
}

.mh-stage-products,
.mh-stage-why,
.mh-stage-proof,
.mh-stage-process,
.mh-stage-contact {
    padding: 96px 0;
}

.mh-stage-why {
    padding-top: 84px;
    padding-bottom: 84px;
    background: #fff;
    border-top: 1px solid var(--mh-stage-line);
}

.mh-stage-why-intro,
.mh-stage-why-grid {
    width: min(var(--mh-stage-max), 100%);
    margin-right: auto;
    margin-left: auto;
}

.mh-stage-why-intro {
    margin-bottom: 44px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: 80px;
    align-items: end;
}

.mh-stage-why-intro .mh-stage-eyebrow {
    margin-bottom: 16px;
}

.mh-stage-why-intro h2 {
    max-width: 760px;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 44px;
    line-height: 1.14;
}

.mh-stage-why-intro > p {
    margin: 0;
    color: var(--mh-stage-muted);
    font-size: 16px;
    line-height: 1.7;
}

.mh-stage-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #cfd7df;
    border-bottom: 1px solid #cfd7df;
}

.mh-stage-why-grid article {
    min-width: 0;
    min-height: 220px;
    padding: 26px 28px 30px;
    border-right: 1px solid #cfd7df;
}

.mh-stage-why-grid article:last-child {
    border-right: 0;
}

.mh-stage-why-grid small {
    color: var(--mh-stage-blue);
    font-size: 12px;
    font-weight: 700;
}

.mh-stage-why-grid h3 {
    margin: 42px 0 12px;
    font-size: 20px;
    line-height: 1.3;
}

.mh-stage-why-grid p {
    margin: 0;
    color: var(--mh-stage-muted);
    font-size: 14px;
    line-height: 1.6;
}

.mh-stage-products {
    padding-top: 140px;
}

.mh-stage-section-head {
    width: min(var(--mh-stage-max), 100%);
    margin: 0 auto 46px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: 80px;
    align-items: end;
}

.mh-stage-section-head .mh-stage-eyebrow,
.mh-stage-proof .mh-stage-eyebrow,
.mh-stage-process .mh-stage-eyebrow,
.mh-stage-contact .mh-stage-eyebrow {
    margin-bottom: 16px;
}

.mh-stage-section-head h2,
.mh-stage-proof h2,
.mh-stage-process h2,
.mh-stage-contact h2 {
    margin: 0;
    color: var(--mh-stage-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 44px;
    line-height: 1.14;
    letter-spacing: 0;
}

.mh-stage-section-head > p,
.mh-stage-proof-intro > p,
.mh-stage-process-intro > p,
.mh-stage-contact-copy > p {
    margin: 0;
    color: var(--mh-stage-muted);
    font-size: 16px;
    line-height: 1.7;
}

.mh-stage-product-grid {
    width: min(var(--mh-stage-max), 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.mh-stage-product-door {
    min-width: 0;
    color: var(--mh-stage-ink);
    text-decoration: none;
    border-bottom: 1px solid #cfd7df;
}

.mh-stage-product-door > img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 400ms ease;
}

.mh-stage-product-door:hover > img {
    transform: scale(1.018);
}

.mh-stage-product-copy {
    min-height: 230px;
    padding: 24px 0 28px;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 12px;
}

.mh-stage-product-copy small {
    color: var(--mh-stage-blue);
    font-size: 12px;
    font-weight: 700;
}

.mh-stage-product-copy strong {
    font-family: 'Outfit', sans-serif;
    font-size: 27px;
    line-height: 1.2;
}

.mh-stage-product-copy em {
    max-width: 360px;
    color: var(--mh-stage-muted);
    font-size: 15px;
    line-height: 1.6;
    font-style: normal;
}

.mh-stage-product-copy b {
    color: var(--mh-stage-blue);
    font-size: 14px;
}

.mh-stage-proof {
    background: var(--mh-stage-surface);
}

.mh-stage-proof-inner {
    width: min(var(--mh-stage-max), calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(60px, 7vw, 110px);
}

.mh-stage-proof-intro,
.mh-stage-proof-list {
    width: 100%;
}

.mh-stage-proof-intro {
    justify-self: end;
}

.mh-stage-proof-intro > p {
    max-width: 540px;
    margin-top: 22px;
}

.mh-stage-proof-intro img {
    width: 100%;
    height: 310px;
    margin-top: 38px;
    object-fit: cover;
}

.mh-stage-proof-list {
    align-self: end;
}

.mh-stage-proof-list article {
    min-height: 112px;
    padding: 22px 0;
    display: grid;
    grid-template-columns: 48px minmax(130px, 0.72fr) minmax(0, 1.3fr);
    gap: 22px;
    align-items: start;
    border-top: 1px solid #cfd7df;
}

.mh-stage-proof-list article:last-child {
    border-bottom: 1px solid #cfd7df;
}

.mh-stage-proof-list small {
    color: var(--mh-stage-blue);
    font-size: 12px;
    font-weight: 700;
}

.mh-stage-proof-list h3,
.mh-stage-proof-list p {
    margin: 0;
}

.mh-stage-proof-list h3 {
    color: var(--mh-stage-ink);
    font-size: 18px;
    line-height: 1.4;
}

.mh-stage-proof-list p {
    color: var(--mh-stage-muted);
    font-size: 14px;
    line-height: 1.55;
}

.mh-stage-process {
    width: min(var(--mh-stage-max), calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
    gap: clamp(56px, 7vw, 110px);
}

.mh-stage-process-intro > p {
    margin-top: 22px;
}

.mh-stage-process-intro .mh-stage-text-link {
    display: inline-block;
    margin-top: 28px;
}

.mh-stage-process-steps {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 28px;
    list-style: none;
}

.mh-stage-process-steps li {
    min-height: 112px;
    padding-top: 20px;
    border-top: 1px solid #cfd7df;
}

.mh-stage-process-steps span,
.mh-stage-process-steps strong {
    display: block;
}

.mh-stage-process-steps span {
    margin-bottom: 22px;
    color: var(--mh-stage-blue);
    font-size: 12px;
    font-weight: 700;
}

.mh-stage-process-steps strong {
    color: var(--mh-stage-ink);
    font-size: 17px;
    line-height: 1.35;
}

.mh-stage-contact {
    background: #eaf0f4;
}

.mh-stage-contact-inner {
    width: min(var(--mh-stage-max), calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 80px;
    align-items: center;
}

.mh-stage-contact-copy {
    width: min(100%, 760px);
}

.mh-stage-contact-copy > p {
    max-width: 680px;
    margin-top: 22px;
}

.mh-stage-contact .mh-stage-btn {
    margin-top: 30px;
}

.mh-stage-contact-details {
    padding-left: 42px;
    display: grid;
    gap: 10px;
    border-left: 1px solid #c3ced7;
}

.mh-stage-contact-details span {
    margin-bottom: 4px;
    color: var(--mh-stage-muted);
    font-size: 13px;
    font-weight: 700;
}

.mh-stage-contact-details a {
    color: var(--mh-stage-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
}

.mh-stage-contact-details a small {
    display: block;
    margin-bottom: 2px;
    color: var(--mh-stage-muted);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
}

@media (min-width: 1441px) {
    .mh-stage-home {
        --mh-stage-max: 1280px;
    }

    .mh-stage-site-nav .nav-container {
        width: min(1280px, calc(100% - 48px));
    }

    .mh-stage-hero-inner {
        width: min(var(--mh-stage-max), calc(100% - 48px));
    }

    .mh-stage-hero-grid {
        grid-template-columns: minmax(460px, 40%) minmax(0, 60%);
    }

    .mh-stage-rfq {
        width: min(var(--mh-stage-max), calc(100% - 48px));
    }

    .mh-stage-trust {
        width: min(var(--mh-stage-max), calc(100% - 48px));
    }

    .mh-stage-products,
    .mh-stage-why,
    .mh-stage-proof,
    .mh-stage-process,
    .mh-stage-contact {
        padding-right: 0;
        padding-left: 0;
    }

    .mh-stage-products {
        padding-top: 104px;
    }

    .mh-stage-proof-intro,
    .mh-stage-proof-list {
        width: 100%;
    }

    .mh-stage-process {
        width: min(100%, var(--mh-stage-max));
    }
}

@media (min-width: 1921px) {
    .mh-stage-home {
        --mh-stage-max: 1280px;
    }

    .mh-stage-site-nav .nav-container {
        width: min(1280px, calc(100% - 48px));
    }

    .mh-stage-hero-inner {
        width: min(var(--mh-stage-max), calc(100% - 48px));
    }

    .mh-stage-hero-grid {
        height: 600px;
        grid-template-columns: minmax(520px, 40%) minmax(0, 60%);
    }

    .mh-stage-copy h1 {
        max-width: 540px;
        font-size: 54px;
    }

    .mh-stage-lead {
        max-width: 520px;
        font-size: 18px;
    }

    .mh-stage-rfq {
        width: min(var(--mh-stage-max), calc(100% - 48px));
    }

    .mh-stage-trust {
        width: min(var(--mh-stage-max), calc(100% - 48px));
    }

    .mh-stage-products,
    .mh-stage-why,
    .mh-stage-proof,
    .mh-stage-process,
    .mh-stage-contact {
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .mh-stage-products {
        padding-top: 88px;
    }

    .mh-stage-product-door > img {
        height: 330px;
    }

    .mh-stage-proof-intro,
    .mh-stage-proof-list {
        width: 100%;
    }
}

@media (min-width: 2561px) {
    .mh-stage-home {
        --mh-stage-max: 1600px;
    }

    .mh-stage-site-nav .nav-container {
        width: min(var(--mh-stage-max), calc(100% - 64px));
    }

    .mh-stage-hero-inner {
        width: min(var(--mh-stage-max), calc(100% - 64px));
    }

    .mh-stage-hero-grid {
        height: 660px;
        grid-template-columns: minmax(600px, 39%) minmax(0, 61%);
    }

    .mh-stage-copy {
        padding-right: 80px;
        padding-left: 0;
    }

    .mh-stage-copy h1 {
        max-width: 600px;
        font-size: 60px;
    }

    .mh-stage-lead {
        max-width: 580px;
        font-size: 18px;
    }

    .mh-stage-rfq {
        width: min(var(--mh-stage-max), calc(100% - 64px));
    }

    .mh-stage-trust {
        width: min(var(--mh-stage-max), calc(100% - 64px));
    }

    .mh-stage-product-door > img,
    .mh-stage-proof-intro img {
        height: 360px;
    }
}

@media (min-width: 3201px) {
    .mh-stage-home {
        --mh-stage-max: 1760px;
    }

    .mh-stage-site-nav .nav-container,
    .mh-stage-hero-inner,
    .mh-stage-rfq,
    .mh-stage-trust,
    .mh-stage-proof-inner,
    .mh-stage-process,
    .mh-stage-contact-inner {
        width: min(var(--mh-stage-max), calc(100% - 80px));
    }
}

@media (max-width: 1180px) {
    .mh-stage-site-nav .mh-stage-nav-links {
        gap: 24px;
    }

    .mh-stage-site-nav .nav-wrapper {
        gap: 20px;
    }

    .mh-stage-hero-grid {
        height: 530px;
        min-height: 0;
        grid-template-columns: minmax(380px, 46%) minmax(0, 54%);
    }

    .mh-stage-copy {
        padding-right: 6%;
        padding-left: 6%;
    }

    .mh-stage-copy h1 {
        font-size: 48px;
    }

    .mh-stage-rfq {
        width: 92%;
        margin-top: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mh-stage-submit {
        grid-column: span 2;
        grid-row: auto;
    }

    .mh-stage-upload {
        grid-column: span 2;
    }

    .mh-stage-message {
        grid-column: span 2;
    }

    .mh-stage-section-head {
        gap: 48px;
    }

    .mh-stage-why-intro {
        gap: 48px;
    }

    .mh-stage-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mh-stage-why-grid article:nth-child(2) {
        border-right: 0;
    }

    .mh-stage-why-grid article:nth-child(-n + 2) {
        border-bottom: 1px solid #cfd7df;
    }

    .mh-stage-proof {
        gap: 56px;
    }

    .mh-stage-proof-list article {
        grid-template-columns: 38px 120px minmax(0, 1fr);
        gap: 16px;
    }
}

@media (min-width: 951px) and (max-height: 760px) {
    .mh-stage-hero-grid {
        height: 470px;
    }

    .mh-stage-copy {
        padding-top: 40px;
        padding-bottom: 38px;
    }

    .mh-stage-copy .mh-stage-eyebrow {
        margin-bottom: 14px;
    }

    .mh-stage-copy h1 {
        font-size: 44px;
        line-height: 1.08;
    }

    .mh-stage-lead {
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.55;
    }

    .mh-stage-actions {
        margin-top: 20px;
    }

    .mh-stage-btn {
        min-height: 46px;
    }

    .mh-stage-rfq {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .mh-stage-upload {
        min-height: 64px;
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .mh-stage-rfq input,
    .mh-stage-rfq select,
    .mh-stage-submit {
        height: 44px;
        min-height: 44px;
    }

    .mh-stage-trust {
        min-height: 72px;
    }
}

@media (max-width: 950px) {
    .mh-stage-site-nav .nav-wrapper {
        display: none;
        right: 0;
        transform: none;
        justify-content: flex-start;
        align-items: stretch;
        padding: 100px 28px 34px;
        overflow-y: auto;
    }

    .mh-stage-site-nav .nav-wrapper.active {
        display: flex;
        right: 0;
        transform: none;
    }

    .mh-stage-site-nav .mh-stage-nav-links {
        position: static;
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .mh-stage-site-nav .mh-stage-nav-links li {
        width: 100%;
    }

    .mh-stage-site-nav .mh-stage-nav-links > li > a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #e5eaf0;
        font-size: 20px;
    }

    .mh-stage-site-nav .mh-stage-nav-links .nav-cta a {
        width: 100%;
        margin: 16px 0 0;
    }

    .mh-stage-site-nav .lang-switch {
        margin: 24px auto 0;
    }

    .mh-stage-search {
        width: 100%;
        margin-top: 18px;
    }

    .mh-stage-search-toggle {
        display: none;
    }

    .mh-stage-search-form,
    .mh-stage-search.is-open .mh-stage-search-form {
        position: static;
        width: 100%;
        padding: 0;
        display: grid;
        border: 0;
        box-shadow: none;
    }

    .mh-stage-hero-grid {
        height: auto;
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .mh-stage-hero-inner {
        width: 100%;
    }

    .mh-stage-copy {
        min-height: 480px;
        padding: 62px 6% 54px;
    }

    .mh-stage-media {
        aspect-ratio: 16 / 9;
    }

    .mh-stage-media img {
        transform: scale(1.16);
        transform-origin: 72% 66%;
    }

    .mh-stage-rfq {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        padding: 22px;
    }

    .mh-stage-upload,
    .mh-stage-submit {
        grid-column: span 2;
    }

    .mh-stage-trust {
        width: 92%;
    }

    .mh-stage-products,
    .mh-stage-why,
    .mh-stage-proof,
    .mh-stage-process,
    .mh-stage-contact {
        padding: 76px 6%;
    }

    .mh-stage-products {
        padding-top: 96px;
    }

    .mh-stage-section-head,
    .mh-stage-why-intro,
    .mh-stage-proof-inner,
    .mh-stage-process,
    .mh-stage-contact-inner {
        grid-template-columns: 1fr;
    }

    .mh-stage-section-head {
        gap: 24px;
    }

    .mh-stage-why-intro {
        gap: 24px;
    }

    .mh-stage-product-grid {
        grid-template-columns: 1fr;
    }

    .mh-stage-product-door {
        display: grid;
        grid-template-columns: minmax(260px, 42%) minmax(0, 1fr);
        gap: 28px;
    }

    .mh-stage-product-door > img {
        height: 100%;
        min-height: 260px;
    }

    .mh-stage-product-copy {
        min-height: 260px;
        padding-right: 20px;
        align-content: center;
    }

    .mh-stage-proof-inner {
        width: 100%;
        gap: 48px;
    }

    .mh-stage-proof-intro,
    .mh-stage-proof-list,
    .mh-stage-contact-copy {
        width: 100%;
        justify-self: stretch;
    }

    .mh-stage-process {
        width: 100%;
        gap: 48px;
    }

    .mh-stage-contact-inner {
        width: 100%;
        gap: 44px;
    }

    .mh-stage-contact-details {
        padding: 30px 0 0;
        border-top: 1px solid #c3ced7;
        border-left: 0;
    }
}

@media (max-width: 640px) {
    .mh-stage-site-nav,
    .mh-stage-site-nav .nav-container {
        height: 74px;
    }

    .mh-stage-copy {
        min-height: 0;
        padding: 50px 5% 44px;
    }

    .mh-stage-eyebrow {
        margin-bottom: 18px;
        font-size: 12px;
    }

    .mh-stage-copy h1 {
        font-size: 40px;
        line-height: 1.1;
    }

    .mh-stage-lead {
        margin-top: 22px;
        font-size: 16px;
    }

    .mh-stage-actions {
        width: 100%;
        margin-top: 28px;
        display: grid;
        gap: 16px;
    }

    .mh-stage-btn {
        width: 100%;
    }

    .mh-stage-text-link {
        padding: 8px 0;
    }

    .mh-stage-media {
        aspect-ratio: 4 / 3;
    }

    .mh-stage-media img {
        transform: scale(1.22);
        transform-origin: 72% 68%;
    }

    .mh-stage-rfq {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }

    .mh-stage-upload,
    .mh-stage-submit,
    .mh-stage-form-status {
        grid-column: auto;
    }

    .mh-stage-trust {
        width: 90%;
        padding: 18px 0;
        grid-template-columns: 1fr;
    }

    .mh-stage-trust span {
        padding: 13px 0;
        border-right: 0;
        border-bottom: 1px solid var(--mh-stage-line);
    }

    .mh-stage-trust span:last-child {
        border-bottom: 0;
    }

    .mh-stage-products,
    .mh-stage-why,
    .mh-stage-proof,
    .mh-stage-process,
    .mh-stage-contact {
        padding: 62px 5%;
    }

    .mh-stage-section-head h2,
    .mh-stage-why h2,
    .mh-stage-proof h2,
    .mh-stage-process h2,
    .mh-stage-contact h2 {
        font-size: 34px;
    }

    .mh-stage-product-door {
        display: block;
    }

    .mh-stage-why-grid {
        grid-template-columns: 1fr;
    }

    .mh-stage-why-grid article,
    .mh-stage-why-grid article:nth-child(2) {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid #cfd7df;
    }

    .mh-stage-why-grid article:last-child {
        border-bottom: 0;
    }

    .mh-stage-why-grid h3 {
        margin-top: 24px;
    }

    .mh-stage-product-door > img {
        height: 240px;
        min-height: 0;
    }

    .mh-stage-product-copy {
        min-height: 230px;
        padding-right: 0;
    }

    .mh-stage-proof-intro img {
        height: 240px;
    }

    .mh-stage-proof-list article {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 12px;
    }

    .mh-stage-proof-list article p {
        grid-column: 2;
    }

    .mh-stage-process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
    }

    .mh-stage-contact-details a {
        font-size: 23px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mh-stage-home *,
    .mh-stage-home *::before,
    .mh-stage-home *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
