:root {
    --blue: #002086;
    --cyan: #29d8ff;
    --text: #333;
    --muted: #667085;
    --line: #e6ebf2;
    --header-h: 90px;
    --home-screen-h: calc(100vh - var(--header-h));
    --container: 1500px;
    --news-image-ratio: 856 / 514;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    background: #fff;
}

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

img,
svg {
    display: block;
}

button,
input {
    font: inherit;
}

@keyframes headerDrop {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

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

@keyframes heroPulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.035);
    }
}

@keyframes menuCardIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

@keyframes navLineFlow {
    from {
        background-position: 100% 50%;
    }

    to {
        background-position: 0 50%;
    }
}

@keyframes titleFlyIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

.motion-fade,
.reveal-up,
.reveal-card {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .75s ease, transform .75s ease;
}

.motion-fade.in-view,
.reveal-up.in-view,
.reveal-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up .action-section-title p,
.reveal-up .action-section-title h2,
.reveal-up .action-section-title span,
.reveal-up .action-company-kicker,
.reveal-up .action-company-copy h2,
.reveal-up .action-company-lead {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal-up.in-view .action-section-title p,
.reveal-up.in-view .action-company-kicker {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .08s;
}

.reveal-up.in-view .action-section-title h2,
.reveal-up.in-view .action-company-copy h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .18s;
}

.reveal-up.in-view .action-section-title span,
.reveal-up.in-view .action-company-lead {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .28s;
}

.reveal-up .about-title span,
.reveal-up .about-title strong,
.reveal-up .about-mission-panel h2,
.reveal-up .about-mission-panel h3,
.motion-fade .join-hero-text h1,
.motion-fade .join-hero-text p,
.motion-fade .join-hero-text span,
.motion-fade .contact-hero-text h1,
.motion-fade .contact-hero-text p,
.motion-fade .contact-hero-text span,
.motion-fade .news-hero-text h1,
.motion-fade .news-hero-text p,
.motion-fade .news-hero-text span,
.motion-fade .solution-hero-text h1,
.motion-fade .solution-hero-text p,
.motion-fade .solution-hero-text span {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
    letter-spacing: clamp(2px, 0.2vw, 4px);
}

.motion-fade .join-hero-text,
.motion-fade .contact-hero-text,
.motion-fade .news-hero-text,
.motion-fade .solution-hero-text {
    opacity: 0;
    transform: translateX(64px);
    transition: opacity .8s ease, transform .9s cubic-bezier(.22, 1, .36, 1);
}

.reveal-up.in-view .about-title span,
.reveal-up.in-view .about-mission-panel h2,
.motion-fade.in-view .join-hero-text h1,
.motion-fade.in-view .join-hero-text p,
.motion-fade.in-view .contact-hero-text h1,
.motion-fade.in-view .contact-hero-text p,
.motion-fade.in-view .news-hero-text h1,
.motion-fade.in-view .news-hero-text p,
.motion-fade.in-view .solution-hero-text h1,
.motion-fade.in-view .solution-hero-text p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .14s;
}

.reveal-up.in-view .about-title strong,
.reveal-up.in-view .about-mission-panel h3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .3s;
}

.motion-fade.in-view .join-hero-text span,
.motion-fade.in-view .contact-hero-text span,
.motion-fade.in-view .news-hero-text span,
.motion-fade.in-view .solution-hero-text span {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .3s;
}

.motion-fade.in-view .join-hero-text,
.motion-fade.in-view .contact-hero-text,
.motion-fade.in-view .news-hero-text,
.motion-fade.in-view .solution-hero-text {
    opacity: 1;
    transform: translateX(0) translateY(-50%);

}

@keyframes joinHeroTextFlyIn {
    from {
        opacity: 0;
        transform: translateX(64px);
    }

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

@keyframes joinHeroItemFlyIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

@keyframes joinHeroArrowFlyIn {
    from {
        opacity: 0;
        transform: translateY(22px) rotate(45deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes joinHeroScrollCue {

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

    50% {
        transform: translateY(14px) rotate(45deg);
    }
}

.about-page {
    background: #fff;
}

.about-page main {
    overflow: hidden;
}

.about-hero {
    position: relative;
    height: clamp(320px, 33.28vw, 640px);
    min-height: 260px;
    overflow: hidden;
    background: #052d86;
}

.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-copy {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: clamp(50px, 5.6vw, 120px);
    color: #fff;
    text-align: center;
}

.about-hero-copy h1 {
    margin: 0;
    font-size: clamp(28px, 2.8vw, 58px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0;
}

.about-hero-copy span {
    width: clamp(28px, 3vw, 56px);
    height: clamp(28px, 3vw, 56px);
    margin-top: clamp(36px, 4vw, 82px);
    border-right: 4px solid rgb(255 255 255 / 90%);
    border-bottom: 4px solid rgb(255 255 255 / 90%);
    transform: rotate(45deg);
}

.about-intro {
    background: #fff;
    padding: clamp(48px, 4.5vw, 92px) 20px clamp(58px, 5vw, 105px);
}

.about-intro2 {
    background: #f4f4f4;
}

.about-title {
    display: grid;
    grid-template-columns: minmax(24px, 1fr) minmax(0, auto) minmax(24px, 1fr);
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
}

.about-title::before,
.about-title::after {
    content: "";
    height: 1px;
    background: #d7d7d7;
}

.about-title-text {
    min-width: 0;
    max-width: min(760px, 72vw);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.about-title strong {
    min-width: 0;
    color: #05070b;
    font-size: clamp(19px, 2vw, 32px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0;
}

.about-title span {
    display: inline-flex;
    align-items: center;
    margin-left: 12px;
    color: #3b414c;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.about-title span::before {
    content: "";
    width: 1px;
    height: 12px;
    margin: 0 10px;
    background: #2a2f38;
}

.about-intro-copy {
    max-width: 960px;
    margin: clamp(42px, 3.4vw, 72px) auto 0;
    color: #7b7b7b;
    font-size: clamp(13px, .88vw, 16px);
    line-height: 1.95;
}

.about-intro-copy p {
    margin: 0;
    text-indent: 2em;
    line-height: 2;
    margin-top: 15px;
}

.about-business {
    padding: clamp(78px, 7.4vw, 150px) 20px clamp(88px, 8vw, 165px);
}

.about-business-grid {
    width: min(1180px, 100%);
    margin: clamp(54px, 5vw, 100px) auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-business-card {
    position: relative;
    min-height: 360px;
    padding: 0 clamp(18px, 1.8vw, 38px);
    text-align: center;
    color: #777;
}

.about-business-card+.about-business-card::before {
    content: "";
    position: absolute;
    top: 12px;
    bottom: 0;
    left: 0;
    width: 1px;
    background: #d8d8d8;
}

.about-business-icon {
    width: clamp(68px, 5.8vw, 112px);
    height: clamp(68px, 5.8vw, 112px);
    margin: 0 auto clamp(28px, 2.2vw, 42px);
    color: #02257e;
}

.about-business-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-business-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.about-business-card h3 {
    margin: 0 0 clamp(20px, 1.8vw, 34px);
    color: #777;
    font-size: clamp(15px, 1.05vw, 21px);
    font-weight: 400;
    line-height: 1.35;
}

.about-business-card p {
    margin: 0 auto;
    max-width: 210px;
    color: #8a8a8a;
    font-size: clamp(12px, .78vw, 15px);
    line-height: 2.05;
}

.about-mission {
    padding: clamp(42px, 3.8vw, 78px) 20px clamp(128px, 9.2vw, 185px);
}

.about-mission-grid {
    width: min(1280px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
}

.about-mission-panel {
    position: relative;
    min-height: clamp(320px, 28.4vw, 545px);
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background: #06255f;
}

.about-mission-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.01);
    transition: transform .55s ease;
    will-change: transform;
}

.about-mission-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(2 24 78 / 50%);
}

.about-mission-left::before {
    background-image: url("./assets/mission-bg.jpg");
}

.about-mission-left:hover::before,
.about-mission-left:focus-within::before,
.about-mission-right:hover::before,
.about-mission-right:focus-within::before {
    transform: scale(1.07);
}

.about-mission-right::before {
    background-image: url("./assets/value-bg.jpg");
}

.about-mission-panel>div {
    position: relative;
    z-index: 1;
    width: min(390px, 76%);
}

.about-mission-panel h2,
.about-mission-panel h3,
.about-mission-panel p {
    margin: 0;
    font-weight: 400;
}

.about-mission-panel h2 {
    font-size: clamp(24px, 2.2vw, 44px);
    line-height: 1.2;
}

.about-mission-panel h3 {
    margin-top: 4px;
    font-size: clamp(21px, 1.9vw, 36px);
    line-height: 1.25;
}

.about-mission-panel p {
    margin-top: clamp(36px, 3.2vw, 62px);
    color: rgb(255 255 255 / 82%);
    font-size: clamp(13px, .9vw, 17px);
    line-height: 1.95;
}

.join-page {
    background: #fff;
}

.join-page main {
    overflow: hidden;
}

.join-hero,
.contact-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: #fff;
    background: #052b72;
}

.join-hero picture,
.join-hero img,
.contact-hero picture,
.contact-hero img {
    width: 100%;
    height: 100%;
    display: block;
}

.join-hero img,
.contact-hero img {
    object-fit: cover;
}

.join-hero::after {}

.contact-hero::after {}

.contact-hero-text {
    position: absolute;
    z-index: 1;
    left: 8.5vw;
    top: 50%;
    transform: translateY(-50%);

}

.join-hero-text {
    position: absolute;
    z-index: 1;
    left: 8.5vw;
    top: 50%;
    transform: translateY(-50%);

}

.join-hero-text h1 {
    font-size: clamp(18px, 2vw, 32px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 4px;
}

.contact-hero-text h1 {
    font-size: clamp(18px, 2vw, 32px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 4px;
}

.join-hero-text p {
    margin: 22px 0 0;
    color: rgb(255 255 255 / 84%);
    font-size: clamp(14px, 1.3vw, 22px);
    line-height: 1.7;
    letter-spacing: clamp(1px, 0.15vw, 3px);
}

.contact-hero-text p {
    margin: 22px 0 0;
    color: rgb(255 255 255 / 84%);
    font-size: clamp(14px, 1.3vw, 22px);
    line-height: 1.7;
    letter-spacing: clamp(1px, 0.15vw, 3px);
}

.contact-hero-text span {
    display: block;
    width: 76px;
    height: 4px;
    margin-top: 26px;
    background: var(--cyan);
}

.join-hero-text span {
    display: block;
    width: 76px;
    height: 4px;
    margin-top: 26px;
    background: var(--cyan);
}

.news-page {
    background: #fff;
}

.news-page main {
    overflow: hidden;
}

.news-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: #fff;
    background: #052b72;
}

.news-hero picture,
.news-hero img {
    width: 100%;
    height: 100%;
    display: block;
}

.news-hero img {
    object-fit: cover;
}

.news-hero::after {}

.news-hero-text {
    position: absolute;
    z-index: 1;
    left: 8.5vw;
    top: 50%;
    transform: translateY(-50%);

}

.news-hero-text h1 {
    font-size: clamp(18px, 2vw, 32px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 4px;
    color: #09346A;
}

.news-hero-text p {
    margin: 22px 0 0;
    color: rgb(255 255 255 / 84%);
    font-size: clamp(14px, 1.3vw, 22px);
    line-height: 1.7;
    letter-spacing: clamp(1px, 1.3vw, 3px);
    color: #09346A;
    font-weight: 550;
}

.news-hero-text span {
    display: block;
    width: 76px;
    height: 4px;
    margin-top: 26px;
    background: var(--cyan);
}

.solution-hero {
    position: relative;

    overflow: hidden;
    color: #fff;
    background: #06172f;
}

.solution-hero picture,
.solution-hero img {
    display: block;
    width: 100%;
    height: 100%;
}

.solution-hero img {
    object-fit: cover;
}

.solution-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(0 28 76 / 62%), rgb(0 28 76 / 18%) 58%, transparent);
    pointer-events: none;
}

.solution-hero-text {
    position: absolute;
    z-index: 1;
    left: 8.5vw;
    top: 50%;
    transform: translateY(-50%);
    max-width: min(660px, calc(100% - 56px));
}

.solution-hero-text h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(18px, 2vw, 32px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 4px;
}

.solution-hero-text p {
    margin: 22px 0 0;
    color: rgb(255 255 255 / 84%);
    font-size: clamp(14px, 1.3vw, 22px);
    line-height: 1.7;
    letter-spacing: 3px;
}

.solution-hero-text span {
    display: block;
    width: 76px;
    height: 4px;
    margin-top: 26px;
    background: var(--cyan);
}

.news-section {
    padding: clamp(62px, 5.2vw, 100px) 20px clamp(92px, 7.8vw, 150px);
}

.news-list {
    width: min(1450px, 100%);
    margin: 0 auto;
}

.section-empty {
    width: 100%;
    margin: 0;
    padding: 48px 24px;
    color: #6b7280;
    font-size: 15px;
    text-align: center;
    background: #f7f9fb;
    border: 1px solid #e6edf5;
    border-radius: 8px;
}

.news-card {
    --news-card-padding-x: clamp(18px, 1.9vw, 36px);
    position: relative;
    display: grid;
    grid-template-columns: minmax(110px, 160px) minmax(360px, 1fr) minmax(320px, 438px);
    gap: clamp(36px, 5.8vw, 120px);
    align-items: start;
    padding: clamp(22px, 1.6vw, 30px) var(--news-card-padding-x) clamp(70px, 5.8vw, 112px);
    border-bottom: 1px solid #e5e5e5;
    border-radius: 0;
    transition:
        padding .28s ease,
        background .28s ease,
        box-shadow .28s ease,
        transform .28s cubic-bezier(.22, 1, .36, 1),
        border-color .28s ease;
}

.news-card+.news-card {
    padding-top: clamp(72px, 5.6vw, 104px);
}

.news-card:hover,
.news-card:focus-within {
    z-index: 1;
    padding-right: calc(var(--news-card-padding-x) + 14px);
    padding-left: calc(var(--news-card-padding-x) + 14px);
    border-bottom-color: transparent;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 70px rgb(18 36 66 / 10%);
    transform: translateY(-6px);
}

.news-date {
    display: flex;
    flex-direction: column;
    align-self: center;
    color: #606060;
    font-style: normal;
    line-height: 1;
}

.news-date strong {
    color: #666;
    font-size: clamp(36px, 2.4vw, 46px);
    font-weight: 400;
    letter-spacing: .03em;
}

.news-date span {
    margin-top: 12px;
    font-size: clamp(22px, 1.45vw, 28px);
    font-weight: 400;
    letter-spacing: .02em;
}

.news-copy {
    padding-top: 4px;
}

.news-copy h2 {
    max-width: 660px;
    margin: 0;
    color: #1f1f1f;
    font-size: clamp(18px, 1.15vw, 23px);
    font-weight: 800;
    line-height: 1.36;
}

.news-copy h2 a {
    color: inherit;
    text-decoration: none;
    transition: color .24s ease;
}

.news-copy p {
    max-width: 720px;
    margin: 16px 0 0;
    color: #666;
    font-size: clamp(14px, .82vw, 16px);
    line-height: 1.9;
}

.news-more {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-top: clamp(34px, 2.7vw, 50px);
    color: var(--blue);
    font-size: clamp(13px, .78vw, 15px);
    font-weight: 600;
    text-decoration: none;
    transition: color .24s ease, transform .24s ease;
}

.news-more span {
    width: 9px;
    height: 9px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}

.news-thumb {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #f2f2f2;
}

.news-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 438 / 244;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.22, 1, .36, 1);
}

.news-card:hover .news-thumb img {
    transform: scale(1.035);
}

.news-card:hover .news-copy h2 a,
.news-card:focus-within .news-copy h2 a {
    color: #0067b1;
}

.news-card:hover .news-more,
.news-card:focus-within .news-more {
    transform: translateX(4px);
}

.news-card:focus-within {
    outline: 2px solid rgb(0 103 177 / 20%);
    outline-offset: 3px;
}

.news-pagination {
    display: flex;
    gap: clamp(18px, 1.45vw, 28px);
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    margin-bottom: 70px;
    color: #aaa;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .02em;
}

.news-pagination a,
.news-pagination span {
    color: inherit;
    text-decoration: none;
}

.news-pagination .is-active {
    color: #0067b1;
}

.news-pagination .page-prev,
.news-pagination .page-next {
    position: relative;
    color: #111;
}

.news-pagination .page-prev::before,
.news-pagination .page-next::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-bottom: 1px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    vertical-align: middle;
}

.news-pagination .page-prev::before {
    margin-right: 5px;
    border-right: 6px solid currentColor;
}

.news-pagination .page-next::after {
    margin-left: 5px;
    border-left: 6px solid currentColor;
}

.solutions-section {
    padding: clamp(70px, 6.2vw, 120px) 20px clamp(100px, 8vw, 155px);
    background: #fff;
}

.solutions-layout {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: clamp(54px, 5.8vw, 112px);
    width: min(1460px, 100%);
    margin: 0 auto;
}

.solutions-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 36px);
    align-self: start;
    padding-right: clamp(24px, 2.6vw, 50px);
    border-right: 1px solid #e2e5ea;
}

.solutions-sidebar h2 {
    margin: 0 0 24px;
    color: #111b24;
    font-size: clamp(24px, 1.45vw, 30px);
    font-weight: 700;
    line-height: 1.2;
}

.solutions-sidebar nav {
    display: grid;
    gap: 8px;
}

.solutions-sidebar nav a {
    position: relative;
    display: block;
    padding: 12px 12px 12px 22px;
    border-radius: 12px;
    color: #8d99a4;
    font-size: clamp(15px, .9vw, 17px);
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    transition: color .24s ease, background .24s ease, transform .24s ease;
}

.solutions-sidebar nav a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 7px;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: currentColor;
    transform: translateY(-50%);
}

.solutions-sidebar nav a:hover,
.solutions-sidebar nav a:focus-visible,
.solutions-sidebar nav a.is-active {
    color: var(--blue);
    background: rgb(0 32 161 / 7%);
    transform: translateX(4px);
}

.solutions-sidebar-card {
    margin-top: clamp(42px, 4vw, 76px);
    padding: clamp(26px, 2.2vw, 38px);
    border-radius: 22px;
    color: #fff;
    background:
        linear-gradient(135deg, rgb(0 32 161 / 94%), rgb(41 216 255 / 70%)),
        url("./assets/blog-05.jpg") center / cover;
    box-shadow: 0 20px 60px rgb(0 32 161 / 18%);
}

.solutions-sidebar-card span {
    color: rgb(255 255 255 / 72%);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
}

.solutions-sidebar-card strong {
    display: block;
    margin-top: 18px;
    font-size: clamp(22px, 1.55vw, 30px);
    line-height: 1.25;
}

.solutions-sidebar-card p {
    margin: 18px 0 0;
    color: rgb(255 255 255 / 78%);
    font-size: 14px;
    line-height: 1.8;
}

.solutions-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(42px, 4vw, 76px) clamp(30px, 3.3vw, 64px);
}

.solution-card {
    min-width: 0;
    border-radius: 20px;
    background: #fff;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease;
}

.solution-card>a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #eef2f6;
}

.solution-card img {
    width: 100%;
    aspect-ratio: 410 / 236;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.22, 1, .36, 1), filter .55s ease;
}

.solution-card div {
    padding-top: clamp(24px, 2vw, 34px);
}

.solution-card p {
    margin: 0 0 12px;
    color: #111b24;
    font-size: clamp(13px, .78vw, 15px);
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.solution-card h2 {
    max-width: 520px;
    margin: 0;
    color: #111b24;
    font-size: clamp(24px, 1.55vw, 31px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.04em;
}

.solution-card h2 a {
    color: inherit;
    text-decoration: none;
    transition: color .24s ease;
}

.solution-card span {
    display: block;
    max-width: 560px;
    margin-top: 18px;
    color: #737b84;
    font-size: clamp(14px, .88vw, 17px);
    line-height: 1.75;
}

.solution-more {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 24px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .24s ease;
}

.solution-more em {
    font-style: normal;
    transition: transform .24s ease;
}

.solution-card:hover,
.solution-card:focus-within {
    transform: translateY(-8px);
}

.solution-card:hover img,
.solution-card:focus-within img {
    filter: saturate(1.06) contrast(1.04);
    transform: scale(1.045);
}

.solution-card:hover h2 a,
.solution-card:focus-within h2 a {
    color: var(--blue);
}

.solution-card:hover .solution-more,
.solution-card:focus-within .solution-more {
    transform: translateX(4px);
}

.solution-card:hover .solution-more em,
.solution-card:focus-within .solution-more em {
    transform: translateX(3px);
}

.solution-detail-article {
    min-width: 0;
    color: #111b24;
}

.solution-detail-head {
    max-width: 980px;
}

.solution-detail-kicker {
    margin: 0 0 18px;
    color: var(--blue);
    font-size: clamp(13px, .82vw, 16px);
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.solution-detail-article h1 {
    max-width: 880px;
    margin: 0;
    color: #111b24;
    font-size: clamp(34px, 2.7vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0;
}

.solution-detail-lead {
    max-width: 960px;
    margin: clamp(22px, 2vw, 36px) 0 0;
    color: #5f6872;
    font-size: clamp(17px, 1.05vw, 21px);
    line-height: 1.85;
}

.solution-detail-cover {
    width: 100%;
    margin-top: clamp(34px, 3vw, 58px);
    border-radius: 8px;
    aspect-ratio: 900 / 460;
    object-fit: cover;
    box-shadow: 0 22px 60px rgb(18 36 66 / 10%);
}

.solution-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.solution-detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid #dfe7f0;
    border-radius: 999px;
    color: #314158;
    background: #fff;
    font-size: 13px;
    font-weight: 700;
}

.solution-detail-body {
    max-width: 980px;
    margin-top: clamp(42px, 3.8vw, 72px);
}

.solution-detail-body h2 {
    margin: clamp(38px, 3.4vw, 62px) 0 18px;
    color: #111b24;
    font-size: clamp(24px, 1.6vw, 32px);
    font-weight: 800;
    line-height: 1.25;
}

.solution-detail-body h2:first-child {
    margin-top: 0;
}

.solution-detail-body p {
    margin: 0 0 18px;
    color: #5f6872;
    font-size: clamp(15px, .94vw, 18px);
    line-height: 1.95;
}

.solution-doc {
    display: grid;
    gap: clamp(34px, 3vw, 54px);
}

.solution-doc-section {
    min-width: 0;
}

.solution-doc-section h2,
.solution-benefit-panel h2 {
    margin-top: 0;
}

.solution-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.solution-info-grid article {
    min-width: 0;
    padding: clamp(22px, 2vw, 32px);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fbff;
}

.solution-info-grid span {
    display: block;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
}

.solution-info-grid p {
    margin: 0;
}

.solution-equipment-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: solution-equipment;
}

.solution-equipment-list li {
    position: relative;
    min-height: 48px;
    padding: 12px 18px 12px 58px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #364152;
    background: #fff;
    font-size: clamp(15px, .94vw, 18px);
    line-height: 1.45;
    counter-increment: solution-equipment;
}

.solution-equipment-list li::before {
    content: counter(solution-equipment, decimal-leading-zero);
    position: absolute;
    top: 50%;
    left: 16px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    transform: translateY(-50%);
}

.solution-benefit-panel {
    padding: clamp(26px, 2.6vw, 42px);
    border: 1px solid rgb(0 32 161 / 16%);
    border-radius: 8px;
    background: linear-gradient(180deg, #f7fbff, #fff);
}

.solution-benefit-panel p:last-child {
    margin-bottom: 0;
}

.solution-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.solution-detail-grid section {
    padding: clamp(22px, 2vw, 34px);
    border: 1px solid #e6ebf2;
    border-radius: 8px;
    background: linear-gradient(180deg, #fff, #f8fbff);
    transition: border-color .24s ease, transform .24s ease, box-shadow .24s ease;
}

.solution-detail-grid section:hover {
    border-color: rgb(0 32 161 / 22%);
    box-shadow: 0 18px 48px rgb(18 36 66 / 8%);
    transform: translateY(-4px);
}

.solution-detail-grid strong {
    display: block;
    color: #111b24;
    font-size: clamp(17px, 1vw, 20px);
    line-height: 1.35;
}

.solution-detail-grid p {
    margin: 12px 0 0;
    font-size: clamp(14px, .86vw, 16px);
    line-height: 1.75;
}

.solution-detail-body ul {
    display: grid;
    gap: 14px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.solution-detail-body li {
    position: relative;
    padding-left: 26px;
    color: #5f6872;
    font-size: clamp(15px, .94vw, 18px);
    line-height: 1.8;
}

.solution-detail-body li::before {
    content: "";
    position: absolute;
    top: .78em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--blue);
    box-shadow: 0 0 0 6px rgb(0 32 161 / 8%);
}

.solution-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    align-items: center;
    margin-top: clamp(40px, 3.6vw, 66px);
}

.solution-detail-actions .solution-more {
    margin-top: 0;
}

.solution-detail-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 20px;
    border-radius: 6px;
    color: #fff;
    background: var(--blue);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: background .24s ease, transform .24s ease;
}

.solution-detail-cta:hover,
.solution-detail-cta:focus-visible {
    background: #0736c4;
    transform: translateY(-2px);
}

.content-detail-page main {
    overflow: hidden;
}

.content-detail-section {
    padding: clamp(70px, 6.2vw, 120px) 20px clamp(100px, 8vw, 155px);
    background: #fff;
}

.content-detail-layout {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: clamp(54px, 5.8vw, 112px);
    width: min(1460px, 100%);
    margin: 0 auto;
}

.content-detail-sidebar {
    grid-column: 1;
    grid-row: 1;
    position: sticky;
    top: calc(var(--header-h) + 36px);
    align-self: start;
    padding-right: clamp(24px, 2.6vw, 50px);
    border-right: 1px solid #e2e5ea;
}

.content-detail-sidebar section+section {
    margin-top: clamp(42px, 4vw, 76px);
}

.content-detail-sidebar h2 {
    margin: 0 0 24px;
    color: #111b24;
    font-size: clamp(24px, 1.45vw, 30px);
    font-weight: 700;
    line-height: 1.2;
}

.content-detail-sidebar nav {
    display: grid;
    gap: 8px;
}

.content-detail-sidebar nav a {
    position: relative;
    display: block;
    padding: 12px 12px 12px 22px;
    border-radius: 12px;
    color: #8d99a4;
    font-size: clamp(15px, .9vw, 17px);
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    transition: color .24s ease, background .24s ease, transform .24s ease;
}

.content-detail-sidebar nav a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 7px;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: currentColor;
    transform: translateY(-50%);
}

.content-detail-sidebar nav a:hover,
.content-detail-sidebar nav a:focus-visible,
.content-detail-sidebar nav a.is-active {
    color: var(--blue);
    background: rgb(0 32 161 / 7%);
    transform: translateX(4px);
}

.content-recent {
    padding: clamp(22px, 2vw, 34px);
    border-radius: 22px;
    background: #f8fbff;
}

.content-recent a {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 16px;
    align-items: center;
    color: #111b24;
    text-decoration: none;
}

.content-recent a+a {
    margin-top: 20px;
}

.content-recent img {
    width: 84px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}

.content-recent span {
    font-size: 14px;
    line-height: 1.45;
    transition: color .24s ease;
}

.news-detail-page .content-recent a {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.news-detail-page .content-recent img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.content-recent a:hover span,
.content-recent a:focus-visible span {
    color: var(--blue);
}

.content-article {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    color: #111b24;
}

.content-kicker {
    margin: 0 0 18px;
    color: var(--blue);
    font-size: clamp(13px, .82vw, 16px);
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.content-article>h1 {
    max-width: 900px;
    margin: 0;
    color: #111b24;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: 0;
}

.content-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 22px;
    color: #8d99a4;
    font-size: 14px;
    font-weight: 700;
}

.content-meta span,
.content-meta time {
    position: relative;
}

.content-meta span:not(:last-child)::after,
.content-meta time::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -11px;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: #c6cdd5;
    transform: translateY(-50%);
}

.content-lead {
    max-width: 900px;
    margin: clamp(22px, 2vw, 36px) 0 0;
    color: #5f6872;
    font-size: clamp(17px, 1.05vw, 21px);
    line-height: 1.9;
}

.content-cover {
    width: 100%;
    margin-top: clamp(38px, 3.6vw, 68px);
    border-radius: 16px;
    aspect-ratio: 900 / 460;
    object-fit: cover;
    box-shadow: 0 24px 70px rgb(18 36 66 / 12%);
}

.content-body {
    min-width: 0;
    max-width: 900px;
    margin-top: clamp(44px, 4vw, 76px);
    overflow-wrap: anywhere;
}

.content-body img {
    display: block;
    width: auto;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain;
}

.content-body h2 {
    margin: clamp(42px, 3.6vw, 66px) 0 18px;
    color: #111b24;
    font-size: clamp(24px, 1.6vw, 32px);
    font-weight: 800;
    line-height: 1.25;
}

.content-body h2:first-child {
    margin-top: 0;
}

.content-body p {
    margin: 0 0 18px;
    color: #5f6872;
    font-size: clamp(15px, .94vw, 18px);
    line-height: 1.95;
}

.news-detail-page .content-body p {
    text-indent: 2em;
}

.content-body blockquote {
    margin: clamp(34px, 3vw, 56px) 0;
    padding: clamp(26px, 2.4vw, 42px);
    border-left: 4px solid var(--blue);
    border-radius: 0 18px 18px 0;
    color: #111b24;
    background: #f8fbff;
    font-size: clamp(19px, 1.25vw, 25px);
    font-weight: 700;
    line-height: 1.65;
}

.content-highlight-grid,
.product-spec-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.content-highlight-grid section,
.product-spec-strip section {
    padding: clamp(22px, 2vw, 34px);
    border: 1px solid #e6ebf2;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff, #f8fbff);
    transition: border-color .24s ease, transform .24s ease, box-shadow .24s ease;
}

.content-highlight-grid section:hover,
.product-spec-strip section:hover {
    border-color: rgb(0 32 161 / 22%);
    box-shadow: 0 18px 48px rgb(18 36 66 / 8%);
    transform: translateY(-4px);
}

.content-highlight-grid strong,
.product-spec-strip strong {
    display: block;
    color: #111b24;
    font-size: clamp(17px, 1vw, 20px);
    line-height: 1.35;
}

.content-highlight-grid span,
.product-spec-strip span {
    display: block;
    margin-top: 12px;
    color: #5f6872;
    font-size: clamp(14px, .86vw, 16px);
    line-height: 1.75;
}

.content-body ul {
    display: grid;
    gap: 14px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.content-body li {
    position: relative;
    padding-left: 26px;
    color: #5f6872;
    font-size: clamp(15px, .94vw, 18px);
    line-height: 1.8;
}

.content-body li::before {
    content: "";
    position: absolute;
    top: .78em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--blue);
    box-shadow: 0 0 0 6px rgb(0 32 161 / 8%);
}

.content-neighbor {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 900px;
    margin-top: clamp(38px, 3.6vw, 64px);
    padding-top: 26px;
    border-top: 1px solid #e4e9f0;
}

.content-neighbor a {
    min-width: 0;
    padding: 20px 22px;
    border: 1px solid #e5ebf3;
    border-radius: 8px;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 12px 34px rgb(18 36 66 / 6%);
    transition: border-color .24s ease, transform .24s ease, box-shadow .24s ease;
}

.content-neighbor a:hover,
.content-neighbor a:focus-visible {
    border-color: rgb(0 32 161 / 28%);
    box-shadow: 0 18px 42px rgb(18 36 66 / 10%);
    transform: translateY(-2px);
}

.content-neighbor span {
    display: block;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.content-neighbor strong {
    display: block;
    margin-top: 8px;
    color: #111b24;
    font-size: 17px;
    line-height: 1.55;
}

.product-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
    gap: clamp(36px, 5vw, 96px);
    align-items: center;
    min-height: clamp(520px, calc(100vh - var(--header-h)), 820px);
    padding: clamp(70px, 7vw, 130px) clamp(24px, 5vw, 96px);
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 18%, rgb(41 216 255 / 18%), transparent 34%),
        linear-gradient(135deg, #06172f, #0a1f46 46%, #f7fbff 46%);
}

.product-detail-hero-copy {
    color: #fff;
}

.product-detail-hero-copy p {
    margin: 0 0 18px;
    color: rgb(255 255 255 / 68%);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .18em;
}

.product-detail-hero-copy h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(40px, 4vw, 78px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -.06em;
}

.product-detail-hero-copy>span {
    display: block;
    max-width: 650px;
    margin-top: 28px;
    color: rgb(255 255 255 / 78%);
    font-size: clamp(16px, 1vw, 20px);
    line-height: 1.9;
}

.product-detail-hero-copy div {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: clamp(34px, 3.2vw, 58px);
}

.product-detail-hero-copy a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid rgb(255 255 255 / 32%);
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: background .24s ease, color .24s ease, transform .24s ease;
}

.product-detail-hero-copy a:first-child {
    border-color: var(--cyan);
    background: var(--cyan);
    color: #06172f;
}

.product-detail-hero-copy a:hover,
.product-detail-hero-copy a:focus-visible {
    transform: translateY(-3px);
}

.product-detail-hero-media {
    display: grid;
    place-items: center;
    min-height: 360px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 34px 100px rgb(18 36 66 / 18%);
}

.product-detail-hero-media img {
    width: min(680px, 92%);
    max-height: 440px;
    object-fit: contain;
}

.product-detail-article .content-body {
    margin-top: clamp(38px, 3.2vw, 62px);
}

.product-spec-strip {
    max-width: 920px;
    margin-top: clamp(36px, 3vw, 58px);
}

.product-spec-strip strong {
    color: var(--blue);
    font-size: clamp(24px, 1.8vw, 34px);
    letter-spacing: -.04em;
}

.product-detail-table {
    width: 100%;
    margin-top: 24px;
    border-collapse: collapse;
    border-top: 2px solid var(--blue);
    color: #111b24;
    font-size: clamp(14px, .9vw, 17px);
}

.product-detail-table th,
.product-detail-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #e6ebf2;
    text-align: left;
    line-height: 1.6;
}

.product-detail-table th {
    width: 28%;
    color: #111b24;
    background: #f8fbff;
    font-weight: 800;
}

.standards-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #052b72;
    color: #fff;
}

.standards-hero picture,
.standards-hero img {
    width: 100%;
    height: 100%;
    display: block;
}

.standards-hero img {
    object-fit: cover;
}

.standards-hero::after {
    content: none;
}

.standards-hero-text {
    position: absolute;
    z-index: 1;
    left: 6.5vw;
    top: 50%;
    transform: translateY(-50%);
    width: 25vw;
    height: 12vw;
    padding-left: 2.5vw;
    border-radius: 8px;
    color: #fff;
    background: #367ff5ad;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* 垂直居中 */
    align-items: flex-start;
    /* 左对齐内容 */

}

.standards-hero-text h1 {
    font-size: clamp(16px, 2vw, 32px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: clamp(2px, 0.2vw, 4px);
    margin: 0px;
}

.standards-hero-codes {
    display: flex;
    gap: clamp(10px, 1.8vw, 24px);
    align-items: center;
    width: max-content;
    max-width: 100%;
    margin-top: clamp(10px, 1.3vw, 25px);
    padding: 8px 0;
    border-top: 1px solid rgb(255 255 255 / 62%);
    border-bottom: 1px solid rgb(255 255 255 / 62%);
    color: rgb(255 255 255 / 92%);
    font-size: clamp(12px, 1.3vw, 22px);
    font-weight: 650;
    line-height: 1;
    letter-spacing: .08em;
}

.standards-hero-text p {
    margin: 0;
    color: rgb(255 255 255 / 94%);
    font-size: clamp(12px, 1.3vw, 22px);
    margin-top: clamp(10px, 1.3vw, 25px);
    letter-spacing: .04em;
}

.standards-section {
    padding: clamp(70px, 6.2vw, 120px) 20px clamp(100px, 8vw, 155px);
    background: #fff;
}

.standards-layout {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: clamp(54px, 5.8vw, 112px);
    width: min(1460px, 100%);
    margin: 0 auto;
}

.standards-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 36px);
    align-self: start;
    padding-right: clamp(24px, 2.6vw, 50px);
    border-right: 1px solid #e2e5ea;
}

.standards-sidebar h2 {
    margin: 0 0 24px;
    color: #111b24;
    font-size: clamp(24px, 1.45vw, 30px);
    font-weight: 700;
    line-height: 1.2;
}

.standards-sidebar nav {
    display: grid;
    gap: 8px;
}

.standards-sidebar nav a {
    position: relative;
    display: block;
    padding: 13px 12px 13px 22px;
    border-radius: 12px;
    color: #8d99a4;
    font-size: clamp(15px, .9vw, 17px);
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition: color .24s ease, background .24s ease, transform .24s ease;
}

.standards-sidebar nav a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 7px;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: currentColor;
    transform: translateY(-50%);
}

.standards-sidebar nav a:hover,
.standards-sidebar nav a:focus-visible,
.standards-sidebar nav a.is-active {
    color: var(--blue);
    background: rgb(0 32 161 / 7%);
    transform: translateX(4px);
}

.standards-sidebar-card {
    margin-top: clamp(42px, 4vw, 76px);
    padding: clamp(26px, 2.2vw, 38px);
    border-radius: 22px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 18%, rgb(41 216 255 / 34%), transparent 34%),
        linear-gradient(135deg, #06172f, #0020a1);
    box-shadow: 0 20px 60px rgb(0 32 161 / 18%);
}

.standards-sidebar-card span {
    color: rgb(255 255 255 / 72%);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
}

.standards-sidebar-card strong {
    display: block;
    margin-top: 18px;
    font-size: clamp(22px, 1.55vw, 30px);
    line-height: 1.25;
}

.standards-sidebar-card p {
    margin: 18px 0 0;
    color: rgb(255 255 255 / 78%);
    font-size: 14px;
    line-height: 1.8;
}

.standards-content {
    display: grid;
    gap: clamp(54px, 5vw, 92px);
}

.standard-list-panel,
.standard-products-panel {
    min-width: 0;
}

.standard-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px clamp(24px, 2vw, 42px);
    align-items: center;
}

.standard-chip-grid[hidden],
.standard-product-card[hidden],
.standard-empty[hidden] {
    display: none !important;
}

.standard-chip-grid a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 10px 14px;
    border: 1px solid transparent;
    border-radius: 3px;
    color: #222;
    font-size: clamp(14px, .82vw, 16px);
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    background: #f2f6fb;
}

.standard-chip-grid a:hover,
.standard-chip-grid a:focus-visible,
.standard-chip-grid a.is-selected {
    color: var(--blue);
}

.standard-chip-grid a.is-selected {
    min-width: 140px;
    padding: 10px 14px;
    border-color: var(--blue);
    font-weight: 800;
    background: var(--blue);
    color: #fff;
}

.standard-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 2.6vw, 48px);
}

.standard-product-card {
    min-width: 0;
}

.standard-empty {
    margin: 0;
    padding: 48px 24px;
    color: #6b7280;
    font-size: 15px;
    text-align: center;
    background: #f7f9fb;
    border: 1px solid #e6edf5;
    border-radius: 8px;
}

.standard-product-image {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 100px 40px;
    border-radius: 16px;
    background: #f2f6fb;
    text-decoration: none;
    box-shadow: 0 18px 50px rgb(18 36 66 / 8%);
}

.standard-product-image img {
    width: 100%;
    aspect-ratio: 800 / 400;
    object-fit: contain;
    transition: transform .48s cubic-bezier(.22, 1, .36, 1), filter .48s ease;
}

.standard-product-image span {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    padding: 8px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgb(0 32 161 / 88%);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .05em;
    box-shadow: 0 10px 24px rgb(0 32 161 / 22%);
}

.standard-product-card h3 {
    margin: 20px 0 0;
    color: #111b24;
    font-size: clamp(15px, 1.15vw, 18px);
    font-weight: 700;
    line-height: 1.35;
}

.standard-product-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color .24s ease;
}

.standard-product-more {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 16px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .24s ease;
}

.standard-product-more em {
    font-style: normal;
    transition: transform .24s ease;
}

.standard-product-card:hover img,
.standard-product-card:focus-within img {
    filter: saturate(1.06) contrast(1.04);
    transform: scale(1.045);
}

.standard-product-card:hover h3 a,
.standard-product-card:focus-within h3 a {
    color: var(--blue);
}

.standard-product-card:hover .standard-product-more,
.standard-product-card:focus-within .standard-product-more {
    transform: translateX(4px);
}

.standard-product-card:hover .standard-product-more em,
.standard-product-card:focus-within .standard-product-more em {
    transform: translateX(3px);
}

.jobs-section {
    padding: clamp(48px, 3.6vw, 70px) 20px clamp(150px, 11vw, 215px);
}

.jobs-table {
    width: min(1500px, 100%);
    margin: 0 auto;
    border: 1px solid #e0e0e0;
    border-top: 3px solid var(--blue);
    background: #fff;
}

.jobs-head,
.job-row {
    display: grid;
    grid-template-columns: 1.85fr 1.05fr 1.05fr .9fr .95fr;
    align-items: center;
}

.jobs-head {
    min-height: 132px;
    color: #222;
    font-size: clamp(14px, .88vw, 17px);
    font-weight: 700;
}

.jobs-head>div,
.job-row>div {
    padding: 0 clamp(18px, 2vw, 58px);
}

.job-item {
    border-top: 1px solid #dedede;
}

.job-row {
    width: 100%;
    min-height: 138px;
    border: 0;
    background: #fff;
    color: #222;
    font-size: clamp(15px, .94vw, 18px);
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.job-row:hover,
.job-row:focus-visible,
.job-item.is-open .job-row {
    background: #f0f1f3;
}

.job-row:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: -2px;
}

.job-detail {
    padding: clamp(44px, 3.6vw, 70px) clamp(28px, 4.2vw, 84px) clamp(72px, 5.8vw, 112px);
    border-top: 1px solid #e1e1e1;
    color: #111;
}

.job-detail h2 {
    margin: 0 0 clamp(24px, 2vw, 38px);
    color: #111;
    font-size: clamp(24px, 1.8vw, 34px);
    font-weight: 700;
    line-height: 1.2;
}

.job-detail h3,
.job-detail p {
    width: min(940px, 100%);
    margin: 0;
    color: #111;
    font-size: clamp(13px, .82vw, 16px);
    font-weight: 700;
    line-height: 1.35;
}

.job-detail h3 {
    margin-top: 24px;
}

.job-detail h2+h3 {
    margin-top: 0;
}

.job-detail:not([hidden]) h2 {
    animation: titleFlyIn .55s cubic-bezier(.22, 1, .36, 1) both;
}

.index4-page main .action-hero-cta,
.index4-page main .action-company-badge,
.index4-page main .action-company-points article,
.index4-page main .index4-product-content p,
.index4-page main .index4-product-content h2,
.index4-page main .index4-product-content>span,
.index4-page main .index4-product-content li,
.index4-page main .index4-product-link,
.index4-page main .action-solution-grid a,
.index4-page main .action-cta-copy p,
.index4-page main .action-cta-copy h2,
.index4-page main .action-cta-copy>span,
.index4-page main .action-cta-links a,
.index4-page main .action-news-feature img,
.index4-page main .action-news-feature p,
.index4-page main .action-news-feature h3,
.index4-page main .action-news-feature>div>span,
.index4-page main .action-news-feature>div>a,
.index4-page main .action-news-list a {
    opacity: 0;
    transition: opacity .68s ease, transform .68s cubic-bezier(.22, 1, .36, 1);
}

.index4-page main .motion-fade .action-hero-cta,
.index4-page main .action-company-points article,
.index4-page main .action-solution-grid a,
.index4-page main .action-news-feature img,
.index4-page main .action-news-feature p,
.index4-page main .action-news-feature h3,
.index4-page main .action-news-feature>div>span,
.index4-page main .action-news-feature>div>a,
.index4-page main .action-news-list a {
    transform: translateY(28px);
}

.index4-page main .motion-fade .action-hero-cta {
    transform: translateX(-50%) translateY(28px);
}

.index4-page main .action-company-badge,
.index4-page main .action-cta-copy p,
.index4-page main .action-cta-copy h2,
.index4-page main .action-cta-copy>span,
.index4-page main .action-cta-links a {
    transform: translateX(-34px);
}

.index4-page main .index4-product-screen:not(.is-reverse) .index4-product-content p,
.index4-page main .index4-product-screen:not(.is-reverse) .index4-product-content h2,
.index4-page main .index4-product-screen:not(.is-reverse) .index4-product-content>span,
.index4-page main .index4-product-screen:not(.is-reverse) .index4-product-content li,
.index4-page main .index4-product-screen:not(.is-reverse) .index4-product-link {
    transform: translateX(34px);
}

.index4-page main .index4-product-screen.is-reverse .index4-product-content p,
.index4-page main .index4-product-screen.is-reverse .index4-product-content h2,
.index4-page main .index4-product-screen.is-reverse .index4-product-content>span,
.index4-page main .index4-product-screen.is-reverse .index4-product-content li,
.index4-page main .index4-product-screen.is-reverse .index4-product-link {
    transform: translateX(-34px);
}

.index4-page main .motion-fade.in-view .action-hero-cta,
.index4-page main .reveal-up.in-view .action-company-badge,
.index4-page main .reveal-up.in-view .action-company-points article,
.index4-page main .reveal-up.in-view .index4-product-content p,
.index4-page main .reveal-up.in-view .index4-product-content h2,
.index4-page main .reveal-up.in-view .index4-product-content>span,
.index4-page main .reveal-up.in-view .index4-product-content li,
.index4-page main .reveal-up.in-view .index4-product-link,
.index4-page main .reveal-up.in-view .action-solution-grid a,
.index4-page main .reveal-up.in-view .action-cta-copy p,
.index4-page main .reveal-up.in-view .action-cta-copy h2,
.index4-page main .reveal-up.in-view .action-cta-copy>span,
.index4-page main .reveal-up.in-view .action-cta-links a,
.index4-page main .reveal-up.in-view .action-news-feature img,
.index4-page main .reveal-up.in-view .action-news-feature p,
.index4-page main .reveal-up.in-view .action-news-feature h3,
.index4-page main .reveal-up.in-view .action-news-feature>div>span,
.index4-page main .reveal-up.in-view .action-news-feature>div>a,
.index4-page main .reveal-up.in-view .action-news-list a {
    opacity: 1;
    transform: none;
}

.index4-page main .motion-fade.in-view .action-hero-cta {
    transform: translateX(-50%);
}

.index4-page main .motion-fade.in-view .action-hero-cta:hover {
    transform: translateX(-50%) translateY(-3px);
}

.index4-page main .reveal-up.in-view .action-company-points article:hover,
.index4-page main .reveal-up.in-view .index4-product-link:hover,
.index4-page main .reveal-up.in-view .action-solution-grid a:hover,
.index4-page main .reveal-up.in-view .action-cta-links a:hover,
.index4-page main .reveal-up.in-view .action-news-feature:hover,
.index4-page main .reveal-up.in-view .action-news-list a:hover {
    transform: translateY(-5px);
}

.index4-page main .reveal-up.in-view .action-company-points article:hover {
    transform: translateX(8px);
}

.index4-page main .reveal-up.in-view .index4-product-content li a:hover {
    transform: translateX(4px);
}

.index4-page main .motion-fade.in-view .action-hero-cta,
.index4-page main .reveal-up.in-view .action-company-badge,
.index4-page main .reveal-up.in-view .index4-product-content p,
.index4-page main .reveal-up.in-view .action-cta-copy p,
.index4-page main .reveal-up.in-view .action-news-feature img {
    transition-delay: .08s;
}

.index4-page main .reveal-up.in-view .index4-product-content h2,
.index4-page main .reveal-up.in-view .action-cta-copy h2,
.index4-page main .reveal-up.in-view .action-news-feature p,
.index4-page main .reveal-up.in-view .action-solution-grid a:nth-child(1) {
    transition-delay: .16s;
}

.index4-page main .reveal-up.in-view .index4-product-content>span,
.index4-page main .reveal-up.in-view .action-cta-copy>span,
.index4-page main .reveal-up.in-view .action-news-feature h3,
.index4-page main .reveal-up.in-view .action-company-points article:nth-child(1),
.index4-page main .reveal-up.in-view .action-solution-grid a:nth-child(2) {
    transition-delay: .24s;
}

.index4-page main .reveal-up.in-view .index4-product-content li:nth-child(1),
.index4-page main .reveal-up.in-view .action-company-points article:nth-child(2),
.index4-page main .reveal-up.in-view .action-solution-grid a:nth-child(3),
.index4-page main .reveal-up.in-view .action-news-feature>div>span,
.index4-page main .reveal-up.in-view .action-news-list a:nth-child(1) {
    transition-delay: .32s;
}

.index4-page main .reveal-up.in-view .index4-product-content li:nth-child(2),
.index4-page main .reveal-up.in-view .action-company-points article:nth-child(3),
.index4-page main .reveal-up.in-view .action-solution-grid a:nth-child(4),
.index4-page main .reveal-up.in-view .action-cta-links a:nth-child(1),
.index4-page main .reveal-up.in-view .action-news-feature>div>a,
.index4-page main .reveal-up.in-view .action-news-list a:nth-child(2) {
    transition-delay: .4s;
}

.index4-page main .reveal-up.in-view .index4-product-content li:nth-child(3),
.index4-page main .reveal-up.in-view .action-solution-grid a:nth-child(5),
.index4-page main .reveal-up.in-view .action-cta-links a:nth-child(2),
.index4-page main .reveal-up.in-view .action-news-list a:nth-child(3) {
    transition-delay: .48s;
}

.index4-page main .reveal-up.in-view .index4-product-content li:nth-child(4),
.index4-page main .reveal-up.in-view .index4-product-link {
    transition-delay: .56s;
}

.index4-page main .reveal-up.in-view .index4-product-content li:nth-child(5) {
    transition-delay: .64s;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid #c9c9c9;
    animation: headerDrop .55s ease both;
}

.header-inner {
    width: min(100%, 1640px);
    height: var(--header-h);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 0 20px;
}

.brand {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
}

.brand img {
    width: 300px;
    height: auto;
}

.main-nav {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(22px, 2.1vw, 48px);
    margin-left: clamp(18px, 2.2vw, 42px);
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    border: 0;
    background: transparent;
    padding: 34px 0 31px;
    color: #6b6b6b;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: color .2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active,
.nav-item.open .nav-link {
    color: var(--blue);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 22px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--cyan) 18%, var(--blue) 50%, var(--cyan) 82%, transparent);
    background-size: 220% 100%;
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: opacity .22s ease, transform .28s cubic-bezier(.22, 1, .36, 1);
    pointer-events: none;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after,
.nav-item.open .nav-link::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
    animation: navLineFlow 1.6s linear infinite;
}

.header-tools {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 17px;
}

.search-box {
    display: grid;
    place-items: center;
    width: 42px;
    height: 36px;
    border: 1px solid #777;
    background: var(--blue);
    transition: background .2s ease, border-color .2s ease;
}

.search-box input {
    display: none;
}

.search-box button,
.mobile-search-form button {
    border: 0;
    background: var(--blue);
    display: grid;
    place-items: center;
    cursor: pointer;
}

.search-box button {
    width: 48px;
}

.search-icon-link:hover,
.search-icon-link:focus-visible {
    background: #003b8f;
    border-color: #003b8f;
}

.search-box svg,
.mobile-search-form svg {
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
}

.search-box svg {
    width: 24px;
    height: 24px;
}

.tool-link {
    color: #121a36;
    font-size: 18px;
    white-space: nowrap;
}

.language-link {
    padding: 8px 0;
    text-align: center;
}

.tool-divider {
    width: 1px;
    height: 20px;
    background: #121a36;
}

.logout-link {
    color: #6b7280;
    font-size: 15px;
}

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

.mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    padding: 8px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 0;
    background: var(--blue);
}

.mobile-search-layer {
    display: none;
}

.mega-layer {
    position: absolute;
    left: 0;
    top: var(--header-h);
    width: 100%;
    background: #fff;
    border-top: 1px solid #c9c9c9;
    box-shadow: 0 10px 22px rgb(0 0 0 / 4%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    pointer-events: none;
}

.mega-layer.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-layer.show .mega-card,
.mega-layer.show .mega-solutions>a,
.mega-layer.show .mega-standards>section {
    animation: menuCardIn .42s ease both;
}

.mega-layer.show .mega-card:nth-child(2),
.mega-layer.show .mega-solutions>a:nth-child(2),
.mega-layer.show .mega-standards>section:nth-child(2) {
    animation-delay: .04s;
}

.mega-layer.show .mega-card:nth-child(3),
.mega-layer.show .mega-solutions>a:nth-child(3),
.mega-layer.show .mega-standards>section:nth-child(3) {
    animation-delay: .08s;
}

.mega-layer.show .mega-card:nth-child(4),
.mega-layer.show .mega-solutions>a:nth-child(4),
.mega-layer.show .mega-standards>section:nth-child(4) {
    animation-delay: .12s;
}

.mega-layer.show .mega-card:nth-child(5),
.mega-layer.show .mega-solutions>a:nth-child(5),
.mega-layer.show .mega-standards>section:nth-child(5) {
    animation-delay: .16s;
}

.mega-wrap {
    width: min(100%, 1630px);
    margin: 0 auto;
    padding: 45px 20px 58px;
}

.mega-products,
.mega-solutions {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mega-products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 78px;
    max-width: 1300px;
}

.mega-solutions {
    gap: 80px;
    padding-top: 48px;
    padding-bottom: 110px;
}

.mega-card img,
.solution-img {
    width: 100%;
    height: 143px;
    border-radius: 3px;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform .35s ease, filter .35s ease;
}

.mega-card a:hover img,
.mega-solutions a:hover .solution-img {
    transform: translateY(-4px);
    filter: saturate(1.12) contrast(1.04);
}

.mega-card h3,
.mega-solutions h3,
.mega-standards h3 {
    margin: 26px 0;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--line);
    color: #2f2f2f;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
}

.mega-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mega-card li {
    position: relative;
    padding: 8px 18px 8px 4px;
    color: #777;
    font-size: 14px;
    line-height: 1.45;
}

.mega-card li::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid #d3d3d3;
    border-right: 1px solid #d3d3d3;
    transform: translateY(-50%) rotate(45deg);
}

.mega-card li.selected,
.mega-card li:hover {
    color: var(--blue);
}

.solution-img.s1 {
    background-image: url("./assets/solution-1.jpg");
}

.solution-img.s2 {
    background-image: url("./assets/solution-2.jpg");
}

.solution-img.s3 {
    background-image: url("./assets/solution-3.jpg");
}

.solution-img.s4 {
    background-image: url("./assets/solution-4.jpg");
}

.solution-img.s5 {
    background-image: url("./assets/solution-5.jpg");
}

.mega-standards {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 100px;
    max-width: 1060px;
    padding-top: 28px;
    padding-bottom: 70px;
}

.mega-standards h3 {
    margin-top: 0;
}

.mega-standards p {
    margin: 0 0 16px;
    color: #7b7b7b;
    font-size: 14px;
}

.action-home-page {
    background: #fff;
}

.action-hero {
    position: relative;
    min-height: 620px;
    height: clamp(620px, calc(100vh - var(--header-h)), 920px);
    max-height: 920px;
    overflow: hidden;
    color: #fff;
    background: #06142c;
}

.action-hero-track,
.action-hero-slide,
.action-hero-slide picture {
    position: absolute;
    inset: 0;
}

.action-hero-slide {
    opacity: 0;
    transform: scale(1);
    transition: opacity .75s ease;
    pointer-events: none;
}

.action-hero-slide.active {
    opacity: 1;
    animation: heroPulse 7s ease-in-out alternate infinite;
    pointer-events: auto;
}

.action-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.action-hero-pagination {
    position: absolute;
    left: 50%;
    bottom: 14px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    transform: translateX(-50%);
}

.action-hero-pagination button {
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    padding: 0;
    border: 0;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

.action-hero-pagination button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .62);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .24);
    transform: translate(-50%, -50%);
    transition: width .25s ease, background-color .25s ease;
}

.action-hero-pagination button.on::before {
    width: 24px;
    background: #fff;
}

.action-hero-pagination button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -4px;
}

.action-hero-cta {
    position: absolute;
    left: 50%;
    bottom: 50px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-width: 150px;
    height: 50px;
    padding: 0 28px;
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    background: transparent;
    font-size: 12px;
    text-align: left;
    box-shadow: none;
    transform: translateX(-50%);
    transition: transform .25s ease, border-color .25s ease;
}

.action-hero-cta::after {
    content: "";
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}

.action-hero-cta:hover,
.action-hero-cta:focus,
.action-hero-cta:focus-visible {
    transform: translateX(-50%) translateY(-3px);
    border-color: #002086;
    background: #002086;
    box-shadow: none;
    outline: none;
}

.action-company {
    position: relative;
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 90px 28px 78px;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 72px;
    align-items: stretch;
    overflow: hidden;
}

.action-company::before {
    content: "";
    position: absolute;
    right: -140px;
    top: 84px;
    width: 360px;
    height: 360px;
    border: 1px solid rgb(0 32 161 / 16%);
    border-radius: 50%;
    pointer-events: none;
}

.action-company-media {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: #071d4a;
    box-shadow: 0 28px 70px rgb(0 32 161 / 14%);
    isolation: isolate;
}

.action-company-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgb(0 20 60 / 12%), rgb(0 20 60 / 66%)),
        linear-gradient(90deg, rgb(0 32 161 / 32%), transparent 58%);
}

.action-company-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .7s ease;
}

.action-company:hover .action-company-media img {
    transform: scale(1.07);
}

.action-company-badge {
    position: absolute;
    left: 34px;
    bottom: 34px;
    z-index: 2;
    color: #fff;
}

.action-company-badge strong {
    display: block;
    font-size: 56px;
    line-height: 1;
}

.action-company-badge span {
    display: block;
    margin-top: 6px;
    font-size: 15px;
}

.action-company-copy {
    position: relative;
    z-index: 1;
    align-self: center;
}

.action-company-kicker,
.action-section-title p,
.action-cta-copy p,
.index4-product-content p {
    color: var(--cyan);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
}

.action-company-kicker {
    margin: 0 0 12px;
}

.action-company-copy h2 {
    margin: 0;
    color: #101828;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.16;
    white-space: nowrap;
}

.action-company-lead {
    margin: 18px 0 0;
    color: #5f6c7b;
    font-size: 18px;
    line-height: 1.65;
}

.action-company-points {
    margin-top: 28px;
    display: grid;
    gap: 12px;
}

.action-company-points article {
    position: relative;
    padding: 20px 24px 20px 84px;
    border: 1px solid var(--line);
    background: linear-gradient(90deg, #fff, #f7fbff);
    box-shadow: 0 12px 28px rgb(0 32 161 / 5%);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.action-company-points article:hover {
    transform: translateX(8px);
    border-color: rgb(0 32 161 / 28%);
    box-shadow: 0 18px 38px rgb(0 32 161 / 10%);
}

.action-company-points span {
    position: absolute;
    left: 24px;
    top: 22px;
    color: rgb(0 32 161 / 20%);
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.action-company-points h3 {
    margin: 0 0 6px;
    color: #111;
    font-size: 21px;
    font-weight: 600;
}

.action-company-points p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.index4-product-screen {
    min-height: calc(100vh - var(--header-h));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgb(41 216 255 / 14%), transparent 34%),
        linear-gradient(135deg, #06142c 0%, #081e44 48%, #031129 100%);
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    overflow: hidden;
}

.index4-product-screen.is-reverse .index4-product-media {
    order: 2;
}

.index4-product-media {
    display: grid;
    place-items: center;
    min-height: inherit;
    background:
        linear-gradient(135deg, rgb(0 32 161 / 58%), rgb(41 216 255 / 13%)),
        #031129;
}

.index4-product-media img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 30px 70px rgb(0 0 0 / 32%);
    transition: transform .55s ease, box-shadow .55s ease;
}

.index4-product-media:hover img {
    transform: scale(1.035);
    box-shadow: 0 38px 84px rgb(0 0 0 / 38%);
}

.index4-product-content {
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(46px, 7vw, 120px);
}

.index4-product-content p {
    margin: 0 0 18px;
    letter-spacing: .08em;
}

.index4-product-content h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 3.2vw, 56px);
    font-weight: 700;
    line-height: 1.15;
}

.index4-product-content>span {
    max-width: 620px;
    margin-top: 26px;
    color: rgb(255 255 255 / 78%);
    font-size: 17px;
    line-height: 1.9;
}

.index4-product-content ul {
    max-width: 620px;
    margin: 36px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
    list-style: none;
}

.index4-product-content li a {
    position: relative;
    display: block;
    padding-left: 20px;
    color: rgb(255 255 255 / 88%);
    font-size: 15px;
    line-height: 1.55;
    transition: color .25s ease, transform .25s ease;
}

.index4-product-content li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 10px;
    height: 2px;
    background: var(--cyan);
}

.index4-product-content li a:hover {
    color: var(--cyan);
    transform: translateX(4px);
}

.index4-product-link {
    width: fit-content;
    margin-top: 42px;
    padding: 15px 28px;
    color: #fff;
    background: var(--cyan);
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 16px 34px rgb(0 32 161 / 26%);
    transition: transform .25s ease, box-shadow .25s ease;
}

.index4-product-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px rgb(0 32 161 / 34%);
}

.index5-product-screen {
    min-height: calc(100vh - var(--header-h));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    color: #101828;
    background: #fff;
    border-bottom: 1px solid #edf0f3;
    overflow: hidden;
}

.index5-product-screen.is-reverse .index5-product-media {
    order: 2;
}

.index5-product-media {
    position: relative;
    min-height: inherit;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: clamp(42px, 5vw, 86px);
    color: #fff;
    background: #031129;
    isolation: isolate;
}

.index5-product-image {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.index5-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    transition: transform .55s ease, filter .55s ease;
}

.index5-product-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgb(0 12 38 / 12%) 0%, rgb(0 12 38 / 76%) 100%),
        linear-gradient(90deg, rgb(0 32 161 / 70%), rgb(0 12 38 / 18%) 62%);
}

.index5-product-media:hover .index5-product-image img {
    transform: scale(1.07);
    filter: saturate(1.08);
}

.index5-product-summary {
    width: min(100%, 720px);
}

.index5-product-summary p {
    margin: 0 0 18px;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
}

.index5-product-summary h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(38px, 4vw, 68px);
    font-weight: 700;
    line-height: 1.1;
}

.index5-product-summary span {
    display: block;
    max-width: 620px;
    margin-top: 24px;
    color: rgb(255 255 255 / 82%);
    font-size: 18px;
    line-height: 1.8;
}

.index5-product-content {
    min-height: inherit;
    padding: clamp(28px, 4vw, 64px);
    background: #fff;
}

.index5-product-list {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    gap: clamp(14px, 1.6vw, 22px);
    list-style: none;
}

.index5-product-list.is-count-3 {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
}

.index5-product-list.is-count-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
}

.index5-product-list.is-count-5 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
}

.index5-product-list.is-count-5 li {
    grid-column: span 2;
}

.index5-product-list.is-count-5 li:nth-child(n + 4) {
    grid-column: span 3;
}

.index5-product-content li a {
    height: 100%;
    min-height: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 16px;
    padding: 16px;

    background: #f7fbff;
    color: #101828;

    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.index5-product-content li a:hover {
    transform: translateY(-3px);
    border-color: rgb(41 216 255 / 70%);
    box-shadow: 0 18px 34px rgb(0 32 161 / 10%);
}

.index5-product-content li img {
    width: 100%;
    height: 100%;
    min-height: 110px;
    border-radius: 6px;
    object-fit: cover;
    background: #eef4fb;
}

.index5-product-content li span {
    color: #1d2939;
    font-size: clamp(16px, 1.25vw, 20px);
    font-weight: 600;
    line-height: 1.35;
}

.action-news {
    width: min(100%, var(--container));
    margin: 0 auto;
    background: #fff;
    padding: 76px 0 98px;
}

.action-solutions {
    position: relative;
    width: 100%;
    min-height: 720px;
    margin: 0;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(180deg, rgb(0 18 72 / 34%), rgb(0 68 145 / 18%) 38%, rgb(1 11 52 / 52%)),
        var(--solutions-bg-pc, url("./assets/solutions/solutions-pc.jpg")) center / cover no-repeat;
}

.action-solutions::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 34%, rgb(0 186 255 / 20%), transparent 32%);
    pointer-events: none;
}

.action-solution-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    padding: clamp(58px, 7vh, 86px) clamp(18px, 5vw, 80px) clamp(54px, 7vh, 92px);
}

.action-section-title {
    margin-bottom: 58px;
    text-align: center;
}

.action-section-title p {
    margin: 0 0 14px;
}

.action-section-title h2,
.action-solution-inner .action-section-title h2,
.action-news .action-section-title h2 {
    margin: 0;
    color: #20252b;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.12;
}

.action-solution-inner .action-section-title {
    max-width: 900px;
    margin: 0 auto clamp(32px, 4vh, 52px);
    color: #fff;
}

.action-solutions .action-section-title h2 {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 18px;
    color: #fff;
    font-size: clamp(22px, 2.2vw, 34px);
    font-weight: 700;
    letter-spacing: 0;
}

.action-solutions .action-section-title h2 em {
    color: #fff;
    font-size: .78em;
    font-style: normal;
    font-weight: 650;
}

.action-solutions .action-section-title p {
    max-width: 820px;
    margin: 24px auto 0;
    color: rgb(255 255 255 / 90%);
    font-size: clamp(12px, 1.15vw, 18px);
    line-height: 1.72;
    letter-spacing: .12em;
}

.action-solution-stage {
    position: relative;
    width: min(100%, 1680px);
    height: clamp(340px, 45vh, 520px);
    margin: 0 auto;
    overflow: visible;
}

.action-solution-card {
    --offset: 0;
    --solution-slot: clamp(220px, 18vw, 300px);
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10;
    width: clamp(150px, 11.5vw, 230px);
    height: clamp(190px, 14vw, 270px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    place-items: center;
    padding: 22px 18px;
    overflow: hidden;
    border-radius: 18px;
    color: #20252b;
    text-align: center;
    text-decoration: none;
    background: rgb(245 248 252 / 78%);
    box-shadow: 0 18px 48px rgb(0 18 72 / 20%);
    transform: translate(-50%, -50%) translateX(calc(var(--offset) * var(--solution-slot))) scale(.92);
    transition: width .46s ease, height .46s ease, transform .46s ease, background .36s ease, box-shadow .36s ease, opacity .36s ease;
    backdrop-filter: blur(4px);
}

.action-solution-card[data-ring-position="-1"],
.action-solution-card[data-ring-position="1"] {
    z-index: 24;
    width: clamp(220px, 16.5vw, 330px);
    height: clamp(250px, 20vw, 360px);
    padding: 28px 22px;
    box-shadow: 0 24px 62px rgb(0 18 72 / 24%);
    transform: translate(-50%, -50%) translateX(calc(var(--offset) * var(--solution-slot))) scale(.96);
}

.action-solution-card[data-ring-position="-2"],
.action-solution-card[data-ring-position="2"] {
    z-index: 16;
    opacity: .92;
}

.action-solution-card.is-active {
    z-index: 40;
    width: clamp(360px, 25vw, 520px);
    height: clamp(360px, 31vw, 500px);
    padding: 0;
    color: #fff;
    background: #101b2d;
    box-shadow: 0 34px 90px rgb(0 0 0 / 36%);
    transform: translate(-50%, -50%) translateX(calc(var(--offset) * var(--solution-slot))) scale(1);
}

.action-solution-card:not(.is-active):hover,
.action-solution-card:not(.is-active):focus-visible {
    background: rgb(255 255 255 / 86%);
    box-shadow: 0 30px 70px rgb(0 18 72 / 30%);
    transform: translate(-50%, -50%) translateX(calc(var(--offset) * var(--solution-slot))) translateY(-8px) scale(.98);
}

.action-solution-card[data-ring-position="-2"]:not(.is-active):hover,
.action-solution-card[data-ring-position="2"]:not(.is-active):hover,
.action-solution-card[data-ring-position="-2"]:not(.is-active):focus-visible,
.action-solution-card[data-ring-position="2"]:not(.is-active):focus-visible {
    transform: translate(-50%, -50%) translateX(calc(var(--offset) * var(--solution-slot))) translateY(-6px) scale(.94);
}

.action-solution-photo,
.action-solution-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.action-solution-photo {
    opacity: 0;
    transition: opacity .36s ease;
}

.action-solution-photo img {
    object-fit: cover;
}

.action-solution-card.is-active .action-solution-photo {
    opacity: 1;
}

.action-solution-card.is-active::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(0 13 38 / 0%) 42%, rgb(3 12 31 / 78%));
    pointer-events: none;
}

.action-solution-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 46px;
    height: 42px;
    margin-bottom: 14px;
    overflow: hidden;
    color: var(--blue);
    transition: opacity .28s ease, transform .36s ease;
}

.action-solution-card[data-ring-position="-1"] .action-solution-icon,
.action-solution-card[data-ring-position="1"] .action-solution-icon {
    width: 58px;
    height: 52px;
    margin-bottom: 16px;
}

.action-solution-icon img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.action-solution-card.is-active .action-solution-icon {
    opacity: 0;
    transform: translateY(14px);
}

.action-solution-car-icon {
    position: relative;
    width: 86px;
    height: 48px;
    border: 6px solid currentColor;
    border-top: 0;
    border-radius: 20px 34px 16px 16px;
}

.action-solution-card[data-ring-position="-1"] .action-solution-car-icon,
.action-solution-card[data-ring-position="1"] .action-solution-car-icon {
    width: 116px;
    height: 62px;
    border-width: 7px;
}

.action-solution-car-icon::before {
    content: "";
    position: absolute;
    left: 16px;
    top: -26px;
    width: 42px;
    height: 30px;
    border: 6px solid currentColor;
    border-bottom: 0;
    border-radius: 24px 28px 0 0;
    transform: skewX(-16deg);
}

.action-solution-card[data-ring-position="-1"] .action-solution-car-icon::before,
.action-solution-card[data-ring-position="1"] .action-solution-car-icon::before {
    left: 20px;
    top: -31px;
    width: 58px;
    height: 38px;
    border-width: 7px;
}

.action-solution-car-icon::after {
    content: "";
    position: absolute;
    left: 10px;
    bottom: -15px;
    width: 18px;
    height: 18px;
    border: 6px solid currentColor;
    border-radius: 50%;
    box-shadow: 52px 0 0 -6px #fff, 52px 0 0 0 currentColor;
}

.action-solution-card[data-ring-position="-1"] .action-solution-car-icon::after,
.action-solution-card[data-ring-position="1"] .action-solution-car-icon::after {
    left: 14px;
    bottom: -18px;
    width: 22px;
    height: 22px;
    border-width: 7px;
    box-shadow: 68px 0 0 -7px #fff, 68px 0 0 0 currentColor;
}

.action-solution-copy {
    position: relative;
    z-index: 2;
    display: block;
    justify-items: center;
    max-width: 92%;
    line-height: 1.36;
}

.action-solution-copy strong,
.action-solution-copy small {
    display: block;
}

.action-solution-copy strong {
    color: inherit;
    font-size: clamp(15px, .95vw, 20px);
    font-weight: 500;
}

.action-solution-copy small {
    color: rgb(32 37 43 / 88%);
    font-size: clamp(13px, .82vw, 16px);
}

.action-solution-card[data-ring-position="-1"] .action-solution-copy strong,
.action-solution-card[data-ring-position="1"] .action-solution-copy strong {
    font-size: clamp(18px, 1.18vw, 24px);
}

.action-solution-card[data-ring-position="-1"] .action-solution-copy small,
.action-solution-card[data-ring-position="1"] .action-solution-copy small {
    font-size: clamp(15px, 1vw, 20px);
}

.action-solution-card.is-active .action-solution-copy {
    align-self: end;
    max-width: 92%;
    padding: 0 32px 34px;
}

.action-solution-card.is-active .action-solution-copy strong {
    color: #fff;
    font-size: clamp(24px, 1.75vw, 34px);
    font-weight: 500;
}

.action-solution-card.is-active .action-solution-copy small {
    color: rgb(255 255 255 / 92%);
    font-size: clamp(20px, 1.45vw, 28px);
}

.action-solution-card[aria-current="true"] {
    cursor: pointer;
}

.action-solution-card[data-link-disabled="true"] {
    cursor: default;
}

.action-solution-grid {
    display: grid;
    grid-template-columns: 1.28fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(260px, 1fr));
    gap: 18px;
    min-height: 640px;
}

.action-solution-grid a {
    position: relative;
    min-width: 0;
    min-height: 100%;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: #fff;
    isolation: isolate;
    box-shadow: 0 24px 60px rgb(0 0 0 / 18%);
    transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

.action-solution-grid a:first-child {
    grid-row: 1 / span 2;
    padding: 44px;
}

.action-solution-grid img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    transition: transform .45s ease;
}

.action-solution-grid a::after {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    bottom: 5%;
    z-index: -1;
    height: 42%;
    background: linear-gradient(180deg, rgb(0 32 161 / 0%), rgb(0 20 60 / 32%));
    pointer-events: none;
}

.action-solution-grid span {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.35;
}

.action-solution-grid a:first-child span {
    max-width: 520px;
    font-size: 34px;
    line-height: 1.15;
}

.action-solution-grid em {
    margin-top: 18px;
    color: var(--cyan);
    font-size: 14px;
    font-style: normal;
    opacity: .82;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease;
}

.action-solution-grid a:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 76px rgb(0 0 0 / 26%);
    filter: none;
}

.action-solution-grid a:hover img {
    transform: scale(1.08);
}

.action-solution-grid a:hover em {
    opacity: 1;
    transform: translateY(0);
}

.action-cta {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    color: #fff;
    background: #031129;
}

.action-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgb(2 12 34 / 14%), rgb(0 32 161 / 70%), rgb(2 12 34 / 12%)),
        var(--action-cta-bg, url("./assets/action-cta.png")) center / cover no-repeat;
    transform: scale(1.03);
    animation: heroPulse 9s ease-in-out infinite alternate;
}

.action-cta-inner {
    position: relative;
    z-index: 1;
    width: min(100%, var(--container));
    min-height: inherit;
    margin: 0 auto;
    padding: 72px 28px;
    display: grid;
    align-items: center;
}

.action-cta-copy p {
    margin: 0 0 16px;
}

.action-cta-copy h2 {
    margin: 0;
    color: #fff;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.24;
}

.action-cta-copy span {
    display: block;
    max-width: 680px;
    margin-top: 22px;
    color: rgb(255 255 255 / 78%);
    font-size: 18px;
    line-height: 1.75;
}

.action-cta-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.action-cta-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 46px;
    padding: 0 22px;
    color: #fff;
    border: 1px solid rgb(255 255 255 / 42%);
    font-size: 15px;
    font-weight: 700;
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
    border-radius: 10px;
}

.action-cta-links a:first-child {
    background: var(--cyan);
    border-color: var(--cyan);
}

.action-cta-links a:hover {
    transform: translateY(-3px);
    background: rgb(255 255 255 / 12%);
    border-color: rgb(255 255 255 / 70%);
}

.action-cta-links a:first-child:hover {
    background: #18bfe4;
    border-color: #18bfe4;
}

.action-news {
    padding: 76px 0 98px;
}

.action-news .action-section-title {
    max-width: 760px;
    margin: 0 auto 68px;
}

.action-news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(480px, .96fr);
    gap: 28px;
}

.action-news-feature,
.action-news-list a {
    overflow: hidden;
    border: 1px solid #edf0f3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 10px rgb(16 24 40 / 7%);
    transition: transform .28s ease, box-shadow .28s ease;
}

.action-news-feature:hover,
.action-news-list a:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgb(16 24 40 / 11%);
}

.action-news-feature img,
.action-news-list img {
    width: 100%;
    aspect-ratio: var(--news-image-ratio);
    object-fit: cover;
    background: #f6f9fd;
}

.action-news-feature img {
    height: auto;
    filter: saturate(.88) contrast(.96);
}

.action-news-feature>.action-news-feature-image {
    display: block;
    margin: 0;
    color: inherit;
    font: inherit;
    line-height: normal;
    text-decoration: none;
}

.action-news-feature>.action-news-feature-image img {
    display: block;
}

.action-news-feature div {
    padding: 20px 22px 22px;
}

.action-news-feature p,
.action-news-list time {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.action-news-feature i,
.action-news-list i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #9aa7b5;
}

.action-news-feature h3 {
    margin: 12px 0;
    color: #101828;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.38;
}

.action-news-feature h3 a {
    display: inline;
    margin: 0;
    color: inherit;
    font: inherit;
    line-height: inherit;
    text-decoration: none;
}

.action-news-feature h3 a:hover,
.action-news-feature h3 a:focus-visible {
    color: var(--blue);
}

.action-news-feature span {
    display: block;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.action-news-feature a,
.action-news-list strong {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
    color: #111;
    font-size: 15px;
    font-weight: 700;
    transition: color .2s ease, gap .2s ease;
}

.action-news-feature a:hover,
.action-news-list a:hover strong {
    color: var(--blue);
    gap: 18px;
}

.action-news-list {
    display: grid;
    gap: 14px;
}

.action-news-list a {
    display: grid;
    grid-template-columns: 236px minmax(0, 1fr);
    min-height: 180px;
    height: auto;
    align-items: stretch;
    color: inherit;
}

.action-news-list img {
    display: block;
    width: 236px;
    max-width: none;
    height: 100%;
    min-height: 180px;
    aspect-ratio: auto;
    object-fit: cover;
    align-self: stretch;
    filter: saturate(.86) contrast(.96);
}

.action-news-list div {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.action-news-list span {
    display: -webkit-box;
    margin-top: 8px;
    color: #101828;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.38;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.action-news-list p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.partners-page {
    background: #e5e5e5;
}

.partners-main {
    --partner-card-w: 260px;
    --partner-card-h: 150px;
    --partner-logo-h: 110px;
    background: #e5e5e5;
    min-height: calc(100vh - var(--header-h));

}

.partners-hero {
    position: relative;
    width: 100%;
    margin-bottom: 54px;
    overflow: hidden;
    background: #052b72;
    color: #fff;
}

.partners-hero img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.partners-hero::after {}

.partners-hero-text {
    position: absolute;
    z-index: 1;
    left: 8.5vw;
    top: 50%;
    transform: translateY(-50%);

}

.partners-hero-text h1 {
    font-size: clamp(18px, 2vw, 32px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 4px;
}

.partners-hero-text p {
    margin: 22px 0 0;
    color: rgb(255 255 255 / 84%);
    font-size: clamp(14px, 1.3vw, 22px);
    line-height: 1.7;
    letter-spacing: 3px;

}

.partners-hero-text span {
    display: block;
    width: 76px;
    height: 4px;
    margin-top: 26px;
    background: var(--cyan);
}

.about-partners-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #052b72;
    color: #fff;
}

.about-partners-hero img {
    width: 100%;
    height: 100%;
    display: block;

}

.about-partners-hero::after {}

.about-partners-hero-text {
    position: absolute;
    z-index: 1;
    left: 8.5vw;
    top: 50%;
    transform: translateY(-50%);

}

.about-partners-hero-text h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(18px, 2vw, 32px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 4px;
}

.about-partners-hero-text p {
    margin: 22px 0 0;
    color: rgb(255 255 255 / 84%);
    font-size: clamp(14px, 1.3vw, 22px);
    line-height: 1.7;
    letter-spacing: 3px;
}

.about-partners-hero-text span {
    display: block;
    width: 76px;
    height: 4px;
    margin-top: 26px;
    background: var(--cyan);
}

.partner-group {
    width: min(1060px, calc(100% - 42px));
    margin: 0 auto 42px;
    padding: 0 0 34px;
    display: grid;
    grid-template-columns: 216px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
    border-bottom: 1px solid #d2d2d2;
}

.partner-group:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.partner-type {
    padding-top: 108px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.partner-type img {
    width: 112px;
    height: auto;
}

.partner-type-name {
    color: #1f3763;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    word-break: break-word;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.partner-logos a {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: var(--partner-card-h);
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 18px rgb(0 0 0 / 12%);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.partner-logos a:hover,
.partner-logos a:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgb(0 0 0 / 12%);
}

.partner-logos img {
    width: 100%;
    height: var(--partner-logo-h);
    padding: 18px 20px;
    object-fit: contain;
    background: #fff;
}

.partner-logo-name {
    display: flex;
    flex: 1 0 auto;
    align-items: center;
    justify-content: center;
    min-height: calc(var(--partner-card-h) - var(--partner-logo-h));
    padding: 0 12px;
    background: var(--blue);
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    word-break: break-word;
}

.float-contact {
    position: fixed;
    right: 24px;
    top: 62%;
    z-index: 4000;
    width: 56px;
    transform: translateY(-50%);
}

.float-contact a {
    display: grid;
    place-items: center;
    height: 56px;
    margin-bottom: 2px;
    background: var(--cyan);
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.contact-page main {
    overflow: hidden;
    background: #fff;
}

.contact-page {
    overflow-x: hidden;
}

.contact-page .float-contact {
    
}

.contact-map-section {
    position: relative;
    padding: 0px 0px;
    background-color: #fff;
}

.contact-page .contact-map-section.motion-fade {
    opacity: 1;
    transform: none;
    transition: none;
}

.contact-map-inner {
    width: 100%
    margin: 0 auto;
}

.contact-section-heading {
    max-width: 620px;
    margin: 0 auto clamp(36px, 3.5vw, 58px);
    text-align: center;
}

.contact-section-heading p,
.contact-section-heading h2,
.contact-section-heading span {
    margin: 0;
}

.contact-section-heading p {
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-section-heading h2 {
    margin-top: 10px;
    color: #14213d;
    font-size: clamp(30px, 2.35vw, 40px);
    line-height: 1.25;
}

.contact-section-heading span {
    display: block;
    margin-top: 14px;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}

.contact-map-primary {
    display: grid;
    grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
    align-items: stretch;
}

.contact-info-panel {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: clamp(34px, 3.4vw, 54px);
    background: #efefef;

}

.contact-info-panel .contact-headquarters {
    width: 100%;
}

.contact-map-visual {
    min-height: clamp(360px, 31vw, 520px);
    background-color: #dce6f4;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}

.contact-office {
    color: #111;
    overflow-wrap: anywhere;
}

.contact-office:not(:last-child) {
    margin-bottom: clamp(30px, 3.1vw, 44px);
    padding-bottom: clamp(28px, 3vw, 42px);
    border-bottom: 1px solid #9b9b9b;
}

.contact-office h2,
.contact-office h3,
.contact-office p {
    margin: 0;
}

.contact-office h2 {
    color: var(--blue);
    font-size: clamp(17px, 1.05vw, 21px);
    font-weight: 800;
    line-height: 1.45;
}

.contact-office2 h2 {
    color: var(--blue);
    font-size: clamp(22px, 2vw, 34px);
    font-weight: 800;
    line-height: 1.45;
    margin: 40px 0px;
    padding-top: 20px ;
}

.contact-office h3 {
    margin-top: 16px;
    font-size: clamp(20px, 1.2vw, 24px);
    font-weight: 800;
    line-height: 1.35;
}

.contact-office p {
    margin-top: 10px;
    font-size: clamp(16px, 1vw, 18px);
    line-height: 1.55;
}

.contact-office .pin+h2 {
    margin-top: 16px;
}

.contact-office h2+p {
    margin-top: 26px;
}

.contact-office strong {
    font-weight: 600;
}

.contact-branch-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

}

.contact-branch-grid .contact-office {
    position: relative;
    min-height: 100%;
    padding: clamp(28px, 3vw, 62px);
    background: #fff;
}

.contact-branch-grid .contact-office + .contact-office::before {
    content: "";
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 0;
    width: 1px;
    background: #c9cdd4;
}

.contact-branch-grid .contact-office:not(:last-child) {
    margin-bottom: 0;
    padding-bottom: clamp(28px, 2.8vw, 42px);
    border-bottom: 0;
}

.pin {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    margin-left: 4px;
    background: #f31810;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.pin-main {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    margin-left: 4px;
    background: #f31810;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.pin::after {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: 50%;
    background: #fff;
}

.contact-form-section {
    padding: 20px 80px 80px!important;
    background: #efefef;
}

.contact-form-inner {
    width: min(100%, 1200px);
    margin: 0 auto;

}

.contact-form-heading {
    text-align: center;
}

.contact-form-heading p,
.contact-form-heading h2,
.contact-form-heading span {
    margin: 0;
}
.contact-form-title{
        position: absolute;
    z-index: 38;
        padding-left: 5%;
        
}

.contact-form-title span{
        color: var(--blue);
}

.contact-form-heading p {
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-form-heading h2 {
    margin-top: 10px;
    color: #14213d;
    font-size: 34px;
    line-height: 1.25;
}

.contact-form-heading span {
    display: block;
    margin-top: 14px;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}

.contact-form-layout {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    align-items: stretch;
    margin-top: 42px;
    padding: 0px 20px;
    
}

.contact-product-collection {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.contact-product-collection > img {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.contact-product-image {
    position: absolute;
    display: block;
    max-width: none;
    box-sizing: border-box;
    object-fit: contain;
    padding: 10px;
    background: #fff;
    filter: drop-shadow(0 16px 28px rgb(0 0 0 / 24%));
}

.contact-product-image-1 {
    bottom: 6%;
    left: 6%;
    width: 72%;
    height: auto;
    z-index: 2;
}

.contact-product-image-2 {
    width: 58%;
    bottom: 24%;
    left: 6%;
    z-index: 3;
}

.contact-product-image-3 {
    width: 32%;
    left: 8%;
    bottom: 45%;
    z-index: 4;
}

.contact-product-image-4 {
    bottom: 8%;
    left: 34%;
    width: 30%;
    z-index: 4;
}

.contact-product-image-5 {
    bottom: 30%;
    left: 38%;
    width: 30%;
    z-index: 4;
}

.contact-form {
    margin-top: 42px;
    padding: 42px 46px 46px;
}

.contact-form-layout .contact-form {
    margin-top: 0;
}

.contact-form-alert {
    margin-bottom: 22px;
    padding: 13px 16px;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.5;
    background: #f4f7fb;
    border: 1px solid #dce5f2;
}

.contact-form-alert[data-type="success"] {
    color: #0f6b3e;
    background: #ecfdf3;
    border-color: #b7ebcc;
}

.contact-form-alert[data-type="error"] {
    color: #b42318;
    background: #fff3f1;
    border-color: #ffd1cc;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 30px;
}

.contact-form label>span {
    display: block;
    margin-bottom: 10px;
    color: #24324a;
    font-size: 15px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d7deea;
    outline: 0;
    padding: 12px 14px;
    color: #1b2638;
    font: inherit;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input {
    height: 48px;
}

.contact-form textarea {
    display: block;
    min-height: 146px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgb(0 32 161 / 10%);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a0a9b8;
}

.contact-form-message {
    display: block;
    margin-top: 24px;
}

.contact-form-actions {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
}

.contact-captcha {
    width: min(100%, 370px);
}

.contact-captcha div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 12px;
}

.contact-captcha img {
    width: 112px;
    height: 48px;
    border: 1px solid #d7deea;
    object-fit: cover;
    cursor: pointer;
}

.contact-form button {
    min-width: 142px;
    height: 48px;
    border: 0;
    background: var(--blue);
    color: #fff;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
    background: #001875;
}

.contact-form button:disabled {
    cursor: wait;
    background: #7d8cc2;
}

.site-footer {
    background: #041f55;
    color: #fff;
}

.footer-inner {
    position: relative;
    max-width: 1540px;
    min-height: 330px;
    margin: 0 auto;
    padding: 72px 20px 45px;
}

.footer-logo {
    width: 250px;
    filter: brightness(0) invert(1);
}

.footer-inner nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 42px;
    padding-top: 30px;
    border-top: 1px solid rgb(255 255 255 / 28%);
}

.footer-inner nav a {
    padding: 0 32px;
    border-left: 1px solid rgb(255 255 255 / 55%);
    color: rgb(255 255 255 / 88%);
    font-size: 14px;
}

.footer-inner nav a:first-child {
    padding-left: 0;
    border-left: 0;
}

.footer-copy {
    margin-top: 35px;
    color: rgb(255 255 255 / 85%);
    font-size: 13px;
}

.qr {
    position: absolute;
    right: 20px;
    top: 176px;
    width: 118px;
    height: 118px;
    background: #fff;
}

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

@media (min-width: 1024px) {
    .index4-page {
        --index4-screen-h: calc(100vh - var(--header-h));
        scroll-padding-top: var(--header-h);
    }

    .index4-page .action-hero,
    .index4-page .action-company,
    .index4-page .index4-product-screen,
    .index4-page .action-solutions {
        min-height: var(--index4-screen-h);
        height: var(--index4-screen-h);
    }

    .index4-page .action-hero {
        max-height: none;
    }

    .index4-page .action-company {
        grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
        align-items: center;
        gap: clamp(28px, 4vw, 64px);
        padding-top: clamp(28px, 5vh, 56px);
        padding-bottom: clamp(28px, 5vh, 56px);
    }

    .index4-page .action-company-media {
        min-height: 0;
        height: 100%;
    }

    .index4-page .action-company-copy h2 {
        font-size: clamp(22px, 2.1vw, 28px);
        line-height: 1.18;
    }

    .index4-page .action-company-lead {
        margin-top: clamp(12px, 1.5vh, 18px);
        font-size: clamp(14px, 1.35vw, 17px);
        line-height: 1.55;
    }

    .index4-page .action-company-points {
        margin-top: clamp(16px, 2.5vh, 28px);
        gap: clamp(8px, 1.3vh, 12px);
    }

    .index4-page .action-company-points article {
        padding: clamp(14px, 1.8vh, 20px) clamp(18px, 2vw, 24px) clamp(14px, 1.8vh, 20px) clamp(64px, 6vw, 84px);
    }

    .index4-page .action-company-points span {
        top: clamp(16px, 2vh, 22px);
        font-size: clamp(26px, 3vw, 34px);
    }

    .index4-page .action-company-points h3 {
        font-size: clamp(18px, 1.8vw, 21px);
    }

    .index4-page .action-company-points p {
        font-size: clamp(13px, 1.2vw, 15px);
        line-height: 1.48;
    }

    .index4-page .index4-product-content {
        min-height: 0;
        height: 100%;
        padding: clamp(36px, 6vw, 92px);
    }

    .index4-page .index4-product-content h2 {
        font-size: clamp(30px, 3vw, 50px);
    }

    .index4-page .index4-product-content>span {
        margin-top: clamp(16px, 2.3vh, 26px);
        font-size: clamp(14px, 1.35vw, 17px);
        line-height: 1.72;
    }

    .index4-page .index4-product-content ul {
        margin-top: clamp(20px, 3vh, 34px);
        gap: clamp(10px, 1.5vh, 14px) clamp(16px, 2vw, 22px);
    }

    .index4-page .index4-product-content li a {
        font-size: clamp(13px, 1.2vw, 15px);
    }

    .index4-page .index4-product-link {
        margin-top: clamp(24px, 4vh, 42px);
    }

    .index4-page .action-solutions {
        display: flex;
        flex-direction: column;
        padding-top: clamp(28px, 4.5vh, 58px);
        padding-bottom: clamp(28px, 4.5vh, 58px);
    }

    .index4-page .action-solution-inner {
        flex: 1;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .index4-page .action-solution-inner .action-section-title {
        margin-bottom: clamp(22px, 3vh, 36px);
    }

    .index4-page .action-solution-grid {
        flex: 1;
        min-height: 0;
        grid-template-rows: repeat(2, minmax(0, 1fr));
        gap: clamp(12px, 1.7vw, 18px);
    }

    .index4-page .action-solution-grid a {
        padding: clamp(20px, 2.5vw, 28px);
    }

    .index4-page .action-solution-grid a:first-child {
        padding: clamp(28px, 3.8vw, 44px);
    }

    .index5-page {
        --index4-screen-h: calc(100vh - var(--header-h));
        scroll-padding-top: var(--header-h);
    }

    .index5-page .action-hero,
    .index5-page .action-company,
    .index5-page .index5-product-screen,
    .index5-page .action-solutions {
        min-height: var(--index4-screen-h);
        height: var(--index4-screen-h);
    }

    .index5-page .action-hero {
        max-height: none;
    }

    .index5-page .action-company {
        grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
        align-items: center;
        gap: clamp(28px, 4vw, 64px);
        padding-top: clamp(28px, 5vh, 56px);
        padding-bottom: clamp(28px, 5vh, 56px);
    }

    .index5-page .action-company-media {
        min-height: 0;
        height: 100%;
    }

    .index5-page .action-company-copy h2 {
        font-size: clamp(22px, 2.1vw, 28px);
        line-height: 1.18;
    }

    .index5-page .action-company-lead {
        margin-top: clamp(12px, 1.5vh, 18px);
        font-size: clamp(14px, 1.35vw, 17px);
        line-height: 1.55;
    }

    .index5-page .action-company-points {
        margin-top: clamp(16px, 2.5vh, 28px);
        gap: clamp(8px, 1.3vh, 12px);
    }

    .index5-page .action-company-points article {
        padding: clamp(14px, 1.8vh, 20px) clamp(18px, 2vw, 24px) clamp(14px, 1.8vh, 20px) clamp(64px, 6vw, 84px);
    }

    .index5-page .action-company-points span {
        top: clamp(16px, 2vh, 22px);
        font-size: clamp(26px, 3vw, 34px);
    }

    .index5-page .action-company-points h3 {
        font-size: clamp(18px, 1.8vw, 21px);
    }

    .index5-page .action-company-points p {
        font-size: clamp(13px, 1.2vw, 15px);
        line-height: 1.48;
    }

    .index5-page .index5-product-content {
        min-height: 0;
        height: 100%;
        padding: clamp(28px, 4vw, 64px);
    }

    .index5-page .index5-product-content ul {
        gap: clamp(10px, 1.4vw, 14px);
    }

    .index5-page .action-solutions {
        display: flex;
        flex-direction: column;
        padding-top: clamp(28px, 4.5vh, 58px);
        padding-bottom: clamp(28px, 4.5vh, 58px);
    }

    .index5-page .action-solution-inner {
        flex: 1;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .index5-page .action-solution-inner .action-section-title {
        margin-bottom: clamp(22px, 3vh, 36px);
    }

    .index5-page .action-solution-grid {
        flex: 1;
        min-height: 0;
        grid-template-rows: repeat(2, minmax(0, 1fr));
        gap: clamp(12px, 1.7vw, 18px);
    }

    .index5-page .action-solution-grid a {
        padding: clamp(20px, 2.5vw, 28px);
    }

    .index5-page .action-solution-grid a:first-child {
        padding: clamp(28px, 3.8vw, 44px);
    }
}

@media (min-width: 1024px) and (max-width: 1500px) {
    .header-inner {
        gap: 24px;
    }

    .brand {
        flex-basis: 280px;
    }

    .brand img {
        width: 270px;
    }

    .main-nav {
        gap: clamp(16px, 1.8vw, 36px);
        margin-left: clamp(16px, 1.7vw, 28px);
    }

    .header-tools {
        flex-basis: auto;
    }
}

@media (min-width: 1024px) and (max-width: 1450px) {
    .header-inner {
        gap: 18px;
    }

    .brand {
        flex-basis: 245px;
    }

    .brand img {
        width: 235px;
    }

    .main-nav {
        gap: clamp(13px, 1.35vw, 22px);
        margin-left: clamp(14px, 1.4vw, 22px);
    }

    .nav-link {
        font-size: 16px;
    }

    .header-tools {
        flex: 0 0 auto;
        gap: 12px;
    }

    .search-box {
        width: 36px;
        border: 0;
    }

    .search-box input {
        display: none;
    }

    .search-box button {
        width: 36px;
        background: transparent;
    }

    .search-box svg {
        width: 25px;
        height: 25px;
        stroke: var(--blue);
    }

    .tool-link {
        font-size: 15px;
    }
}

@media (min-width: 1024px) and (max-width: 1360px) {
    :root {
        --header-h: 90px;
    }

    .header-inner {
        gap: 22px;
    }

    .brand {
        flex-basis: 250px;
    }

    .brand img {
        width: 240px;
    }

    .main-nav {
        gap: 20px;
        margin-left: 14px;
    }

    .nav-link {
        font-size: 16px;
    }

    .header-tools {
        flex-basis: auto;
    }

    .search-box {
        width: 42px;
    }

    .mega-products,
    .mega-solutions {
        gap: 34px;
    }
}

@media (min-width: 1024px) and (max-width: 1360px) {
    .brand {
        flex-basis: 230px;
    }

    .brand img {
        width: 220px;
    }

    .main-nav {
        gap: clamp(10px, 1.25vw, 17px);
        margin-left: 12px;
    }

    .nav-link {
        font-size: 16px;
    }

    .header-tools {
        flex: 0 0 auto;
        gap: 10px;
    }

    .search-box {
        width: 36px;
        border: 0;
    }

    .search-box input {
        display: none;
    }

    .search-box button {
        width: 36px;
        background: transparent;
    }

    .search-box svg {
        width: 25px;
        height: 25px;
        stroke: var(--blue);
    }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .action-company-copy h2 {
        white-space: normal;
        overflow-wrap: anywhere;
    }
}

@media (min-width: 1024px) and (max-width: 1100px) {
    .action-news-layout {
        grid-template-columns: 1fr;
    }
}


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

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

    .motion-fade,
    .reveal-up,
    .reveal-card,
    .reveal-up .action-section-title p,
    .reveal-up .action-section-title h2,
    .reveal-up .action-section-title span,
    .reveal-up .action-company-kicker,
    .reveal-up .action-company-copy h2,
    .reveal-up .action-company-lead,
    .index4-page main .action-company-badge,
    .index4-page main .action-company-points article,
    .index4-page main .index4-product-content p,
    .index4-page main .index4-product-content h2,
    .index4-page main .index4-product-content>span,
    .index4-page main .index4-product-content li,
    .index4-page main .index4-product-link,
    .index4-page main .action-solution-grid a,
    .index4-page main .action-cta-copy p,
    .index4-page main .action-cta-copy h2,
    .index4-page main .action-cta-copy>span,
    .index4-page main .action-cta-links a,
    .index4-page main .action-news-feature img,
    .index4-page main .action-news-feature p,
    .index4-page main .action-news-feature h3,
    .index4-page main .action-news-feature>div>span,
    .index4-page main .action-news-feature>div>a,
    .index4-page main .action-news-list a {
        opacity: 1;
        transform: none;
    }

    .index4-page main .action-hero-cta {
        opacity: 1;
        transform: translateX(-50%);
    }
}

/* Product category pages */
.product-page {
    background: #f6f6f6;
}

.product-page main {
    overflow: hidden;
}

.category-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #052b72;
    color: #fff;
}

.category-hero picture,
.category-hero img {
    display: block;
    width: 100%;
    height: 100%;
}

.category-hero img {
    object-fit: cover;
    animation: none;
    transform: none;
}

.category-hero.motion-fade,
.category-hero.motion-fade.in-view {
    opacity: 1;
    transform: none;
    transition: none;
}

.category-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}

.category-hero-text {
    position: absolute;
    z-index: 1;
    left: 8.5vw;
    top: 50%;
    transform: translateY(-50%);
    max-width: max(620px, 30vw, 620px);
    letter-spacing: clamp(1px, 1vw, 3px);

}

.category-hero-text h1 {
    margin: 0;
    font-size: clamp(16px, 2vw, 26px);
    font-weight: 500;
    line-height: clamp(22px, 2.4vw, 36px);
    border: 1px solid #f7f7f7;
    padding: 0px clamp(10px, 1vw, 16px);
    border-radius: 4px;
    display: inline-block;
    color: #f7f7f7;
}

.category-hero-text:lang(en) {
    position: absolute;
    z-index: 1;
    left: 8.5vw;
    top: 50%;
    transform: translateY(-50%);
    max-width: max(420px, 30vw, 420px);
    letter-spacing: clamp(1px, 1vw, 3px);

}

.category-hero-text h1:lang(en) {
    margin: 0;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 500;
    line-height: clamp(22px, 2.4vw, 36px);
    border: 1px solid #f7f7f7;
    padding: 0px clamp(10px, 1vw, 16px);
    border-radius: 4px;
    display: inline-block;
    color: #f7f7f7;
}

.category-hero-text p {
    margin: clamp(8px, 1.3vw, 18px) 0 0;
    color: #fff;
    font-size: clamp(18px, 1.8vw, 32px);
    line-height: 1.7;
    font-weight: 600;

}

.category-hero-text p:lang(en) {
    margin: clamp(8px, 1.3vw, 18px) 0 0;
    color: #fff;
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.7;
    font-weight: 600;

}

.category-hero-text .ctitle {
    margin: 0;
    font-size: clamp(22px, 2vw, 36px);
    font-weight: 600;
    line-height: clamp(20px, 2.4vw, 36px);

    margin-top: -50px;
    border-radius: 6px;
    display: inline-block;
}

.category-hero-text .cdesc {
    margin: clamp(8px, 1.3vw, 18px) 0 0;
    color: #f7f7f7;
    font-size: clamp(12px, 1.8vw, 25px);
    line-height: 1.7;
    font-weight: 500;

}

.category-hero-text br {

    height: 0px;
    /* 你想要的高度 */
    content: "";
    display: contents;
}

.cdesc br {

    height: 0px;
    /* 你想要的高度 */
    content: "";
    display: block;
}

.category-hero-text li {
    margin-left: 20px;
    margin-top: clamp(5px, 1.3vw, 10px);
    font-size: clamp(12px, 1.1vw, 20px);

    list-style-type: circle;
    text-decoration: underline;
    text-underline-offset: 6px;
    color: #f7f7f7;
    font-weight: 300;
    line-height: 1.5;
}

.category-hero-text span {
    display: block;
    width: 76px;
    height: 4px;
    margin-top: 26px;
    background: var(--cyan);
}

.category-main {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 76px 28px 98px;
}

.category-title {
    margin: 0;
    color: #1f1f1f;
    font-size: 23px;
    font-weight: 500;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 30px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.category-tabs a {
    padding: 1px 13px;
    border: 1px solid transparent;
    border-radius: 3px;
    transition: color .2s ease, border-color .2s ease, font-weight .2s ease;
    background: #efefef;
}

.category-tabs a:hover,
.category-tabs a:focus-visible {
    border: 1px solid var(--blue);
    color: #fff;
    background: var(--blue);
    
}

.category-tabs a.active {
    border: 1px solid var(--blue);
    color: #fff;
    background: var(--blue);
    
}

.product-card[hidden],
.category-empty[hidden] {
    display: none !important;
}

.category-empty {
    margin: 34px 0 0;
    padding: 46px 20px;
    border: 1px solid #e6edf5;
    border-radius: 8px;
    background: #f7f9fb;
    color: #6b7280;
    font-size: 15px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 330px;
    gap: 16px;
    margin-top: 40px;
}

.product-card {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 26px 30px;
    background: #fff;
    box-shadow: 0 5px 15px rgb(0 0 0 / 3%);
    color: inherit;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover,
.product-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgb(0 32 161 / 10%);
}

.product-card:focus-visible {
    outline: 2px solid rgb(0 32 161 / 36%);
    outline-offset: 4px;
}

.product-card.featured {
    grid-column: span 2;
}

.product-tag {
    display: inline-block;
    max-width: 100%;
    padding: 4px 14px 5px;
    border: 1px solid var(--blue);
    border-radius: 3px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
}

.product-card h2 {
    position: relative;
    z-index: 1;
    margin: 17px 0 0;
    color: #111;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.25;
}

.product-card p {
    position: relative;
    z-index: 1;
    width: 43%;
    margin: 20px 0 0;
    color: #666;
    font-size: 14px;
    line-height: 1.9;
        display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card img {
    position: absolute;
    right: 7%;
    bottom: 72px;
    width: 33%;
    max-height: 165px;
    object-fit: contain;
}

.product-card:not(.featured) img {
    right: 8%;
    bottom: 62px;
    width: 84%;
    max-height: 150px;
}

.product-more {
    position: absolute;
    right: 27px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 13px;
    line-height: 1;
    transition: color .2s ease;
}

.product-more::before {
    content: "+";
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 17px;
    line-height: 1;
}

.product-more:hover,
.product-more:focus-visible {
    color: var(--blue);
}


.auth-page {
    background: #f7f9fc;
}

.auth-main {
    min-height: calc(100vh - var(--header-h));
    display: grid;
    place-items: start center;
    padding: clamp(38px, 5vw, 72px) 20px;
    background:
        radial-gradient(circle at 12% 78%, rgb(0 77 170 / 5%), transparent 28%),
        linear-gradient(165deg, transparent 58%, rgb(0 77 170 / 4%) 58%, transparent 64%),
        repeating-radial-gradient(ellipse at 3% 100%, rgb(0 77 170 / 7%) 0 1px, transparent 1px 12px),
        #f7f9fc;
}

.auth-panel {
    position: relative;
    width: min(100%, 540px);
    padding: 42px clamp(24px, 4vw, 44px) 36px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 18px 50px rgb(20 33 61 / 12%);
    overflow: hidden;
}

.register-panel {
    width: min(100%, 632px);
}

.auth-panel::after {
    content: "";
    position: absolute;
    left: -8%;
    right: -8%;
    bottom: -56px;
    height: 170px;
    background:
        repeating-radial-gradient(ellipse at 10% 100%, rgb(13 40 88 / 6%) 0 1px, transparent 1px 10px),
        repeating-radial-gradient(ellipse at 90% 100%, rgb(13 40 88 / 6%) 0 1px, transparent 1px 12px);
    pointer-events: none;
}

.auth-title-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.auth-title-row h1 {
    margin: 0;
    color: #020617;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
}

.auth-title-row p {
    margin: 0;
    color: #111827;
    font-size: 14px;
}

.auth-title-row a {
    color: var(--blue);
}

.auth-form {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.auth-form label {
    display: block;
    position: relative;
}

.auth-form label span {
    display: none;
}

.auth-form input {
    width: 100%;
    height: 54px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 0 20px;
    color: #111827;
    font-size: 15px;
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.auth-form input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgb(0 77 170 / 10%);
}

.auth-form button {
    height: 58px;
    margin-top: 2px;
    border: 0;
    border-radius: 4px;
    background: var(--blue);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.auth-form button:hover,
.auth-form button:focus-visible {
    background: #003b8f;
    transform: translateY(-1px);
}

.auth-form button:disabled {
    cursor: wait;
    opacity: .72;
    transform: none;
}

.auth-message {
    min-height: 20px;
    margin: 0;
    color: var(--blue);
    font-size: 14px;
    text-align: center;
}

.auth-message.is-error {
    color: #c2410c;
}

.resource-hero {
    min-height: 360px;
    display: flex;
    align-items: center;
    padding: clamp(72px, 8vw, 118px) clamp(20px, 8vw, 140px);
    background:
        linear-gradient(90deg, rgb(0 35 84 / 84%), rgb(0 77 170 / 58%)),
        url("/theme/zhunyuan/assets/hero-emc.jpg") center / cover;
    color: #fff;
}

.resource-hero>div {
    width: min(100%, 1180px);
}

.resource-hero p {
    margin: 0 0 14px;
    color: #8bd8ff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
}

.resource-hero h1 {
    margin: 0;
    font-size: clamp(38px, 4.4vw, 68px);
    line-height: 1.05;
}

.resource-hero span {
    display: block;
    margin-top: 22px;
    max-width: 620px;
    color: rgb(255 255 255 / 82%);
    font-size: 18px;
    line-height: 1.8;
}

.resource-section {
    width: min(100% - 40px, 1320px);
    margin: 0 auto;
    padding: clamp(48px, 6vw, 86px) 0;
}

.resource-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.resource-toolbar h2 {
    margin: 0;
    color: #101828;
    font-size: clamp(28px, 2.4vw, 42px);
    line-height: 1.2;
}

.resource-toolbar p {
    margin: 0;
    color: #667085;
    font-size: 15px;
}

.resource-toolbar a {
    color: var(--blue);
    font-weight: 700;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.resource-card {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    padding: 28px;
    border: 1px solid #e5eaf2;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 36px rgb(17 24 39 / 6%);
}

.resource-card span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eef6ff;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
}

.resource-card h3 {
    margin: 0;
    color: #111827;
    font-size: 22px;
    line-height: 1.35;
}

.resource-card p {
    margin: 14px 0 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.75;
}

.resource-card dl {
    display: grid;
    gap: 8px;
    margin: 0;
}

.resource-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #475467;
    font-size: 14px;
}

.resource-card dt,
.resource-card dd {
    margin: 0;
}

.resource-card dd {
    color: #111827;
    font-weight: 700;
}

.resource-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 4px;
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.resource-download-btn:hover,
.resource-download-btn:focus-visible {
    background: #003b8f;
}

.resource-download-btn.is-locked {
    background: #4b5563;
}

.resource-empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 56px 20px;
    border: 1px solid #e5eaf2;
    border-radius: 8px;
    color: #667085;
    text-align: center;
    background: #fff;
}

@media (min-width: 1024px) and (max-width: 1180px) {
    .resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


.site-header .search-icon-link {
    width: 42px;
    height: 36px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
}

.site-header .search-icon-link svg {
    width: 22px;
    height: 22px;
    stroke: var(--blue);
}

.site-header .search-icon-link:hover,
.site-header .search-icon-link:focus,
.site-header .search-icon-link:focus-visible {
    border: 0;
    background: transparent;
}

.site-header .search-icon-link input,
.site-header .search-icon-link button {
    display: none;
}

.site-header .header-tools {
    gap: 12px;
}

.site-header .header-tools>a {
    width: 42px;
    height: 36px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    box-sizing: border-box;
}

.site-header .header-tools>.search-icon-link {
    display: inline-flex;
}


.search-page {
    background: #f5f7fb;
}

.search-page main {
    min-height: calc(100vh - var(--header-h));
}

.search-page-inner {
    width: min(100% - 40px, 1080px);
    margin: 0 auto;
    padding: clamp(54px, 7vw, 96px) 0 clamp(74px, 8vw, 128px);
}

.search-page-inner>p {
    margin: 0 0 10px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
}

.search-page-inner h1 {
    margin: 0 0 28px;
    color: #111827;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.15;
}

.search-page-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px 128px;
    gap: 12px;
    padding: 14px;
    border: 1px solid #d9e2ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 36px rgb(17 24 39 / 6%);
}

.search-page-form input,
.search-page-form select {
    width: 100%;
    height: 48px;
    border: 1px solid #d8e0eb;
    border-radius: 4px;
    padding: 0 14px;
    color: #111827;
    font-size: 15px;
    outline: 0;
}

.search-page-form input:focus,
.search-page-form select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgb(0 77 170 / 10%);
}

.search-page-form button {
    height: 48px;
    border: 0;
    border-radius: 4px;
    background: var(--blue);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.search-page-empty,
.search-summary {
    margin-top: 28px;
    padding: 26px;
    border: 1px solid #d9e2ef;
    border-radius: 8px;
    background: #fff;
    color: #667085;
    font-size: 15px;
}

.search-summary strong {
    color: var(--blue);
}

.search-results {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.search-result-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 24px;
    padding: 22px;
    border: 1px solid #d9e2ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgb(17 24 39 / 5%);
}

.search-result-card.no-image {
    grid-template-columns: 1fr;
}

.search-result-image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 6px;
    background: #eef2f7;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.search-result-type {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #eef6ff;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
}

.search-result-body h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(20px, 1.8vw, 28px);
    line-height: 1.35;
}

.search-result-body h2 a:hover,
.search-result-body h2 a:focus-visible {
    color: var(--blue);
}

.search-result-body p {
    margin: 12px 0 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-result-more {
    display: inline-flex;
    margin-top: 14px;
    color: var(--blue);
    font-size: 15px;
    font-weight: 700;
}


.index6-page {
    background: #f6f8fb;
}

.index6-page main {
    overflow: hidden;
}

.index6-page .index5-product-screen {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    background: #fff;
}

.index6-page .index6-product-media {
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #08111f;
}

.index6-page .index6-product-media::after {
    background:
        linear-gradient(180deg, rgb(4 10 24 / 8%) 0%, rgb(4 10 24 / 18%) 100%),
        linear-gradient(90deg, rgb(0 32 161 / 28%), rgb(0 12 38 / 8%) 62%);
}

.index6-page .index6-product-media .index5-product-image img {
    transform: scale(1.01);
    object-position: center;
}

.index6-page .index5-product-summary {
    display: none;
}

.index6-page .index6-product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: clamp(36px, 4.8vw, 82px);
    background:
        radial-gradient(circle at top left, rgb(41 216 255 / 8%), transparent 34%),
        #fff;
}

.index6-page .index6-copy {
    max-width: 760px;
}

.index6-page .index6-kicker {
    margin: 0 0 16px;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
}

.index6-page .index6-product-content h1 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(34px, 4vw, 66px);
    font-weight: 700;
    line-height: 1.08;
}

.index6-page .index6-copy>span {
    display: block;
    margin-top: 20px;
    color: #475467;
    font-size: clamp(16px, 1.35vw, 20px);
    line-height: 1.8;
}

.index6-page .index6-divider {
    width: min(240px, 100%);
    height: 2px;
    margin-top: 28px;
    background: linear-gradient(90deg, rgb(41 216 255 / 95%) 0%, rgb(0 32 161 / 18%) 100%);
}

.index6-page .index6-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.index6-page .index6-list-label {
    margin: 0;
    color: #667085;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.index6-page .index6-product-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.index6-page .index6-product-list li {
    min-width: 0;
}

.index6-page .index6-product-list a {
    height: 100%;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 14px;
    border: 1px solid #e6edf5;
    border-radius: 14px;
    background: #f8fbff;
    box-shadow: 0 12px 28px rgb(0 32 161 / 6%);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.index6-page .index6-product-list a:hover {
    transform: translateY(-3px);
    border-color: rgb(41 216 255 / 70%);
    box-shadow: 0 18px 34px rgb(0 32 161 / 10%);
}

.index6-page .index6-product-list img {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    object-fit: cover;
    background: #eef4fb;
}

.index6-page .index6-product-list span {
    color: #1d2939;
    font-size: clamp(16px, 1.15vw, 19px);
    font-weight: 600;
    line-height: 1.35;
}


.index7-page .index5-product-screen {
    background: #fff;
}

.index7-page .index5-product-media {
    align-items: stretch;
    padding: 0;
    background: #071426;
}

.index7-page .index5-product-screen.is-reverse .index5-product-media {
    order: 2;
}

.index7-page .index5-product-media::after {
    display: none;
}

.index7-page .index5-product-image img {
    transform: scale(1);
    filter: none;
}

.index7-page .index5-product-media:hover .index5-product-image img {
    transform: scale(1.035);
    filter: saturate(1.05);
}

.index7-page .index5-product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 76px;
    padding: 72px 64px;
    background: #fff;
}

.index7-page .index5-product-summary {
    width: min(100%, 620px);
    margin: 0 auto;
    color: #111827;
}

.index7-page .index5-product-summary p {
    margin: 0 0 18px;
    color: rgb(123 138 151 / 20%);
    font-size: 70px;
    font-weight: 700;
    letter-spacing: .12em;
}

.index7-page .index5-product-summary h2 {
    margin: 0;
    color: #05070a;
    font-size: 50px;
    font-weight: 500;
    line-height: 1.22;
}

.index7-page .index5-product-summary span {
    display: block;
    max-width: 560px;
    margin-top: 24px;
    color: #111827;
    font-size: 18px;
    line-height: 1.9;
}

.index7-page .index5-product-summary::after {
    content: "";
    display: block;
    width: 246px;
    height: 1px;
    margin-top: 38px;
    background:
        linear-gradient(90deg, transparent 0 5%, #cfdbd7 5% 95%, transparent 95%),
        linear-gradient(90deg, transparent, transparent);
}

.index7-page .index7-product-carousel {
    width: min(100%, 620px);
    margin: 0 auto;
    position: relative;
}

.index7-page .index7-product-controls {
    position: absolute;
    right: 84px;
    top: -48px;
    display: flex;
    gap: 8px;
}

.index7-page .index7-product-arrow {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid #d7e2ea;
    border-radius: 50%;
    background: #fff;
    color: #172033;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.index7-page .index7-product-arrow:hover {
    border-color: var(--cyan);
    color: var(--blue);
    transform: translateY(-1px);
}

.index7-page .index5-product-list {
    --index7-card-w: 110px;
    --index7-card-gap: 8px;
    width: min(100%, calc((var(--index7-card-w) * 4) + (var(--index7-card-gap) * 3)));
    height: auto;
    margin: 0;
    display: flex;
    grid-template-rows: none;
    grid-template-columns: none;
    gap: var(--index7-card-gap);
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.index7-page .index5-product-list::-webkit-scrollbar {
    display: none;
}

.index7-page .index5-product-list li {
    flex: 0 0 var(--index7-card-w);
    grid-column: auto;
    scroll-snap-align: start;
}

.index7-page .index5-product-content li a {
    min-height: 0;
    gap: 7px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.index7-page .index5-product-content li a:hover {
    transform: translateY(-2px);
    border-color: transparent;
    box-shadow: none;
}

.index7-page .index5-product-content li img {
    width: 100%;
    height: 62px;
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: 0;
    object-fit: cover;
}

.index7-page .index5-product-content li span {
    color: #111827;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .index7-page .index5-product-content {
        gap: 46px;
        padding: 54px 38px;
    }

    .index7-page .index5-product-summary h2 {
        font-size: 42px;
    }

    .index7-page .index5-product-summary span {
        font-size: 17px;
    }

    .index7-page .index5-product-list {
        --index7-card-w: 106px;
        --index7-card-gap: 8px;
    }

    .index7-page .index5-product-content li img {
        height: 60px;
    }
}


.index8-page .index5-product-screen {
    grid-template-columns: minmax(0, 7fr) minmax(360px, 3fr);
}

.index8-page .index5-product-screen.is-reverse .index5-product-media {
    order: 0;
}

.index8-page .index5-product-screen.is-reverse .index5-product-content {
    order: 1;
}

.index8-page .index5-product-content {
    gap: 16px;
    padding: 24px 34px;
}

.index8-page .index5-product-summary,
.index8-page .index7-product-carousel {
    width: 100%;
    max-width: 420px;
    margin: 0;
}

.index8-page .index5-product-summary p {
    margin-bottom: 8px;
    font-size: 30px;
    line-height: .95;
}

.index8-page .index5-product-summary h2 {
    font-size: 28px;
    line-height: 1.18;
}

.index8-page .index5-product-summary span {
    max-width: 100%;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.index8-page .index5-product-summary::after {
    width: 168px;
    margin-top: 14px;
}

.index8-page .index7-product-controls {
    display: none;
}

.index8-page .index5-product-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: visible;
    scroll-snap-type: none;
}

.index8-page .index5-product-list li {
    flex: 0 0 auto;
}

.index8-page .index5-product-content li a {
    grid-template-columns: 82px minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
    gap: 10px;
}

.index8-page .index5-product-content li img {
    width: 82px;
    height: 46px;
}

.index8-page .index5-product-content li span {
    font-size: 12px;
    line-height: 1.45;
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .index8-page .index5-product-screen {
        grid-template-columns: minmax(0, 7fr) minmax(330px, 3fr);
    }

    .index8-page .index5-product-content {
        gap: 16px;
        padding: 24px 24px;
    }

    .index8-page .index5-product-summary p {
        font-size: 26px;
    }

    .index8-page .index5-product-summary h2 {
        font-size: 25px;
    }

    .index8-page .index5-product-summary span {
        font-size: 14px;
    }
}


.index8-page main {
    counter-reset: index8-product;
}

.index8-page .index5-product-screen {
    counter-increment: index8-product;
    grid-template-columns: minmax(0, 68.5fr) minmax(430px, 31.5fr);
}

.index8-page .index5-product-screen.is-reverse {
    grid-template-columns: minmax(430px, 31.5fr) minmax(0, 68.5fr);
}

.index8-page .index5-product-screen.is-reverse .index5-product-content {
    order: 0;
}

.index8-page .index5-product-screen.is-reverse .index5-product-media {
    order: 1;
}

.index8-page .index5-product-media .index5-product-image img {
    transform: scale(1);
    transition: none;
}

.index8-page .index5-product-media:hover .index5-product-image img {
    transform: scale(1);
    filter: none;
}

.index8-page .index5-product-screen.index8-content-in .index5-product-media .index5-product-image img,
.index8-page .index5-product-screen.index8-content-in .index5-product-media:hover .index5-product-image img {
    transform: scale(1);
    filter: none;
}

.index8-page .index5-product-content {
    position: relative;
    justify-content: flex-start;
    gap: 34px;
    padding: clamp(58px, 7vh, 86px) clamp(48px, 3.6vw, 72px);
    overflow: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s;
}

.index8-page .index5-product-screen.index8-content-in .index5-product-content {
    opacity: 1;
    transform: translateX(0);
}

.index8-page .index5-product-content::before {
    display: none;
}

.index8-page .index5-product-content::after {
    display: none;
}

.index8-page .index5-product-summary,
.index8-page .index7-product-carousel {
    width: 100%;
    max-width: none;
    position: relative;
    z-index: 1;
}

.index8-page .index5-product-summary p {
    display: block;
    margin: 0 0 16px;
    color: rgb(123 138 151 / 20%);
    font-size: clamp(36px, 4.8vw, 20px);
    font-weight: 700;
    line-height: .95;
    letter-spacing: .12em;
}

.index8-page .index5-product-summary h2 {
    max-width: 360px;
    color: #111;
    font-size: clamp(34px, 2.25vw, 44px);
    font-weight: 700;
    line-height: 1.18;
}

.index8-page .index5-product-summary h2::after {
    content: "";
    display: block;
    width: 38px;
    height: 3px;
    margin-top: 28px;
    background: #0020a1;
}

.index8-page .index5-product-summary span {
    max-width: 410px;
    margin-top: 0;
    color: #2f3438;
    font-size: 17px;
    line-height: 1.85;
}

.index8-page .index5-product-summary::after {
    display: none;
}

.index8-page .index5-product-list {
    gap: 0;
    width: 100%;
}

.index8-page .index5-product-list li {
    border-bottom: 1px solid #e2e5e8;
}

.index8-page .index5-product-list li:nth-child(n+4) {
    display: none;
}

.index8-page .index5-product-content li a {
    min-height: 74px;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 0;
}

.index8-page .index5-product-content li img {
    display: block;
    width: 96px;
    height: 54px;
    object-fit: cover;
    opacity: .92;
}

.index8-page .index5-product-content li span {
    color: #15191d;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
}

.index8-page .index5-product-content li a::after {
    content: "+";
    color: #aeb4b9;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
}

.index8-page .index8-product-more {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #15191d;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
}

.index8-page .index8-product-more::before {
    content: "+";
    width: 20px;
    height: 20px;
    display: inline-grid;
    place-items: center;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

.index8-page .index8-product-more:hover {
    color: #0020a1;
}

.index8-page .index5-product-summary p,
.index8-page .index5-product-summary h2,
.index8-page .index5-product-summary span,
.index8-page .index7-product-carousel,
.index8-page .index8-product-more {
    opacity: 0;
    transform: translateX(42px);
    transition:
        opacity .62s ease,
        transform .72s cubic-bezier(.22, 1, .36, 1);
}

.index8-page .index5-product-screen.is-reverse .index5-product-summary p,
.index8-page .index5-product-screen.is-reverse .index5-product-summary h2,
.index8-page .index5-product-screen.is-reverse .index5-product-summary span,
.index8-page .index5-product-screen.is-reverse .index7-product-carousel,
.index8-page .index5-product-screen.is-reverse .index8-product-more {
    transform: translateX(-42px);
}

.index8-page .index5-product-screen.index8-content-in .index5-product-summary p,
.index8-page .index5-product-screen.index8-content-in .index5-product-summary h2,
.index8-page .index5-product-screen.index8-content-in .index5-product-summary span,
.index8-page .index5-product-screen.index8-content-in .index7-product-carousel,
.index8-page .index5-product-screen.index8-content-in .index8-product-more {
    opacity: 1;
    transform: translateX(0);
}

.index8-page .index5-product-screen.index8-content-in .index5-product-summary p {
    transition-delay: .04s;
}

.index8-page .index5-product-screen.index8-content-in .index5-product-summary h2 {
    transition-delay: .12s;
}

.index8-page .index5-product-screen.index8-content-in .index5-product-summary span {
    transition-delay: .2s;
}

.index8-page .index5-product-screen.index8-content-in .index7-product-carousel {
    transition-delay: .28s;
}

.index8-page .index5-product-screen.index8-content-in .index8-product-more {
    transition-delay: .5s;
}

.index9-page {
    overflow-x: hidden;
}

.index9-page .index9-category-main {
    --index9-bg: url("./assets/index4/product-01.jpg");
    position: relative;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    padding: 0;
    background: #fff;
    overflow: hidden;
    isolation: isolate;
}

.index9-page .index9-parallax-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.index9-page .index9-parallax-image {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-height: 100%;
    background: var(--index9-bg) center / cover no-repeat;
    will-change: transform;
    backface-visibility: hidden;
    contain: paint;
    transform: translate3d(-50%, 0, 0);
    transition: background-image .28s ease, filter .45s ease;
}

.index9-page .index9-category-inner {
    position: relative;
    z-index: 1;
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 76px 28px 58px;
}

.index9-page .index9-category-main::before {
    display: none;
}

.index9-page .index9-category-main::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 0;
    width: 100vw;
    background: #fff;
    opacity: .95;
    pointer-events: none;
    transform: translateX(-50%);
}

.index9-page .index9-category-main.is-bg-changing::before {
    display: none;
}

.index9-page .index9-category-main.is-bg-changing .index9-parallax-image {
    filter: saturate(1.08) brightness(1.04);
}

.index9-page .index9-category-head {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.index9-page .index9-category-tabs {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin: 24px auto 0;
    font-size: 18px;
}

.index9-page .index9-product-grid {
    width: 100%;
    margin: 40px auto 0;
    grid-auto-rows: 330px;
    transition: opacity .18s ease, transform .18s ease;
}

.index9-page .index9-product-grid.is-switching {
    opacity: 0;
    transform: translateY(16px);
}

.index9-page .index9-product-grid.is-entering .product-card {
    animation: index9ProductIn .46s cubic-bezier(.22, 1, .36, 1) both;
}

.index9-page .index9-product-grid.is-entering .product-card:nth-child(2) {
    animation-delay: .04s;
}

.index9-page .index9-product-grid.is-entering .product-card:nth-child(3) {
    animation-delay: .08s;
}

.index9-page .index9-product-grid.is-entering .product-card:nth-child(4) {
    animation-delay: .12s;
}

.index9-page .index9-product-grid.is-entering .product-card:nth-child(5) {
    animation-delay: .16s;
}

@keyframes index9ProductIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

.index9-page .index9-product-grid .product-card {
    border: 1px solid #e9eef5;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgb(16 36 68 / 7%);
}

.index9-page .index9-product-grid .product-card:first-child {
    grid-column: span 2;
}

.index9-page .index9-product-grid .product-card:nth-child(2) {
    grid-column: span 1;
}

.index9-page .index9-product-grid .product-card h2 {
    max-width: 88%;
    font-size: 23px;
    font-weight: 500;
}

.index9-page .index9-product-grid .product-card p {
    width: 43%;
    font-size: 14px;
    line-height: 1.9;
}

.index9-page .index9-product-grid .product-card img {
    right: 7%;
    bottom: 72px;
    width: 49%;
    max-height: 165px;
    clip-path: none;
    transition: opacity .18s ease, transform .25s ease;
}

.index9-page .index9-product-grid .product-card img:hover,
.index9-page .index9-product-grid .product-card img:focus,
.index9-page .index9-product-grid .product-card img:focus-visible {
    content: url("./assets/1-2510111G644426_no_bg.png");
}

.index9-page .index9-product-grid .product-card img:focus-visible {
    outline: 2px solid rgb(0 32 161 / 36%);
    outline-offset: 4px;
}

.index9-page .index9-product-grid .product-card:not(:first-child) img {
    right: 8%;
    bottom: 72px;
    width: 84%;
    max-height: 168px;
}

.index9-page .index9-product-grid .product-more {
    right: 30px;
    bottom: 26px;
}


@media (min-width: 1024px) and (max-width: 1400px) {
    .index8-page .index5-product-screen {
        grid-template-columns: minmax(0, 67fr) minmax(400px, 33fr);
    }

    .index8-page .index5-product-screen.is-reverse {
        grid-template-columns: minmax(400px, 33fr) minmax(0, 67fr);
    }

    .index8-page .index5-product-content {
        padding: 48px 48px;
    }

    .index8-page .index5-product-summary span {
        margin-top: 28px;
        font-size: 15px;
        line-height: 1.7;
    }

    .index8-page .index5-product-content li a {
        min-height: 62px;
        grid-template-columns: 82px minmax(0, 1fr) auto;
        gap: 14px;
    }

    .index8-page .index5-product-content li img {
        width: 82px;
        height: 46px;
    }

    .index8-page .index5-product-content li span {
        font-size: 16px;
    }
}


.index10-page .index10-product-screen {
    display: grid;
    grid-template-columns: minmax(360px, 48vw) minmax(0, 1fr);
    gap: clamp(18px, 1.6vw, 30px);
    padding: clamp(18px, 1.4vw, 26px);
    background: #fff;
    border-bottom: 1px solid #edf0f3;
}

.index10-page .index10-product-panel {
    position: relative;
    min-height: clamp(460px, 30vw, 560px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 5vw, 86px) clamp(34px, 5.4vw, 130px);
    overflow: hidden;
    color: #071424;
    background: #eef2f6;
    isolation: isolate;
}

.index10-page .index10-product-panel::before,
.index10-page .index10-product-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
}

.index10-page .index10-product-panel::before {
    background-image: var(--index10-bg);
    background-size: cover;
    background-position: center;
    opacity: .12;
    filter: grayscale(.15);
    transform: scale(1.04);
}

.index10-page .index10-product-panel::after {
    background: rgb(246 249 252 / 86%);
}

.index10-page .index10-product-panel p {
    margin: 0 0 18px;
    color: #111827;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
}

.index10-page .index10-product-panel h2 {
    max-width: 720px;
    margin: 0;
    color: #000;
    font-size: clamp(34px, 3vw, 58px);
    font-weight: 500;
    line-height: 1.24;
}

.index10-page .index10-product-panel span {
    display: block;
    max-width: 650px;
    margin-top: 26px;
    color: #1f2937;
    font-size: clamp(15px, 1vw, 17px);
    line-height: 1.8;
}

.index10-page .index10-product-all {
    width: fit-content;
    margin-top: 30px;
    color: #000;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    border-bottom: 2px solid #000;
    transition: color .25s ease, border-color .25s ease;
}

.index10-page .index10-product-all:hover {
    color: var(--cyan);
    border-color: var(--cyan);
}

.index10-page .index10-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(220px, 1fr);
    gap: clamp(18px, 1.6vw, 30px);
}

.index10-page .index10-product-card {
    position: relative;
    min-height: 220px;
    display: grid;
    grid-template-columns: minmax(150px, 46%) minmax(130px, 1fr);
    grid-template-rows: 1fr auto;
    align-items: center;
    column-gap: clamp(16px, 1.8vw, 34px);
    padding: clamp(22px, 2.3vw, 46px);
    overflow: hidden;
    color: #000;
    background: #eef2f6;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.index10-page .index10-product-card:hover {
    background: #e7edf4;
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgb(15 23 42 / 10%);
}

.index10-page .index10-product-card img {
    grid-row: 1 / 3;
    width: 100%;
    height: min(220px, 58%);
    min-height: 150px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 18px 18px rgb(15 23 42 / 16%));
    transition: transform .3s ease;
}

.index10-page .index10-product-card:hover img {
    transform: scale(1.045);
}

.index10-page .index10-product-card span {
    align-self: start;
    justify-self: end;
    max-width: 240px;
    color: #000;
    font-size: clamp(20px, 1.45vw, 28px);
    font-weight: 500;
    line-height: 1.48;
    text-align: right;
}

.index10-page .index10-product-card em {
    align-self: end;
    justify-self: end;
    color: #000;
    font-size: clamp(15px, 1vw, 18px);
    font-style: normal;
    font-weight: 700;
}

@media (min-width: 1024px) and (max-width: 1180px) {
    .index10-page .index10-product-screen {
        grid-template-columns: 1fr;
    }

    .index10-page .index10-product-panel {
        min-height: 420px;
    }
}


/* Home product full-screen panels */
.index8-page .index5-product-screen,
.index8-page .index5-product-screen.is-reverse {
    min-height: clamp(640px, 50vw, 760px);
    grid-template-columns: minmax(0, 68fr) minmax(420px, 32fr);
    background: #fff;
}

.index8-page .index5-product-screen.is-reverse .index5-product-media {
    order: 0;
}

.index8-page .index5-product-screen.is-reverse .index5-product-content {
    order: 1;
}

.index8-page .index5-product-media {
    position: relative;
    min-height: clamp(640px, 50vw, 760px);
    overflow: hidden;
}

.index8-page .index5-product-media::after {
    display: none;
}

.index8-page .index5-product-image,
.index8-page .index5-product-media .index5-product-image img {
    width: 100%;
    height: 100%;
}

.index8-page .index5-product-image {
    background: #06142c;
}

.index8-page .index5-product-slide {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateZ(0);
    transition: opacity .42s ease, visibility .42s ease;
    will-change: opacity;
}

.index8-page .index5-product-slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

.index8-page .index5-product-media .index5-product-image img {
    display: block;
    object-fit: cover;
    filter: none;
    transform: translateZ(0);
    transition: none;
}

.index8-page .index8-media-tags {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 170px;
    background: linear-gradient(180deg, rgb(5 18 34 / 0%) 0%, rgb(5 18 34 / 72%) 100%);
}

.index8-page .index8-media-tag {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 22px 18px;
    color: #fff;
    font-size: 14px;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 2px 12px rgb(0 0 0 / 28%);
    background: transparent;
    transition: background .25s ease;
}

.index8-page .index8-media-tag::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: transparent;
    transition: background .25s ease;
}

.index8-page .index8-media-tag:hover {
    background: rgb(0 143 148 / 74%);
}

.index8-page .index8-media-tag.is-active,
.index8-page .index8-media-tag:nth-child(3).is-active {
    background: rgb(0 143 148 / 76%);
}

.index8-page .index8-media-tag.is-active::after {
    background: #fff;
}

.index8-page .index8-media-tag-icon {
    position: relative;
    width: 49px;
    height: 49px;
    border: 3px solid currentColor;
    border-radius: 16px;
}

.index8-page .index8-media-tag-icon::before,
.index8-page .index8-media-tag-icon::after {
    content: "";
    position: absolute;
    inset: 15px 11px;
    border-top: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
}

.index8-page .index8-media-tag-icon::after {
    inset: auto 14px 13px;
    height: 8px;
    border-top: 3px solid currentColor;
    border-bottom: 0;
    transform: rotate(-35deg);
}

.index8-page .index5-product-content {
    display: grid;
    grid-template-rows: auto auto;
    align-content: center;
    justify-content: stretch;
    gap: 36px;
    padding: clamp(88px, 6.2vw, 118px) clamp(58px, 4.7vw, 98px) clamp(70px, 6vw, 118px) 100px;
}

.index8-page .index5-product-summary {
    align-self: auto;
    min-height: 214px;
    max-width: none;
}

.index8-page .index8-product-icon {
    position: relative;
    display: block;
    width: 98px;
    height: auto;
    margin-bottom: 30px;
    border: 5px solid #090909;
    border-radius: 28px 30px 18px 18px;
}

.index8-page .index8-product-icon::before,
.index8-page .index8-product-icon::after {
    content: "";
    position: absolute;
    bottom: -14px;
    width: 18px;
    height: 18px;
    border: 5px solid #090909;
    border-radius: 50%;
    background: #fff;
}

.index8-page .index8-product-icon::before {
    left: 8px;
}

.index8-page .index8-product-icon::after {
    right: 8px;
}

.index8-page .index5-product-summary p,
.index8-page .index5-product-summary>span:not(.index8-product-icon),
.index8-page .index7-product-controls,
.index8-page .index8-product-more,
.index8-page .index5-product-content li img {
    display: none;
}

.index8-page .index5-product-summary h2 {
    max-width: none;
    color: #080808;
    font-size: clamp(34px, 2.35vw, 46px);
    line-height: 1.2;
}

.index8-page .index5-product-summary h2::after {
    width: 100px;
    height: 4px;
    margin-top: 22px;
    background: #008b92;
}

.index8-page .index7-product-carousel,
.index8-page .index5-product-list {
    align-self: start;
    width: 100%;
    overflow: visible;
}

.index8-page .index5-product-list {
    display: block;
}

.index8-page .index5-product-list li,
.index8-page .index5-product-list li:nth-child(n+4) {
    display: block;
    width: 100%;
    border-bottom: 1px solid #b8bdc2;
}

.index8-page .index5-product-content li a {
    min-height: 60px;
    grid-template-columns: minmax(0, 1fr) 24px;
    color: #101010;
    text-decoration: none;
}

.index8-page .index5-product-content li span {
    color: inherit;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.45;
}

.index8-page .index5-product-content li a::after {
    content: " ";
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;

    border-radius: 50%;
    color: #333;
    font-size: 16px;
}

.index8-page .index5-product-summary p,
.index8-page .index5-product-summary h2,
.index8-page .index5-product-summary span,
.index8-page .index7-product-carousel,
.index8-page .index8-product-more,
.index8-page .index5-product-list li,
.index8-page .index5-product-screen.is-reverse .index5-product-summary p,
.index8-page .index5-product-screen.is-reverse .index5-product-summary h2,
.index8-page .index5-product-screen.is-reverse .index5-product-summary span,
.index8-page .index5-product-screen.is-reverse .index7-product-carousel,
.index8-page .index5-product-screen.is-reverse .index8-product-more,
.index8-page .index5-product-screen.is-reverse .index5-product-list li {
    transform: none;
}

@media (min-width: 1024px) and (max-width: 1400px) {

    .index8-page .index5-product-screen,
    .index8-page .index5-product-screen.is-reverse {
        grid-template-columns: minmax(0, 61fr) minmax(390px, 39fr);
    }

    .index8-page .index5-product-content {
        grid-template-rows: auto auto;
        gap: 30px;
        padding: 58px 58px 58px 100px;
    }

    .index8-page .index5-product-summary {
        min-height: 194px;
    }

    .index8-page .index8-media-tag {
        font-size: 19px;
    }

    .index8-page .index5-product-content li span {
        font-size: 18px;
    }
}


.index8-page .index5-product-list li,
.index8-page .index5-product-list li:nth-child(n+4) {
    display: block;
    width: 100%;
    border: 0;
    background: #fff;
    opacity: 1;
    transform: none;
}

.index8-page .index5-product-list li a {
    position: relative;
    min-height: 60px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    align-items: center;
    gap: 14px;
    color: #101010;
    background: #fff;
    text-decoration: none;
}

.index8-page .index5-product-list li a::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: #d7dce2;
    transition: background .25s ease, height .25s ease;
}

.index8-page .index5-product-list li a::after {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    background-image: url("assets/to.png"), url("assets/to-f.png");
    background-position: center, 0 0;
    background-size: contain, 0 0;
    background-repeat: no-repeat;
}

.index8-page .index5-product-list li a:hover,
.index8-page .index5-product-list li a:focus-visible {
    color: #0020a1;
}

.index8-page .index5-product-list li a:hover::before,
.index8-page .index5-product-list li a:focus-visible::before {
    height: 2px;
    background: #0020a1;
}

.index8-page .index5-product-list li a:hover::after,
.index8-page .index5-product-list li a:focus-visible::after {
    background: url("assets/to-f.png") center / contain no-repeat;
}

.index8-page .index5-product-list li.index5-product-all a {
    min-height: 66px;
    font-weight: 700;
}

.index8-page .index5-product-list li.index5-product-all a::after {
    width: 20px;
    height: 20px;
    display: block;
}

/* Final cleanup for home product list rows: no card borders or hover backgrounds. */
.index8-page .index5-product-content .index5-product-list li,
.index8-page .index5-product-content .index5-product-list li:nth-child(n+4) {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.index8-page .index5-product-content .index5-product-list li a,
.index8-page .index5-product-content .index5-product-list li a:hover,
.index8-page .index5-product-content .index5-product-list li a:focus-visible {
    border: 0 !important;
    outline: 0;
    background: transparent !important;
    box-shadow: none !important;
}

.index8-page .index5-product-content .index5-product-list li a::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: 1px;
    border: 0;
    background: #d7dce2;
    box-shadow: none;
}

.index8-page .index5-product-content .index5-product-list li a:hover::before,
.index8-page .index5-product-content .index5-product-list li a:focus-visible::before {
    height: 1px;
    background: #28c6c6;
}

.index8-page .index5-product-content .index5-product-list li.index5-product-all,
.index8-page .index5-product-content .index5-product-list li.index5-product-all a,
.index8-page .index5-product-content .index5-product-list li.index5-product-all a:hover,
.index8-page .index5-product-content .index5-product-list li.index5-product-all a:focus,
.index8-page .index5-product-content .index5-product-list li.index5-product-all a:focus-visible {
    border-bottom: 0 !important;
}

.index8-page .index5-product-content .index5-product-list li.index5-product-all a::before,
.index8-page .index5-product-content .index5-product-list li.index5-product-all a:hover::before,
.index8-page .index5-product-content .index5-product-list li.index5-product-all a:focus::before,
.index8-page .index5-product-content .index5-product-list li.index5-product-all a:focus-visible::before {
    content: none;
    display: none;
}

.index8-page .index5-product-content .index5-product-list li a:hover span,
.index8-page .index5-product-content .index5-product-list li a:focus-visible span {
    color: #28c6c6;
}

.index8-page .index5-product-content .index5-product-list li a:hover::after,
.index8-page .index5-product-content .index5-product-list li a:focus-visible::after {
    color: #28c6c6;
    border-color: #28c6c6;
    background: url("assets/to-f.png") center / contain no-repeat;
}

/* Firefox 78 does not support :focus-visible in selector lists. Keep hover/focus rules separate. */
.index8-page .index5-product-content .index5-product-list li:hover,
.index8-page .index5-product-content .index5-product-list li a,
.index8-page .index5-product-content .index5-product-list li a:hover,
.index8-page .index5-product-content .index5-product-list li a:focus {
    border: 0 !important;
    outline: 0;
    background: transparent !important;
    box-shadow: none !important;
}

.index8-page .index5-product-content .index5-product-list li a:hover,
.index8-page .index5-product-content .index5-product-list li a:focus {
    color: #28c6c6;
}

.index8-page .index5-product-content .index5-product-list li a:hover::before,
.index8-page .index5-product-content .index5-product-list li a:focus::before {
    height: 1px;
    background: #28c6c6;
    box-shadow: none;
}

.index8-page .index5-product-content .index5-product-list li a:hover span,
.index8-page .index5-product-content .index5-product-list li a:focus span {
    color: #28c6c6;
}

.index8-page .index5-product-content .index5-product-list li a:hover::after,
.index8-page .index5-product-content .index5-product-list li a:focus::after {
    color: #28c6c6;
    border-color: #28c6c6;
    background: url("assets/to-f.png") center / contain no-repeat;
    box-shadow: none;
}

.index8-page .index5-product-content .index5-product-list li.index5-product-all a:hover::before,
.index8-page .index5-product-content .index5-product-list li.index5-product-all a:focus::before {
    content: none;
    display: none;
}

/* Final floating contact and product media refinements */
.float-contact {
    top: 50%;
    right: 14px;
    width: 56px;
    transform: translateY(-50%);
}

.float-contact .float-contact-item {
    position: relative;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 2px;
    overflow: visible;
    background: #28c6c6;
    color: #fff;
    text-decoration: none;
}

.float-contact .float-contact-item>img {
    display: block;
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.float-contact-panel {
    position: absolute;
    top: 50%;
    right: calc(100% + 12px);
    z-index: -1;
    display: grid;
    place-items: center;
    min-width: 132px;
    min-height: 56px;
    padding: 12px;
    color: #111827;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 16px 36px rgb(15 23 42 / 16%);
    opacity: 0;
    pointer-events: none;
    transform: translate(24px, -50%);
    transition: opacity .24s ease, transform .28s cubic-bezier(.22, 1, .36, 1);
}

.float-contact-panel::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -6px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: translateY(-50%) rotate(45deg);
}

.float-contact-panel-qr {
    width: 132px;
    height: 132px;
}

.float-contact-panel-qr img {
    display: block;
    width: 108px;
    height: 108px;
    object-fit: cover;
}

.float-contact-panel-text {
    min-width: 150px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.float-contact .float-contact-item:hover .float-contact-panel,
.float-contact .float-contact-item:focus-visible .float-contact-panel {
    opacity: 1;
    transform: translate(0, -50%);
}

.index8-page .index8-media-tag::after,
.index8-page .index8-media-tag.is-active::after {
    content: none;
    display: none;
}

.index8-page .index8-media-tag.is-active,
.index8-page .index8-media-tag:nth-child(3).is-active {
    background: linear-gradient(180deg, rgb(0 143 148 / 0%) 0%, rgb(0 143 148 / 80%) 100%);
}

.index8-page .index5-product-media .index5-product-image img,
.index8-page .index5-product-screen.index8-content-in .index5-product-media .index5-product-image img,
.index8-page .index5-product-screen.index8-content-in .index5-product-media:hover .index5-product-image img {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: none;
}

.index8-page .index5-product-media .index5-product-image img.is-zooming,
.index8-page .index5-product-screen.index8-content-in .index5-product-media .index5-product-image img.is-zooming,
.index8-page .index5-product-screen.index8-content-in .index5-product-media:hover .index5-product-image img.is-zooming {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.index8-page .index5-product-slide.is-active img {
    animation: index8ProductImageZoom 4000ms 1 ease forwards;
}

@keyframes index8ProductImageZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

/* Home product tag active state keeps the vertical transparent gradient in every focus state. */
.index8-page .index8-media-tag:hover,
.index8-page .index8-media-tag:focus-visible,
.index8-page .index8-media-tag.is-active,
.index8-page .index8-media-tag.is-active:hover,
.index8-page .index8-media-tag.is-active:focus-visible,
.index8-page .index8-media-tag:nth-child(3).is-active,
.index8-page .index8-media-tag:nth-child(3).is-active:hover,
.index8-page .index8-media-tag:nth-child(3).is-active:focus-visible {
    background: linear-gradient(180deg, rgb(0 143 148 / 0%) 0%, rgb(0 143 148 / 80%) 100%);
}

/* Home product icons now use page-json images instead of CSS-drawn symbols. */
.index8-page .index8-product-icon {
    display: block;
    width: 98px;
    height: auto;
    margin-bottom: 30px;
    border: 0;
    border-radius: 0;
    background: none;
}

.index8-page .index8-product-icon::before,
.index8-page .index8-product-icon::after,
.index8-page .index8-media-tag-icon::before,
.index8-page .index8-media-tag-icon::after {
    content: none;
    display: none;
}

.index8-page .index8-product-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.index8-page .index8-media-tag-icon {
    display: grid;
    place-items: center;
    width: 49px;
    height: 49px;
    border: 0;
    border-radius: 0;
    background: none;
}

.index8-page .index8-media-tag-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Home product panels: vertically centered content with viewport-aware scaling. */
.index8-page .index5-product-summary span {
    margin-top: 0;
}

.index8-page .index5-product-content {
    grid-template-rows: auto auto;
    align-content: center;
    gap: clamp(22px, 4vh, 36px);
    padding-block: 0;
}

.index8-page .index5-product-summary {
    min-height: 0;
}

.index8-page .index5-product-list li:not(.index5-product-all):nth-child(n+6) {
    display: none !important;
}

@media (min-width: 1024px) and (max-width: 1500px),
(min-width: 1024px) and (max-height: 860px){

    .index8-page .index5-product-screen,
    .index8-page .index5-product-screen.is-reverse {
        grid-template-columns: minmax(0, 62fr) minmax(390px, 38fr);
    }

    .index8-page .index5-product-content {
        gap: clamp(18px, 2.8vh, 26px);
        padding: 0 clamp(42px, 4.2vw, 64px);
    }

    .index8-page .index8-product-icon {
    width: 98px;
    height: auto;
        margin-bottom: clamp(16px, 2.4vh, 22px);
    }

    .index8-page .index5-product-summary h2 {
        font-size: clamp(30px, 2.25vw, 36px);
        line-height: 1.16;
    }

    .index8-page .index5-product-summary h2::after {
        width: 72px;
        height: 3px;
        margin-top: clamp(14px, 2.2vh, 18px);
    }

    .index8-page .index5-product-content li a,
    .index8-page .index5-product-list li a {
        min-height: clamp(48px, 6.4vh, 54px);
    }

    .index8-page .index5-product-list li.index5-product-all a {
        min-height: clamp(52px, 6.8vh, 58px);
    }

    .index8-page .index5-product-content li span {
        font-size: clamp(15px, 1.15vw, 17px);
        line-height: 1.35;
    }

    .index8-page .index8-media-tags {
        min-height: 170px;
        height: 170px;
    }

    .index8-page .index8-media-tag {
        gap: clamp(8px, 1.5vh, 12px);
        padding: 12px 14px;
        font-size: clamp(15px, 1.2vw, 17px);
        line-height: 1.25;
    }

    .index8-page .index8-media-tag-icon {
        width: clamp(40px, 5.5vh, 46px);
        height: clamp(40px, 5.5vh, 46px);
        flex: 0 0 auto;
    }
}

/* Keep the desktop split from 1024px upward, matching the site-wide PC breakpoint. */
@media (min-width: 1024px) {

    .index8-page .index5-product-screen,
    .index8-page .index5-product-screen.is-reverse {
        min-height: 0;
        height: calc(100vh - var(--header-h));
        height: calc(100dvh - var(--header-h));
    }

    .index8-page .index5-product-media,
    .index8-page .index5-product-content {
        min-height: 0;
        height: 100%;
    }

    .index8-page .index5-product-media {
        padding-bottom: 150px;
    }

    .index8-page .index5-product-image {
        bottom: 150px;
    }

    .index8-page .index8-media-tags {
        min-height: 150px;
        height: 150px;
    }
}


/* Non-mobile home content follows a stable 76% canvas and scales proportionally. */
@media (min-width: 1024px) {

    .index8-page .action-solutions,
    .index8-page .action-news {
        width: 76%;
        max-width: none;
        min-height: 0;
        height: auto;
        margin-right: auto;
        margin-left: auto;
    }

    .index8-page .action-solutions,
    .index8-page .action-news {
        padding: clamp(50px, 4vw, 76px) 0 clamp(50px, 5vw, 98px);
    }

    .index8-page .action-cta-inner {
        width: 76%;
        max-width: none;
        margin-right: auto;
        margin-left: auto;
        padding: clamp(30px, 4vw, 72px) 0;
    }

    .index8-page .action-section-title {
        margin-bottom: clamp(22px, 3vw, 48px);
    }

    .index8-page .action-section-title p,
    .index8-page .action-cta-copy p {
        font-size: clamp(12px, .9vw, 14px);
    }

    .index8-page .action-section-title h2,
    .index8-page .action-solution-inner .action-section-title h2,
    .index8-page .action-news .action-section-title h2 {
        font-size: clamp(20px, 1.8vw, 28px);
    }

    .index8-page .action-solution-grid {
        min-height: clamp(330px, 34vw, 520px);
        grid-template-rows: repeat(2, minmax(clamp(135px, 14vw, 210px), 1fr));
        gap: clamp(10px, 1.2vw, 18px);
    }

    .index8-page .action-solution-grid a {
        padding: clamp(16px, 1.8vw, 28px);
        border-radius: clamp(4px, .55vw, 8px);
    }

    .index8-page .action-solution-grid a:first-child {
        padding: clamp(22px, 2.8vw, 44px);
    }

    .index8-page .action-solution-grid span {
        font-size: clamp(14px, 1.55vw, 24px);
    }

    .index8-page .action-solution-grid a:first-child span {
        font-size: clamp(18px, 2.2vw, 34px);
    }

    .index8-page .action-solution-grid em {
        margin-top: clamp(8px, 1.2vw, 18px);
        font-size: clamp(12px, .9vw, 14px);
    }

    .index8-page .action-cta {
        min-height: clamp(280px, 25vw, 380px);
    }

    .index8-page .action-cta-copy h2 {
        font-size: clamp(22px, 2.2vw, 34px);
    }

    .index8-page .action-cta-copy>span {
        max-width: min(56vw, 680px);
        margin-top: clamp(12px, 1.5vw, 22px);
        font-size: clamp(12px, 1.15vw, 18px);
    }

    .index8-page .action-cta-links {
        gap: clamp(10px, 1vw, 16px);
        margin-top: clamp(18px, 2.2vw, 34px);
    }

    .index8-page .action-cta-links a {
        min-width: clamp(112px, 10vw, 150px);
        height: clamp(38px, 3.2vw, 46px);
        padding: 0 clamp(14px, 1.5vw, 22px);
        font-size: clamp(12px, 1vw, 15px);
    }

    .index8-page .action-solution-inner .action-section-title,
    .index8-page .action-news .action-section-title {
        margin-bottom: clamp(22px, 3.5vw, 68px);
    }

    .index8-page .action-news-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, .96fr);
        gap: clamp(14px, 1.8vw, 28px);
        margin-top: 0px;
    }

    .index8-page .action-news-feature div {
        padding: clamp(14px, 1.4vw, 22px);
    }

    .index8-page .action-news-feature p,
    .index8-page .action-news-list time {
        gap: clamp(7px, .8vw, 12px);
        font-size: 12px;
    }

    .index8-page .action-news-feature h3,
    .index8-page .action-news-list span {
        margin: clamp(8px, .8vw, 12px) 0;
        font-size: clamp(13px, 1.15vw, 18px);
    }

    .index8-page .action-news-feature>div>span {
        font-size: clamp(12px, 1vw, 16px);
    }

    .index8-page .action-news-feature>div>a,
    .index8-page .action-news-list strong {
        font-size: clamp(12px, .95vw, 15px);
    }

    .index8-page .action-news-list {
        gap: clamp(8px, .9vw, 14px);
    }

    .index8-page .action-news-list a {
        grid-template-columns: 236px minmax(0, 1fr);
        min-height: 180px;
        height: auto;
    }

    .index8-page .action-news-list div {
        padding: clamp(10px, 1vw, 15px);
    }

    .index8-page .action-news-list span {
        margin-top: clamp(5px, .55vw, 8px);
    }

    .index8-page .action-news-list p {
        margin-top: clamp(5px, .55vw, 8px);
        font-size: 12px;
    }
}

@media (min-width: 1024px) and (max-width: 1100px) {

    .index8-page .action-news-feature>div>span,
    .index8-page .action-news-list p {
        display: none;
    }

    .index8-page .action-news-list a {
        grid-template-columns: clamp(126px, 14.7vw, 163px) minmax(0, 1fr);
        min-height: clamp(96px, 11vw, 124px);
        height: auto;
    }

    .index8-page .action-news-list img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        min-height: 0;
        aspect-ratio: auto;
        object-fit: cover;
    }

    .index8-page .action-news-feature h3,
    .index8-page .action-news-list span {
        font-size: clamp(12px, 1.45vw, 16px);
    }
}


/* Product detail page matching the supplied specification-layout reference. */
.product-detail-page {
    background: #fff;
}

.product-detail-page .pd-page {
    color: #20242c;
    background: #fff;
}

.product-detail-page .pd-subnav {
    --pd-subnav-h: 48px;
    position: sticky;
    top: var(--header-h);
    z-index: 45;
    min-height: var(--pd-subnav-h);
    background: #dcdfff;
    border-bottom: 1px solid #cbd0f6;
}

.product-detail-page .pd-subnav:lang(en) {
    display: none;
}

.product-detail-page .pd-wrap {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 0 28px;
}

.product-detail-page .pd-subnav-inner {
    min-height: var(--pd-subnav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.product-detail-page .pd-subnav-title {
    flex: 0 0 auto;
    color: #1f2530;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none;
    white-space: nowrap;
}

.product-detail-page .pd-subnav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(22px, 2.1vw, 46px);
    min-width: 0;
}

.product-detail-page .pd-subnav-links a {
    color: #1f2530;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none;
    white-space: nowrap;
    transition: color .22s ease;
}

.product-detail-page .pd-subnav-links a:hover,
.product-detail-page .pd-subnav-links a:focus-visible,
.product-detail-page .pd-subnav-title:hover,
.product-detail-page .pd-subnav-title:focus-visible {
    color: var(--blue);
}

.product-detail-page .pd-anchor-target,
.product-detail-page #pd-top {
    scroll-margin-top: calc(var(--header-h) + 58px);
}

.product-detail-page .pd-hero {
    padding: 78px 0 72px;
    background: #fff;
}

.product-detail-page .pd-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 43%);
    gap: clamp(54px, 6vw, 110px);
    align-items: center;
}

.product-detail-page .pd-hero-copy {
    min-width: 0;
}

.product-detail-page .pd-badge {
    display: inline-flex;
    margin: 0 0 15px;
    padding: 4px 10px;
    color: #2d4d8d;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
    background: #eef2ff;
    border: 1px solid #b7c6ee;
    border-radius: 2px;
}

.product-detail-page .pd-hero h1 {
    margin: 0;
    color: #060910;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 0;
}

.product-detail-page .pd-lead {
    margin: 42px 0 0;
    color: #2d323c;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 36px;
    text-align: justify;
}

.product-detail-page .pd-hero-media {
    display: grid;
    place-items: center;
    min-height: 260px;
    max-height: 500px;
}

.product-detail-page .pd-hero-media img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 18px rgb(30 41 59 / 12%));
    max-height: 500px;
}

.product-detail-page .pd-section {
    padding: 66px 0;
    background: #fff;
}

.product-detail-page .pd-section-soft {
    background: #f5f5f5;
}

.product-detail-page .pd-section-title {
    display: grid;
    grid-template-columns: minmax(24px, 1fr) minmax(0, auto) minmax(24px, 1fr);
    gap: 18px;
    align-items: center;
    justify-content: center;
    margin: 0 0 48px;
    text-align: center;
}

.product-detail-page .pd-section-title::before,
.product-detail-page .pd-section-title::after {
    content: "";
    height: 1px;
    background: #d7d7d7;
}

.product-detail-page .pd-section-title-text {
    min-width: 0;
    max-width: min(760px, 72vw);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.product-detail-page .pd-section-title h2,
.product-detail-page .pd-download h2 {
    min-width: 0;
    margin: 0;
    color: #05070b;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0;
}

.product-detail-page .pd-section-title span,
.product-detail-page .pd-download header span {
    display: inline-flex;
    align-items: center;
    margin-left: 12px;
    color: #3b414c;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.product-detail-page .pd-section-title span::before,
.product-detail-page .pd-section-title span::after,
.product-detail-page .pd-download header span::before,
.product-detail-page .pd-download header span::after {
    content: "";
    width: 1px;
    height: 12px;
    margin: 0 10px;
    background: #2a2f38;
}

.product-detail-page .pd-section-title span::after {
    content: none;
}

.product-detail-page .pd-feature-grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 54px;
}

.product-detail-page .pd-feature-grid ol,
.product-detail-page .pd-copy-list {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #303640;
    font-size: 16px;
    line-height: 36px;
}

.product-detail-page .pd-feature-grid ol,
.product-detail-page .pd-copy-list {
    counter-reset: pd-item;
}

.product-detail-page .pd-feature-grid ol[start="6"] {
    counter-reset: pd-item 5;
}

.product-detail-page .pd-feature-grid ol {
    width: 100%;
    max-width: 100%;
    justify-self: center;
}

.product-detail-page .pd-feature-grid li,
.product-detail-page .pd-copy-list li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px;
    counter-increment: pd-item;
}

.product-detail-page .pd-feature-grid li+li,
.product-detail-page .pd-copy-list li+li {
    margin-top: 12px;
}

.product-detail-page .pd-feature-grid li::before,
.product-detail-page .pd-copy-list li::before {
    content: counter(pd-item, decimal-leading-zero);
    color: #606875;
    font-size: 11px;
    font-weight: 700;
}

.product-detail-page .pd-copy-list {
    max-width: 850px;
}

.product-detail-page .pd-feature-images {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.product-detail-page .pd-feature-images figure {
    margin: 0;
    text-align: center;
}

.product-detail-page .pd-feature-images .pd-inline-image {
    max-height: 420px;
}

.product-detail-page .pd-wave-strip {
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    margin-top: 28px;
    background: #dde0ff;
}

.product-detail-page .pd-wave-strip span {
    display: grid;
    place-items: center;
    min-height: 64px;
    border-right: 1px solid rgb(255 255 255 / 72%);
}

.product-detail-page .pd-wave-strip span:last-child {
    border-right: 0;
}

.product-detail-page .pd-wave-strip svg {
    width: 74%;
    max-width: 68px;
    height: 38px;
    fill: none;
    stroke: #4c5165;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-detail-page .pd-standard-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border: 1px solid #d6d9ef;
    background: #dfe2ff;
}

.product-detail-page .pd-standard-grid span {
    min-height: 58px;
    display: grid;
    place-items: center;
    padding: 10px 8px;
    border-right: 1px solid #cfd3ec;
    border-bottom: 1px solid #cfd3ec;
    color: #262c36;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
}

.product-detail-page .pd-standard-grid span:nth-child(5n) {
    border-right: 0;
}

.product-detail-page .pd-standard-grid span:nth-last-child(-n+5) {
    border-bottom: 0;
}

.product-detail-page .pd-table-scroll {
    width: 100%;
    overflow-x: auto;
}

.product-detail-page .pd-data-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    color: #20242c;
    font-size: 14px;
    background: #fff;
}

.product-detail-page .pd-data-table th,
.product-detail-page .pd-data-table td {
    padding: 10px 18px;
    border: 1px solid #cfcfcf;
    line-height: 20px;
    text-align: left;
    vertical-align: middle;
}

.product-detail-page .pd-data-table th {
    color: #263044;
    font-weight: 800;
    text-align: center;
    background: #dfe2ff;
}

.product-detail-page .pd-matrix-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    color: #3f4652;
    font-size: 16px;
    font-weight: 800;
    line-height: 22px;
    background: #dfe2ff;
}

.product-detail-page .pd-matrix-table td {
    min-height: 56px;
    padding: 16px 22px;
    border: 2px solid rgb(255 255 255 / 72%);
    vertical-align: middle;
    background: #dfe2ff;
}

.product-detail-page .pd-matrix-table .pd-table-merged-cell {
    text-align: left;
}

.product-detail-page .pd-matrix-table .pd-table-merged-cell>div+div {
    margin-top: 8px;
}

.product-detail-page .pd-inline-image {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 120px;
    margin: 0 auto;
    object-fit: contain;
}

.product-detail-page .pd-inline-image-button {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.product-detail-page .pd-data-table td:has(.pd-inline-image),
.product-detail-page .pd-matrix-table td:has(.pd-inline-image) {
    padding: 10px;
}

.product-detail-page .pd-data-table td .pd-inline-image-button,
.product-detail-page .pd-matrix-table td .pd-inline-image-button,
.product-detail-page .pd-data-table td .pd-inline-image,
.product-detail-page .pd-matrix-table td .pd-inline-image {
    width: 100%;
    max-width: none;
}

.product-detail-page .pd-data-table td .pd-inline-image,
.product-detail-page .pd-matrix-table td .pd-inline-image {
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

.product-detail-page .pd-image-preview {
    width: min(94vw, 1440px);
    max-width: none;
    height: min(92vh, 1000px);
    max-height: none;
    padding: 44px 20px 20px;
    border: 0;
    background: #fff;
    box-shadow: 0 24px 80px rgb(0 0 0 / 35%);
}

.product-detail-page .pd-image-preview::backdrop {
    background: rgb(0 0 0 / 78%);
}

.product-detail-page .pd-image-preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-detail-page .pd-image-preview-close {
    position: absolute;
    top: 8px;
    right: 12px;
    display: grid;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    color: #20242c;
    font-size: 30px;
    line-height: 1;
    place-items: center;
    background: transparent;
    cursor: pointer;
}

.product-detail-page .pd-data-table td:first-child,
.product-detail-page .pd-data-table th:first-child {
    text-align: center;
}

.product-detail-page .pd-data-table-colspan .pd-table-key {
    width: 140px;
    color: #263044;
    font-weight: 700;
    text-align: center;
    background: #fafafa;
}

.product-detail-page .pd-data-table-colspan .pd-table-merged-cell {
    text-align: left;
}

.product-detail-page .pd-data-table-colspan .pd-table-merged-cell>div+div {
    margin-top: 8px;
}

.product-detail-page .pd-spec-table td:first-child,
.product-detail-page .pd-spec-table th:first-child {
    width: 84px;
}

.product-detail-page .pd-spec-table td:nth-child(2),
.product-detail-page .pd-spec-table th:nth-child(2) {
    width: 230px;
}

.product-detail-page .pd-table-note {
    margin: 12px 0 0;
    color: #303640;
    font-size: 14px;
    line-height: 20px;
}

.product-detail-page .pd-richtext {
    color: #303640;
    font-size: 14px;
    line-height: 20px;
}

.product-detail-page .pd-richtext p {
    margin: 0 0 16px;
}

.product-detail-page .pd-richtext p:last-child {
    margin-bottom: 0;
}

.product-detail-page .pd-download-card-wrap {
    max-width: 430px;
}

.product-detail-page .pd-image-block {
    margin: 0;
    text-align: center;
}

.product-detail-page .pd-image-block img {
    width: 100%;
    max-height: 620px;
    object-fit: contain;
}

.product-detail-page .pd-image-text {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 42%);
    gap: 40px;
    align-items: center;
}

.product-detail-page .pd-image-text.is-reverse .pd-image-text-media {
    order: -1;
}

.product-detail-page .pd-image-text-media,
.product-detail-page .pd-gallery figure {
    margin: 0;
}

.product-detail-page .pd-image-text-media img {
    width: 100%;
    object-fit: contain;
}

.product-detail-page .pd-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.product-detail-page .pd-gallery img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product-detail-page .pd-gallery figcaption {
    margin-top: 15px;
    color: #303640;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
}

.product-detail-page .pd-empty {
    min-height: 320px;
    display: grid;
    align-items: center;
    color: #606875;
    font-size: 16px;
    text-align: center;
}

.product-detail-page .pd-download {
    padding: 42px 0;
    background: #dfe2ff;
}

.product-detail-page .pd-download-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 36px;
    align-items: center;
}

.product-detail-page .pd-download header {
    display: flex;
    align-items: center;
}

.product-detail-page .pd-download-card {
    min-height: 56px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 18px;
    align-items: center;
    padding: 0 18px 0 24px;
    color: #1f2530;
    font-size: 13px;
    font-weight: 800;
    background: #fff;
    border-radius: 2px;
    text-decoration: none;
    box-shadow: 0 8px 18px rgb(45 61 95 / 8%);
    transition: transform .24s ease, box-shadow .24s ease;
}

.product-detail-page .pd-download-card:hover,
.product-detail-page .pd-download-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgb(45 61 95 / 13%);
}

.product-detail-page .pd-download-card svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: #1f2530;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.solution-detail-page.product-detail-page .pd-page {
    background: #fff;
}

.solution-detail-page .solution-pd-hero {
    position: relative;
    min-height: 300px;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 64px 0 46px;
    color: #fff;
    background: #052b72;
}

.solution-detail-page .solution-pd-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgb(0 28 76 / 72%), rgb(0 28 76 / 34%) 58%, rgb(0 28 76 / 10%)),
        linear-gradient(180deg, rgb(0 0 0 / 12%), rgb(0 20 60 / 24%));
    pointer-events: none;
}

.solution-detail-page .solution-pd-hero-inner {
    position: relative;
    z-index: 1;
}

.solution-detail-page .solution-pd-hero .pd-hero-copy {
    max-width: min(760px, 100%);
}

.solution-detail-page .solution-pd-hero .pd-badge {
    color: #fff;
    background: rgb(255 255 255 / 14%);
    border-color: rgb(255 255 255 / 28%);
}

.solution-detail-page .solution-pd-hero h2 {
    margin: 0;
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 0;
}

.solution-detail-page .solution-pd-hero .pd-lead {
    max-width: 720px;
    margin-top: 24px;
    color: rgb(255 255 255 / 86%);
    line-height: 1.8;
}

.solution-detail-page .solution-pd-hero-media {
    position: absolute;
    inset: -28px;
    z-index: 0;
    overflow: hidden;
    display: block;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: #052b72;
}

.solution-detail-page .solution-pd-hero-media img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    opacity: .74;
    filter: blur(1px) saturate(1.1);
    transform: scale(1.08);
}

.solution-application-grid {
    display: grid;
    grid-template-columns: repeat(var(--solution-application-columns, 5), minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.solution-application-card {
    position: relative;
    min-width: 0;
    min-height: clamp(210px, 18vw, 300px);
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: clamp(18px, 1.8vw, 28px);
    color: #fff;
    background: #0c2546;
    isolation: isolate;
    box-shadow: 0 20px 46px rgb(8 25 54 / 16%);
}

.solution-application-card::after {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    bottom: 5%;
    z-index: -1;
    height: 46%;
    background: linear-gradient(180deg, rgb(0 32 161 / 0%), rgb(0 18 50 / 58%));
    pointer-events: none;
}

.solution-application-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 100%;
    color: inherit;
    font-size: clamp(16px, 1.25vw, 23px);
    font-weight: 700;
    line-height: 1.35;
    text-shadow: 0 8px 20px rgb(0 0 0 / 36%);
}

.solution-application-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.solution-application-card:hover img {
    transform: scale(1.06);
}

.solution-standard-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    align-items: center;
    justify-content: center;
}

.solution-standard-pills span {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    min-height: 42px;
    padding: 8px 18px 8px 10px;
    border: 1px solid #d8dfec;
    border-radius: 999px;
    color: #1d2735;
    background: #fff;
    font-size: clamp(14px, 1vw, 17px);
    font-weight: 800;
    box-shadow: 0 10px 22px rgb(23 43 77 / 6%);
}

.solution-standard-pills em {
    display: inline-grid;
    width: 32px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    color: #0067b1;
    background: #eaf3ff;
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
}

.solution-equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.solution-equipment-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .96fr) minmax(180px, .82fr);
    gap: 18px;
    min-height: 250px;
    overflow: hidden;
    padding: clamp(22px, 2vw, 30px);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: inherit;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 12px 28px rgb(25 38 66 / 7%);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.solution-equipment-card:hover,
.solution-equipment-card:focus-visible {
    border-color: rgb(0 32 161 / 28%);
    box-shadow: 0 18px 36px rgb(0 32 161 / 12%);
    transform: translateY(-4px);
}

.solution-equipment-card h3 {
    margin: 16px 0 0;
    color: #111;
    font-size: clamp(20px, 1.4vw, 27px);
    font-weight: 600;
    line-height: 1.25;
}

.solution-equipment-card p {
    display: -webkit-box;
    margin: 16px 0 0;
    overflow: hidden;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.solution-equipment-card img {
    align-self: center;
    justify-self: center;
    width: 100%;
    max-height: 170px;
    object-fit: contain;
}

.solution-equipment-card .product-more {
    right: 24px;
    bottom: 20px;
}

.solution-advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.solution-advantage-card {
    min-width: 0;
    padding: 24px 22px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
}

.solution-advantage-card span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #20a77a;
    font-size: 18px;
    font-weight: 900;
}

.solution-advantage-card h3 {
    margin: 18px 0 0;
    color: #111;
    font-size: clamp(17px, 1.1vw, 22px);
    font-weight: 800;
    line-height: 1.25;
}

.solution-advantage-card p {
    margin: 10px 0 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
}

@media (min-width: 1024px) and (max-width: 1280px) {

    .product-detail-page .pd-feature-grid ol,
    .product-detail-page .pd-copy-list {
        padding-left: 0;
    }
}


/* Shared proportional content canvas for non-mobile inner pages. */
@media (min-width: 1024px) {

    .about-page .about-title,
    .about-page .about-intro-copy,
    .about-page .about-business-grid,
    .about-page .about-mission-grid,
    .news-page .news-list,
    .solutions-page .solutions-layout,
    .content-detail-page .content-detail-layout,
    .standards-page .standards-layout,
    .join-page .jobs-table,
    .partners-page .partner-group,
    .product-page:not(.product-detail-page) .category-main,
    .resources-page .resource-section,
    .search-page .search-page-inner,
    .product-detail-page .pd-wrap {
        width: 76%;
        max-width: none;
        margin-right: auto;
        margin-left: auto;
    }
    .contact-page .contact-form-inner
    {
        width: 100%;
        max-width: none;
        margin-right: auto;
        margin-left: auto;
    }

    .about-page .about-intro,
    .about-page .about-business,
    .about-page .about-mission,
    .news-page .news-section,
    .solutions-page .solutions-section,
    .content-detail-page .content-detail-section,
    .standards-page .standards-section,
    .join-page .jobs-section,
    .contact-page .contact-form-section {
        min-height: 0;
        height: auto;
        padding: 80px 0;
    }

    .about-page .about-business-grid,
    .about-page .about-mission-grid {
        gap: clamp(14px, 1.8vw, 28px);
    }

    .about-page .about-business-card,
    .about-page .about-mission-panel {
        min-height: 0;
        padding: clamp(18px, 2.2vw, 34px);
    }

    .about-page .about-business-card h3,
    .about-page .about-mission-panel h3 {
        font-size: clamp(16px, 1.45vw, 24px);
    }

    .about-page .about-business-card p,
    .about-page .about-mission-panel p,
    .about-page .about-intro-copy {
        font-size: clamp(12px, 1vw, 16px);
        line-height: 1.7;
    }

    .news-page .news-card {
        --news-card-padding-x: clamp(14px, 1.4vw, 24px);
        grid-template-columns: minmax(78px, 11%) minmax(0, 1fr) minmax(220px, 30%);
        gap: clamp(14px, 2vw, 30px);
        padding: clamp(16px, 1.8vw, 28px) var(--news-card-padding-x);
    }

    .news-page .news-card:hover,
    .news-page .news-card:focus-within {
        padding-right: calc(var(--news-card-padding-x) + 14px);
        padding-left: calc(var(--news-card-padding-x) + 14px);
    }

    .news-page .news-date strong {
        font-size: clamp(24px, 2.7vw, 42px);
    }

    .news-page .news-date span,
    .news-page .news-copy p,
    .news-page .news-copy time {
        font-size: clamp(12px, .95vw, 15px);
    }

    .news-page .news-copy h2,
    .news-page .news-copy h3 {
        font-size: clamp(16px, 1.45vw, 23px);
    }

    .solutions-page .solutions-layout,
    .content-detail-page .content-detail-layout,
    .standards-page .standards-layout {
        grid-template-columns: minmax(180px, 22%) minmax(0, 1fr);
        gap: clamp(20px, 3vw, 48px);
    }

    .solutions-page .solutions-sidebar,
    .content-detail-page .content-detail-sidebar,
    .standards-page .standards-sidebar {
        font-size: clamp(12px, 1vw, 16px);
    }

    .solutions-page .solutions-content,
    .content-detail-page .content-detail-content,
    .standards-page .standards-content {
        font-size: clamp(12px, 1vw, 16px);
        line-height: 1.75;
    }

    .join-page .jobs-table {
        font-size: clamp(12px, 1vw, 16px);
    }

    .join-page .jobs-table th,
    .join-page .jobs-table td {
        height: auto;
        padding: clamp(12px, 1.25vw, 20px);
    }

    .partners-page .partners-main {
        padding: 0% 0 1%;
    }

    .partners-page .partner-group {
        padding: clamp(18px, 2vw, 32px) 0;
    }

    .contact-page .contact-form {
        gap: clamp(14px, 1.7vw, 26px);
    }

    .contact-page .contact-form label,
    .contact-page .contact-form input,
    .contact-page .contact-form select,
    .contact-page .contact-form textarea,
    .contact-page .contact-form button {
        font-size: clamp(12px, 1vw, 16px);
    }

    .contact-page .contact-form textarea {
        min-height: clamp(110px, 12vw, 180px);
    }

    .product-page:not(.product-detail-page) .category-main,
    .resources-page .resource-section,
    .search-page .search-page-inner {
        padding-top: 3%;
        padding-bottom: 3%;
    }

    .product-page:not(.product-detail-page) .product-grid,
    .resources-page .resource-grid,
    .search-page .search-grid {
        gap: clamp(12px, 1.7vw, 26px);
    }

    .product-page:not(.product-detail-page) .product-card,
    .resources-page .resource-card,
    .search-page .search-card {
        font-size: clamp(12px, 1vw, 16px);
    }

    .product-detail-page .pd-wrap {
        padding-right: 0;
        padding-left: 0;
    }

    .product-detail-page .pd-hero,
    .product-detail-page .pd-section {
        min-height: 0;
        padding-top: clamp(30px, 4vw, 64px);
        padding-bottom: clamp(30px, 4vw, 64px);
    }

    .product-detail-page .pd-section-title {
        margin-bottom: clamp(22px, 3vw, 46px);
    }

    .product-detail-page .pd-section-title h2,
    .product-detail-page .pd-download h2 {
        font-size: clamp(19px, 2vw, 32px);
    }

    .product-detail-page .pd-lead,
    .product-detail-page .pd-section,
    .product-detail-page .pd-data-table {
        font-size: clamp(14px, 1vw, 16px);
    }
}

@media (min-width: 1024px) and (max-width: 1100px) {
    .news-page .news-copy p {
        display: none;
    }
}

@media (min-width: 1024px) {
    .main-nav {
        justify-content: center;
        margin-left: 0;
    }

    .action-hero-cta {
        top: 55%;
        right: auto;
        bottom: auto;
        left: clamp(60px, 8vw, 160px);
        transform: translateY(-50%);
    }

    .action-hero-cta:hover,
    .action-hero-cta:focus,
    .action-hero-cta:focus-visible {
        transform: translateY(calc(-50% - 3px));
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {

    .nav-link,
    .header-tools .tool-link {
        font-size: 14px;
    }
    .category-tabs {

    font-size: 14px;

    }
}

@media (min-width: 1441px) {

    .nav-link,
    .header-tools .tool-link {
        font-size: 16px;
    }

    .action-hero-cta {
        font-size: 14px;
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .index8-page .index5-product-content li span {
        font-size: 14px;
    }

    .index8-page .index5-product-summary h2 {
        font-size: 18px;
    }
}

@media (min-width: 1441px) {
    .index8-page .index5-product-content li span {
        font-size: 18px;
    }

    .index8-page .index5-product-summary h2 {
        font-size: 30px;
    }

    .index8-page .index8-media-tag {
        font-size: 18px;
    }
}

/* Desktop home page full-screen navigation powered by vertical Swiper. */
@media (min-width: 1024px) {
    body.home-swiper-locked {
        height: 100vh;
        height: 100dvh;
        overflow: hidden;
    }

    body.home-swiper-footer-open {
        height: auto;
        overflow-x: hidden;
        overflow-y: auto;
    }

    body.home-swiper-locked>.site-footer {
        display: none;
    }

    body.home-swiper-footer-open>.site-footer {
        display: block;
    }

    .home-swiper {
        width: 100%;
        min-height: var(--home-screen-h);
        height: var(--home-screen-h);
        overflow: hidden;
    }

    .home-swiper>.swiper-wrapper {
        min-height: var(--home-screen-h);
        height: var(--home-screen-h);
        transition-timing-function: cubic-bezier(.25, .1, .25, 1);
    }

    .home-swiper.is-swiper-ready .swiper-slide.in-view,
    .home-swiper .action-hero.motion-fade {
        opacity: 1;
        transform: none;
    }

    .home-swiper .home-full-slide {
        width: 100%;
        min-height: var(--home-screen-h) !important;
        height: var(--home-screen-h) !important;
        box-sizing: border-box;
        overflow: hidden;
    }

    .home-swiper .action-hero,
    .home-swiper .index5-product-screen {
        min-height: var(--home-screen-h) !important;
        height: var(--home-screen-h) !important;
    }

    .home-swiper .action-solutions {
        display: flex;
        width: 100%;
        padding: clamp(34px, 4vh, 62px) 0;
        align-items: center;
    }

    .home-swiper .action-solution-inner {
        width: 76%;
        margin-right: auto;
        margin-left: auto;
    }

    .home-swiper .action-cta {
        display: grid;
        width: 100%;
        align-items: center;
    }

    .home-swiper .action-cta-inner {
        width: 76%;
        height: 100%;
        min-height: 0;
    }

    .home-swiper .action-news {
        display: flex;
        width: 100%;
        padding: 0 12%;
        flex-direction: column;
        justify-content: center;
    }

    .home-swiper .home-footer-slide {
        width: 100%;
        min-height: 0 !important;
        height: auto !important;
        overflow: visible;
    }

    .home-swiper>.swiper-wrapper>.swiper-slide:last-child {
        height: auto !important;
    }

    .home-swiper .home-footer-slide>.site-footer {
        width: 100%;
    }

    .home-swiper .home-footer-slide .footer-inner {
        width: min(100%, 1540px);
    }

}


@media (min-width: 1024px) {
    .home-swiper .action-solutions {
        width: 100%;
        padding: 0;
        align-items: stretch;
    }

    .home-swiper .action-solution-inner {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}


.action-solution-stage.slides-scale {
    --solution-gap: 3%;
    --solution-edge-w: 13%;
    --solution-near-w: 19%;
    --solution-active-w: 24%;
    width: 90vw;
    max-width: 90vw;
    height: clamp(340px, 45vh, 520px);
    margin-left: 50%;
    overflow: hidden;
    transform: translateX(-50%);
}

.action-solution-stage.slides-scale .swiper-wrapper {
    align-items: center;
    margin-left: 0;
}

.action-solution-stage.slides-scale .action-solution-slide {
    width: var(--solution-edge-w);
    height: clamp(360px, 31vw, 500px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    margin-right: var(--solution-gap) !important;
    transition: width .42s ease, margin-right .42s ease;
}

.action-solution-stage.slides-scale .action-solution-slide[data-scale-position="-1"],
.action-solution-stage.slides-scale .action-solution-slide[data-scale-position="1"] {
    width: var(--solution-near-w);
}

.action-solution-stage.slides-scale .action-solution-slide[data-scale-position="0"] {
    width: var(--solution-active-w);
}

.action-solution-stage.slides-scale .action-solution-slide[data-scale-position="2"] {
    margin-right: 0 !important;
}

.action-solution-stage.slides-scale .action-solution-slide[data-scale-position=""] .action-solution-card {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.action-solution-stage.slides-scale .action-solution-card {
    position: relative;
    inset: auto;
    left: auto;
    top: auto;
    z-index: 1;
    flex: 0 0 auto;
    width: 100%;
    height: clamp(190px, 14vw, 270px);
    transform: none;
    opacity: .92;
    transition: width .48s ease, height .48s ease, transform .48s ease, opacity .36s ease, background .36s ease, box-shadow .36s ease;
}

.action-solution-stage.slides-scale .swiper-slide-prev .action-solution-card,
.action-solution-stage.slides-scale .swiper-slide-next .action-solution-card {
    z-index: 2;
    width: 100%;
    height: clamp(250px, 20vw, 360px);
    transform: none;
    opacity: 1;
}

.action-solution-stage.slides-scale .swiper-slide-active .action-solution-card {
    z-index: 3;
    width: 100%;
    height: clamp(360px, 31vw, 500px);
    padding: 0;
    border-radius: 18px;
    color: #fff;
    background: #101b2d;
    box-shadow: 0 34px 90px rgb(0 0 0 / 36%);
    transform: none;
    opacity: 1;
}

.action-solution-stage.slides-scale .swiper-slide-active .action-solution-photo {
    opacity: 1;
}

.action-solution-stage.slides-scale .swiper-slide-active .action-solution-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(0 13 38 / 0%) 42%, rgb(3 12 31 / 78%));
    pointer-events: none;
}

.action-solution-stage.slides-scale .swiper-slide-active .action-solution-icon {
    opacity: 0;
    transform: translateY(14px);
}

.action-solution-stage.slides-scale .swiper-slide-prev .action-solution-icon,
.action-solution-stage.slides-scale .swiper-slide-next .action-solution-icon {
    width: 58px;
    height: 52px;
    margin-bottom: 16px;
}

.action-solution-stage.slides-scale .swiper-slide-active .action-solution-copy {
    position: absolute;
    left: 50%;
    bottom: 34px;
    align-self: auto;
    max-width: 92%;
    width: 100%;
    padding: 0 32px;
    transform: translateX(-50%);
}

.action-solution-stage.slides-scale .swiper-slide-active .action-solution-copy strong {
    color: #fff;
    font-size: clamp(24px, 1.75vw, 34px);
}

.action-solution-stage.slides-scale .action-solution-card[data-link-disabled="true"] {
    cursor: default;
}


.action-solution-stage.action-solution-static {
    --solution-gap: 2%;
    --solution-edge-w: 14%;
    --solution-near-w: 19%;
    --solution-active-w: 26%;
    width: 95vw;
    max-width: clamp(85vw, 100vw - 80px, 95vw);
    height: clamp(340px, 45vh, 520px);
    margin-left: 50%;
    overflow: hidden;
    transform: translateX(-50%);
}

.action-solution-static .action-solution-track {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: var(--solution-gap);
}

@media (min-width: 1200px) {
    .action-solution-stage.action-solution-static {
        width: 92vw;
        max-width: 92vw;
    }
}

@media (min-width: 1400px) {
    .action-solution-stage.action-solution-static {
        width: 92vw;
        max-width: 92vw;
    }
}

@media (min-width: 1550px) {
    .action-solution-stage.action-solution-static {
        width: 92vw;
        max-width: 92vw;
    }
}

.action-solution-stage.action-solution-static .action-solution-slide {
    position: relative;
    width: var(--solution-edge-w);
    flex: 0 0 var(--solution-edge-w);
    height: auto !important;
    min-height: 0;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    margin-right: 0 !important;
}

.action-solution-stage.action-solution-static .action-solution-slide[data-scale-position="-1"],
.action-solution-stage.action-solution-static .action-solution-slide[data-scale-position="1"] {
    width: var(--solution-near-w);
    flex-basis: var(--solution-near-w);
}

.action-solution-stage.action-solution-static .action-solution-slide[data-scale-position="0"] {
    width: var(--solution-active-w);
    flex-basis: var(--solution-active-w);
}

.action-solution-static .action-solution-card {
    position: relative;
    inset: auto;
    left: auto;
    top: auto;
    width: 100%;
    height: 100% !important;
    max-width: 100%;
    max-height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    padding: 22px 18px;
    color: #20252b;
    background: rgb(245 248 252 / 78%);
    border-radius: 18px;
    overflow: hidden;
    isolation: isolate;
    contain: paint;
    opacity: 1;
    transform: none !important;
    transition: color .28s ease, background .28s ease, box-shadow .28s ease;
    clip-path: inset(0 round 18px);
}

.action-solution-static .action-solution-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background: var(--solution-cover) center / cover no-repeat;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}

.action-solution-static .action-solution-icon {
    width: 45%;
    height: auto;
    margin-top: -25%;
    aspect-ratio: 1 / 1;
    overflow: visible;
}

.action-solution-static .action-solution-slide[data-scale-position="-2"] .action-solution-icon,
.action-solution-static .action-solution-slide[data-scale-position="2"] .action-solution-icon {
    width: 56%;
    margin-top: -30%;
}

.action-solution-static .action-solution-slide[data-scale-position="-1"] .action-solution-icon,
.action-solution-static .action-solution-slide[data-scale-position="1"] .action-solution-icon {
    width: 45%;
    margin-top: -25%;
}

.action-solution-static .action-solution-icon img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.action-solution-static .action-solution-slide[data-scale-position="-1"] .action-solution-card,
.action-solution-static .action-solution-slide[data-scale-position="1"] .action-solution-card {
    height: 100% !important;
}

.action-solution-static .action-solution-slide[data-scale-position="0"] .action-solution-card {
    height: 100% !important;
    color: #fff;
    background: #101b2d;
    border-radius: 18px;
    box-shadow: 0 34px 90px rgb(0 0 0 / 34%);
}

.action-solution-static .action-solution-slide[data-scale-position="0"] .action-solution-card::before,
.action-solution-static .action-solution-slide[data-scale-position="0"] .action-solution-card::after {
    opacity: 1;
}

.action-solution-static .action-solution-slide[data-scale-position="0"] .action-solution-icon {
    opacity: 0;
    transform: translateY(14px);
}

.action-solution-static .action-solution-slide[data-scale-position="0"] .action-solution-copy {
    position: absolute;
    left: 50%;
    bottom: 84px;
    padding: 0 28px;
    transform: translateX(-50%);
}

.action-solution-static .action-solution-slide[data-scale-position="0"] .action-solution-copy strong {
    color: #fff;
    font-size: clamp(20px, 1.45vw, 28px);
}

.action-solution-static .action-solution-card .action-solution-photo {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: inherit;
    overflow: hidden;
    clip-path: inset(0 round 18px);
}

.action-solution-static .action-solution-card .action-solution-photo img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
    transform: translateZ(0);
}

.action-solution-static .action-solution-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgb(0 13 38 / 0%) 42%, rgb(3 12 31 / 78%));
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
    border-radius: inherit;
}

.action-solution-static .action-solution-card:hover,
.action-solution-static .action-solution-card:focus,
.action-solution-static .action-solution-card:focus-within,
.action-solution-static .action-solution-card:focus-visible {
    color: #fff;
    background: #101b2d;
    box-shadow: 0 34px 90px rgb(0 0 0 / 34%);
    transform: none !important;
}

.action-solution-static .action-solution-card:hover::before,
.action-solution-static .action-solution-card:focus::before,
.action-solution-static .action-solution-card:focus-within::before,
.action-solution-static .action-solution-card:focus-visible::before,
.action-solution-static .action-solution-card:hover::after,
.action-solution-static .action-solution-card:focus::after,
.action-solution-static .action-solution-card:focus-within::after,
.action-solution-static .action-solution-card:focus-visible::after {
    opacity: 1;
}

.action-solution-static .action-solution-card:hover .action-solution-icon,
.action-solution-static .action-solution-card:focus .action-solution-icon,
.action-solution-static .action-solution-card:focus-within .action-solution-icon,
.action-solution-static .action-solution-card:focus-visible .action-solution-icon {
    opacity: 0;
    transform: translateY(14px);
}

.action-solution-static .action-solution-copy {
    position: absolute;
    left: 50%;
    top: 69%;
    z-index: 2;
    max-width: 92%;
    width: 100%;
    padding: 0;
    transform: translateX(-50%);
}

.action-solution-static .action-solution-card:hover .action-solution-copy,
.action-solution-static .action-solution-card:focus .action-solution-copy,
.action-solution-static .action-solution-card:focus-within .action-solution-copy,
.action-solution-static .action-solution-card:focus-visible .action-solution-copy {
    position: absolute;
    left: 50%;
    top: 60%;
    padding: 0 28px;
    transform: translateX(-50%);
}

.action-solution-static .action-solution-card:hover .action-solution-copy strong,
.action-solution-static .action-solution-card:focus .action-solution-copy strong,
.action-solution-static .action-solution-card:focus-within .action-solution-copy strong,
.action-solution-static .action-solution-card:focus-visible .action-solution-copy strong {
    color: #fff;
    font-size: inherit;
}

.action-solution-static .action-solution-slide[data-scale-position="0"] .action-solution-card:hover .action-solution-copy strong,
.action-solution-static .action-solution-slide[data-scale-position="0"] .action-solution-card:focus .action-solution-copy strong,
.action-solution-static .action-solution-slide[data-scale-position="0"] .action-solution-card:focus-within .action-solution-copy strong,
.action-solution-static .action-solution-slide[data-scale-position="0"] .action-solution-card:focus-visible .action-solution-copy strong {
    font-size: clamp(20px, 1.45vw, 28px);
}

.zy-solutions-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 720px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(54px, 6.2vh, 82px) 0 clamp(58px, 7vh, 94px);
}

.zy-solutions-title {
    width: min(900px, calc(100% - 40px));
    margin: 0 auto clamp(38px, 4.6vh, 54px);
    color: #fff;
    text-align: center;
}

.zy-solutions-title h2 {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 18px;
    margin: 0;
    color: #fff;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.24;
    letter-spacing: 2px;
}

.zy-solutions-title h2 em {
    color: inherit;
    font-size: .78em;
    font-style: normal;
    font-weight: 650;
}

.zy-solutions-title p {
    max-width: 820px;
    margin: 28px auto 0;
    color: rgb(255 255 255 / 88%);
    font-size: clamp(12px, 1.15vw, 18px);
    line-height: 1.55;
    letter-spacing: .14em;
}

.zy-solutions-board {
    width: 92vw;
    max-width: 1768px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 14fr 19fr 26fr 19fr 14fr;
    column-gap: 2%;
    align-items: center;
}

.zy-solution-card {
    position: relative;
    display: grid;
    aspect-ratio: 1 / 1;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    color: #232323;
    text-align: center;
    text-decoration: none;
    background: rgb(244 248 253 / 78%);
    box-shadow: 0 22px 58px rgb(0 18 72 / 18%);
    backdrop-filter: blur(3px);
    isolation: isolate;
}

.zy-solution-card.is-edge {
    border-radius: 13px;
}

.zy-solution-card.is-near {
    border-radius: 15px;
}

.zy-solution-card.is-primary {
    border-radius: 22px;
    background: #101b2d;
    box-shadow: 0 34px 90px rgb(0 0 0 / 24%);
}

.zy-solution-card:not(.is-primary) .zy-solution-media,
.zy-solution-card:not(.is-primary) .zy-solution-primary-copy,
.zy-solution-card.is-primary .zy-solution-icon,
.zy-solution-card.is-primary .zy-solution-copy {
    display: none;
}

.zy-solution-card:not(.is-primary) {
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: center;
    justify-items: center;
    padding: clamp(18px, 1.45vw, 28px) clamp(12px, 1.2vw, 22px) clamp(16px, 1.4vw, 26px);
}

.zy-solution-card:not(.is-primary)::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--zy-solution-cover) center / cover no-repeat;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}

.zy-solution-card:not(.is-primary)::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgb(0 13 38 / 0%) 42%, rgb(3 12 31 / 78%));
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}

.zy-solution-card:not(.is-primary):hover::before,
.zy-solution-card:not(.is-primary):focus::before,
.zy-solution-card:not(.is-primary):focus-visible::before,
.zy-solution-card:not(.is-primary):hover::after,
.zy-solution-card:not(.is-primary):focus::after,
.zy-solution-card:not(.is-primary):focus-visible::after {
    opacity: 1;
}

.zy-solution-icon {
    position: relative;
    z-index: 1;
    width: 40%;
    align-self: center;
    justify-self: center;
    transition: opacity .24s ease, transform .24s ease;
}

.zy-solution-card.is-edge .zy-solution-icon {
    width: 50%;
}

.zy-solution-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.zy-solution-copy {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 100%;
    color: #272727;
    font-size: clamp(15px, 1vw, 20px);
    font-weight: 500;
    line-height: 1.45;
    transition: color .24s ease;
}

.zy-solution-card:not(.is-primary):hover .zy-solution-icon,
.zy-solution-card:not(.is-primary):focus .zy-solution-icon,
.zy-solution-card:not(.is-primary):focus-visible .zy-solution-icon {
    opacity: 0;
    transform: translateY(10px);
}

.zy-solution-card:not(.is-primary):hover .zy-solution-copy,
.zy-solution-card:not(.is-primary):focus .zy-solution-copy,
.zy-solution-card:not(.is-primary):focus-visible .zy-solution-copy {
    color: #fff;
}

.zy-solution-card.is-edge .zy-solution-copy {
    font-size: clamp(13px, .82vw, 16px);
}

.zy-solution-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #101b2d;
}

.zy-solution-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zy-solution-card.is-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgb(0 13 38 / 0%) 42%, rgb(3 12 31 / 74%));
    pointer-events: none;
}

.zy-solution-primary-copy {
    position: absolute;
    left: 50%;
    bottom: clamp(26px, 3vw, 54px);
    z-index: 2;
    display: grid;
    align-content: center;
    justify-items: center;
    width: 100%;
    padding: 0 clamp(18px, 2vw, 38px);
    color: #fff;
    background: transparent;
    transform: translateX(-50%);
}

.zy-solution-primary-copy span {
    display: block;
    font-size: clamp(16px, 1.7vw, 36px);
    font-weight: 500;
    line-height: 1.28;
}

@media (min-width: 1024px) {
    .zy-solutions-board.is-pc-carousel-ready {
        position: relative;
        width: 92vw;
        max-width: 1768px;
        height: clamp(500px, 45vh, 560px);
        display: block;
        overflow: hidden;
        column-gap: 0;
        perspective: 1200px;
        touch-action: pan-y;
        user-select: none;
        -webkit-user-select: none;
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card,
    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card.is-primary,
    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card.is-near,
    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card.is-edge {
        --zy-pc-position: 0;
        --zy-pc-x: 0px;
        position: absolute;
        top: 50%;
        right: auto;
        bottom: auto;
        left: 50%;
        z-index: 1;
        width: clamp(150px, 11.5vw, 230px);
        height: clamp(190px, 14vw, 270px);
        aspect-ratio: auto;
        display: grid;
        grid-template-rows: minmax(0, 1fr) auto;
        align-items: center;
        justify-items: center;
        padding: 22px 18px;
        overflow: hidden;
        border-radius: 18px;
        color: #20252b;
        text-align: center;
        text-decoration: none;
        background: rgb(245 248 252 / 78%);
        box-shadow: 0 18px 48px rgb(0 18 72 / 20%);
        opacity: 1;
        transform:
            translate(-50%, -50%) translateX(var(--zy-pc-x));
        transition:
            width .46s ease,
            height .46s ease,
            transform .46s ease,
            color .28s ease,
            background .28s ease,
            box-shadow .28s ease,
            opacity .36s ease;
        cursor: pointer;
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card[data-zy-position="-1"],
    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card[data-zy-position="1"] {
        z-index: 3;
        width: clamp(220px, 16.5vw, 330px);
        height: clamp(250px, 20vw, 360px);
        padding: 28px 22px;
        box-shadow: 0 24px 62px rgb(0 18 72 / 24%);
        transform:
            translate(-50%, -50%) translateX(var(--zy-pc-x));
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card[data-zy-position="-2"],
    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card[data-zy-position="2"] {
        z-index: 2;
        opacity: .92;
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card:focus-visible {
        outline: 2px solid rgb(255 255 255 / 72%);
        outline-offset: 4px;
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card[data-zy-position=""] {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card.is-carousel-active {
        z-index: 5;
        width: clamp(360px, 26vw, 520px);
        height: clamp(360px, 31vw, 500px);
        padding: 0;
        border-radius: 18px;
        color: #fff;
        background: #101b2d;
        box-shadow: 0 34px 90px rgb(0 0 0 / 36%);
        opacity: 1;
        transform:
            translate(-50%, -50%) translateX(var(--zy-pc-x));
        cursor: pointer;
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card:not(.is-carousel-active):hover,
    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card:not(.is-carousel-active):focus-visible {
        z-index: 4;
        color: #fff;
        background: #101b2d;
        box-shadow: 0 30px 70px rgb(0 18 72 / 30%);
        transform:
            translate(-50%, -50%) translateX(var(--zy-pc-x)) translateY(-8px);
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card[data-zy-position="-2"]:not(.is-carousel-active):hover,
    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card[data-zy-position="2"]:not(.is-carousel-active):hover,
    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card[data-zy-position="-2"]:not(.is-carousel-active):focus-visible,
    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card[data-zy-position="2"]:not(.is-carousel-active):focus-visible {
        transform:
            translate(-50%, -50%) translateX(var(--zy-pc-x)) translateY(-6px);
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card::before {
        opacity: 0;
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card::after,
    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card.is-primary::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        display: block;
        background: linear-gradient(180deg, rgb(0 13 38 / 0%) 42%, rgb(3 12 31 / 78%));
        opacity: 0;
        pointer-events: none;
        transition: opacity .28s ease;
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card.is-carousel-active::after {
        opacity: 1;
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card:not(.is-carousel-active):hover::after,
    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card:not(.is-carousel-active):focus-visible::after {
        opacity: 1;
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-media,
    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card.is-primary .zy-solution-media {
        position: absolute;
        inset: 0;
        z-index: 0;
        display: block;
        width: 100%;
        height: 100%;
        opacity: 0;
        overflow: hidden;
        border-radius: inherit;
        background: #101b2d;
        transition: opacity .36s ease;
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card.is-carousel-active .zy-solution-media {
        opacity: 1;
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card:not(.is-carousel-active):hover .zy-solution-media,
    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card:not(.is-carousel-active):focus-visible .zy-solution-media {
        opacity: 1;
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-media img {
        width: 100%;
        height: 100%;
        border-radius: inherit;
        object-fit: cover;
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-icon,
    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card.is-primary .zy-solution-icon,
    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card.is-edge .zy-solution-icon {
        position: relative;
        z-index: 2;
        display: block;
        width: 40%;
        height: auto;
        align-self: center;
        justify-self: center;
        margin-top: -13%;
        opacity: 1;
        transform: none;
        transition: opacity .28s ease, transform .36s ease;
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card[data-zy-position="-2"] .zy-solution-icon,
    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card[data-zy-position="2"] .zy-solution-icon {
        width: 50%;
        margin-top: -17%;
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card.is-carousel-active .zy-solution-icon {
        opacity: 0;
        transform: translateY(14px);
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-copy,
    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card.is-primary .zy-solution-copy,
    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card.is-edge .zy-solution-copy {
        position: relative;
        left: auto;
        bottom: auto;
        z-index: 2;
        display: block;
        width: 100%;
        max-width: 92%;
        padding: 0;
        color: #20252b;
        font-size: clamp(15px, .95vw, 20px);
        font-weight: 500;
        line-height: 1.36;
        text-align: center;
        transform: none;
        transition: color .28s ease, font-size .28s ease;
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card[data-zy-position="-1"] .zy-solution-copy,
    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card[data-zy-position="1"] .zy-solution-copy {
        font-size: clamp(18px, 1.18vw, 24px);
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card.is-carousel-active .zy-solution-copy {
        position: absolute;
        left: 50%;
        bottom: clamp(26px, 3vw, 54px);
        z-index: 2;
        max-width: 92%;
        padding: 0 32px;
        color: #fff;
        font-size: clamp(24px, 1.75vw, 34px);
        transform: translateX(-50%);
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card:not(.is-carousel-active):hover .zy-solution-icon,
    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card:not(.is-carousel-active):focus-visible .zy-solution-icon {
        opacity: 0;
        transform: translateY(14px);
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card:not(.is-carousel-active):hover .zy-solution-copy,
    .zy-solutions-board.is-pc-carousel-ready .zy-solution-card:not(.is-carousel-active):focus-visible .zy-solution-copy {
        position: absolute;
        left: 50%;
        bottom: clamp(18px, 2.4vw, 34px);
        z-index: 2;
        max-width: 92%;
        padding: 0 20px;
        color: #fff;
        font-size: clamp(16px, 1.12vw, 22px);
        transform: translateX(-50%);
    }

    .zy-solutions-board.is-pc-carousel-ready .zy-solution-primary-copy {
        display: none;
    }
}

@media (min-width: 1024px) and (max-width: 1180px) {
    .zy-solutions-board {
        width: 94vw;
        column-gap: 1.5%;
    }

    .zy-solution-copy {
        font-size: clamp(12px, 1.25vw, 16px);
    }
}

/* Site-wide mobile styles: all widths below 1024px use the narrowest mobile treatment. */
@media (max-width: 1023px) {
    :root {
        --header-h: 76px;
    }

    .header-inner {
        justify-content: space-between;
        gap: 16px;
    }

    .brand {
        flex: 0 0 auto;
        order: 1;
    }

    .brand img {
        width: 210px;
    }

    .mobile-toggle {
        display: flex;
        order: 3;
        flex: 0 0 auto;
    }

    .main-nav {
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        margin-left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        border-top: 1px solid #ddd;
        box-shadow: 0 12px 24px rgb(0 0 0 / 8%);
    }

    .site-header.menu-open .main-nav {
        display: flex;
    }

    .site-header.search-open .mobile-search-layer {
        display: block;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 18px 28px;
        text-align: left;
    }

    .nav-link::after {
        display: none;
    }

    .header-tools {
        order: 2;
        flex: 1 1 auto;
        justify-content: flex-end;
        gap: 16px;
        min-width: 0;
    }

    .search-box {
        order: 1;
        width: 34px;
        height: 34px;
        border: 0;
    }

    .search-box input {
        display: none;
    }

    .search-box button {
        width: 34px;
        background: transparent;
    }

    .search-box svg {
        width: 25px;
        height: 25px;
        stroke: var(--blue);
    }

    .login-link {
        order: 2;
    }

    .language-link {
        order: 3;
    }

    .tool-divider {
        display: none;
    }

    .tool-link {
        font-size: 16px;
    }

    .mobile-search-layer {
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        z-index: 2;
        padding: 16px 20px;
        background: #fff;
        border-top: 1px solid #ddd;
        box-shadow: 0 12px 24px rgb(0 0 0 / 8%);
    }

    .mobile-search-form {
        display: flex;
        width: 100%;
        height: 42px;
        border: 1px solid #9a9a9a;
        background: #fff;
    }

    .mobile-search-form input {
        flex: 1;
        min-width: 0;
        border: 0;
        outline: 0;
        padding: 0 14px;
        color: #333;
        font-size: 15px;
    }

    .mobile-search-form button {
        width: 52px;
    }

    .mobile-search-form svg {
        width: 24px;
        height: 24px;
    }

    .mega-layer {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: 0;
    }

    .mega-layer.show {
        display: block;
    }

    .mega-products,
    .mega-solutions,
    .mega-standards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
        padding: 28px 24px 38px;
    }

    .action-hero {
        min-height: calc(100vh - var(--header-h));
        height: calc(100vh - var(--header-h));
        max-height: none;
    }

    .action-company {
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 68px 24px 58px;
    }

    .action-company-media {
        height: 420px;
        min-height: 0;
    }

    .action-solution-grid {
        min-height: 560px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    .action-solution-grid a:first-child {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 360px;
    }

    .action-cta-inner {
        padding: 64px 24px;
    }

    .partners-main {
        --partner-card-w: 100%;
        --partner-card-h: 150px;
        --partner-logo-h: 110px;

    }

    .partner-group {
        width: min(730px, calc(100% - 32px));
        grid-template-columns: 192px minmax(0, 1fr);
        gap: 26px;
    }

    .partner-type {
        padding-top: 78px;
    }

    .partner-type img {
        width: 76px;
    }

    .partner-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 15px;
    }

    .partner-logos a {
        width: 100%;
        height: var(--partner-card-h);
    }

    .float-contact {
        display: block;
        right: -5px;
        top: 72%;
        z-index: 4000;
        width: 65px;
        transform: translateY(-70%);
    }
    
    
    .float-contact .float-contact-item {
    position: relative;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 2px;
    overflow: visible;
    background: #28c6c6;
    color: #fff;
    text-decoration: none;
}

.float-contact .float-contact-item>img {
    display: block;
    width: 35px;
    height: 35px;
    object-fit: contain;
}

    .footer-inner nav {
        padding-right: 170px;
    }

    .footer-inner nav a {
        padding: 0 18px;
    }

    .footer-copy {
        max-width: calc(100% - 170px);
    }

    .contact-map-section {
        height: auto;
        min-height: 0;
        padding: 48px 0px;
        display: block;
    }

    .contact-info-panel {
        width: auto;
        min-height: 0;
        margin-left: 0;
    }

    .contact-map-primary,
    .contact-form-layout {
        grid-template-columns: 1fr;
    }

    .contact-map-visual,
    .contact-product-collection {
        min-height: 420px;
    }

    .category-hero {}

    .category-main {
        padding-top: 68px;
        padding-bottom: 82px;
    }

    .category-tabs {
        gap: 8px 22px;
    }

    .product-grid {
        grid-auto-rows: 290px;
    }

    .product-card {
        padding: 22px;
    }

    .product-card h2 {
        font-size: 20px;
    }

    .product-card p {
        width: 47%;
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.7;
    }

    .site-header .header-tools {
        gap: 10px;
    }

    .site-header .header-tools>a {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .index9-page .index9-category-inner {
        padding: 68px 28px 86px;
    }

    .index9-page .index9-category-tabs {
        font-size: 16px;
    }

    .index9-page .index9-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 330px;
    }

    .index9-page .index9-product-grid .product-card:first-child,
    .index9-page .index9-product-grid .product-card:nth-child(2) {
        grid-column: span 1;
    }

    .index9-page .index9-product-grid .product-card h2 {
        max-width: 88%;
    }

    .index9-page .index9-product-grid .product-card p {
        width: 100%;
    }

    .index9-page .index9-product-grid .product-card img,
    .index9-page .index9-product-grid .product-card:not(:first-child) img,
    .index9-page .index9-product-grid .product-card:nth-child(2) img {
        right: 8%;
        bottom: 62px;
        width: 72%;
        max-height: 140px;
        opacity: .92;
    }

    .index4-product-screen,
    .index4-product-screen.is-reverse,
    .index5-product-screen,
    .index5-product-screen.is-reverse {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .index4-product-screen.is-reverse .index4-product-media,
    .index5-product-screen.is-reverse .index5-product-media {
        order: 0;
    }

    .index4-product-media,
    .index5-product-media {
        min-height: 58vw;
    }

    .index4-product-media img,
    .index5-product-media img {
        min-height: 58vw;
    }

    .index4-product-content,
    .index5-product-content {
        min-height: 0;
        padding: 38px 22px 56px;
    }

    .index4-product-content ul,
    .index5-product-list,
    .index5-product-list.is-count-3,
    .index5-product-list.is-count-4,
    .index5-product-list.is-count-5 {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 12px;
        height: auto;
    }

    .index5-product-list.is-count-5 li,
    .index5-product-list.is-count-5 li:nth-child(n + 4) {
        grid-column: auto;
    }

    .index5-product-content li a {
        min-height: 0;
        grid-template-rows: auto auto;
    }

    .index5-product-content li img {
        height: 220px;
    }

    .index5-product-summary h2 {
        font-size: 34px;
    }

    .index5-product-summary span {
        font-size: 16px;
    }

    .about-business-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 56px;
    }

    .about-business-card:nth-child(3)::before {
        display: none;
    }

    .about-mission-grid {
        grid-template-columns: 1fr;
        max-width: 640px;
    }

    .join-hero-text {}

    .news-hero-text {
        max-width: calc(100% - 48px);
    }

    .news-section {
        padding: 48px 16px 90px;
    }

    .news-card {
        grid-template-columns: 92px 1fr;
        gap: 24px;
    }

    .news-thumb {
        grid-column: 2;
        width: min(438px, 100%);
    }

    .news-pagination {
        margin-top: 58px;
    }

    .solutions-section {
        padding: 54px 16px 95px;
    }

    .solutions-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .solutions-sidebar {
        position: static;
        padding: 0 0 34px;
        border-right: 0;
        border-bottom: 1px solid #e2e5ea;
    }

    .solutions-sidebar nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 12px;
    }

    .solutions-sidebar-card {
        margin-top: 30px;
    }

    .solutions-list {
        gap: 44px 24px;
    }

    .content-detail-section {
        padding: 54px 16px 95px;
    }

    .content-detail-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .content-detail-sidebar {
        grid-column: 1;
        grid-row: auto;
        position: static;
        padding: 34px 0 0;
        border-right: 0;
        border-top: 1px solid #e2e5ea;
        border-bottom: 0;
    }

    .content-article {
        grid-column: 1;
        grid-row: auto;
    }

    .content-detail-sidebar nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 12px;
    }

    .content-recent {
        margin-top: 30px;
    }

    .content-article>h1,
    .solution-detail-article h1 {
        font-size: 32px;
    }

    .content-highlight-grid,
    .product-spec-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-detail-hero {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 64px 24px 76px;
        background:
            radial-gradient(circle at 88% 18%, rgb(41 216 255 / 18%), transparent 34%),
            linear-gradient(180deg, #06172f 0 62%, #f7fbff 62% 100%);
    }

    .standards-section {
        padding: 54px 16px 95px;
    }

    .standards-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .standards-sidebar {
        position: static;
        padding: 0 0 34px;
        border-right: 0;
        border-bottom: 1px solid #e2e5ea;
    }

    .standards-sidebar nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px 12px;
    }

    .standards-sidebar-card {
        margin-top: 30px;
    }

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

    .jobs-section {
        padding: 38px 14px 92px;
    }

    .jobs-head {
        display: none;
    }

    .jobs-table {
        border-top-width: 3px;
    }

    .job-row {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px 18px;
    }

    .job-row>div {
        padding: 0;
    }

    .job-row>div:not(:first-child) {
        color: #666;
        font-size: 13px;
        font-weight: 500;
    }

    .job-row>div:nth-child(2)::before {
        content: "职位类型：";
    }

    .job-row>div:nth-child(3)::before {
        content: "工作地址：";
    }

    .job-row>div:nth-child(4)::before {
        content: "招聘人数：";
    }

   .job-row>div:nth-child(5)::before {
        content: "截止日期：";
    }

    html[lang="en-US"] .job-row>div:nth-child(2)::before {
        content: "Job Type: ";
    }

    html[lang="en-US"] .job-row>div:nth-child(3)::before {
        content: "Work Address: ";
    }

    html[lang="en-US"] .job-row>div:nth-child(4)::before {
        content: "Openings: ";
    }

    html[lang="en-US"] .job-row>div:nth-child(5)::before {
        content: "Deadline: ";
    }

    .job-detail {
        padding: 28px 18px 42px;
    }

    .index6-page .index5-product-screen {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .index6-page .index6-product-media {
        min-height: 56vw;
    }

    .index6-page .index6-product-content {
        padding: 30px 22px 46px;
        gap: 20px;
    }

    .index6-page .index6-product-list {
        grid-template-columns: 1fr;
    }

    .index7-page .index5-product-screen,
    .index7-page .index5-product-screen.is-reverse {
        grid-template-columns: 1fr;
    }

    .index7-page .index5-product-screen.is-reverse .index5-product-media {
        order: 0;
    }

    .index7-page .index5-product-media {
        min-height: 54vw;
    }

    .index7-page .index5-product-content {
        min-height: 0;
        gap: 34px;
        padding: 42px 22px 54px;
    }

    .index7-page .index5-product-summary,
    .index7-page .index7-product-carousel {
        width: min(100%, calc(100vw - 44px));
        max-width: calc(100vw - 44px);
    }

    .index7-page .index5-product-list {
        --index7-card-w: 112px;
        --index7-card-gap: 9px;
    }

    .index7-page .index5-product-content li img {
        height: 63px;
    }

    .index7-page .index7-product-controls {
        right: 0;
        top: -42px;
    }

    .index7-page .index7-product-arrow {
        width: 30px;
        height: 30px;
        font-size: 22px;
    }

    .index8-page .index5-product-screen,
    .index8-page .index5-product-screen.is-reverse {
        grid-template-columns: 1fr;
    }

    .index8-page .index5-product-content {
        padding: 42px 22px 54px;
    }

    .index8-page .index5-product-summary,
    .index8-page .index7-product-carousel {
        width: min(100%, calc(100vw - 44px));
        max-width: calc(100vw - 44px);
    }

    .index8-page .index5-product-summary p {
        font-size: 34px;
    }

    .index8-page .index5-product-summary h2 {
        font-size: 30px;
    }

    .index8-page .index5-product-screen,
    .index8-page .index5-product-screen.is-reverse {
        grid-template-columns: 1fr;
    }

    .index8-page .index5-product-screen.is-reverse .index5-product-media {
        order: 0;
    }

    .index8-page .index5-product-screen.is-reverse .index5-product-content {
        order: 1;
    }

    .index8-page .index5-product-content {
        padding: 42px 28px 58px;
    }

    .index8-page .index5-product-content::after {
        top: 34px;
        right: 28px;
        font-size: 96px;
    }

    .index8-page .index5-product-summary h2 {
        font-size: 32px;
    }

    .index8-page .index5-product-summary span {
        max-width: none;
        margin-top: 26px;
        font-size: 15px;
    }

    .index8-page .index5-product-content li a {
        min-height: 58px;
        grid-template-columns: 88px minmax(0, 1fr) auto;
    }

    .index8-page .index5-product-content li img {
        width: 88px;
        height: 50px;
    }

    .index8-page .index5-product-screen,
    .index8-page .index5-product-screen.is-reverse {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .index8-page .index5-product-media {
        min-height: 520px;
    }

    .index8-page .index5-product-content {
        grid-template-rows: auto auto;
        gap: 30px;
        padding: 44px 28px 54px;
    }

    .index8-page .index5-product-summary {
        min-height: 0;
    }

    .index8-page .index8-media-tags {
        min-height: 126px;
    }

    .index8-page .index8-media-tag {
        gap: 10px;
        padding: 16px 10px;
        font-size: 16px;
    }

    .solution-detail-page .solution-pd-hero {
        height: auto;
        min-height: 300px;
        padding: 72px 0 44px;
    }

    .product-detail-page .pd-subnav-inner {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .product-detail-page .pd-subnav-links {
        justify-content: flex-start;
        gap: 24px;
        width: 100%;
        margin-top: 9px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .product-detail-page .pd-subnav-links::-webkit-scrollbar {
        display: none;
    }

    .product-detail-page .pd-anchor-target,
    .product-detail-page #pd-top {
        scroll-margin-top: calc(var(--header-h) + 96px);
    }

    .product-detail-page .pd-hero {
        padding: 52px 0 58px;
    }

    .product-detail-page .pd-hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .product-detail-page .pd-hero-media {
        min-height: 190px;
        max-height: 500px;
    }

    .product-detail-page .pd-feature-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .product-detail-page .pd-feature-grid ol,
    .product-detail-page .pd-copy-list {
        padding-left: 0;
    }

    .product-detail-page .pd-standard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .solution-equipment-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-page .pd-standard-grid span,
    .product-detail-page .pd-standard-grid span:nth-child(5n),
    .product-detail-page .pd-standard-grid span:nth-last-child(-n+5) {
        border-right: 1px solid #cfd3ec;
        border-bottom: 1px solid #cfd3ec;
    }

    .product-detail-page .pd-standard-grid span:nth-child(2n) {
        border-right: 0;
    }

    .product-detail-page .pd-standard-grid span:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .product-detail-page .pd-wave-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-detail-page .pd-image-text,
    .product-detail-page .pd-gallery {
        grid-template-columns: 1fr;
    }

    .product-detail-page .pd-image-text.is-reverse .pd-image-text-media {
        order: 0;
    }

    .product-detail-page .pd-download-grid {
        grid-template-columns: 1fr;
    }

    /* Below 1024px, switch each product panel to a 50/50 vertical layout. */
    .index8-page .action-news {
        width: calc(100% - 32px);
        margin-right: auto;
        margin-left: auto;
    }

    .index8-page .action-solutions {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }

    .index8-page .index5-product-screen,
    .index8-page .index5-product-screen.is-reverse {
        min-height: calc(100vh - var(--header-h));
        min-height: calc(100dvh - var(--header-h));
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: calc((100vh - var(--header-h)) / 2) minmax(calc((100vh - var(--header-h)) / 2), max-content);
        grid-template-rows: calc((100dvh - var(--header-h)) / 2) minmax(calc((100dvh - var(--header-h)) / 2), max-content);
    }

    .index8-page .index5-product-media {
        width: 100%;
        min-height: 0;
        height: 100%;
        padding-bottom: 0;
    }

    .index8-page .index5-product-image {
        bottom: 0;
    }

    .index8-page .index5-product-media .index5-product-image img,
    .index8-page .index5-product-media .index5-product-image img.is-zooming {
        display: block;
        width: 100%;
        height: 100%;
        opacity: 1 !important;
        visibility: visible !important;
        object-fit: cover;
        transform: none !important;
        animation: none;
    }

    .index8-page .index5-product-content {
        width: 100%;
        min-height: calc((100vh - var(--header-h)) / 2);
        min-height: calc((100dvh - var(--header-h)) / 2);
        height: auto;
    }

    .index8-page .index5-product-screen.is-reverse .index5-product-media,
    .index8-page .index5-product-media {
        order: 0;
    }

    .index8-page .index5-product-screen.is-reverse .index5-product-content,
    .index8-page .index5-product-content {
        order: 1;
    }

    .index8-page .index5-product-content {
        grid-template-rows: max-content max-content;
        align-content: center;
        gap: clamp(10px, 1.8vh, 16px);
        padding: clamp(22px, 3.5vh, 32px) 5%;
        overflow: visible;
    }

    .index8-page .index5-product-summary,
    .index8-page .index7-product-carousel {
        width: 100%;
        max-width: none;
        min-height: 0;
        height: auto;
        position: relative;
    }

    .index8-page .index5-product-summary {
        align-self: start;
    }

    .index8-page .index7-product-carousel {
        align-self: start;
    }

    .index8-page .index8-product-icon {
    width: 98px;
    height: auto;
        margin-bottom: 8px;
    }

    .index8-page .index5-product-summary h2 {
        font-size: clamp(22px, 4.2vw, 28px);
        line-height: 1.12;
    }

    .index8-page .index5-product-summary h2::after {
        width: 48px;
        height: 2px;
        margin-top: 8px;
    }

    .index8-page .index5-product-content li a,
    .index8-page .index5-product-list li a {
        min-height: clamp(34px, 4.8vh, 42px);
    }

    .index8-page .index5-product-list li.index5-product-all a {
        min-height: clamp(36px, 5vh, 44px);
    }

    .index8-page .index5-product-content li span {
        font-size: clamp(12px, 2.2vw, 15px);
        line-height: 1.25;
    }

    .index8-page .index8-media-tags {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        min-height: 0;
        height: clamp(82px, 13vh, 108px);
    }

    .index8-page .index8-media-tag {
        min-height: 0;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        padding: 6px 5px;
        font-size: clamp(11px, 2vw, 14px);
        line-height: 1.15;
        text-align: center;
    }

    .index8-page .index8-media-tag-icon {
        width: clamp(28px, 5vh, 36px);
        height: clamp(28px, 5vh, 36px);
        min-width: clamp(28px, 5vh, 36px);
        min-height: 0;
        max-width: 36px;
        max-height: 36px;
        flex: 0 0 clamp(28px, 5vh, 36px);
        overflow: hidden;
    }

    .index8-page .index5-product-media .index8-media-tag-icon img {
        width: 100%;
        height: 100%;
        min-width: 0;
        min-height: 0;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .home-swiper:not(.is-swiper-ready) {
        height: auto;
        overflow: visible;
    }

    .home-swiper:not(.is-swiper-ready)>.swiper-wrapper {
        display: block;
        height: auto;
        transform: none !important;
    }

    .home-swiper:not(.is-swiper-ready) .swiper-slide {
        height: auto !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .home-swiper:not(.is-swiper-ready) .motion-fade,
    .home-swiper:not(.is-swiper-ready) .reveal-up,
    .home-swiper:not(.is-swiper-ready) .reveal-card {
        opacity: 1 !important;
        transform: none !important;
    }
    body.home-swiper-page {
        overflow-x: hidden;
    }

    body.home-swiper-page .home-swiper,
    body.home-swiper-page .home-swiper>.swiper-wrapper,
    body.home-swiper-page .home-swiper .swiper-slide,
    body.home-swiper-page .action-solutions,
    body.home-swiper-page .zy-solutions-inner {
        max-width: 100%;
        overflow-x: clip;
    }

    @supports not (overflow: clip) {

        body.home-swiper-page .home-swiper,
        body.home-swiper-page .home-swiper>.swiper-wrapper,
        body.home-swiper-page .home-swiper .swiper-slide,
        body.home-swiper-page .action-solutions,
        body.home-swiper-page .zy-solutions-inner {
            overflow-x: hidden;
        }
    }
    /* Mobile home product panels: keep the media half-screen so absolutely positioned images stay inside the section. */
    .index8-page .index5-product-screen,
    .index8-page .index5-product-screen.is-reverse {
        min-height: calc(100vh - var(--header-h)) !important;
        height: auto !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: calc((100vh - var(--header-h)) / 2) auto !important;
        overflow: hidden;
    }

    .index8-page .index5-product-media,
    .index8-page .index5-product-screen.is-reverse .index5-product-media {
        position: relative !important;
        order: 0 !important;
        width: 100% !important;
        min-height: calc((100vh - var(--header-h)) / 2) !important;
        height: calc((100vh - var(--header-h)) / 2) !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .index8-page .index5-product-content,
    .index8-page .index5-product-screen.is-reverse .index5-product-content {
        order: 1 !important;
        min-height: calc((100vh - var(--header-h)) / 2) !important;
    }

    .index8-page .index5-product-image {
        position: absolute !important;
        inset: 0 !important;
        bottom: auto !important;
        z-index: 0 !important;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }

    .index8-page .index5-product-media .index5-product-image img,
    .index8-page .index5-product-media .index5-product-image img.is-zooming {
        position: absolute !important;
        inset: 0 !important;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        object-fit: cover !important;
        transform: scale(1);
        animation: none;
    }

    .index8-page .index5-product-slide.is-active img {
        animation: index8ProductImageZoom 4000ms 1 ease forwards;
    }

    .index8-page .index5-product-slide {
        position: absolute !important;
        inset: 0 !important;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }

    .index8-page .index8-media-tags {
        z-index: 2;
    }

    .action-hero-cta {
        min-width: 105px;
        height: 35px;
        gap: 17px;
        padding-right: 20px;
        padding-left: 20px;
        font-size: 10px;
    }

    .action-hero-cta::after {
        width: 5px;
        height: 5px;
    }

    .product-detail-page .pd-subnav {
        display: none;
    }

    .product-detail-page .pd-section-title {
        grid-template-columns: minmax(18px, 1fr) minmax(0, auto) minmax(18px, 1fr);
        gap: 10px;
    }

    .product-detail-page .pd-section-title-text {
        max-width: min(76vw, 520px);
    }

    .product-detail-page .pd-section-title h2,
    .product-detail-page .pd-section-title span {
        font-size: 14px;
    }

    .product-detail-page .pd-section :where(:not(.pd-section-title):not(.pd-section-title *)) {
        font-size: 14px !important;
    }

    .about-page .about-intro,
    .about-page .about-business,
    .about-page .about-mission,
    .news-page .news-section,
    .solutions-page .solutions-section,
    .content-detail-page .content-detail-section,
    .standards-page .standards-section,
    .join-page .jobs-section,
    .contact-page .contact-form-section {
        min-height: 0;
        height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .standard-product-card h3 {
        font-size: clamp(14px, 4vw, 16px);
    }

    .action-solutions {
        min-height: 980px;
        padding: 0;
        background:
            linear-gradient(180deg, rgb(0 18 72 / 24%), rgb(0 86 160 / 16%) 40%, rgb(1 11 52 / 42%)),
            var(--solutions-bg-mobile, url("./assets/solutions/solutions-mobile.jpg")) center top / cover no-repeat;
    }

    .action-solution-inner {
        padding: 96px 18px 72px;
    }

    .action-solutions .action-section-title {
        margin-bottom: 40px;
        text-align: center;
    }

    .action-solutions .action-section-title h2 {
        display: grid;
        gap: 8px;
        font-size: 42px;
        line-height: 1.16;
    }

    .action-solutions .action-section-title h2 em {
        font-size: 28px;
    }

    .action-solutions .action-section-title p {
        max-width: 360px;
        margin-top: 58px;
        font-size: 24px;
        line-height: 1.55;
        letter-spacing: .1em;
    }

    .action-solution-stage {
        height: 560px;
        margin-top: 34px;
    }

    .action-solution-card {
        --solution-slot: 34vw;
        width: min(31vw, 160px);
        height: 180px;
        padding: 20px 14px;
        border-radius: 14px;
        transform: translate(-50%, -50%) translateX(calc(var(--offset) * var(--solution-slot))) scale(.9);
    }

    .action-solution-card[data-ring-position="-1"],
    .action-solution-card[data-ring-position="1"] {
        width: min(36vw, 176px);
        height: 204px;
        padding: 22px 16px;
        transform: translate(-50%, -50%) translateX(calc(var(--offset) * var(--solution-slot))) scale(.96);
    }

    .action-solution-card[data-ring-position="-2"],
    .action-solution-card[data-ring-position="2"] {
        width: min(28vw, 136px);
        height: 160px;
        opacity: .9;
    }

    .action-solution-card:not(.is-active):hover,
    .action-solution-card:not(.is-active):focus-visible {
        transform: translate(-50%, -50%) translateX(calc(var(--offset) * var(--solution-slot))) translateY(-6px) scale(.96);
    }

    .action-solution-card.is-active {
        width: min(78vw, 360px);
        height: 360px;
        border-radius: 16px;
        transform: translate(-50%, -50%) translateX(calc(var(--offset) * var(--solution-slot)));
    }

    .action-solution-icon {
        width: 39px;
        height: 36px;
        margin-bottom: 10px;
    }

    .action-solution-card[data-ring-position="-1"] .action-solution-icon,
    .action-solution-card[data-ring-position="1"] .action-solution-icon {
        width: 48px;
        height: 44px;
        margin-bottom: 12px;
    }

    .action-solution-car-icon {
        width: 76px;
        height: 42px;
        border-width: 5px;
    }

    .action-solution-car-icon::before {
        left: 13px;
        top: -22px;
        width: 38px;
        height: 26px;
        border-width: 5px;
    }

    .action-solution-car-icon::after {
        left: 9px;
        bottom: -13px;
        width: 15px;
        height: 15px;
        border-width: 5px;
        box-shadow: 45px 0 0 -5px #fff, 45px 0 0 0 currentColor;
    }

    .action-solution-copy {
        max-width: 100%;
        gap: 6px;
    }

    .action-solution-copy strong {
        font-size: 16px;
    }

    .action-solution-copy small {
        font-size: 14px;
        line-height: 1.38;
    }

    .action-solution-card.is-active .action-solution-copy {
        padding: 0 24px 30px;
    }

    .action-solution-card.is-active .action-solution-copy strong {
        font-size: 26px;
    }

    .action-solution-card.is-active .action-solution-copy small {
        font-size: 24px;
    }

    .action-solution-stage.action-solution-static {
        width: 95vw;
        max-width: 95vw;
    }

    .action-solution-stage.action-solution-static .action-solution-slide {
        height: auto;
    }

    .action-solution-static .action-solution-card,
    .action-solution-static .action-solution-slide[data-scale-position="-1"] .action-solution-card,
    .action-solution-static .action-solution-slide[data-scale-position="1"] .action-solution-card,
    .action-solution-static .action-solution-slide[data-scale-position="0"] .action-solution-card {
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .action-solution-stage.slides-scale {
        height: 560px;
        margin-top: 34px;
    }

    .action-solution-stage.slides-scale .action-solution-slide {
        width: 34vw;
        height: 360px;
    }

    .action-solution-stage.slides-scale .action-solution-card {
        width: min(28vw, 136px);
        height: 160px;
        transform: scale(.9);
    }

    .action-solution-stage.slides-scale .swiper-slide-prev .action-solution-card,
    .action-solution-stage.slides-scale .swiper-slide-next .action-solution-card {
        width: min(36vw, 176px);
        height: 204px;
        transform: scale(.96);
    }

    .action-solution-stage.slides-scale .swiper-slide-active .action-solution-card {
        width: min(78vw, 360px);
        height: 360px;
    }

    .action-solution-stage.slides-scale .swiper-slide-prev .action-solution-icon,
    .action-solution-stage.slides-scale .swiper-slide-next .action-solution-icon {
        width: 48px;
        height: 44px;
        margin-bottom: 12px;
    }

    .action-solution-stage.slides-scale .swiper-slide-active .action-solution-copy {
        bottom: 30px;
        padding: 0 24px;
    }

    .action-solution-stage.slides-scale .swiper-slide-active .action-solution-copy strong {
        font-size: 26px;
    }

    .action-solutions {
        min-height: 100%;
    }

    .zy-solutions-inner {
        min-height: 100%;
        justify-content: flex-start;
        padding: clamp(92px, 18vw, 150px) 0 clamp(70px, 12vw, 110px);
    }

    .zy-solutions-title {
        margin-bottom: 0;
    }

    .zy-solutions-title h2 {
        display: grid;

    }

    .zy-solutions-title h2 em {
        font-size: 18px;
    }

    .zy-solutions-title p {
        max-width: 360px;
        margin-top: clamp(20px, 5vw, 42px);
        font-size: clamp(12px, 3.2vw, 18px);
        line-height: 1.55;
        letter-spacing: .1em;
    }

    .zy-solutions-board {
        position: relative;
        width: min(100%, 520px);
        height: clamp(620px, 105vw, 820px);
        max-width: none;
        margin: clamp(54px, 10vw, 90px) auto 0;
        display: block;
        overflow: visible;
    }

    .zy-solution-card {
        position: absolute;
        display: grid;
        aspect-ratio: 1 / 1;
        border-radius: 14px;
        padding: 16px 12px 14px;
        background: rgb(244 248 253 / 80%);
        box-shadow: 0 20px 54px rgb(0 18 72 / 20%);
        backdrop-filter: blur(3px);
    }

    .zy-solution-card.is-primary {
        border-radius: 14px;
        background: rgb(244 248 253 / 80%);
        box-shadow: 0 20px 54px rgb(0 18 72 / 20%);
    }

    .zy-solution-card.is-primary::after {
        display: none;
    }

    .zy-solution-card.is-primary .zy-solution-media,
    .zy-solution-card.is-primary .zy-solution-primary-copy {
        display: none;
    }

    .zy-solution-card.is-primary .zy-solution-icon,
    .zy-solution-card.is-primary .zy-solution-copy {
        display: block;
    }

    .zy-solution-card:nth-child(1) {
        z-index: 1;
        top: 6%;
        left: 6%;
        width: 37.7%;
    }

    .zy-solution-card:nth-child(2) {
        z-index: 5;
        top: 30%;
        left: 50%;
        width: 52%;
        padding: 0;
        border-radius: 14px;
        color: #fff;
        background: #101b2d;
        box-shadow: 0 24px 64px rgb(0 0 0 / 32%);
        transform: translateX(-50%);
    }

    .zy-solution-card:nth-child(3) {
        z-index: 1;
        top: 0;
        right: 9%;
        width: 29.9%;
    }

    .zy-solution-card:nth-child(4) {
        z-index: 1;
        top: 66%;
        left: 13%;
        width: 32.5%;
    }

    .zy-solution-card:nth-child(5) {
        z-index: 1;
        top: 60%;
        right: 4%;
        width: 37.7%;
    }

    .zy-solution-card:nth-child(2) .zy-solution-media {
        display: block;
        opacity: 1;
    }

    .zy-solution-card:nth-child(2)::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        display: block;
        background: linear-gradient(180deg, rgb(0 13 38 / 0%) 42%, rgb(3 12 31 / 78%));
        opacity: 1;
        pointer-events: none;
    }

    .zy-solution-card:nth-child(2) .zy-solution-icon {
        display: none;
    }

    .zy-solution-card:nth-child(2) .zy-solution-copy {
        position: absolute;
        left: 50%;
        bottom: clamp(22px, 6vw, 42px);
        z-index: 2;
        display: block;
        width: 100%;
        padding: 0 18px;
        color: #fff;
        font-size: 14px;
        line-height: 1.45;
        transform: translateX(-50%);
    }

    .zy-solution-icon,
    .zy-solution-card.is-edge .zy-solution-icon {
        width: 42%;
        align-self: center;
        justify-self: center;
    }

    .zy-solution-card:nth-child(1) .zy-solution-icon,
    .zy-solution-card:nth-child(5) .zy-solution-icon {
        width: 55%;
    }

    .zy-solution-copy,
    .zy-solution-card.is-edge .zy-solution-copy {
        align-self: end;
        color: #272727;
        font-size: 12px;
        line-height: 1.42;
    }

    .zy-solutions-board.is-sphere-ready {
        position: relative;
        width: 100%;
        max-width: 430px;
        height: clamp(400px, 106vw, 500px);
        margin: 0 auto 0;
        display: block;
        overflow: hidden;
        perspective: 1200px;
        touch-action: pan-y;
        user-select: none;
        -webkit-user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    .zy-solutions-board.is-sphere-ready::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 52%;
        width: min(300px, 72vw);
        height: min(300px, 72vw);

        border-radius: 50%;

        pointer-events: none;
        transform: translate(-50%, -50%);
    }

    .zy-solutions-board.is-sphere-ready::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 64px;
        width: min(220px, 54vw);
        height: 46px;
        border-radius: 50%;
        background: rgb(0 0 0 / 36%);
        filter: blur(20px);
        pointer-events: none;
        transform: translateX(-50%);
    }

    .zy-solutions-board.is-sphere-ready .zy-solution-card,
    .zy-solutions-board.is-sphere-ready .zy-solution-card.is-primary,
    .zy-solutions-board.is-sphere-ready .zy-solution-card.is-near,
    .zy-solutions-board.is-sphere-ready .zy-solution-card.is-edge {
        --zy-sphere-x: 0px;
        --zy-sphere-y: -2px;
        --zy-sphere-z: 180px;
        --zy-sphere-scale: 1.08;
        --zy-sphere-rx: 0deg;
        --zy-sphere-ry: 0deg;
        --zy-sphere-opacity: 1;
        --zy-sphere-blur: 0px;
        --zy-sphere-index: 5;
        position: absolute;
        top: 50%;
        right: auto;
        bottom: auto;
        left: 50%;
        z-index: var(--zy-sphere-index);
        width: clamp(150px, 40vw, 170px);
        height: clamp(210px, 54vw, 230px);
        aspect-ratio: auto;
        display: grid;
        grid-template-rows: minmax(0, 1fr) auto;
        align-items: center;
        justify-items: center;
        padding: 18px;
        overflow: hidden;
        border: 0;
        border-radius: 22px;
        color: #101010;
        background: #fff;
        box-shadow: none;
        opacity: var(--zy-sphere-opacity);
        filter: blur(var(--zy-sphere-blur));
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        transform:
            translate(-50%, -50%) translate3d(var(--zy-sphere-x), var(--zy-sphere-y), var(--zy-sphere-z)) rotateX(var(--zy-sphere-rx)) rotateY(var(--zy-sphere-ry)) scale(var(--zy-sphere-scale));
        transform-style: preserve-3d;
        transition:
            transform 900ms cubic-bezier(.22, .8, .25, 1),
            opacity 900ms ease,
            filter 900ms ease,
            box-shadow 900ms ease;
        cursor: pointer;
    }

    .zy-solutions-board.is-sphere-ready .zy-solution-card.is-sphere-active:nth-child(1) {
        background: linear-gradient(145deg, rgb(0 143 148 / 86%), rgb(0 32 161 / 28%));
    }

    .zy-solutions-board.is-sphere-ready .zy-solution-card.is-sphere-active:nth-child(2) {
        background: linear-gradient(145deg, rgb(0 32 161 / 82%), rgb(0 143 148 / 24%));
    }

    .zy-solutions-board.is-sphere-ready .zy-solution-card.is-sphere-active:nth-child(3) {
        background: linear-gradient(145deg, rgb(16 185 129 / 76%), rgb(20 184 166 / 25%));
    }

    .zy-solutions-board.is-sphere-ready .zy-solution-card.is-sphere-active:nth-child(4) {
        background: linear-gradient(145deg, rgb(245 158 11 / 80%), rgb(239 68 68 / 25%));
    }

    .zy-solutions-board.is-sphere-ready .zy-solution-card.is-sphere-active:nth-child(5) {
        background: linear-gradient(145deg, rgb(236 72 153 / 80%), rgb(0 32 161 / 25%));
    }

    .zy-solutions-board.is-sphere-ready .zy-solution-card.is-sphere-active {
        cursor: default;
        box-shadow:
            0 30px 76px rgb(0 0 0 / 50%),
            0 0 30px rgb(0 143 148 / 34%),
            inset 0 1px 0 rgb(255 255 255 / 55%);
    }

    .zy-solutions-board.is-sphere-ready .zy-solution-card::before {
        opacity: 0;
    }

    .zy-solutions-board.is-sphere-ready .zy-solution-card::after,
    .zy-solutions-board.is-sphere-ready .zy-solution-card.is-primary::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        display: block;
        background: linear-gradient(180deg, rgb(0 13 38 / 0%) 42%, rgb(3 12 31 / 74%));
        opacity: 0;
        pointer-events: none;
        transition: opacity 300ms ease;
    }

    .zy-solutions-board.is-sphere-ready .zy-solution-card.is-sphere-active::after {
        opacity: 1;
    }

    .zy-solutions-board.is-sphere-ready .zy-solution-media,
    .zy-solutions-board.is-sphere-ready .zy-solution-card.is-primary .zy-solution-media {
        position: absolute;
        inset: 0;
        z-index: 0;
        display: block;
        opacity: 0;
        transition: opacity 300ms ease;
    }

    .zy-solutions-board.is-sphere-ready .zy-solution-card.is-sphere-active .zy-solution-media {
        opacity: 1;
    }

    .zy-solutions-board.is-sphere-ready .zy-solution-card.is-sphere-active .zy-solution-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .zy-solutions-board.is-sphere-ready .zy-solution-icon,
    .zy-solutions-board.is-sphere-ready .zy-solution-card.is-primary .zy-solution-icon,
    .zy-solutions-board.is-sphere-ready .zy-solution-card.is-edge .zy-solution-icon {
        position: relative;
        z-index: 2;
        display: block;
        width: 48%;
        align-self: center;
        justify-self: center;
        opacity: 1;
        transform: none;
    }

    .zy-solutions-board.is-sphere-ready .zy-solution-card.is-sphere-active .zy-solution-icon {
        opacity: 0;
    }

    .zy-solutions-board.is-sphere-ready .zy-solution-copy,
    .zy-solutions-board.is-sphere-ready .zy-solution-card.is-primary .zy-solution-copy,
    .zy-solutions-board.is-sphere-ready .zy-solution-card.is-edge .zy-solution-copy {
        position: relative;
        left: auto;
        bottom: auto;
        z-index: 2;
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 0;
        color: #101010;
        font-size: 14px;
        font-weight: 650;
        line-height: 1.42;
        text-align: center;
        transform: none;
    }

    .zy-solutions-board.is-sphere-ready .zy-solution-card.is-sphere-active .zy-solution-copy {
        position: absolute;
        left: 50%;
        bottom: clamp(18px, 5.6vw, 34px);
        padding: 0 18px;
        color: #fff;
        transform: translateX(-50%);
    }

    .zy-solutions-board.is-sphere-ready .zy-solution-primary-copy {
        display: none;
    }

    .action-hero {
        min-height: calc(100vh - var(--header-h));
        height: calc(100vh - var(--header-h));
        min-height: calc(100svh - var(--header-h));
        height: calc(100svh - var(--header-h));
    }

    .contact-map-section {
        min-height: 0;
        padding: 48px 0;
    }

    .contact-info-panel {
        width: 100%;
        max-width: none;
        padding: 34px 24px 38px;
    }

    .contact-section-heading {
        margin-bottom: 30px;
    }

    .contact-section-heading h2 {
        font-size: 28px;
    }

    .contact-section-heading span {
        max-width: 310px;
        margin-right: auto;
        margin-left: auto;
    }

    .contact-map-primary,
    .contact-branch-grid,
    .contact-form-layout {
        grid-template-columns: 1fr;
    }

    .contact-map-visual {
        min-height: 250px;
    }

    .contact-branch-grid {
        gap: 18px;
        margin-top: 18px;
    }

    .contact-branch-grid .contact-office {
        padding: 28px 24px;
    }

    .contact-branch-grid .contact-office + .contact-office::before {
        display: none;
    }

    .contact-office p {
        word-break: break-all;
    }

    .contact-office:not(:last-child) {
        margin-bottom: 28px;
        padding-bottom: 28px;
    }

    .contact-form-section {
        padding: 28px 18px 68px!important;
    }

    .contact-form-heading h2 {
        font-size: 28px;
    }

    .contact-form-heading span {
        max-width: 290px;
        margin-right: auto;
        margin-left: auto;
    }

    .contact-form {
        margin-top: 30px;
        padding: 28px 20px 30px;
    }

    .contact-form-layout {
        margin-top: 30px;
    }

    .contact-form-layout .contact-form {
        margin-top: 0;
    }

    .contact-product-collection {
        min-height: 320px;
    }

    .contact-product-image-1 {
        width: 78%;
        left: 11%;
    }

    .contact-product-image-2 {
        width: 62%;
    }

    .contact-product-image-2,
    .contact-product-image-3,
    .contact-product-image-4,
    .contact-product-image-5 {
        padding: 8px;
    }

    .contact-product-image-3,
    .contact-product-image-4,
    .contact-product-image-5 {
        width: 32%;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-form-message {
        margin-top: 18px;
    }

    .contact-form-actions {
        display: grid;
        gap: 20px;
        margin-top: 18px;
    }

    .contact-captcha {
        width: 100%;
    }

    .contact-form button {
        width: 100%;
    }

    .site-footer {
        text-align: center;
    }

    .footer-inner {
        width: 100%;
        min-height: 0;
        padding: 44px 18px 38px;
    }

    .footer-logo {
        width: min(210px, 70vw);
        margin: 0 auto;
    }

    .footer-inner nav {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px 10px;
        margin-top: 28px;
        padding: 26px 0 0;
    }

    .footer-inner nav a,
    .footer-inner nav a:first-child {
        padding: 0;
        border-left: 0;
        font-size: 14px;
        line-height: 1.4;
    }

    .footer-copy {
        max-width: none;
        margin-top: 28px;
        font-size: 12px;
        line-height: 1.8;
    }

    .qr {
        position: static;
        width: 104px;
        height: 104px;
        margin: 24px auto 0;
    }

    .partners-main {}

    .partner-group {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .partner-type {
        padding-top: 0;
        justify-content: flex-start;
        align-items: center;
    }

    .partner-type img {
        width: 82px;
    }

    .partner-logos {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .category-hero img {
        object-position: center;
    }

    .category-hero-text {
        left: 24px;
        top: 30%;
        transform: translateY(-30%);
        max-width: calc(100% - 148px);
    }

    .category-hero-text0 {
        left: 24px;
        top: 27%;
        transform: translateY(-27%);
        max-width: calc(100% - 148px);
        letter-spacing: 1px;
    }

    .category-hero-text1001 {
        left: 24px;
        top: 30%;
        transform: translateY(-30%);
        max-width: calc(100% - 148px);
        letter-spacing: 1px;
    }

    .category-hero-text1002 {
        left: 35px;
        top: 80%;
        transform: translateY(-80%);
        max-width: 100%;
        letter-spacing: 1px;
    }

    .category-hero-text1003 {
        left: 58px;
        top: 27%;
        transform: translateY(-27%);
        max-width: calc(100% - 148px);
        letter-spacing: 1px;
    }

    .category-hero-text1004 {
        left: 24px;
        top: 50%;
        transform: translateY(-50%);
        max-width: calc(100% - 48px);
        letter-spacing: 1px;

    }

    .category-hero-text1004 p {
        margin-top: 20px;
        max-width: 55%;
    }

    .category-main {
        padding: 52px 18px 68px;
    }

    .category-title {
        font-size: 21px;
    }

    .category-tabs {
        gap: 8px 18px;
        font-size: 13px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 14px;
        margin-top: 30px;
    }

    .product-card,
    .product-card.featured {
        grid-column: auto;
        grid-row: auto;
        min-height: 285px;
        padding: 20px 20px 54px;
    }

    .product-card p {
        width: 100%;
        margin-bottom: 12px;
        font-size: 13px;
    }

    .product-card img,
    .product-card:not(.featured) img {
        position: static;
        display: block;
        width: min(100%, 330px);
        max-height: 210px;
        margin: 22px auto 0;
    }


    .about-partners-hero-text {
        position: absolute;
        z-index: 1;
        left: 10vw;
        top: 19%;
        transform: none;

    }

    .about-partners-hero-text h1 {
        margin: 0;
        color: #245083;
        font-size: clamp(18px, 2vw, 32px);
        font-weight: 900;
        line-height: 1.08;
        letter-spacing: 3px;
    }

    .about-partners-hero-text p {
        margin: 16px 0 0;
        color: #245083;
        font-size: clamp(14px, 1.3vw, 22px);
        line-height: 1.7;
        font-weight: 550;
        letter-spacing: 1px;
    }

    .about-partners-hero-text span {
        display: block;
        width: 76px;
        height: 4px;
        margin-top: 26px;
        background: var(--cyan);
    }

    .partners-hero-text {
        position: absolute;
        z-index: 1;
        left: 10vw;
        top: 7%;
        transform: none;

    }

    .partners-hero-text h1 {
        font-size: 20px;
        font-weight: 700;
        line-height: 1.08;
        letter-spacing: 3px;
        margin: 10px 0px;
    }

    .partners-hero-text p {
        margin: 2px 0 0;
        color: rgb(255 255 255 / 84%);
        font-size: 14px;
        font-weight: 550;
        line-height: 1.7;
        letter-spacing: 2px;

    }


    .news-hero-text {
        position: absolute;
        z-index: 1;
        left: 12vw;
        top: 17%;
        transform: none;

    }

    .news-hero-text h1 {
        font-size: 20px;
        font-weight: 700;
        line-height: 1.08;
        letter-spacing: 3px !important;
        color: #09346A;
        margin: 10px 0px;
    }

    .news-hero-text p {
        margin: 0px 0 0;
        color: rgb(255 255 255 / 84%);
        font-size: 14px;
        line-height: 1.7;
        letter-spacing: 1px !important;
        color: #09346A;
        font-weight: 550;
    }

    .news-hero-text span {
        display: block;
        width: 76px;
        height: 4px;
        margin-top: 26px;
        background: var(--cyan);
    }

    .join-hero-text {
        position: absolute;
        z-index: 1;
        left: 8.5vw;
        top: 30%;
        transform: none;

    }

    .join-hero-text h1 {
        font-size: 20px;
        font-weight: 700;
        line-height: 1.08;
        letter-spacing: 3px !important;
        color: #09346A;
        margin: 10px 0px;
    }


    .join-hero-text p {
        margin: 0px 0 0;
        color: rgb(255 255 255 / 84%);
        font-size: 14px;
        line-height: 1.7;
        letter-spacing: 1px !important;
        color: #09346A;
        font-weight: 550;
        width: 70%;
    }

    .index10-page .index10-product-screen {
        gap: 14px;
        padding: 14px;
    }

    .index10-page .index10-product-panel {
        min-height: 360px;
        padding: 34px 24px;
    }

    .index10-page .index10-product-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(220px, auto);
        gap: 14px;
    }

    .index10-page .index10-product-card {
        min-height: 220px;
        grid-template-columns: minmax(118px, 42%) minmax(0, 1fr);
        padding: 22px;
    }

    .index10-page .index10-product-card img {
        min-height: 120px;
    }

    .index10-page .index10-product-card span {
        font-size: 20px;
    }

    .auth-main {
        padding: 24px 14px;
    }

    .auth-panel,
    .register-panel {
        padding: 34px 18px 28px;
    }

    .auth-title-row {
        display: block;
    }

    .auth-title-row p {
        margin-top: 10px;
    }

    .resource-toolbar {
        display: block;
    }

    .resource-toolbar p {
        margin-top: 12px;
    }

    .resource-grid {
        grid-template-columns: 1fr;
    }

    .search-page-form {
        grid-template-columns: 1fr;
    }

    .search-result-card {
        grid-template-columns: 1fr;
    }

    /* Firefox 78 mobile fallback: action-hero children are absolute, so auto slide height collapses to 0. */
    .home-swiper .action-hero,
    .home-swiper .action-hero.motion-fade,
    .home-swiper .action-hero.swiper-slide {
        position: relative !important;
        display: block !important;
        min-height: calc(100vh - var(--header-h)) !important;
        height: calc(100vh - var(--header-h)) !important;
        max-height: none !important;
        overflow: hidden !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: #06142c;
    }

    .home-swiper .action-hero-track,
    .home-swiper .action-hero-slide,
    .home-swiper .action-hero-slide picture {
        position: absolute !important;
        inset: 0 !important;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }

    .home-swiper .action-hero-slide.active {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .home-swiper .action-hero-slide img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .action-hero-pagination {
        left: 50%;
        bottom: 10px;
        gap: 0;
        transform: translateX(-50%);
    }

    .action-hero-pagination button {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .action-hero-pagination button::before {
        width: 6px;
        height: 6px;
    }

    .action-hero-pagination button.on::before {
        width: 20px;
    }

    :root {
        --header-h: 64px;
    }

    .header-inner {
        padding: 0 14px;
        gap: 8px;
    }

    .brand img {
        width: 170px;
    }

    .header-tools {
        gap: 9px;
    }

    .tool-link {
        font-size: 14px;
    }

    .search-box,
    .search-box button {
        width: 28px;
        height: 28px;
    }

    .site-header .search-icon-link svg {
        width: 20px;
        height: 20px;
    }

    .mobile-toggle {
        width: 34px;
        height: 34px;
        padding: 6px;
        gap: 4px;
    }

    .mobile-toggle span {
        margin: 0;
    }

    .mobile-search-layer {
        padding: 13px 14px;
    }

    .mobile-search-form {
        height: 40px;
    }

    .mega-products,
    .mega-solutions,
    .mega-standards {
        grid-template-columns: 1fr;
    }

    .mega-card img,
    .solution-img {
        height: 120px;
    }

    .action-hero-cta {
        bottom: 50px;
    }

    .action-company {
        padding: 48px 18px 42px;
        gap: 30px;
    }

    .action-company::before {
        display: none;
    }

    .action-company-media {
        height: 300px;
    }

    .action-company-badge {
        left: 18px;
        bottom: 18px;
    }

    .action-company-badge strong {
        font-size: 40px;
    }

    .action-company-copy h2 {
        font-size: 24px;
    }

    .action-company-lead {
        font-size: 15px;
        line-height: 1.75;
    }

    .action-company-points article {
        padding: 24px 22px;
    }

    .action-company-points article:hover {
        transform: none;
    }

    .action-company-points span {
        position: static;
        display: block;
        margin-bottom: 14px;
        font-size: 30px;
    }

    .action-solutions,
    .action-news {
        padding: 50px 0 64px;
    }

    .action-section-title {
        margin-bottom: 34px;
        text-align: left;
    }

    .action-section-title h2,
    .action-solution-inner .action-section-title h2,
    .action-news .action-section-title h2 {
        font-size: 24px;
    }

    .action-solution-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .action-solution-grid a,
    .action-solution-grid a:first-child {
        grid-column: auto;
        grid-row: auto;
        min-height: 260px;
        padding: 26px 22px;
    }

    .action-solution-grid a:first-child span {
        font-size: 26px;
    }

    .action-cta {
        min-height: auto;
    }
    .action-cta-bg {
        background: var(--action-cta-mobile-bg, var(--action-cta-bg, url("./assets/action-cta.png"))) center / cover no-repeat;
    }
    .action-cta-inner {
        padding: 52px 18px;
    }

    .action-cta-copy h2 {
        font-size: 26px;
    }

    .action-cta-copy span {
        font-size: 15px;
    }

    .action-cta-links {
        display: grid;
    }

    .action-cta-links a {
        width: 100%;
    }

    .action-solution-inner .action-section-title,
    .action-news .action-section-title {
        margin: 0 auto 38px;
    }

    .action-news .action-section-title {
        text-align: center;
    }

    .action-news-feature div {
        padding: 26px 22px;
    }

    .action-news-feature h3 {
        font-size: 23px;
    }

    .action-news-list a {
        grid-template-columns: 1fr;
        height: auto;
    }

    .action-news-list img {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 236 / 180;
    }

    .action-news-list div {
        padding: 15px;
    }

    .about-hero {
        height: 56vw;
        min-height: 220px;
    }

    .about-hero-copy {
        padding-top: 38px;
    }

    .about-hero-copy span {
        border-width: 3px;
        margin-top: 34px;
    }

    .about-title {
        grid-template-columns: minmax(18px, 1fr) minmax(0, auto) minmax(18px, 1fr);
        gap: 10px;
    }

    .about-title-text {
        max-width: min(76vw, 520px);
    }

    .about-title strong {
        font-size: 21px;
    }

    .about-title span {
        margin-left: 4px;
        font-size: 13px;
    }

    .about-title span::before {
        margin: 0 6px;
    }

    .about-intro {
        padding: 42px 18px 52px;
    }

    .about-business {
        padding: 58px 18px 76px;
    }

    .about-business-grid {
        grid-template-columns: 1fr;
        margin-top: 42px;
        row-gap: 48px;
    }

    .about-business-card {
        min-height: 0;
        padding: 0;
    }

    .about-business-card+.about-business-card::before {
        display: none;
    }

    .about-business-card p {
        max-width: 280px;
    }

    .about-mission {
        padding: 26px 18px 76px;
    }

    .about-mission-panel {
        min-height: 360px;
    }

    .join-hero,
    .contact-hero {}

    .news-hero,
    .solution-hero {}

    .join-hero img,
    .contact-hero img {
        object-position: 46% center;
    }

    .news-hero img,
    .solution-hero img {
        object-position: 46% center;
    }

    .join-hero-text,
    .contact-hero-text {

        max-width: calc(100% - 48px);
    }

    .news-hero-text {

        max-width: calc(100% - 48px);
    }

    .solution-hero-text {
        position: absolute;
        z-index: 1;
        left: 15vw;
        top: 25%;
        transform: translateY(-25%);
    }

    .solution-hero-text p {
        margin: 14px 0 0;
    }


    .news-section {
        padding: 40px 18px 74px;
    }

    .news-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-bottom: 44px;
    }

    .news-card+.news-card {
        padding-top: 46px;
    }

    .news-date strong {
        font-size: 34px;
    }

    .news-date {
        align-self: start;
    }

    .news-date span {
        margin-top: 8px;
    }

    .news-copy {
        padding-top: 0;
    }

    .news-copy p {
        line-height: 1.75;
    }

    .news-more {
        margin-top: 24px;
    }

    .news-thumb {
        grid-column: auto;
    }

    .news-pagination {
        flex-wrap: wrap;
        gap: 16px 20px;
        margin-top: 42px;
    }

    .solutions-section {
        padding: 42px 18px 76px;
    }

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

    .solutions-sidebar-card {
        border-radius: 18px;
    }

    .solutions-list {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .solution-card h2 {
        font-size: 24px;
    }

    .solution-card span {
        margin-top: 14px;
    }

    .content-detail-section {
        padding: 42px 18px 76px;
    }

    .content-detail-sidebar nav {
        grid-template-columns: 1fr;
    }

    .content-recent {
        border-radius: 18px;
    }

    .content-highlight-grid,
    .product-spec-strip {
        grid-template-columns: 1fr;
    }

    .content-article>h1,
    .solution-detail-article h1 {
        font-size: 28px;
    }

    .solution-info-grid {
        grid-template-columns: 1fr;
    }

    .solution-detail-meta {
        gap: 8px;
    }

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

    .solution-detail-cta {
        width: 100%;
    }

    .content-neighbor {
        grid-template-columns: 1fr;
    }

    .content-cover {
        border-radius: 12px;
    }

    .product-detail-hero {
        padding: 48px 18px 62px;
    }

    .product-detail-hero-copy h1 {
        font-size: 38px;
    }

    .product-detail-hero-media {
        min-height: 260px;
        border-radius: 20px;
    }

    .product-detail-table th,
    .product-detail-table td {
        display: block;
        width: 100%;
        padding: 14px 16px;
    }

    .product-detail-table td {
        padding-top: 0;
    }

    .standards-hero {}

    .standards-hero img {
        object-position: 46% center;
    }

    .standards-hero-text {
        position: absolute;
        z-index: 1;
        left: 10vw;
        top: 43%;
        transform: none;
        width: 58vw;
        height: 30vw;
        padding-left: 7vw;
        border-radius: 8px;
        color: #fff;
        background: #367ff5ad;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .standards-hero-text h1 {
        font-size: 20px;
    }

    .standards-hero-codes {
        gap: 14px;
        margin-top: 7px;
        font-size: 12px;
        letter-spacing: .04em;
    }

    .standards-hero-text p {
        margin: 7px 0 0;
        color: rgb(255 255 255 / 84%);
        font-size: 12px;
        line-height: 1.7;
        letter-spacing: clamp(1px, 0.2vw, 3px);
    }

    .standards-section {
        padding: 42px 18px 76px;
    }

    .standards-sidebar nav,
    .standard-chip-grid,
    .standard-product-grid {
        grid-template-columns: 1fr;
    }

    .standards-sidebar-card {
        border-radius: 18px;
    }

    .standard-chip-grid a {
        min-height: 0;
    }

    .product-page .header-tools {
        flex: 0 0 auto;
        margin-left: auto;
    }

    .product-page .header-tools .tool-link,
    .product-page .header-tools .tool-divider {
        display: none;
    }

    .site-header .header-tools {
        gap: 9px;
    }

    .site-header .header-tools>a {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .index6-page .index6-product-content h1 {
        font-size: 28px;
    }

    .index6-page .index6-copy>span {
        font-size: 14px;
        line-height: 1.7;
    }

    .index6-page .index6-product-list a {
        padding: 12px;
    }

    .index9-page .index9-category-inner {
        padding: 58px 25px 74px;
    }

    .index9-page .index9-category-tabs {
        gap: 8px 14px;
        margin-top: 18px;
        font-size: 14px;
    }

    .index9-page .index9-product-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 330px;
        gap: 14px;
    }

    .index9-page .index9-product-grid .product-card {
        padding: 22px;
    }

    .index9-page .index9-product-grid .product-card h2 {
        font-size: 22px;
    }

    .index9-page .index9-product-grid .product-card p {
        font-size: 13px;
        line-height: 1.7;
    }

    .index7-page .index5-product-summary h2 {
        font-size: 34px;
    }

    .index7-page .index5-product-summary span {
        font-size: 16px;
    }

    .index7-page .index5-product-list {
        --index7-card-w: 104px;
        --index7-card-gap: 8px;
    }

    .index7-page .index5-product-content li img {
        height: 59px;
    }

    .index8-page .index5-product-summary p {
        font-size: 28px;
    }

    .index8-page .index5-product-summary h2 {
        font-size: 26px;
    }

    .index8-page .index5-product-content li a {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 12px;
    }

    .index8-page .index5-product-content li img {
        width: 96px;
        height: 54px;
    }

    .index8-page .index5-product-content li span {
        font-size: 13px;
    }

    .index8-page .index5-product-content {
        padding: 36px 22px 52px;
    }

    .index8-page .index5-product-summary h2 {
        font-size: 28px;
    }

    .index8-page .index5-product-summary span {
        font-size: 14px;
        line-height: 1.65;
        width: 60px;
    }

    .index8-page .index5-product-content li span {
        font-size: 15px;
    }

    .index8-page .index5-product-content li a {
        grid-template-columns: 78px minmax(0, 1fr) auto;
        gap: 12px;
    }

    .index8-page .index5-product-content li img {
        width: 78px;
        height: 44px;
    }

    .index8-page .index5-product-media {
        min-height: 430px;
    }

    .index8-page .index8-media-tags {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .index8-page .index8-media-tag {
        min-height: 68px;
        flex-direction: row;
        justify-content: flex-start;
        padding: 12px 22px;
        font-size: 15px;
        text-align: left;
    }

    .index8-page .index8-product-icon {
        transform: scale(.84);
        transform-origin: left center;
        margin-bottom: 2px;
    }

    .index8-page .index5-product-summary h2 {
        font-size: 20px;
    }

    .index8-page .index5-product-content li a {
        min-height: 44px;
    }

    .index8-page .index5-product-content li span {
        font-size: 14px;
    }

    .product-detail-page .pd-wrap {
        width: 100%;
        padding: 0 14px;
    }

    .product-detail-page .pd-subnav-title,
    .product-detail-page .pd-subnav-links a {
        font-size: 13px;
    }

    .product-detail-page .pd-hero h1 {
        font-size: 25px;
    }

    .product-detail-page .pd-lead {
        margin-top: 26px;
    }

    .product-detail-page .pd-section {
        padding: 48px 0;
    }

    .product-detail-page .pd-section-title {
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 32px;
    }

    .product-detail-page .pd-section-title h2,
    .product-detail-page .pd-download h2 {
        font-size: 21px;
    }

    .product-detail-page .pd-section-title span,
    .product-detail-page .pd-download header span {
        margin-left: 4px;
        font-size: 13px;
    }

    .product-detail-page .pd-section-title span::before,
    .product-detail-page .pd-section-title span::after,
    .product-detail-page .pd-download header span::before,
    .product-detail-page .pd-download header span::after {
        margin: 0 6px;
    }

    .product-detail-page .pd-data-table {
        min-width: 640px;
    }

    .solution-advantage-grid {
        grid-template-columns: 1fr;
    }

    .solution-application-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .solution-application-card {
        min-height: 160px;
        padding: 12px;
    }

    .solution-application-card h3 {
        font-size: clamp(12px, 3.5vw, 16px);
    }

    .solution-equipment-card {
        grid-template-columns: 1fr;
        min-height: 0;
        padding-bottom: 64px;
    }

    .solution-equipment-card img {
        max-height: 190px;
    }

    .index8-page .index8-media-tags {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        height: clamp(78px, 12vh, 104px);
        min-height: 0;
    }

    .index8-page .index8-media-tags>a,
    .index8-page .index8-media-tag {
        width: 100%;
        min-width: 0;
    }

    .index8-page .index8-media-tag {
        min-height: 0;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        padding: 6px 5px;
        font-size: clamp(11px, 2.7vw, 14px);
        line-height: 1.15;
        text-align: center;
    }

    .index8-page .index8-media-tag-icon {
        width: clamp(26px, 4.6vh, 34px);
        height: clamp(26px, 4.6vh, 34px);
        flex: 0 0 clamp(26px, 4.6vh, 34px);
    }

    .index8-page .index5-product-content li img,
    .index8-page .index5-product-list li img {
        display: none !important;
    }

    .index8-page .index5-product-content li a,
    .index8-page .index5-product-list li a {
        grid-template-columns: minmax(0, 1fr) 20px;
        gap: 10px;
    }

    .index8-page .index5-product-list li a span {
        min-width: 0;
    }

    .index8-page .index5-product-list li a::after,
    .index8-page .index5-product-list li.index5-product-all a::after {
        width: 20px;
        height: 20px;
        justify-self: end;
    }

    .index8-page .action-solutions,
    .index8-page .action-cta {
        min-height: 100vh;
        height: 100vh;
        min-height: 100dvh;
        height: 100dvh;
    }

    .index8-page .zy-solutions-inner,
    .index8-page .action-cta-inner {
        min-height: 100%;
        height: 100%;
    }

    .index8-page .zy-solutions-inner {
        justify-content: center;
        padding: clamp(42px, 7vh, 74px) 0 clamp(28px, 5vh, 50px);
    }

    .index8-page .zy-solutions-title p {
        margin-top: clamp(12px, 2.5vh, 22px);
    }

    .index8-page .zy-solutions-board,
    .index8-page .zy-solutions-board.is-sphere-ready {
        height: clamp(320px, 48vh, 430px);
        margin-top: clamp(20px, 3.6vh, 36px);
    }

    .index8-page .action-cta-inner {
        align-items: normal;
        padding: clamp(46px, 8vh, 72px) 38px;
    }

    .index8-page .action-news {
        --action-news-feature-height: 34vh;
        --action-news-list-card-height: 16.7vh;
        min-height: 100vh;
        height: 100vh;
        min-height: 100dvh;
        height: 100dvh;
        padding: clamp(34px, 5vh, 52px) 0 clamp(20px, 3vh, 34px);
        display: flex;
        flex-direction: column;
    }

    @supports (height: 100dvh) {
        .index8-page .action-news {
            --action-news-feature-height: 34dvh;
            --action-news-list-card-height: 16dvh;
        }
    }

    .index8-page .action-news .action-section-title {
        display: none;
    }

    .index8-page .action-news-feature {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: minmax(120px, 0.95fr) auto;
        height: var(--action-news-feature-height);
        min-height: 0;
        align-items: stretch;
        color: inherit;
    }

    .index8-page .action-news-layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        flex: 1 1 auto;
        min-height: 0;
        align-content: start;
        overflow: hidden;
        margin-top: 15px;
    }

    .index8-page .action-news-list {
        min-height: 0;
        gap: 10px;
    }

    .index8-page .action-news-list a {
        grid-template-columns: minmax(112px, 34%) minmax(0, 1fr);
        min-height: 0;
        height: var(--action-news-list-card-height);
    }

    .index8-page .action-news-feature>.action-news-feature-image {
        height: 100%;
        margin: 0;
        min-height: 0;
    }

    .index8-page .action-news-feature img,
    .index8-page .action-news-feature>.action-news-feature-image img,
    .index8-page .action-news-list img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        min-height: 0;
        aspect-ratio: auto;
        object-fit: cover;
    }

    .index8-page .action-news-feature div,
    .index8-page .action-news-list div {
        min-width: 0;
        padding: clamp(8px, 2vw, 15px);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .index8-page .action-news-feature p,
    .index8-page .action-news-list time {
        font-size: 11px;
    }

    .index8-page .action-news-feature h3,
    .index8-page .action-news-list span {
        margin-top: 6px;
        font-size: clamp(13px, 3.5vw, 16px);
        line-height: 1.32;
    }

    .index8-page .action-news-feature h3 {
        margin-bottom: 0;
    }

    .index8-page .action-news-feature span,
    .index8-page .action-news-list p {
        display: none;
    }

    .index8-page .action-news-list strong {
        margin-top: 7px;
        font-size: 12px;
    }

    .index8-page .index5-product-screen,
    .index8-page .index5-product-screen.is-reverse {
        grid-template-rows: auto minmax(0, 1fr) !important;
    }

    .index8-page .index5-product-media,
    .index8-page .index5-product-screen.is-reverse .index5-product-media {
        width: 100% !important;
        min-height: 0 !important;
        height: auto !important;
        aspect-ratio: 1433 / 1098;
    }

    .index8-page .index5-product-image,
    .index8-page .index5-product-slide,
    .index8-page .index5-product-media .index5-product-image img,
    .index8-page .index5-product-media .index5-product-image img.is-zooming {
        width: 100% !important;
        height: 100% !important;
        aspect-ratio: 1433 / 1098;
    }

    .index8-page .index5-product-content,
    .index8-page .index5-product-screen.is-reverse .index5-product-content {
        min-height: 250px !important;
    }

    .index8-page .index5-product-list li:not(.index5-product-all):nth-child(n+4) {
        display: none !important;
    }

    .index8-page .index5-product-list li.index5-product-all {
        display: block !important;
    }

    body.home-swiper-page.home-swiper-locked {
        height: 100vh;
        height: 100dvh;
        overflow: hidden;
    }

    body.home-swiper-page.home-swiper-locked>.site-footer {
        display: none;
    }

    .home-swiper.is-swiper-ready {
        width: 100%;
        min-height: var(--home-screen-h);
        height: var(--home-screen-h);
        overflow: hidden;
    }

    .home-swiper.is-swiper-ready>.swiper-wrapper {
        display: flex;
        min-height: var(--home-screen-h);
        height: auto !important;
        transition-timing-function: cubic-bezier(.25, .1, .25, 1);
    }

    .home-swiper.is-swiper-ready .swiper-slide.in-view,
    .home-swiper .action-hero.motion-fade {
        opacity: 1;
        transform: none;
    }

    .home-swiper.is-swiper-ready .home-full-slide,
    .home-swiper.is-swiper-ready .action-hero,
    .home-swiper.is-swiper-ready .index5-product-screen,
    .home-swiper.is-swiper-ready .action-solutions,
    .home-swiper.is-swiper-ready .action-cta,
    .home-swiper.is-swiper-ready .action-news {
        width: 100%;
        min-height: var(--home-screen-h) !important;
        height: var(--home-screen-h) !important;
        box-sizing: border-box;
        overflow: hidden;
    }

    .home-swiper.is-swiper-ready a[href] {
        pointer-events: auto !important;
    }

    .home-swiper.is-swiper-ready .action-hero-slide>a {
        position: absolute;
        inset: 0;
        z-index: 2;
        display: block;
    }

    .home-swiper.is-swiper-ready .index5-product-screen,
    .home-swiper.is-swiper-ready .index5-product-screen.is-reverse {
        grid-template-rows: auto minmax(0, 1fr) !important;
    }

    .home-swiper.is-swiper-ready .index5-product-media,
    .home-swiper.is-swiper-ready .index5-product-screen.is-reverse .index5-product-media {
        min-height: 0 !important;
        height: auto !important;
        aspect-ratio: 1433 / 1098;
    }

    .home-swiper.is-swiper-ready .index5-product-content,
    .home-swiper.is-swiper-ready .index5-product-screen.is-reverse .index5-product-content {
        min-height: 250px !important;
        height: auto !important;
    }

    .home-swiper.is-swiper-ready .index5-product-content,
    .home-swiper.is-swiper-ready .index5-product-summary p,
    .home-swiper.is-swiper-ready .index5-product-summary h2,
    .home-swiper.is-swiper-ready .index5-product-summary span,
    .home-swiper.is-swiper-ready .index7-product-carousel,
    .home-swiper.is-swiper-ready .index8-product-more,
    .home-swiper.is-swiper-ready .index5-product-list li {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: none !important;
    }

    .home-swiper.is-swiper-ready .action-solutions {
        padding: 0;
    }

    .home-swiper.is-swiper-ready .action-news {
        padding: 0 18px;
        justify-content: center;
    }

    .home-swiper.is-swiper-ready .home-footer-slide {
        width: 100%;
        min-height: 0 !important;
        height: auto !important;
        overflow: visible;
    }

    .home-swiper.is-swiper-ready>.swiper-wrapper>.swiper-slide:last-child {
        height: auto !important;
    }

    .home-swiper.is-swiper-ready .home-footer-slide>.site-footer {
        width: 100%;
        min-height: 0;
    }

    .footer-inner nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
