:root {
    --ink: #07111f;
    --blue: #0682b6;
    --blue-light: #0682b6;
    --white: #fff;
    --muted: #aeb9c8;
    --header-h: 84px;
    --rent-blue: #0682b6;
    --rent-ink: #071526;
    --rent-muted: #647487;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    color: var(--ink);
    background: #f4f7fa;
    font-family: "Helvetica", sans-serif;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font: inherit;
}
.w-55 {
    width: 55%;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-h);
    color: #fff;
    transition:
        background 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease,
        height 0.35s ease;
}
.site-header.subpage,
.site-header.scrolled {
    height: var(--header-h);
    color: #101820;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 35px rgba(6, 22, 41, 0.09);
    backdrop-filter: blur(14px);
}
.header-inner {
    width: min(1480px, calc(100% - 64px));
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 34px;
}
.brand {
    width: 108px;
    height: 76px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand img {
    display: block;
    width: auto;
    height: 98px;
    max-width: none;
    max-height: none;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.35s ease;
}
.about-page .brand img {
    filter: unset;
    height: 82px;
}
.site-header.scrolled .brand img,
.site-header.subpage .brand img {
    filter: none;
}
.brand {
    width: 138px;
    transition: width 0.35s ease;
}
.brand img {
    height: 124px;
    transform: translateY(6px);
    transition:
        height 0.35s ease,
        filter 0.35s ease,
        transform 0.35s ease;
}
.site-header.subpage .brand,
.site-header.scrolled .brand {
    width: 138px;
}
.site-header.subpage .brand img,
.site-header.scrolled .brand img {
    height: 82px;
    filter: none;
    transform: translateY(2px);
}
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 1.7vw, 32px);
    margin-left: auto;
}
.main-nav a {
    position: relative;
    padding: 30px 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    white-space: nowrap;
}
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 21px;
    height: 2px;
    background: var(--blue);
    transition: right 0.25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after {
    right: 0;
}
.header-cta {
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 999px;
    padding: 12px 17px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.header-cta span {
    margin-left: 7px;
}
.site-header.subpage .header-cta,
.site-header.scrolled .header-cta {
    color: #fff;
    border-color: var(--blue);
    background: var(--blue);
}
.menu-toggle {
    display: none;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    align-self: stretch;
}
.main-nav .nav-dropdown__trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-dropdown__trigger span {
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    transition: transform 0.25s ease;
}
.nav-dropdown__menu {
    position: absolute;
    top: calc(100% - 5px);
    left: 50%;
    width: 285px;
    padding: 10px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(7, 17, 31, 0.08);
    box-shadow: 0 22px 55px rgba(4, 17, 30, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
.nav-dropdown:hover .nav-dropdown__trigger span,
.nav-dropdown:focus-within .nav-dropdown__trigger span {
    transform: rotate(180deg);
}
.main-nav .nav-dropdown__menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 13px;
    color: #25313d;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    transition:
        color 0.18s ease,
        background 0.18s ease,
        padding-left 0.18s ease;
}
.main-nav .nav-dropdown__menu a::after {
    display: none;
}
.main-nav .nav-dropdown__menu a > span {
    color: #9aa6b2;
    font:
        600 10px "Helvetica",
        sans-serif;
}
.main-nav .nav-dropdown__menu a:hover {
    padding-left: 17px;
    color: var(--blue);
    background: rgba(6, 130, 182, 0.07);
}
.main-nav .nav-dropdown__menu .nav-dropdown__all {
    justify-content: space-between;
    margin-top: 7px;
    padding-top: 14px;
    border-top: 1px solid #e5eaee;
    color: var(--blue);
    font-weight: 700;
}
.nav-dropdown__all b {
    font-size: 16px;
}

.hero {
    position: relative;
    height: 100svh;
    min-height: 680px;
    color: #fff;
    overflow: hidden;
    background: #02060b;
}
.slides,
.slide {
    position: absolute;
    inset: 0;
}
.slide {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
        visibility 0.9s;
}
.slide.active {
    opacity: 1;
    visibility: visible;
}
.slide-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.025);
    transition: transform 7s ease;
}
.slide.active .slide-media {
    transform: scale(1);
}
.media-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2, 9, 18, 0.94) 0%,
            rgba(2, 9, 18, 0.72) 35%,
            rgba(2, 9, 18, 0.08) 74%
        ),
        linear-gradient(0deg, rgba(2, 7, 14, 0.45), transparent 55%);
}
.hero-content {
    position: relative;
    z-index: 2;
    width: min(1480px, calc(100% - 64px));
    height: 100%;
    margin: auto;
    padding-top: 17vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 23px;
    color: #dce7f3;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.eyebrow span {
    width: 30px;
    height: 2px;
    background: var(--blue);
}
.hero h1,
.hero h2 {
    max-width: 850px;
    margin: 0;
    font:
        700 clamp(52px, 5.3vw, 92px)/1.04 "Helvetica",
        sans-serif;
    letter-spacing: -0.055em;
}
.hero h1 em,
.hero h2 em {
    color: var(--blue-light);
    font-style: normal;
    font-weight: 500;
}
.hero-copy {
    max-width: 590px;
    margin: 28px 0 35px;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.75;
}
.hero-actions {
    display: flex;
    gap: 12px;
}
.button {
    min-width: 154px;
    padding: 15px 22px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}
.button:hover {
    transform: translateY(-2px);
}
.button.primary {
    border-color: var(--blue);
    background: var(--blue);
}
.button.primary span {
    margin-left: 13px;
}
.button.secondary {
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.08);
}
.button.secondary:hover {
    color: var(--ink);
    background: #fff;
}
.hero-content--primary h1 {
    max-width: none;
    color: #fff;
    font-size: clamp(34px, 3.3vw, 56px);
    line-height: 1.12;
    letter-spacing: -0.045em;
    white-space: nowrap;
}
.hero-copy--primary {
    max-width: 720px;
    margin: 22px 0 31px;
    color: #fff;
    font-size: clamp(14px, 1.08vw, 17px);
    font-weight: 400;
    letter-spacing: 0.01em;
}
.hero-outline-button {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.8);
    background: transparent;
}
.hero-outline-button:hover,
.hero-outline-button:focus-visible {
    color: #fff;
    border-color: var(--blue);
    background: var(--blue);
}
.slide--product .slide-media {
    filter: brightness(1.18) saturate(1.04);
}
.slide--product .media-overlay {
    background: rgba(2, 9, 18, 0.08);
}
.slide--text-right .media-overlay {
    background: linear-gradient(
        90deg,
        transparent 34%,
        rgba(2, 9, 18, 0.12) 54%,
        rgba(2, 9, 18, 0.88) 100%
    );
}
.slide--text-left .media-overlay {
    background: linear-gradient(
        90deg,
        rgba(2, 9, 18, 0.86) 0%,
        rgba(2, 9, 18, 0.18) 46%,
        transparent 70%
    );
}
.hero-content--product {
    padding-top: 80px;
    justify-content: center;
    text-align: left;
}
.slide--text-right .hero-content--product {
    align-items: flex-end;
}
.slide--text-left .hero-content--product {
    align-items: flex-start;
}
.hero-content--product h2 {
    width: min(520px, 43vw);
    max-width: 520px;
    color: #20aee8;
    font-size: clamp(42px, 4.2vw, 70px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}
.hero-content--product .hero-copy {
    width: min(520px, 43vw);
    max-width: 520px;
    margin: 16px 0 24px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(14px, 1.02vw, 16px);
    line-height: 1.65;
}
.slide--text-right .hero-actions {
    width: min(520px, 43vw);
}

.news-showcase .decs {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.breadcrumb {
    margin-bottom: 0;
}

.slider-controls {
    position: absolute;
    z-index: 4;
    right: 4vw;
    bottom: 42px;
    display: flex;
    align-items: center;
    gap: 18px;
}
.arrow {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, 0.12);
    cursor: pointer;
}
.arrow:hover {
    background: rgba(255, 255, 255, 0.15);
}
.slider-dots {
    display: flex;
    gap: 9px;
}
.dot {
    width: 42px;
    height: 4px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.26);
    cursor: pointer;
    overflow: hidden;
}
.dot span {
    display: block;
    width: 0;
    height: 100%;
    background: #fff;
}
.dot.active span {
    animation: progress 7s linear forwards;
}
@keyframes progress {
    to {
        width: 100%;
    }
}
.scroll-hint {
    position: absolute;
    z-index: 4;
    left: 4vw;
    bottom: 37px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.scroll-hint span {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.45);
}

.featured-products {
    padding: 18px max(18px, calc((100% - 1440px) / 2)) 36px;
    background: #fff;
}
.featured-products__heading {
    margin: 0 auto 52px;
    text-align: center;
}
.featured-products__heading h2 {
    margin: 0;
    font:
        700 clamp(38px, 4vw, 62px)/1.12 "Helvetica",
        sans-serif;
    letter-spacing: -0.045em;
}
.featured-products__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.featured-product {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: #f5f6f8;
    isolation: isolate;
}
.featured-product::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 240px;
    height: 240px;
    right: -120px;
    bottom: -120px;
    border-radius: 50%;
    background: rgba(6, 130, 182, 0.08);
    transition: transform 0.5s ease;
}
.featured-product:hover::after {
    transform: scale(2.2);
}
.featured-product__copy {
    position: relative;
    z-index: 2;
    padding: 34px 30px 0;
    text-align: center;
}
.featured-product__copy p {
    margin: 0 0 8px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.featured-product__copy h3 {
    margin: 0 0 17px;
    font:
        700 clamp(22px, 2vw, 30px)/1.2 "Helvetica",
        sans-serif;
    letter-spacing: -0.035em;
}
.featured-product__copy a {
    display: inline-block;
    padding: 10px 19px;
    border: 1px solid var(--blue);
    border-radius: 999px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}
.featured-product__copy a:hover {
    color: #fff;
    background: var(--blue);
    transform: translateY(-2px);
}
.featured-product img {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: -5%;
    width: 100%;
    height: 76%;
    object-fit: contain;
    object-position: center bottom;
    transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.featured-product:hover img {
    transform: scale(1.035) translateY(-5px);
}
.featured-products__more {
    margin-top: 38px;
    text-align: center;
}
.featured-products__more a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 7px;
    border-bottom: 1px solid #9ca9b4;
    font-size: 14px;
    font-weight: 700;
}
.featured-products__more a span {
    color: var(--blue);
    letter-spacing: -0.18em;
}

.solutions-showcase {
    padding: 46px max(24px, calc((100% - 1480px) / 2)) 80px;
    background: #f3f6f8;
}
.solutions-showcase__heading {
    margin-bottom: 32px;
    text-align: center;
}
.solutions-showcase__heading h2 {
    margin: 0;
    font:
        700 clamp(38px, 4vw, 62px)/1.12 "Helvetica",
        sans-serif;
    letter-spacing: -0.045em;
}
.solutions-shell {
    overflow: visible;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}
.solution-tabs {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: clamp(14px, 2.2vw, 34px);
    min-height: auto;
    margin: 0 auto 18px;
    border: 0;
    background: transparent;
}
.solution-tab {
    position: relative;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #788594;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}
.solution-tab::after {
    display: none;
}
.solution-tab:hover {
    color: var(--blue);
    background: rgba(6, 130, 182, 0.06);
}
.solution-tab.active {
    color: var(--blue);
    border-color: rgba(6, 130, 182, 0.2);
    background: rgba(6, 130, 182, 0.09);
}
.solution-frame {
    position: relative;
    width: 100%;
    height: min(38vw, 450px);
    min-height: 390px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(7, 17, 31, 0.13);
}
.solution-card {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 16%;
    width: 68%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.92);
    transition:
        left 0.68s cubic-bezier(0.2, 0.75, 0.2, 1),
        opacity 0.55s ease,
        transform 0.68s cubic-bezier(0.2, 0.75, 0.2, 1),
        visibility 0.55s;
}
.solution-card.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.solution-card.prev,
.solution-card.next {
    opacity: 0.58;
    visibility: visible;
    transform: scale(1);
    cursor: pointer;
}
.solution-card.prev {
    left: -54%;
}
.solution-card.next {
    left: 86%;
}
.solution-card.prev .solution-card__content,
.solution-card.next .solution-card__content {
    opacity: 0;
}
.solution-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.035);
    transition: transform 5s ease;
}
.solution-card.active img {
    transform: scale(1);
}
.solution-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(2, 8, 16, 0.9) 0%,
        rgba(2, 8, 16, 0.56) 38%,
        rgba(2, 8, 16, 0.08) 72%
    );
}
.solution-card__content {
    position: absolute;
    z-index: 2;
    left: clamp(32px, 6vw, 90px);
    top: 50%;
    max-width: 620px;
    color: #fff;
    transform: translateY(-50%);
}
.solution-card__content > p {
    margin: 0 0 15px;
    color: #66cef5;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.solution-card__content h3 {
    margin: 0 0 30px;
    font:
        700 clamp(30px, 3.2vw, 48px)/1.1 "Helvetica",
        sans-serif;
    letter-spacing: -0.05em;
}
.solution-card__content a {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    padding: 13px 20px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}
.solution-card__content a:hover {
    border-color: var(--blue);
    background: var(--blue);
}
.solution-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
    color: #fff;
    background: rgba(2, 8, 16, 0.38);
    backdrop-filter: blur(8px);
    cursor: pointer;
    transform: translateY(-50%);
}
.solution-arrow:hover {
    background: var(--blue);
    border-color: var(--blue);
}
.solution-arrow--prev {
    left: 18px;
}
.solution-arrow--next {
    right: 18px;
}
.solution-progress {
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.16);
}
.solution-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--blue);
}
.solutions-shell.running .solution-progress span {
    animation: solutionTimer 3s linear forwards;
}
@keyframes solutionTimer {
    to {
        width: 100%;
    }
}

/* Home solution carousel — 760 × 456 */
.solution-frame {
    height: min(456px, 36vw);
    min-height: 390px;
}
.solution-card {
    right: auto;
    bottom: auto;
    left: 50%;
    width: min(62%, 760px);
    height: auto;
    aspect-ratio: 760 / 456;
    transform: translateX(-50%) scale(0.96);
}
.solution-card.active {
    transform: translateX(-50%) scale(1);
}
.solution-card.prev {
    left: 0;
    transform: translateX(-82%) scale(0.96);
}
.solution-card.next {
    left: 100%;
    transform: translateX(-18%) scale(0.96);
}
.solution-card__shade {
    background: linear-gradient(
        180deg,
        rgba(2, 8, 16, 0.72) 0%,
        rgba(2, 8, 16, 0.18) 48%,
        rgba(2, 8, 16, 0.34) 100%
    );
}
.solution-card__content {
    top: 42px;
    right: 42px;
    left: 42px;
    transform: none;
    text-align: center;
}
.solution-card__content > p {
    margin-bottom: 9px;
}
.solution-card__content h3 {
    margin-bottom: 19px;
    font-size: clamp(25px, 2.4vw, 36px);
}

.trusted-section {
    overflow: hidden;
    padding: 105px 0 42px;
    background: #fff;
}
.trusted-section__heading {
    margin-bottom: 55px;
    text-align: center;
}
.trusted-section__heading h2 {
    margin: 0;
    font:
        700 clamp(42px, 4.2vw, 68px)/1.08 "Helvetica",
        sans-serif;
    letter-spacing: -0.05em;
}
.trusted-marquee {
    overflow: hidden;
    padding: 9px 0;
    mask-image: linear-gradient(
        90deg,
        transparent,
        #000 8%,
        #000 92%,
        transparent
    );
}
.trusted-track {
    display: flex;
    width: max-content;
    gap: 14px;
    animation: trustedMove 32s linear infinite;
}
.trusted-marquee--reverse .trusted-track {
    animation-direction: reverse;
    animation-duration: 38s;
}
.trusted-section:hover .trusted-track {
    animation-play-state: paused;
}
.trusted-logo {
    width: 220px;
    height: 112px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #e8ecef;
    color: #a2aab3;
    background: #fff;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}
.trusted-logo span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
}
.trusted-logo strong {
    font:
        700 28px "Helvetica",
        sans-serif;
    letter-spacing: -0.05em;
}
.trusted-logo img {
    display: block;
    width: 78%;
    height: 72%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.72;
    transition:
        filter 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}
.trusted-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.04);
}
.trusted-logo:hover {
    color: var(--blue);
    border-color: rgba(6, 130, 182, 0.28);
    box-shadow: 0 13px 35px rgba(6, 130, 182, 0.11);
    transform: translateY(-3px);
}
@keyframes trustedMove {
    to {
        transform: translateX(calc(-50% - 7px));
    }
}

.news-section {
    padding: 28px max(24px, calc((100% - 1440px) / 2)) 62px;
    background: #f3f6f8;
}
.news-shell {
    padding: 46px 54px 38px;
    border: 0;
    background: #f3f6f8;
}
.news-heading {
    max-width: 830px;
    margin: 0 auto 30px;
    text-align: center;
}
.news-heading h2 {
    margin: 0;
    font:
        700 clamp(36px, 3.5vw, 54px)/1.1 "Helvetica",
        sans-serif;
    letter-spacing: -0.05em;
}
.news-heading > p:last-child {
    max-width: 690px;
    margin: 13px auto 0;
    color: #748191;
    font-size: 15px;
    line-height: 1.75;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.news-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #e3e8ec;
    background: #fff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}
.news-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 3px;
    background: var(--blue);
    transition: right 0.35s ease;
}
.news-card:hover {
    border-color: rgba(6, 130, 182, 0.25);
    box-shadow: 0 20px 45px rgba(7, 17, 31, 0.1);
    transform: translateY(-5px);
}
.news-card:hover::after {
    right: 0;
}
.news-card__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.news-card:hover .news-card__image img {
    transform: scale(1.055);
}
.news-card__body {
    padding: 20px 22px 23px;
}
.news-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 17px;
    color: #8994a0;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.news-card__meta span {
    color: var(--blue);
}
.news-card h3 {
    margin: 0 0 14px;
    font:
        700 clamp(18px, 1.35vw, 22px)/1.3 "Helvetica",
        sans-serif;
    letter-spacing: -0.025em;
}
.news-card__body > p {
    display: none;
}
.news-card__link {
    display: inline-flex;
    gap: 12px;
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.news-card__link span {
    color: var(--blue);
}
.news-more {
    margin-top: 25px;
    text-align: center;
}
.news-more a {
    display: inline-flex;
    gap: 9px;
    padding-bottom: 7px;
    border-bottom: 1px solid #9ca9b4;
    font-size: 14px;
    font-weight: 700;
}
.news-more span {
    color: var(--blue);
    letter-spacing: -0.18em;
}

.intro {
    width: min(1320px, calc(100% - 64px));
    margin: auto;
    padding: 130px 0;
    display: grid;
    grid-template-columns: 0.55fr 1.5fr 0.8fr;
    gap: 60px;
    align-items: start;
}
.section-tag {
    color: #788596;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}
.kicker {
    margin: 0 0 15px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.intro h2,
.section-heading h2 {
    margin: 0;
    font:
        700 clamp(38px, 4vw, 64px)/1.12 "Helvetica",
        sans-serif;
    letter-spacing: -0.045em;
}
.intro-copy > p:not(.kicker) {
    max-width: 670px;
    margin: 27px 0;
    color: #657284;
    font-size: 16px;
    line-height: 1.8;
}
.text-link {
    display: inline-flex;
    gap: 14px;
    padding-bottom: 7px;
    border-bottom: 1px solid #aab4bf;
    font-size: 13px;
    font-weight: 600;
}
.stat-card {
    position: relative;
    min-height: 300px;
    padding: 38px;
    overflow: hidden;
    color: #fff;
    background: var(--ink);
}
.stat-number {
    position: relative;
    z-index: 2;
    font:
        700 clamp(52px, 5vw, 78px)/1 "Helvetica",
        sans-serif;
    color: var(--blue-light);
}
.stat-card p {
    position: relative;
    z-index: 2;
    line-height: 1.7;
}
.orbit {
    position: absolute;
    right: -70px;
    bottom: -100px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(91, 200, 255, 0.45);
    border-radius: 50%;
    box-shadow: 0 0 70px rgba(0, 153, 230, 0.3);
}

.products {
    padding: 120px max(32px, calc((100% - 1320px) / 2));
    color: #fff;
    background: #07111f;
}
.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 60px;
}
.products .section-tag {
    margin-bottom: 20px;
    color: #7d8c9f;
}
.section-heading > p {
    max-width: 390px;
    color: #8f9bab;
    line-height: 1.75;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.product-card {
    position: relative;
    min-height: 480px;
    padding: 28px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}
.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(1, 5, 10, 0.88),
        rgba(1, 5, 10, 0.05) 75%
    );
}
.product-card.cleaning {
    background-image: url("assets/banner-cleaning.png");
}
.product-card.service,
.product-card.reception {
    background-image: url("assets/banner-service.png");
}
.card-index {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}
.card-content {
    position: absolute;
    z-index: 1;
    left: 28px;
    right: 28px;
    bottom: 28px;
}
.card-content p {
    margin: 0 0 8px;
    color: var(--blue-light);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.card-content h3 {
    margin: 0 0 22px;
    font:
        600 31px "Helvetica",
        sans-serif;
}
.card-content a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.card-content a span {
    margin-left: 12px;
}
.contact-strip {
    padding: 65px max(32px, calc((100% - 1320px) / 2));
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    background: var(--blue);
}
.contact-strip p {
    margin: 0;
    font:
        600 clamp(24px, 2.7vw, 40px) "Helvetica",
        sans-serif;
}
.contact-strip a {
    padding: 14px 21px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}
.contact-strip a span {
    margin-left: 10px;
}

/* WHY ELITE — scroll-driven value journey */
.why-elite {
    position: relative;
    height: 400vh;
    background: #06131f;
    color: #fff;
}
.why-elite__sticky {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    background: radial-gradient(
        circle at 72% 42%,
        #123b54 0,
        #081b29 38%,
        #06131f 68%
    );
}
.why-elite__shell {
    width: min(1440px, calc(100% - 72px));
    margin: auto;
    padding: 82px 0 56px;
}
.why-elite__heading {
    display: grid;
    grid-template-columns: minmax(360px, 1.05fr) minmax(340px, 0.95fr);
    gap: 24px 70px;
    align-items: end;
    margin-bottom: 34px;
}
.why-elite__heading .kicker {
    grid-column: 1/-1;
    margin: 0;
    color: #44c7f4;
}
.why-elite__heading h2 {
    margin: 0;
    max-width: 820px;
    font:
        700 clamp(34px, 3.25vw, 52px)/1.08 "Helvetica",
        sans-serif;
    letter-spacing: -0.045em;
}
.why-elite__heading > p:last-child {
    max-width: 610px;
    margin: 0;
    color: #a9bbc7;
    font-size: 14px;
    line-height: 1.75;
}
.why-elite__layout {
    display: grid;
    grid-template-columns: 44% 56%;
    gap: 42px;
    align-items: stretch;
}
.why-elite__steps {
    display: grid;
    gap: 12px;
}
.why-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    min-height: 118px;
    padding: 17px 20px;
    border: 1px solid rgba(141, 184, 205, 0.18);
    background: rgba(255, 255, 255, 0.025);
    opacity: 0.4;
    transform: scale(0.95);
    transform-origin: left center;
    transition:
        opacity 0.45s ease,
        transform 0.45s ease,
        border-color 0.45s ease,
        background 0.45s ease;
    cursor: pointer;
}
.why-step.active {
    opacity: 1;
    transform: scale(1);
    border-color: #35c6f7;
    background: linear-gradient(
        100deg,
        rgba(6, 130, 182, 0.2),
        rgba(255, 255, 255, 0.035)
    );
    box-shadow:
        inset 3px 0 0 #35c6f7,
        0 14px 34px rgba(0, 0, 0, 0.16);
}
.why-step__icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(81, 207, 249, 0.38);
    border-radius: 50%;
    color: #54d1fb;
    font-size: 23px;
    transition: 0.4s ease;
}
.why-step.active .why-step__icon {
    border-color: #55d2fb;
    background: #0682b6;
    color: #fff;
    box-shadow: 0 0 24px rgba(49, 200, 250, 0.32);
}
.why-step small {
    display: block;
    margin: 1px 0 6px;
    color: #4fcdf7;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.13em;
}
.why-step h3 {
    margin: 0 0 7px;
    font:
        700 20px/1.2 "Helvetica",
        sans-serif;
}
.why-step p {
    margin: 0;
    color: #b2c1cb;
    font-size: 12px;
    line-height: 1.55;
}
.why-elite__visual {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: #0b2131;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}
.why-image {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.045);
    transition:
        opacity 0.7s ease,
        transform 1s ease;
    pointer-events: none;
}
.why-image.active {
    opacity: 1;
    transform: scale(1);
}
.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.why-elite__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 62%, rgba(2, 12, 20, 0.46));
    pointer-events: none;
}
.why-elite__counter {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 18px;
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: #fff;
}
.why-elite__counter b {
    font:
        700 28px "Helvetica",
        sans-serif;
}
.why-elite__counter span {
    color: #9eb2bf;
    font-size: 11px;
}

/* Refined light treatment to match the Elite homepage */
.why-elite {
    background: #eef3f6;
    color: #07111f;
}
.why-elite__sticky {
    background: linear-gradient(135deg, #f7fafc 0%, #edf4f7 58%, #e5f0f5 100%);
}
.why-elite__shell {
    width: min(1320px, calc(100% - 64px));
    padding: 76px 0 44px;
}
.why-elite__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 28px;
}
.why-elite__heading h2 {
    flex: 0 0 auto;
    font-size: clamp(34px, 3vw, 46px);
    white-space: nowrap;
}
.why-elite__heading > p:last-child {
    max-width: 650px;
    color: #637481;
    font-size: 13px;
    line-height: 1.65;
}
.why-elite__layout {
    grid-template-columns: 47% 53%;
    gap: 54px;
    align-items: center;
}
.why-elite__steps {
    gap: 13px;
}
.why-step {
    grid-template-columns: 52px 1fr;
    gap: 18px;
    min-height: 126px;
    padding: 21px 24px;
    border-color: #d0dde4;
    background: rgba(255, 255, 255, 0.72);
    opacity: 0.42;
    box-shadow: 0 8px 24px rgba(18, 55, 76, 0.035);
}
.why-step.active {
    border-color: #0682b6;
    background: #fff;
    box-shadow:
        inset 3px 0 0 #0682b6,
        0 14px 36px rgba(20, 69, 94, 0.09);
}
.why-step__icon {
    width: 46px;
    height: 46px;
    border-color: #b8dce9;
    color: #0682b6;
    background: #eff9fc;
}
.why-step.active .why-step__icon {
    border-color: #0682b6;
    background: #0682b6;
    box-shadow: 0 8px 20px rgba(6, 130, 182, 0.2);
}
.why-step h3 {
    margin: 1px 0 7px;
    color: #07111f;
    font-size: 19px;
}
.why-step p {
    max-width: 500px;
    color: #667683;
    font-size: 11px;
    line-height: 1.55;
}
.why-elite__visual {
    justify-self: center;
    width: 88%;
    min-height: 440px;
    border: 10px solid #fff;
    background: #dce7ed;
    box-shadow: 0 24px 58px rgba(22, 63, 84, 0.14);
}
.why-elite__visual::after {
    background: linear-gradient(180deg, transparent 72%, rgba(4, 19, 29, 0.22));
}
.why-elite__counter {
    right: 18px;
    bottom: 14px;
}
.why-elite__counter b {
    font-size: 23px;
}
@media (max-height: 860px) and (min-width: 1101px) {
    .why-elite__shell {
        padding: 66px 0 30px;
    }
    .why-elite__heading {
        margin-bottom: 20px;
    }
    .why-elite__heading h2 {
        font-size: 38px;
    }
    .why-step {
        min-height: 106px;
        padding: 15px 20px;
    }
    .why-step h3 {
        font-size: 17px;
    }
    .why-elite__visual {
        min-height: 390px;
        width: 84%;
    }
}
@media (max-width: 1100px) {
    .why-elite {
        height: auto;
    }
    .why-elite__sticky {
        position: relative;
        min-height: 0;
        overflow: visible;
    }
    .why-elite__shell {
        padding: 100px 0;
    }
    .why-elite__heading {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .why-elite__heading h2 {
        white-space: normal;
    }
    .why-elite__layout {
        grid-template-columns: 1fr;
    }
    .why-elite__visual {
        order: -1;
        min-height: 58vw;
    }
    .why-step {
        opacity: 0.72;
        transform: none;
    }
}
@media (max-width: 640px) {
    .why-elite__shell {
        width: min(100% - 32px, 1440px);
        padding: 76px 0;
    }
    .why-elite__heading h2 {
        font-size: 32px;
    }
    .why-elite__visual {
        min-height: 72vw;
    }
    .why-step {
        grid-template-columns: 42px 1fr;
        padding: 16px 14px;
    }
}

.final-cta {
    position: relative;
    overflow: hidden;
    padding: 105px 30px;
    color: var(--ink);
    text-align: center;
    background: #fff;
}
.final-cta__glow {
    display: none;
}
.final-cta .kicker {
    position: relative;
    color: var(--blue);
}
.final-cta h2 {
    position: relative;
    margin: 0 auto 35px;
    font:
        700 clamp(34px, 3.8vw, 56px)/1.12 "Helvetica",
        sans-serif;
    letter-spacing: -0.055em;
    width: 45%;
}
.final-cta > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 15px 24px;
    border: 1px solid var(--blue);
    border-radius: 999px;
    color: var(--blue);
    background: transparent;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.final-cta > a:hover {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 13px 34px rgba(6, 130, 182, 0.3);
    transform: translateY(-3px);
}
.site-footer {
    padding: 72px max(30px, calc((100% - 1320px) / 2)) 24px;
    color: #a9b3bf;
    background: #080d13;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1.6fr 0.65fr 0.75fr;
    gap: 55px;
    padding-bottom: 55px;
}
.footer-logo {
    display: block;
    width: 105px;
    height: 86px;
}
.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.footer-brand > p {
    max-width: 330px;
    margin: 15px 0 24px;
    font-size: 13px;
    line-height: 1.75;
}
.footer-social {
    display: flex;
    gap: 9px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid #303945;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}
.footer-social a:hover {
    border-color: var(--blue);
    background: var(--blue);
}
.site-footer h3 {
    margin: 0 0 22px;
    color: #fff;
    font:
        700 14px "Helvetica",
        sans-serif;
}
.footer-company strong {
    display: block;
    margin-bottom: 17px;
    color: #fff;
    font-size: 12px;
    line-height: 1.65;
}
.footer-company address {
    margin: 0 0 14px;
    font-size: 12px;
    font-style: normal;
    line-height: 1.75;
}
.footer-company > a,
.footer-links > a {
    display: block;
    margin-bottom: 11px;
    font-size: 12px;
    line-height: 1.5;
    transition: color 0.2s ease;
}
.footer-company > a:hover,
.footer-links > a:hover {
    color: #66cef5;
}
.footer-bottom {
    padding-top: 23px;
    border-top: 1px solid #28313b;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    font-size: 10px;
}
.footer-bottom p {
    margin: 0;
}
.footer-bottom div {
    display: flex;
    gap: 22px;
}

@media (max-width: 1200px) {
    .header-inner {
        width: calc(100% - 36px);
        gap: 18px;
    }
    .main-nav {
        gap: 14px;
    }
    .main-nav a {
        font-size: 10px;
    }
    .header-cta {
        display: none;
    }
}
@media (max-width: 900px) {
    :root {
        --header-h: 72px;
    }
    .menu-toggle {
        display: grid;
        gap: 5px;
        margin-left: auto;
        padding: 10px;
        border: 0;
        background: transparent;
    }
    .menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: currentColor;
    }
    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px 28px 28px;
        color: var(--ink);
        background: #fff;
        transform: translateY(-130%);
        transition: transform 0.3s ease;
    }
    .main-nav.open {
        transform: translateY(0);
    }
    .main-nav a {
        padding: 13px 0;
        font-size: 12px;
    }
    .main-nav a::after {
        display: none;
    }
    .hero-content {
        width: calc(100% - 40px);
        padding-top: 12vh;
        justify-content: center;
    }
    .hero h1,
    .hero h2 {
        font-size: clamp(43px, 10vw, 66px);
    }
    .hero-content--primary h1 {
        font-size: clamp(34px, 7.6vw, 52px);
    }
    .hero-content--product {
        padding-top: 115px;
        justify-content: flex-start;
    }
    .slide--text-right .hero-content--product,
    .slide--text-left .hero-content--product {
        align-items: flex-start;
    }
    .hero-content--product h2,
    .hero-content--product .hero-copy,
    .slide--text-right .hero-actions {
        width: min(520px, 100%);
    }
    .hero-content--product h2 {
        font-size: clamp(34px, 8vw, 52px);
    }
    .media-overlay {
        background: linear-gradient(
            90deg,
            rgba(2, 9, 18, 0.94),
            rgba(2, 9, 18, 0.42)
        );
    }
    .slide--product .media-overlay {
        background: linear-gradient(
            180deg,
            rgba(1, 7, 14, 0.82),
            rgba(1, 7, 14, 0.18) 58%,
            transparent 100%
        );
    }
    .slide--text-right .slide-media {
        object-position: 34% center;
    }
    .slide--text-left .slide-media {
        object-position: 66% center;
    }
    .intro {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 85px 0;
    }
    .stat-card {
        min-height: 240px;
    }
    .section-heading {
        align-items: start;
        flex-direction: column;
        gap: 20px;
    }
    .featured-products {
        padding-top: 14px;
        padding-bottom: 30px;
    }
    .featured-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .featured-product {
        min-height: 500px;
    }
    .solutions-showcase {
        padding-top: 40px;
        padding-bottom: 65px;
    }
    .solutions-shell {
        padding: 0;
    }
    .solution-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 8px;
        padding-bottom: 5px;
    }
    .solution-tab {
        min-width: 128px;
        font-size: 14px;
    }
    .solution-frame {
        width: 100%;
        height: min(54vw, 456px);
        min-height: 360px;
    }
    .solution-card {
        width: min(78vw, 760px);
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .product-card {
        min-height: 430px;
    }
    .news-section {
        padding: 28px 20px 72px;
    }
    .news-shell {
        padding: 52px 28px;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-card__image {
        height: auto;
    }
    .news-card__body > p {
        min-height: 0;
    }
    .contact-strip {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Trang chi tiết CenoBots L50 */
.product-detail-page {
    background: #fff;
}
.l50-hero {
    position: relative;
    display: flex;
    min-height: 100svh;
    align-items: center;
    justify-content: flex-end;
    padding: 130px max(7vw, calc((100% - 1480px) / 2)) 80px;
    color: #fff;
    background: #031226 url("assets/banner-cenobot-l50-new.png") center/cover
        no-repeat;
    overflow: hidden;
}
.l50-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(1, 8, 18, 0.04) 36%,
        rgba(1, 8, 18, 0.76) 74%,
        rgba(1, 8, 18, 0.9)
    );
}
.l50-hero__content {
    position: relative;
    z-index: 1;
    width: min(540px, 43vw);
}
.l50-hero__content > p {
    margin: 0 0 20px;
    color: #5bd1ff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
}
.l50-hero h1 {
    margin: 0;
    font:
        500 clamp(58px, 7vw, 112px)/0.85 "Helvetica",
        sans-serif;
    letter-spacing: -0.07em;
}
.l50-hero h1 strong {
    color: #55cfff;
    font-weight: 800;
}
.l50-hero h2 {
    margin: 33px 0 0;
    font:
        500 clamp(22px, 2.2vw, 34px)/1.35 "Helvetica",
        sans-serif;
    letter-spacing: -0.035em;
}
.l50-hero__actions {
    display: flex;
    gap: 12px;
    margin-top: 37px;
}
.l50-hero__actions a {
    min-width: 145px;
    padding: 14px 22px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    transition: 0.2s ease;
}
.l50-hero__actions a:first-child,
.l50-hero__actions a:hover {
    border-color: var(--blue);
    background: var(--blue);
}
.l50-subnav {
    position: sticky;
    top: 0;
    z-index: 900;
    display: flex;
    height: 64px;
    align-items: center;
    gap: 38px;
    padding: 0 max(32px, calc((100% - 1320px) / 2));
    border-bottom: 1px solid #e5e9ed;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
}
.l50-subnav > strong {
    font:
        700 14px "Helvetica",
        sans-serif;
}
.l50-subnav > div {
    display: flex;
    gap: 27px;
    margin-left: auto;
}
.l50-subnav > div a {
    color: #71808e;
    font-size: 10px;
}
.l50-subnav > div a:hover {
    color: var(--blue);
}
.l50-subnav__cta {
    padding: 10px 17px;
    color: #fff;
    border-radius: 999px;
    background: var(--blue);
    font-size: 10px;
    font-weight: 700;
}
.l50-metrics {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 0 max(32px, calc((100% - 1320px) / 2));
    border-bottom: 1px solid #e3e8ec;
    background: #fff;
}
.l50-metrics article {
    min-height: 165px;
    padding: 46px 27px;
    border-right: 1px solid #e3e8ec;
}
.l50-metrics article:first-child {
    border-left: 1px solid #e3e8ec;
}
.l50-metrics strong {
    display: block;
    color: var(--blue);
    font:
        700 clamp(24px, 2.3vw, 34px) "Helvetica",
        sans-serif;
    letter-spacing: -0.045em;
}
.l50-metrics span {
    display: block;
    margin-top: 10px;
    color: #75818d;
    font-size: 10px;
    line-height: 1.55;
}
.l50-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 720px;
    background: #f2f6f8;
}
.l50-intro__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px max(55px, calc((100vw - 1320px) / 2));
    padding-right: 7vw;
}
.l50-intro h2,
.l50-heading h2,
.l50-app h2,
.l50-specs h2,
.l50-final h2 {
    margin: 13px 0 28px;
    font:
        700 clamp(35px, 4.1vw, 61px)/1.08 "Helvetica",
        sans-serif;
    letter-spacing: -0.055em;
}
.l50-intro__copy > p:last-of-type {
    max-width: 630px;
    color: #667481;
    font-size: 13px;
    line-height: 1.9;
}
.l50-intro__facts {
    display: flex;
    gap: 35px;
    margin-top: 34px;
    padding-top: 27px;
    border-top: 1px solid #d9e0e5;
}
.l50-intro__facts span {
    color: #7c8893;
    font-size: 9px;
}
.l50-intro__facts b {
    display: block;
    margin-bottom: 7px;
    color: var(--ink);
    font:
        700 19px "Helvetica",
        sans-serif;
}
.l50-intro__visual {
    position: relative;
    display: flex;
    min-height: 650px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(
        circle at 48% 42%,
        #fff 0,
        #f7fafc 46%,
        #e7f0f5 100%
    );
}
.l50-intro__visual .bg-text {
    /* content: "L50"; */
    position: absolute;
    right: -2vw;
    bottom: -4vw;
    color: rgba(6, 130, 182, 0.055);
    font:
        800 19vw "Helvetica",
        sans-serif;
}
.l50-intro__visual::after {
    content: "";
    position: absolute;
    inset: auto 8% 8% 8%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(6, 130, 182, 0.28),
        transparent
    );
}
.l50-intro__visual img {
    position: relative;
    z-index: 2;
    width: min(75%, 640px);
    filter: drop-shadow(0 28px 38px rgba(15, 42, 59, 0.24));
}
.l50-orbit {
    position: absolute;
    width: 70%;
    aspect-ratio: 1;
    border: 1px solid rgba(6, 130, 182, 0.18);
    border-radius: 50%;
    box-shadow:
        0 0 90px rgba(6, 130, 182, 0.12),
        inset 0 0 70px rgba(6, 130, 182, 0.04);
}
.l50-orbit::before,
.l50-orbit::after {
    content: "";
    position: absolute;
    inset: 13%;
    border: inherit;
    border-radius: inherit;
}
.l50-orbit::after {
    inset: 27%;
}
.l50-tech {
    padding: 110px max(32px, calc((100% - 1320px) / 2));
    color: #fff;
    background: #07111f;
}
.l50-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 56px;
}
.l50-heading h2 {
    max-width: 760px;
    margin: 0;
}
.l50-tech .kicker {
    color: #50cbff;
}
.l50-tech__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid #263442;
    border-left: 1px solid #263442;
}
.l50-tech__grid article {
    min-height: 270px;
    padding: 42px;
    border-right: 1px solid #263442;
    border-bottom: 1px solid #263442;
}
.l50-tech__grid .l50-tech__lead {
    position: relative;
    grid-row: span 2;
    min-height: 540px;
    overflow: hidden;
}
.l50-tech__grid article > span:first-child {
    color: #50cbff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.11em;
}
.l50-tech__grid h3 {
    margin: 24px 0 14px;
    font:
        700 clamp(21px, 2.2vw, 32px)/1.2 "Helvetica",
        sans-serif;
    letter-spacing: -0.04em;
}
.l50-tech__grid p {
    max-width: 470px;
    color: #9eabb8;
    font-size: 12px;
    line-height: 1.75;
}
.l50-icon {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border: 1px solid #2d8db6;
    border-radius: 50%;
    font-size: 20px !important;
}
.sensor-radar {
    position: absolute;
    right: -70px;
    bottom: -95px;
    width: 370px;
    aspect-ratio: 1;
    border: 1px solid rgba(80, 203, 255, 0.28);
    border-radius: 50%;
}
.sensor-radar i {
    position: absolute;
    inset: 15%;
    border: inherit;
    border-radius: inherit;
}
.sensor-radar i:nth-child(2) {
    inset: 30%;
}
.sensor-radar i:nth-child(3) {
    inset: 44%;
}
.sensor-radar b {
    position: absolute;
    top: 48%;
    left: 46%;
    color: #50cbff;
    font:
        700 13px "Helvetica",
        sans-serif;
}
.l50-app {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 740px;
    align-items: center;
    padding: 90px max(6vw, calc((100% - 1320px) / 2));
    color: #fff;
    background: radial-gradient(
        circle at 23% 50%,
        #0b5070,
        #061421 48%,
        #040b12 75%
    );
}
.l50-phone {
    width: min(330px, 70%);
    margin: auto;
    border: 1px solid #577487;
    border-radius: 44px;
    background: #101820;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
    transform: rotate(-5deg);
}
.l50-phone__screen {
    min-height: 585px;
    padding: 10px 0;
    border-radius: 33px;
    color: #dce9ef;
    background: linear-gradient(160deg, #0f2d3d, #06121b);
}
.l50-phone__screen > span {
    color: #55cfff;
    font-size: 9px;
    letter-spacing: 0.15em;
}
.l50-phone__screen > b {
    display: block;
    margin-top: 68px;
    font:
        700 70px "Helvetica",
        sans-serif;
}
.l50-phone__screen > small {
    color: #8296a1;
}
.l50-phone__screen > p {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid #2b4655;
    font-size: 10px;
}
.l50-map {
    position: relative;
    height: 190px;
    margin-top: 30px;
    border: 1px solid #2b566b;
    background: linear-gradient(
        145deg,
        transparent 40%,
        rgba(85, 207, 255, 0.08)
    );
}
.l50-map::before,
.l50-map::after {
    content: "";
    position: absolute;
    background: #2b566b;
}
.l50-map::before {
    left: 30%;
    width: 1px;
    height: 100%;
}
.l50-map::after {
    top: 55%;
    width: 100%;
    height: 1px;
}
.l50-map i {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #55cfff;
    box-shadow: 0 0 14px #55cfff;
}
.l50-map i:nth-child(1) {
    top: 25%;
    left: 18%;
}
.l50-map i:nth-child(2) {
    top: 70%;
    left: 55%;
}
.l50-map i:nth-child(3) {
    top: 34%;
    right: 16%;
}
.l50-app__copy {
    max-width: 660px;
}
.l50-app__copy .kicker {
    color: #55cfff;
}
.l50-app__copy > p:not(.kicker) {
    color: #aab8c2;
    font-size: 13px;
    line-height: 1.85;
}
.l50-app ul {
    margin: 35px 0 0;
    padding: 0;
    list-style: none;
}
.l50-app li {
    display: flex;
    gap: 18px;
    padding: 17px 0;
    border-top: 1px solid #263a47;
    font-size: 12px;
}
.l50-app li span {
    color: #55cfff;
    font-size: 9px;
}
.l50-easy {
    padding: 110px max(32px, calc((100% - 1320px) / 2));
    background: #eef3f6;
}
.l50-easy__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}
.l50-easy__grid article {
    position: relative;
    grid-column: span 4;
    min-height: 295px;
    padding: 31px 30px;
    border: 1px solid #dbe3e8;
    background: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}
.l50-easy__grid article .icon_hover {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.l50-easy__grid article:hover {
    z-index: 2;
    border-color: rgba(6, 130, 182, 0.42);
    box-shadow: 0 22px 55px rgba(7, 17, 31, 0.1);
    transform: translateY(-5px);
}
.l50-easy__grid article:hover .icon_hover {
    transform: scaleX(1);
}
.l50-easy__grid .l50-easy__primary {
    grid-column: span 4;
    grid-row: span 2;
    min-height: 604px;
    color: #fff;
    border-color: #0b2333;
    background: linear-gradient(150deg, #0b2637, #07111f 72%);
}
.l50-easy__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.l50-easy__top b {
    color: var(--blue);
    font-size: 9px;
    letter-spacing: 0.11em;
}
.l50-easy__top > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--blue);
    border: 1px solid #b9d8e5;
    border-radius: 50%;
    font-size: 17px;
}
.l50-easy__primary .l50-easy__top b,
.l50-easy__primary .l50-easy__top > span {
    color: #55cfff;
    border-color: #24526a;
}
.l50-easy__grid h3 {
    margin: 53px 0 14px;
    font:
        700 22px/1.25 "Helvetica",
        sans-serif;
    letter-spacing: -0.035em;
}
.l50-easy__primary h3 {
    margin-top: 46px;
    font-size: 32px;
}
.l50-easy__grid p {
    max-width: 400px;
    color: #71808d;
    font-size: 11px;
    line-height: 1.75;
}
.l50-easy__primary > p {
    color: #9fb0bc;
}
.l50-easy__grid article > a {
    position: absolute;
    right: 30px;
    bottom: 27px;
    left: 30px;
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    color: #687784;
    border-top: 1px solid #e2e7eb;
    font-size: 9px;
    font-weight: 600;
}
.l50-easy__grid article > a i {
    color: var(--blue);
    font-style: normal;
    font-size: 14px;
}
.l50-control {
    position: absolute;
    right: 28px;
    bottom: 30px;
    left: 28px;
    padding: 13px;
    border: 1px solid #244253;
    border-radius: 14px;
    background: #0d1d28;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.3);
}
.l50-control__bar {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 5px 2px 14px;
    border-bottom: 1px solid #233b49;
    font-size: 8px;
}
.l50-control__bar > i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #55cfff;
    box-shadow: 0 0 10px #55cfff;
}
.l50-control__bar > span {
    color: #c7d4da;
}
.l50-control__bar em {
    margin-left: auto;
    color: #6cdbaf;
    font-style: normal;
    font-size: 7px;
    letter-spacing: 0.1em;
}
.l50-control__body {
    display: grid;
    grid-template-columns: 1fr 52px;
    gap: 17px;
    align-items: end;
    padding: 22px 2px 4px;
}
.l50-control__body small {
    display: block;
    color: #708894;
    font-size: 7px;
}
.l50-control__body strong {
    display: block;
    margin-top: 8px;
    font:
        600 11px "Helvetica",
        sans-serif;
}
.l50-control__body div > span {
    display: block;
    height: 3px;
    margin-top: 23px;
    border-radius: 9px;
    background: #203846;
    overflow: hidden;
}
.l50-control__body div > span i {
    display: block;
    height: 100%;
    background: #55cfff;
}
.l50-control__body div > b {
    display: block;
    margin-top: 8px;
    color: #708894;
    font-size: 7px;
    font-weight: 500;
}
.l50-control__body button {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #06131d;
    background: #55cfff;
    cursor: default;
}
.l50-specs {
    display: grid;
    grid-template-columns: 42% 58%;
    background: #f2f5f7;
}
.l50-specs__visual {
    position: sticky;
    top: 64px;
    align-self: start;
    min-height: calc(100vh - 64px);
    padding: 80px 6vw;
    overflow: hidden;
    color: #fff;
    background: #081521;
}
.l50-specs__visual .kicker {
    color: #55cfff;
}
.l50-specs__visual h2 {
    position: relative;
    z-index: 2;
}
.l50-specs__visual img {
    position: absolute;
    right: -7%;
    bottom: -4%;
    width: 85%;
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.5));
}
.l50-specs__table {
    padding: 85px max(6vw, calc((100vw - 1320px) / 2)) 90px 7vw;
}
.l50-specs__table h3 {
    margin: 0 0 17px;
    padding-top: 42px;
    color: var(--blue);
    font:
        700 12px "Helvetica",
        sans-serif;
}
.l50-specs__table h3:first-child {
    padding-top: 0;
}
.l50-specs__table dl {
    margin: 0;
    border-top: 1px solid #d8dfe4;
}
.l50-specs__table dl div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 19px 0;
    border-bottom: 1px solid #d8dfe4;
}
.l50-specs dt {
    color: #727f8b;
    font-size: 11px;
}
.l50-specs dd {
    margin: 0;
    font:
        600 12px "Helvetica",
        sans-serif;
    text-align: right;
}
.l50-specs__note {
    margin-top: 30px;
    color: #8d98a2;
    font-size: 9px;
    line-height: 1.7;
}
.l50-use {
    padding: 110px max(32px, calc((100% - 1320px) / 2));
    background: #fff;
}
.l50-use__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.l50-use__grid a {
    position: relative;
    height: 410px;
    overflow: hidden;
    background: #07111f;
}
.l50-use__grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.63);
    transition: 0.45s ease;
}
.l50-use__grid a:hover img {
    transform: scale(1.05);
    filter: brightness(0.76);
}
.l50-use__grid span {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font:
        600 14px "Helvetica",
        sans-serif;
}
.l50-use__grid b {
    color: #55cfff;
}
.l50-final {
    padding: 120px 20px;
    color: #fff;
    background: #07111f;
    text-align: center;
}
.l50-final .kicker {
    color: #55cfff;
}
.l50-final h2 {
    margin-left: auto;
    margin-right: auto;
}
.l50-final > p:not(.kicker) {
    color: #9daab6;
    font-size: 12px;
}
.l50-final > div {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}
.l50-final a {
    min-width: 170px;
    padding: 14px 20px;
    border: 1px solid #52606d;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}
.l50-final a:first-child {
    border-color: var(--blue);
    background: var(--blue);
}
@media (max-width: 1000px) {
    .l50-metrics {
        grid-template-columns: repeat(3, 1fr);
    }
    .l50-intro,
    .l50-app,
    .l50-specs {
        grid-template-columns: 1fr;
    }
    .l50-intro__copy {
        padding: 75px 7vw;
    }
    .l50-easy__grid article {
        grid-column: span 6;
    }
    .l50-easy__grid .l50-easy__primary {
        grid-column: span 6;
    }
    .l50-specs__visual {
        position: relative;
        top: 0;
        min-height: 620px;
    }
    .l50-use__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 760px) {
    .l50-hero {
        min-height: 720px;
        align-items: flex-end;
        padding: 110px 22px 65px;
        background-position: 38% center;
    }
    .l50-hero::after {
        background: linear-gradient(
            0deg,
            rgba(1, 8, 18, 0.96),
            rgba(1, 8, 18, 0.08) 75%
        );
    }
    .l50-hero__content {
        width: 100%;
    }
    .l50-subnav {
        padding: 0 18px;
    }
    .l50-subnav > div {
        display: none;
    }
    .l50-metrics {
        grid-template-columns: 1fr 1fr;
        padding: 0;
    }
    .l50-metrics article {
        min-height: 135px;
        padding: 32px 22px;
    }
    .l50-intro__visual {
        min-height: 480px;
    }
    .l50-heading {
        display: block;
    }
    .l50-heading .kicker {
        margin-bottom: 15px;
    }
    .l50-tech {
        padding: 75px 20px;
    }
    .l50-tech__grid {
        grid-template-columns: 1fr;
    }
    .l50-tech__grid .l50-tech__lead {
        grid-row: auto;
        min-height: 480px;
    }
    .l50-tech__grid article {
        padding: 32px;
        min-height: 230px;
    }
    .l50-app {
        padding: 75px 20px;
    }
    .l50-phone {
        margin-bottom: 70px;
    }
    .l50-easy {
        padding: 75px 16px;
    }
    .l50-easy__grid {
        grid-template-columns: 1fr;
    }
    .l50-easy__grid article,
    .l50-easy__grid .l50-easy__primary {
        grid-column: 1;
        min-height: 285px;
    }
    .l50-easy__grid .l50-easy__primary {
        min-height: 590px;
    }
    .l50-easy__grid h3 {
        margin-top: 38px;
    }
    .l50-specs__visual {
        min-height: 510px;
        padding: 65px 25px;
    }
    .l50-specs__table {
        padding: 65px 22px;
    }
    .l50-use {
        padding: 75px 16px;
    }
    .l50-use__grid {
        grid-template-columns: 1fr;
    }
    .l50-use__grid a {
        height: 330px;
    }
    .l50-final {
        padding: 85px 20px;
    }
    .l50-final > div {
        flex-direction: column;
        align-items: center;
    }
}

/* Tăng khả năng đọc cho phần vận hành và thông số L50 */
.l50-heading--easy {
    align-items: flex-end;
}
.l50-heading--easy > div {
    flex: 1 1 auto;
}
.l50-heading--easy > div h2 {
    margin-top: 12px;
}
.l50-heading--easy > p {
    flex: 0 0 390px;
    margin: 0 0 8px;
    color: #65737f;
    font-size: 13px;
    line-height: 1.8;
}
.l50-specs__table h3 {
    margin-bottom: 20px;
    padding-top: 48px;
    font-size: 17px;
}
.l50-specs__table dl div {
    padding: 23px 0;
}
.l50-specs dt {
    color: #63717e;
    font-size: 14px;
    line-height: 1.5;
}
.l50-specs dd {
    font-size: 15px;
    line-height: 1.5;
}
.l50-specs__note {
    font-size: 11px;
    line-height: 1.75;
}
.l50-specs__visual h2 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(30px, 3vw, 46px);
    letter-spacing: -0.045em;
}
@media (max-width: 760px) {
    .l50-heading--easy > p {
        max-width: 620px;
        margin-top: 18px;
    }
    .l50-specs dt {
        font-size: 13px;
    }
    .l50-specs dd {
        font-size: 14px;
    }
    .l50-specs__visual h2 {
        font-size: clamp(27px, 8vw, 38px);
    }
}

@media (max-width: 560px) {
    .brand {
        width: 92px;
    }
    .brand img {
        height: 90px;
    }
    .site-header.subpage .brand img,
    .site-header.scrolled .brand img {
        height: 72px;
    }
    .hero {
        min-height: 640px;
    }
    .hero-content {
        padding-bottom: 65px;
    }
    .hero h1,
    .hero h2 {
        font-size: 40px;
        letter-spacing: -0.05em;
    }
    .hero-content--primary h1 {
        font-size: 34px;
        white-space: normal;
    }
    .hero-content--product {
        padding-top: 105px;
        padding-bottom: 0;
        justify-content: flex-start;
    }
    .hero-content--product h2 {
        font-size: 34px;
    }
    .hero-copy {
        font-size: 14px;
    }
    .hero-actions {
        flex-wrap: wrap;
    }
    .button {
        min-width: 142px;
        padding: 13px 17px;
    }
    .scroll-hint {
        display: none;
    }
    .slider-controls {
        right: 20px;
        bottom: 24px;
    }
    .arrow {
        display: none;
    }
    .intro {
        width: calc(100% - 40px);
    }
    .featured-products {
        padding: 10px 10px 60px;
    }
    .featured-products__heading {
        margin-bottom: 34px;
    }
    .featured-products__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .featured-product {
        min-height: 490px;
    }
    .solutions-showcase {
        padding: 36px 10px 55px;
    }
    .solutions-shell {
        padding: 0;
    }
    .solutions-showcase__heading {
        margin-bottom: 30px;
    }
    .solution-frame {
        width: 100%;
        height: calc(60vw - 23px);
        min-height: 230px;
    }
    .solution-card {
        width: calc(100vw - 38px);
    }
    .solution-card.prev {
        left: 0;
        transform: translateX(-92%) scale(0.94);
    }
    .solution-card.next {
        left: 100%;
        transform: translateX(-8%) scale(0.94);
    }
    .solution-card__shade {
        background: linear-gradient(
            0deg,
            rgba(2, 8, 16, 0.88),
            rgba(2, 8, 16, 0.15) 78%
        );
    }
    .solution-card__content {
        left: 20px;
        right: 20px;
        top: 21px;
        bottom: auto;
        transform: none;
        text-align: center;
    }
    .solution-card__content > p {
        margin-bottom: 5px;
        font-size: 8px;
    }
    .solution-card__content h3 {
        margin-bottom: 10px;
        font-size: 24px;
    }
    .solution-card__content a {
        padding: 9px 13px;
        font-size: 9px;
    }
    .solution-arrow {
        top: auto;
        bottom: 14px;
        transform: none;
    }
    .products {
        padding: 85px 20px;
    }
    .final-cta {
        padding: 80px 20px;
    }
    .final-cta h2 {
        font-size: 39px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }
    .footer-bottom {
        flex-direction: column;
    }
    .news-section {
        padding: 22px 10px 58px;
    }
    .news-shell {
        padding: 42px 14px;
    }
    .news-heading {
        margin-bottom: 34px;
    }
    .news-card__image {
        height: auto;
    }
}

/* Tighter workstation composition */
@media (min-width: 1001px) {
    .l50-accessory {
        grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
        min-height: 610px;
        background: #fff;
    }
    .l50-accessory__visual {
        min-height: 610px;
        background: #fff;
        border-right: 1px solid #e5ebef;
    }
    .l50-accessory__visual::before {
        width: 430px;
        height: 430px;
    }
    .l50-accessory__visual::after {
        width: 545px;
        height: 545px;
    }
    .l50-accessory__visual img {
        width: min(78%, 570px);
        height: 650px;
        transform: scale(1.16);
    }
    .l50-accessory__label {
        top: 28px;
        right: 38px;
        left: 38px;
    }
    .l50-accessory__copy {
        justify-content: flex-start;
        padding: 57px clamp(42px, 5.5vw, 104px) 42px;
    }
    .l50-accessory__copy h2 {
        margin: 11px 0 18px;
        font-size: clamp(42px, 3.3vw, 58px);
    }
    .l50-accessory__intro {
        margin-bottom: 21px;
        font-size: 13px;
        line-height: 1.75;
    }
    .l50-accessory__features article {
        min-height: 96px;
        padding-top: 17px;
        padding-bottom: 15px;
    }
    .l50-accessory__copy > small {
        margin-top: 14px;
    }
}

/* Resource hub pages */
.resource-page {
    background: #fff;
}
.resource-page main {
    padding-top: 79px;
}
.resource-hero {
    padding: 92px max(28px, calc((100% - 1320px) / 2)) 68px;
    background: linear-gradient(135deg, #f7fafc 0%, #eef5f8 100%);
}
.resource-hero h1 {
    margin: 7px 0 17px;
    font:
        700 clamp(50px, 6vw, 86px)/0.95 "Helvetica",
        sans-serif;
    letter-spacing: -0.06em;
}
.resource-hero > p:last-child {
    max-width: 650px;
    margin: 0;
    color: #657381;
    font-size: 15px;
    line-height: 1.8;
}
.resource-tabs {
    display: flex;
    justify-content: center;
    gap: 55px;
    padding: 22px 25px;
    border-bottom: 1px solid #e5eaee;
    background: #fff;
}
.resource-tabs a {
    position: relative;
    padding: 6px 4px;
    color: #7b8793;
    font-size: 13px;
    font-weight: 600;
}
.resource-tabs a::after {
    position: absolute;
    right: 0;
    bottom: -29px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--blue);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}
.resource-tabs a:hover,
.resource-tabs a.is-active {
    color: var(--blue);
}
.resource-tabs a.is-active::after {
    transform: scaleX(1);
}
.resource-feature {
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    max-width: 1320px;
    min-height: 520px;
    margin: 80px auto 105px;
    background: #071522;
}
.resource-feature--reverse {
    background: #082132;
}
.resource-feature__image {
    min-height: 520px;
    overflow: hidden;
}
.resource-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.resource-feature:hover img {
    transform: scale(1.04);
}
.resource-feature > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px;
    color: #fff;
}
.resource-feature h2 {
    margin: 7px 0 23px;
    font:
        700 clamp(32px, 3.2vw, 50px)/1.08 "Helvetica",
        sans-serif;
    letter-spacing: -0.045em;
}
.resource-feature > div > p:not(.kicker) {
    margin: 0 0 29px;
    color: #b9c7d0;
    font-size: 13px;
    line-height: 1.85;
}
.resource-feature > div > a,
.case-feature > div > a {
    align-self: flex-start;
    padding-bottom: 8px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    font-size: 12px;
    font-weight: 700;
}
.resource-feature > div > a span,
.case-feature > div > a span {
    margin-left: 10px;
    color: #55cef8;
}
.resource-list {
    padding: 0 max(28px, calc((100% - 1320px) / 2)) 112px;
}
.resource-list > header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 38px;
}
.resource-list > header h2 {
    margin: 0;
    font:
        700 clamp(34px, 4vw, 52px)/1 "Helvetica",
        sans-serif;
    letter-spacing: -0.05em;
}
.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.resource-card {
    background: #f4f7f9;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.resource-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 45px rgba(7, 24, 38, 0.12);
}
.resource-card > a {
    display: block;
    height: 300px;
    overflow: hidden;
    background: #eaf0f3;
}
.resource-card > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.resource-card:hover > a img {
    transform: scale(1.055);
}
.resource-card > div {
    padding: 25px 26px 29px;
}
.resource-card > div > p {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}
.resource-card h3 {
    min-height: 58px;
    margin: 0 0 24px;
    font:
        700 18px/1.45 "Helvetica",
        sans-serif;
    letter-spacing: -0.025em;
}
.resource-card span {
    color: #566573;
    font-size: 11px;
    font-weight: 700;
}
.resource-cta {
    padding: 92px 25px 100px;
    text-align: center;
    background: #f0f5f7;
}
.resource-cta h2 {
    max-width: 900px;
    margin: 10px auto 31px;
    font:
        700 clamp(35px, 4.8vw, 65px)/1.05 "Helvetica",
        sans-serif;
    letter-spacing: -0.055em;
}
.resource-cta > a {
    display: inline-flex;
    gap: 13px;
    padding: 15px 25px;
    color: #fff;
    border-radius: 999px;
    background: var(--blue);
    font-size: 12px;
    font-weight: 700;
}
.case-feature {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    max-width: 1320px;
    min-height: 610px;
    margin: 80px auto 105px;
    color: #fff;
    background: #071522;
}
.case-feature > img {
    width: 100%;
    height: 100%;
    min-height: 610px;
    object-fit: cover;
}
.case-feature > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px;
}
.case-feature h2 {
    margin: 8px 0 20px;
    font:
        700 clamp(32px, 3vw, 48px)/1.08 "Helvetica",
        sans-serif;
    letter-spacing: -0.04em;
}
.case-feature > div > p:not(.kicker) {
    color: #bcc9d1;
    font-size: 13px;
    line-height: 1.8;
}
.case-feature dl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 27px 0 35px;
    padding: 25px 0;
    border-top: 1px solid #31424e;
    border-bottom: 1px solid #31424e;
}
.case-feature dl div {
    padding-right: 14px;
}
.case-feature dt {
    color: #55cef8;
    font:
        700 27px "Helvetica",
        sans-serif;
}
.case-feature dd {
    margin: 7px 0 0;
    color: #aebcc6;
    font-size: 9px;
    line-height: 1.5;
}
@media (max-width: 900px) {
    .resource-feature,
    .case-feature {
        grid-template-columns: 1fr;
        margin: 45px 24px 75px;
    }
    .resource-feature__image,
    .case-feature > img {
        min-height: 430px;
    }
    .resource-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 620px) {
    .resource-page main {
        padding-top: 67px;
    }
    .resource-hero {
        padding: 62px 20px 48px;
    }
    .resource-tabs {
        gap: 23px;
    }
    .resource-feature,
    .case-feature {
        margin: 25px 14px 58px;
    }
    .resource-feature__image,
    .case-feature > img {
        min-height: 300px;
        height: 300px;
    }
    .resource-feature > div,
    .case-feature > div {
        padding: 38px 25px;
    }
    .resource-grid {
        grid-template-columns: 1fr;
    }
    .resource-list {
        padding-right: 14px;
        padding-left: 14px;
    }
    .resource-card > a {
        height: 270px;
    }
    .case-feature dl {
        gap: 12px;
    }
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.product-page {
    background: #fff;
}
.product-page__hero {
    padding: 170px max(32px, calc((100% - 1320px) / 2)) 90px;
    color: #fff;
    background: #07111f;
}
.product-page__hero h1 {
    margin: 0;
    font:
        700 clamp(48px, 5.4vw, 86px)/1.05 "Helvetica",
        sans-serif;
    letter-spacing: -0.055em;
}
.product-page__hero > p:last-child {
    max-width: 650px;
    margin: 25px 0 0;
    color: #aeb9c8;
    line-height: 1.75;
}
.product-page__products {
    padding-top: 70px;
}

/* Hệ tiêu đề thống nhất cho toàn bộ trang chủ */
:is(
    .solutions-showcase__heading h2,
    .trusted-section__heading h2,
    .news-heading h2,
    .featured-products__heading h2,
    .intro h2,
    .section-heading h2
) {
    margin: 0;
    font-family: "Helvetica", sans-serif;
    font-size: clamp(32px, 3.1vw, 48px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.045em;
}

@media (max-width: 560px) {
    :is(
        .solutions-showcase__heading h2,
        .trusted-section__heading h2,
        .news-heading h2,
        .featured-products__heading h2,
        .intro h2,
        .section-heading h2
    ) {
        font-size: 31px;
    }
}

/* Trang danh sách giải pháp theo ngành */
.solution-list-page {
    background: #f3f6f8;
}
.solution-list-page .site-header {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 1px 0 rgba(7, 17, 31, 0.09);
}
.solution-list-page .main-nav a.active {
    color: var(--blue);
}
.industry-main {
    padding-top: 86px;
}
.industry-intro {
    padding: 105px max(32px, calc((100% - 1320px) / 2)) 82px;
    background: #fff;
}
.industry-intro h1 {
    max-width: 920px;
    margin: 12px 0 24px;
    font:
        700 clamp(44px, 5.1vw, 74px)/1.05 "Helvetica",
        sans-serif;
    letter-spacing: -0.055em;
}
.industry-intro > p:last-child {
    max-width: 720px;
    margin: 0;
    color: #687585;
    font-size: 16px;
    line-height: 1.8;
}
.industry-grid-section {
    padding: 68px max(32px, calc((100% - 1120px) / 2)) 95px;
}
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.industry-card {
    min-width: 0;
    overflow: hidden;
    background: #fff;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
    scroll-margin-top: 120px;
}
.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(7, 17, 31, 0.11);
}
.industry-card__image {
    display: block;
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #dbe2e8;
}
.industry-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.industry-card:hover .industry-card__image img {
    transform: scale(1.055);
}
.industry-card__body {
    position: relative;
    min-height: 275px;
    padding: 27px 27px 32px;
}
.industry-card__number {
    position: absolute;
    top: 29px;
    right: 27px;
    margin: 0;
    color: #a8b2bc;
    font:
        600 12px "Helvetica",
        sans-serif;
    letter-spacing: 0.08em;
}
.industry-card h2 {
    max-width: calc(100% - 45px);
    margin: 0 0 16px;
    font:
        700 29px/1.18 "Helvetica",
        sans-serif;
    letter-spacing: -0.035em;
}
.industry-card__body > p:not(.industry-card__number) {
    margin: 0;
    color: #6d7988;
    font-size: 15px;
    line-height: 1.72;
}
.industry-card__link {
    position: absolute;
    left: 27px;
    bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid #aeb8c1;
    font-size: 13px;
    font-weight: 700;
}
.industry-card__link span {
    color: var(--blue);
}
.industry-card--consult {
    display: flex;
    min-height: 610px;
    align-items: flex-end;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(5, 20, 33, 0.92), rgba(6, 130, 182, 0.68)),
        url("assets/banner-cleaning.png") center/cover;
}
.industry-card__consult-content {
    padding: 44px 38px;
}
.industry-card--consult h2 {
    max-width: 340px;
    margin: 12px 0 18px;
    font-size: 35px;
}
.industry-card--consult .kicker {
    color: #73d5fa;
}
.industry-card--consult p:not(.kicker) {
    max-width: 350px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.75;
}
.industry-card--consult a {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 13px 20px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}
.industry-card--consult:hover a {
    background: var(--blue);
    border-color: var(--blue);
}
.industry-cta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    padding: 82px max(32px, calc((100% - 1320px) / 2));
    background: #fff;
}
.industry-cta h2 {
    margin: 10px 0 0;
    font:
        700 clamp(36px, 4vw, 58px)/1.08 "Helvetica",
        sans-serif;
    letter-spacing: -0.05em;
}
.industry-cta > a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 18px;
    padding: 16px 24px;
    border: 1px solid var(--blue);
    border-radius: 999px;
    color: #fff;
    background: var(--blue);
    font-size: 13px;
    font-weight: 700;
}
.industry-cta > a:hover {
    color: var(--ink);
    background: #fff;
}
@media (max-width: 980px) {
    .industry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .industry-card--consult {
        min-height: 560px;
    }
}
@media (max-width: 640px) {
    .industry-main {
        padding-top: 72px;
    }
    .industry-intro {
        padding: 70px 20px 55px;
    }
    .industry-intro h1 {
        font-size: 38px;
    }
    .industry-grid-section {
        padding: 40px 14px 65px;
    }
    .industry-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .industry-card__image {
        height: 280px;
    }
    .industry-card__body {
        min-height: 255px;
        padding: 26px 24px 30px;
    }
    .industry-card__number {
        top: 28px;
        right: 24px;
    }
    .industry-card__link {
        left: 24px;
        bottom: 28px;
    }
    .industry-card--consult {
        min-height: 480px;
    }
    .industry-card__consult-content {
        padding: 35px 26px;
    }
    .industry-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 60px 20px;
    }
    .industry-cta h2 {
        font-size: 36px;
    }
}

@media (max-width: 900px) {
    .nav-dropdown {
        display: block;
        align-self: auto;
    }
    .main-nav .nav-dropdown__trigger {
        justify-content: space-between;
    }
    .nav-dropdown__menu {
        position: static;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        padding: 0 0 0 14px;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.3s ease;
    }
    .nav-dropdown:hover .nav-dropdown__menu,
    .nav-dropdown:focus-within .nav-dropdown__menu {
        max-height: 380px;
        transform: none;
    }
    .main-nav .nav-dropdown__menu a {
        padding: 10px 12px;
    }
    .main-nav .nav-dropdown__menu a:hover {
        padding-left: 16px;
    }
}

/* Trang Về Elite */
.about-page {
    background: #fff;
}
.about-page .site-header {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 1px 0 rgba(7, 17, 31, 0.09);
}
.about-page .main-nav > a.active {
    color: var(--blue);
}
.about-main {
    padding-top: 72px;
}

.about-hero {
    position: relative;
    min-height: 490px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    padding: 65px max(32px, calc((100% - 1320px) / 2));
    color: #fff;
}
.about-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 1;
    background: linear-gradient(
        90deg,
        rgba(3, 14, 28, 0.72) 0%,
        rgba(3, 14, 28, 0.3) 39%,
        rgba(3, 14, 28, 0) 70%
    );
}
.about-hero__pattern::after {
    display: none;
}
.about-hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}
.about-hero .kicker {
    color: #65cff6;
}
.about-hero h1 {
    margin: 22px 0 0;
    font:
        500 clamp(32px, 3.2vw, 46px)/1.1 "Helvetica",
        sans-serif;
    letter-spacing: -0.035em;
}
.about-hero__content > p:last-child {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
}
.about-hero__scroll {
    position: absolute;
    z-index: 2;
    right: max(32px, calc((100% - 1320px) / 2));
    bottom: 68px;
    display: flex;
    gap: 14px;
    align-items: center;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.about-hero__scroll b {
    color: #65cff6;
    font-size: 18px;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 max(32px, calc((100% - 1320px) / 2));
    background: #fff;
    text-align: center;
}
.about-stats article {
    display: flex;
    min-height: 145px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px 50px;
    border-right: 1px solid #dce3e8;
}
.about-stats article:first-child {
    padding-left: 0;
}
.about-stats article:last-child {
    padding-right: 0;
    border-right: 0;
}
.about-stats strong {
    display: block;
    color: var(--blue);
    font:
        600 clamp(38px, 4vw, 58px)/1 "Helvetica",
        sans-serif;
    letter-spacing: -0.055em;
}
.about-stats p {
    margin: 9px 0 0;
    font-size: 13px;
    font-weight: 700;
}
.about-story {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: clamp(50px, 7vw, 105px);
    align-items: center;
    padding: 92px max(32px, calc((100% - 1320px) / 2));
    background: #fff;
}
.about-story__copy h2 {
    max-width: 620px;
    margin: 13px 0 30px;
    color: var(--blue);
    font:
        700 clamp(32px, 3.4vw, 48px)/1.13 "Helvetica",
        sans-serif;
    letter-spacing: -0.05em;
}
.about-story__copy > p:not(.kicker) {
    max-width: 650px;
    margin: 0 0 18px;
    color: #596777;
    font-size: 14px;
    line-height: 1.9;
}
.about-story__copy > p:last-child {
    margin-bottom: 0;
}
.about-story__image {
    min-height: 470px;
    overflow: hidden;
    background: #e9eef2;
}
.about-story__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
}
.about-values {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 105px max(32px, calc((100% - 1320px) / 2));
    color: #fff;
    background: #07111f;
}
.about-values .bg-about-values {
    position: absolute;
    z-index: -2;
    inset: -12px;
    background: url("assets/about-culture-elite.png") center/cover no-repeat;
    filter: blur(3px);
    transform: scale(1.025);
}
.about-values::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(3, 14, 25, 0.86),
        rgba(3, 18, 31, 0.66) 52%,
        rgba(3, 14, 25, 0.8)
    );
}
.about-values__heading {
    display: block;
    margin-bottom: 62px;
}
.about-values__heading .kicker {
    color: #65cff6;
}
.about-values__heading h2 {
    margin: 0;
    color: #fff;
    font:
        700 clamp(38px, 4vw, 58px)/1.08 "Helvetica",
        sans-serif;
    letter-spacing: -0.045em;
}
.about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.38);
}
.about-values__grid article {
    min-height: 290px;
    padding: 38px 42px 32px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.about-values__grid article + article {
    padding-left: 36px;
}
.about-values__grid article:last-child {
    border-right: 0;
}
.about-values__grid .about-value-icon {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border: 1px solid rgba(101, 207, 246, 0.7);
    border-radius: 50%;
    color: #76dcff;
    background: rgba(4, 26, 42, 0.55);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    font-size: 32px;
    font-variation-settings:
        "FILL" 0,
        "wght" 300,
        "GRAD" 0,
        "opsz" 24;
}
.about-values__grid h3 {
    margin: 45px 0 18px;
    font:
        700 28px "Helvetica",
        sans-serif;
}
.about-values__grid p {
    max-width: 350px;
    margin: 0;
    color: rgba(255, 255, 255, 0.83);
    font-size: 14px;
    line-height: 1.75;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
.about-milestones {
    padding: 55px max(32px, calc((100% - 1320px) / 2)) 62px;
    background: #fff;
}
.about-section-heading {
    margin-bottom: 55px;
}
.about-section-heading h2 {
    margin: 10px 0 0;
    font:
        700 clamp(34px, 3.6vw, 50px)/1.12 "Helvetica",
        sans-serif;
    letter-spacing: -0.045em;
}
.milestone-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.milestone-track article {
    position: relative;
    padding-right: 32px;
}
.milestone-track time {
    color: var(--blue);
    font:
        700 36px "Helvetica",
        sans-serif;
    letter-spacing: -0.04em;
}
.milestone-track span {
    display: block;
    position: relative;
    height: 1px;
    margin: 24px 0 30px;
    background: #ccd5dc;
}
.milestone-track span::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--blue);
}
.milestone-track h3 {
    margin: 0 0 13px;
    font:
        700 18px "Helvetica",
        sans-serif;
}
.milestone-track p {
    max-width: 245px;
    margin: 0;
    color: #748190;
    font-size: 13px;
    line-height: 1.7;
}
.journey-heading {
    margin-bottom: 22px;
    text-align: center;
}
.journey-heading h2 {
    font-size: clamp(30px, 3vw, 42px);
}
.journey {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}
.journey-years {
    display: grid;
    grid-template-columns:
        48px minmax(150px, 1fr) minmax(260px, 1.35fr) minmax(150px, 1fr)
        48px;
    align-items: center;
    min-height: 92px;
    margin-bottom: 20px;
}
.journey-year,
.journey-arrow {
    border: 0;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
}
.journey-year {
    font-family: "Helvetica", sans-serif;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.06em;
    transition:
        color 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}
.journey-year--active {
    color: var(--blue);
    font-size: clamp(54px, 6.3vw, 88px);
    cursor: default;
}
.journey-year--side {
    color: #aeb9c4;
    font-size: clamp(35px, 4.2vw, 58px);
    opacity: 0.42;
}
.journey-year--side:hover {
    color: var(--blue);
    opacity: 0.68;
    transform: scale(1.025);
}
.journey-arrow {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid #d4dde4;
    border-radius: 50%;
    font-size: 17px;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}
.journey-arrow:hover {
    color: #fff;
    border-color: var(--blue);
    background: var(--blue);
}
.journey-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
    height: 360px;
    min-height: 360px;
    background: #f3f6f8;
    overflow: hidden;
}
.journey-panel__image {
    height: 360px;
    min-height: 0;
    overflow: hidden;
}
.journey-panel__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}
.journey-panel__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 48px;
    overflow: hidden;
}
.journey-panel__eyebrow {
    margin: 0 0 17px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.journey-panel__copy h3 {
    margin: 0 0 20px;
    font:
        700 clamp(28px, 3vw, 42px)/1.15 "Helvetica",
        sans-serif;
    letter-spacing: -0.045em;
}
.journey-panel__description {
    margin: 0;
    color: #657282;
    font-size: 14px;
    line-height: 1.85;
}
.journey.is-changing .journey-panel__image,
.journey.is-changing .journey-panel__copy {
    animation: journeyReveal 0.48s ease both;
}
.journey.is-changing .journey-panel__copy {
    animation-delay: 0.06s;
}
@keyframes journeyReveal {
    from {
        opacity: 0.25;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.about-cases {
    padding: 95px max(32px, calc((100% - 1320px) / 2)) 110px;
    background: #f3f6f8;
}
.about-section-heading--row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.about-section-heading--row > a {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 7px;
    border-bottom: 1px solid #9aa6b1;
    font-size: 13px;
    font-weight: 700;
}
.about-section-heading--row > a span {
    color: var(--blue);
}
.about-cases__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.case-card {
    background: #fff;
}
.case-card__image {
    display: block;
    height: 320px;
    overflow: hidden;
}
.case-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.case-card:hover img {
    transform: scale(1.05);
}
.case-card > div {
    padding: 27px 28px 30px;
}
.case-card > div > p {
    margin: 0 0 13px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}
.case-card h3 {
    min-height: 58px;
    margin: 0 0 25px;
    font:
        700 19px/1.45 "Helvetica",
        sans-serif;
    letter-spacing: -0.025em;
}
.case-card > div > a {
    display: inline-flex;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
}
.case-card > div > a span {
    color: var(--blue);
}
@media (max-width: 900px) {
    .about-hero {
        min-height: 455px;
        padding: 55px 28px;
    }
    .about-hero__scroll {
        display: none;
    }
    .about-stats article {
        min-height: 125px;
        padding: 22px 25px;
    }
    .about-story {
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 80px 28px;
    }
    .about-story__image,
    .about-story__image img {
        min-height: 430px;
    }
    .about-values {
        padding: 80px 28px;
    }
    .about-values__heading {
        flex-direction: column;
    }
    .about-milestones,
    .about-cases {
        padding-left: 28px;
        padding-right: 28px;
    }
    .about-milestones {
        padding-top: 48px;
        padding-bottom: 54px;
    }
    .milestone-track {
        grid-template-columns: 1fr 1fr;
        gap: 50px 0;
    }
    .journey-years {
        grid-template-columns: 42px 1fr 1.45fr 1fr 42px;
        min-height: 82px;
    }
    .journey-year--active {
        font-size: clamp(52px, 10vw, 78px);
    }
    .journey-year--side {
        font-size: clamp(34px, 7vw, 54px);
    }
    .journey-panel {
        grid-template-columns: 1fr;
        height: 590px;
        min-height: 590px;
    }
    .journey-panel__image,
    .journey-panel__image img {
        height: 300px;
        min-height: 0;
    }
    .about-cases__grid {
        grid-template-columns: 1fr 1fr;
    }
    .case-card:last-child {
        grid-column: 1 / -1;
    }
}
@media (max-width: 640px) {
    .about-main {
        padding-top: 72px;
    }
    .about-hero {
        min-height: 430px;
        padding: 48px 20px;
    }
    .about-hero h1 {
        margin-top: 14px;
        font-size: 31px;
    }
    .about-stats {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .about-stats article,
    .about-stats article:first-child,
    .about-stats article:last-child {
        min-height: 112px;
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid #dce3e8;
    }
    .about-stats article:last-child {
        border-bottom: 0;
    }
    .about-story {
        padding: 65px 20px;
    }
    .about-story__image,
    .about-story__image img {
        min-height: 310px;
    }
    .about-values {
        padding: 65px 20px;
    }
    .about-values__grid {
        grid-template-columns: 1fr;
    }
    .about-values__grid article,
    .about-values__grid article + article {
        min-height: 0;
        padding: 30px 0;
        border-right: 0;
        border-bottom: 1px solid #2a3540;
    }
    .about-values__grid h3 {
        margin-top: 28px;
    }
    .about-milestones,
    .about-cases {
        padding: 65px 20px;
    }
    .about-milestones {
        padding-top: 42px;
        padding-bottom: 48px;
    }
    .milestone-track {
        grid-template-columns: 1fr;
        gap: 42px;
    }
    .journey-years {
        grid-template-columns: 34px 1fr 1.45fr 1fr 34px;
        min-height: 72px;
        margin: 0 -12px 18px;
    }
    .journey-arrow {
        width: 32px;
        height: 32px;
    }
    .journey-year--active {
        font-size: 40px;
    }
    .journey-year--side {
        font-size: 25px;
    }
    .journey-panel {
        height: 510px;
        min-height: 510px;
    }
    .journey-panel__image,
    .journey-panel__image img {
        height: 235px;
        min-height: 0;
    }
    .journey-panel__copy {
        height: 275px;
        padding: 28px 24px 32px;
    }
    .about-section-heading--row {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }
    .about-cases__grid {
        grid-template-columns: 1fr;
    }
    .case-card:last-child {
        grid-column: auto;
    }
    .case-card__image {
        height: 285px;
    }
}

/* Trang danh mục sản phẩm */
.catalog-page {
    background: #f3f6f8;
}
.catalog-page .site-header {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 1px 0 rgba(7, 17, 31, 0.09);
}
.catalog-page .main-nav > a.active {
    color: var(--blue);
}
.catalog-main {
    padding-top: 72px;
}
.catalog-hero {
    padding: 88px max(32px, calc((100% - 1320px) / 2)) 68px;
    background: #fff;
}
.catalog-hero h1 {
    margin: 10px 0 18px;
    font:
        700 clamp(42px, 4.7vw, 66px)/1.05 "Helvetica",
        sans-serif;
    letter-spacing: -0.055em;
}
.catalog-hero > p:last-child {
    max-width: 680px;
    margin: 0;
    color: #697686;
    font-size: 15px;
    line-height: 1.8;
}
.catalog-section {
    display: grid;
    grid-template-columns: 245px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
    padding: 60px max(32px, calc((100% - 1320px) / 2)) 100px;
}
.catalog-filter {
    position: sticky;
    top: 98px;
    padding: 27px 24px 30px;
    border: 1px solid #e2e7eb;
    background: #fff;
}
.catalog-filter__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e7ebee;
}
.catalog-filter__top p {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
}
.catalog-filter__top button {
    padding: 0;
    border: 0;
    color: #8a96a2;
    background: none;
    font-size: 10px;
    cursor: pointer;
}
.catalog-filter__top button:hover {
    color: var(--blue);
}
.catalog-filter h2 {
    margin: 23px 0 14px;
    font:
        700 13px "Helvetica",
        sans-serif;
}
.catalog-filter__options {
    display: grid;
    gap: 4px;
}
.catalog-filter__options button,
.catalog-filter__options a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 11px;
    border: 0;
    border-left: 2px solid transparent;
    color: #677483;
    background: transparent;
    font-size: 11px;
    text-align: left;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}
.catalog-filter__options button b {
    color: #a5afb8;
    font-size: 10px;
}
.catalog-filter__options button:hover {
    color: var(--blue);
    background: rgba(6, 130, 182, 0.05);
}
.catalog-filter__options button.active {
    color: var(--blue);
    border-left-color: var(--blue);
    background: rgba(6, 130, 182, 0.08);
    font-weight: 700;
}
.catalog-results {
    min-width: 0;
}
.catalog-results__bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 28px;
}
.catalog-results__bar h2 {
    margin: 8px 0 0;
    font:
        700 clamp(28px, 3vw, 40px)/1.1 "Helvetica",
        sans-serif;
    letter-spacing: -0.04em;
}
.catalog-results__bar > p {
    margin: 0 0 3px;
    color: #87929e;
    font-size: 11px;
}
.catalog-results__bar > p strong {
    color: var(--blue);
    font-size: 13px;
}
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.catalog-card {
    min-width: 0;
    overflow: hidden;
    background: #fff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(7, 17, 31, 0.1);
}
.catalog-card__image {
    display: flex;
    height: 340px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 22px;
    background: linear-gradient(145deg, #f9fafb, #eef2f5);
}
.catalog-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.45s ease;
}
.catalog-card:hover .catalog-card__image img {
    transform: scale(1.045);
}
.catalog-card__body {
    min-height: 245px;
    padding: 23px 24px 27px;
}
.catalog-card__body > p {
    margin: 0 0 9px;
    color: var(--blue);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}
.catalog-card h3 {
    margin: 0 0 13px;
    font:
        700 20px/1.25 "Helvetica",
        sans-serif;
    letter-spacing: -0.035em;
}
.catalog-card__body > span {
    display: block;
    min-height: 62px;
    color: #74808d;
    font-size: 12px;
    line-height: 1.7;
}
.catalog-card__body > a {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: 24px;
    padding-bottom: 5px;
    border-bottom: 1px solid #aeb8c1;
    font-size: 11px;
    font-weight: 700;
}
.catalog-card__body > a b {
    color: var(--blue);
    font-size: 14px;
}
.catalog-empty {
    padding: 70px 30px;
    color: #7d8995;
    background: #fff;
    text-align: center;
}
@media (max-width: 1100px) {
    .catalog-section {
        grid-template-columns: 210px minmax(0, 1fr);
        gap: 22px;
    }
    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 760px) {
    .catalog-hero {
        padding: 65px 20px 48px;
    }
    .catalog-section {
        grid-template-columns: 1fr;
        padding: 28px 16px 70px;
    }
    .catalog-filter {
        position: static;
        padding: 20px;
    }
    .catalog-filter__options {
        grid-template-columns: 1fr 1fr;
    }
    .catalog-results__bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}
@media (max-width: 520px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    .catalog-filter__options {
        grid-template-columns: 1fr;
    }
    .catalog-card__image {
        height: 310px;
    }
}

/* Mega menu sản phẩm */
.product-mega {
    position: relative;
    display: flex;
    align-self: stretch;
    align-items: center;
}
.main-nav .product-mega__trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}
.product-mega__trigger > span {
    font-size: 15px;
    transition: transform 0.25s ease;
}
.product-mega__menu {
    position: fixed;
    top: 79px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: minmax(225px, 19vw) minmax(0, 1fr);
    width: 100vw;
    height: calc(100vh - 79px);
    min-height: 0;
    padding: 38px max(42px, calc((100vw - 1480px) / 2));
    color: var(--ink);
    border-top: 1px solid rgba(7, 17, 31, 0.08);
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 28px 70px rgba(4, 17, 30, 0.18);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(13px);
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease,
        top 0.3s ease;
}
.site-header.subpage .product-mega__menu,
.site-header.scrolled .product-mega__menu {
    top: 79px;
    height: calc(100vh - 79px);
}
.product-mega:hover .product-mega__menu,
.product-mega:focus-within .product-mega__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.product-mega:hover .product-mega__trigger > span,
.product-mega:focus-within .product-mega__trigger > span {
    transform: rotate(180deg);
}
.product-mega__categories {
    position: relative;
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding: 8px 22px 64px 4px;
    border-right: 1px solid #e4e9ed;
}
.product-mega__categories p {
    margin: 0 0 19px;
    color: #8b97a3;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.product-mega__categories button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 14px;
    border: 0;
    border-left: 2px solid transparent;
    color: #53606d;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: 0.2s ease;
}
.product-mega__categories button b {
    color: #a6b0b9;
    font-size: 10px;
}
.product-mega__categories button:hover,
.product-mega__categories button.is-active {
    color: var(--blue);
    border-left-color: var(--blue);
    background: rgba(6, 130, 182, 0.07);
}
.main-nav .product-mega__categories > a {
    position: absolute;
    right: 22px;
    bottom: 4px;
    left: 4px;
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 15px 12px 10px;
    color: var(--blue);
    border-top: 1px solid #e5eaee;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}
.main-nav .product-mega__categories > a::after,
.main-nav .product-mega__heading a::after,
.main-nav .product-mega__card::after {
    display: none;
}
.product-mega__products {
    min-width: 0;
    min-height: 0;
    padding: 5px 4px 36px 28px;
    overflow-y: auto;
}
.product-mega__heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 25px;
    margin-bottom: 20px;
}
.product-mega__heading small {
    color: var(--blue);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.11em;
}
.product-mega__heading h2 {
    margin: 6px 0 0;
    font:
        700 24px/1.15 "Helvetica",
        sans-serif;
    letter-spacing: -0.035em;
}
.main-nav .product-mega__heading a {
    padding: 5px 0;
    color: #66727f;
    font-size: 10px;
    letter-spacing: 0;
    text-transform: none;
}
.main-nav .product-mega__heading a:hover {
    color: var(--blue);
}
.product-mega__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.main-nav .product-mega__card {
    display: block;
    padding: 0;
    color: var(--ink);
    letter-spacing: 0;
    text-transform: none;
}
.product-mega__card > span {
    display: flex;
    height: min(42vh, 390px);
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 24px;
    background: linear-gradient(145deg, #f8fafb, #edf2f5);
}
.product-mega__card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}
.product-mega__card:hover img {
    transform: scale(1.055);
}
.product-mega__card strong {
    display: block;
    margin-top: 13px;
    font:
        700 14px "Helvetica",
        sans-serif;
}
.product-mega__card small {
    display: block;
    margin-top: 6px;
    color: #8995a1;
    font-size: 10px;
}
@media (max-width: 900px) {
    .product-mega {
        display: block;
    }
    .main-nav .product-mega__trigger {
        justify-content: space-between;
    }
    .product-mega__menu {
        display: none;
    }
}

/* CenoBots L50 — optional 4-in-1 workstation */
.l50-accessory {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
    min-height: 720px;
    color: #07111f;
    background: #fff;
    border-top: 1px solid #e7edf1;
    border-bottom: 1px solid #e7edf1;
}
.l50-accessory__visual {
    position: relative;
    display: flex;
    min-height: 720px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(
        circle at 50% 53%,
        #fff 0 33%,
        #f2f7fa 68%,
        #e9f0f4 100%
    );
}
.l50-accessory__visual::before,
.l50-accessory__visual::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(6, 130, 182, 0.13);
    border-radius: 50%;
}
.l50-accessory__visual::before {
    width: 510px;
    height: 510px;
}
.l50-accessory__visual::after {
    width: 650px;
    height: 650px;
}
.l50-accessory__visual img {
    position: relative;
    z-index: 1;
    display: block;
    width: min(72%, 520px);
    height: 610px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 30px 32px rgba(9, 30, 45, 0.14));
}
.l50-accessory__label {
    position: absolute;
    z-index: 2;
    top: 42px;
    right: 44px;
    left: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #667684;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}
.l50-accessory__label b {
    color: #0682b6;
    font:
        700 13px "Helvetica",
        sans-serif;
}
.l50-accessory__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 78px clamp(42px, 6vw, 112px);
}
.l50-accessory__copy h2 {
    margin: 13px 0 24px;
    font:
        700 clamp(42px, 4vw, 68px)/0.98 "Helvetica",
        sans-serif;
    letter-spacing: -0.055em;
}
.l50-accessory__intro {
    max-width: 610px;
    margin: 0 0 28px;
    color: #657381;
    font-size: 14px;
    line-height: 1.85;
}
.l50-accessory__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #dbe4e9;
}
.l50-accessory__features article {
    display: flex;
    gap: 15px;
    min-height: 124px;
    padding: 23px 18px 20px 0;
    border-bottom: 1px solid #dbe4e9;
}
.l50-accessory__features article:nth-child(odd) {
    border-right: 1px solid #dbe4e9;
}
.l50-accessory__features article:nth-child(even) {
    padding-left: 22px;
}
.l50-accessory__features span {
    padding-top: 2px;
    color: #0682b6;
    font:
        700 10px "Helvetica",
        sans-serif;
    letter-spacing: 0.08em;
}
.l50-accessory__features h3 {
    margin: 0 0 7px;
    font:
        700 14px/1.25 "Helvetica",
        sans-serif;
}
.l50-accessory__features p {
    margin: 0;
    color: #75818c;
    font-size: 11px;
    line-height: 1.65;
}
.l50-accessory__copy > small {
    margin-top: 20px;
    color: #98a3ad;
    font-size: 9px;
    line-height: 1.6;
}
@media (max-width: 1000px) {
    .l50-accessory {
        grid-template-columns: 1fr;
    }
    .l50-accessory__visual {
        min-height: 590px;
    }
    .l50-accessory__visual img {
        height: 500px;
    }
    .l50-accessory__copy {
        padding: 64px 7vw 72px;
    }
}
@media (max-width: 560px) {
    .l50-accessory__visual {
        min-height: 470px;
    }
    .l50-accessory__visual img {
        width: 84%;
        height: 390px;
    }
    .l50-accessory__visual::before {
        width: 340px;
        height: 340px;
    }
    .l50-accessory__visual::after {
        width: 430px;
        height: 430px;
    }
    .l50-accessory__label {
        top: 26px;
        right: 22px;
        left: 22px;
    }
    .l50-accessory__copy {
        padding: 52px 22px 62px;
    }
    .l50-accessory__features {
        grid-template-columns: 1fr;
    }
    .l50-accessory__features article:nth-child(odd) {
        border-right: 0;
    }
    .l50-accessory__features article:nth-child(even) {
        padding-left: 0;
    }
}

@media (min-width: 1001px) {
    .l50-accessory {
        grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
        min-height: 610px;
        background: #fff;
    }
    .l50-accessory__visual {
        min-height: 610px;
        background: #fff;
        border-right: 1px solid #e5ebef;
    }
    .l50-accessory__visual::before {
        width: 430px;
        height: 430px;
    }
    .l50-accessory__visual::after {
        width: 545px;
        height: 545px;
    }
    .l50-accessory__visual img {
        width: min(78%, 570px);
        height: 650px;
        transform: scale(1.16);
    }
    .l50-accessory__label {
        top: 28px;
        right: 38px;
        left: 38px;
    }
    .l50-accessory__copy {
        justify-content: flex-start;
        padding: 57px clamp(42px, 5.5vw, 104px) 42px;
    }
    .l50-accessory__copy h2 {
        margin: 11px 0 18px;
        font-size: clamp(42px, 3.3vw, 58px);
    }
    .l50-accessory__intro {
        margin-bottom: 21px;
        font-size: 13px;
        line-height: 1.75;
    }
    .l50-accessory__features article {
        min-height: 96px;
        padding-top: 17px;
        padding-bottom: 15px;
    }
    .l50-accessory__copy > small {
        margin-top: 14px;
    }
}
/* News listing and SEO article templates */
.news-showcase {
    max-width: 1320px;
    margin: 0 auto;
    padding: 58px 32px 110px;
}
.news-lead {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
    background: #071526;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
}
.news-lead > img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}
.news-lead__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 52px;
}
.news-lead__body .kicker {
    color: #44c8ff;
}
.news-lead__body h2 {
    font-family: Helvetica, sans-serif;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.12;
    margin: 15px 0 20px;
}
.news-lead__body > p:not(.kicker) {
    color: #c5d2df;
    line-height: 1.75;
    margin: 0 0 28px;
}
.news-lead__body > span {
    color: #fff;
    font-weight: 700;
}
.news-lead:hover .news-lead__body > span {
    color: #44c8ff;
}
.news-showcase .news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 28px;
}
.news-showcase .news-card {
    display: grid;
    grid-template-columns: 45% 1fr;
    background: #f2f5f8;
    min-height: 245px;
}
.news-showcase .news-card > a {
    overflow: hidden;
}
.news-showcase .news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.news-showcase .news-card:hover img {
    transform: scale(1.035);
}
.news-showcase .news-card > div {
    padding: 28px;
    display: flex;
    flex-direction: column;
}
.news-showcase .news-card p {
    font-size: 12px;
    color: #0682b6;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 12px;
}
.news-showcase .news-card h3 {
    font-size: 20px;
    line-height: 1.4;
    margin: 0;
}
.news-showcase .news-card h3 a {
    color: #07111f;
    text-decoration: none;
}
.news-showcase .news-card__link {
    color: #0682b6;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    margin-top: auto;
    padding-top: 20px;
}
.article-page {
    background: #fff;
    color: #0a1422;
}
.article-page main {
    padding-top: 78px;
}
.article-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 50px 32px 88px;
}
.article-breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: #7a8794;
    margin-bottom: 50px;
}
.article-breadcrumb a {
    color: #526273;
    text-decoration: none;
}
.article-breadcrumb b {
    color: #0682b6;
}
.article-header {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}
.article-header .kicker {
    color: #0682b6;
}
.article-header h1 {
    font-family: Helvetica, sans-serif;
    font-size: clamp(38px, 5.2vw, 68px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin: 17px 0 24px;
}
.article-meta {
    display: flex;
    justify-content: center;
    gap: 12px 28px;
    flex-wrap: wrap;
    color: #75818e;
    font-size: 13px;
}
.article-cover {
    margin: 58px 0 62px;
    overflow: hidden;
    background: #071526;
}
.article-cover img {
    display: block;
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}
.article-layout {
    display: grid;
    grid-template-columns: 210px minmax(0, 760px);
    gap: 74px;
    justify-content: center;
}
.article-aside {
    position: sticky;
    top: 110px;
    align-self: start;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #d9e0e6;
    padding-top: 18px;
}
.article-aside span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #7d8996;
    margin-bottom: 14px;
}
.article-aside a {
    font-size: 13px;
    line-height: 1.45;
    color: #657381;
    text-decoration: none;
    border-bottom: 1px solid #edf0f3;
    padding: 12px 0;
}
.article-aside a:hover {
    color: #0682b6;
}
.article-content {
    font-size: 17px;
    line-height: 1.9;
    color: #364656;
}
.article-content .article-lead {
    font-size: 21px;
    line-height: 1.75;
    color: #172638;
    margin-top: 0;
}
.article-content h2 {
    font-family: Helvetica, sans-serif;
    font-size: 32px;
    line-height: 1.3;
    color: #07111f;
    margin: 52px 0 18px;
    scroll-margin-top: 120px;
}
.article-content h3 {
    font-size: 20px;
    color: #0b1b2d;
    margin: 30px 0 8px;
}
.article-content p {
    margin: 0 0 20px;
}
.article-content ul {
    padding-left: 22px;
    margin: 0 0 24px;
}
.article-content li {
    padding-left: 6px;
    margin-bottom: 12px;
}
.article-highlight {
    border-left: 4px solid #0682b6;
    background: #edf7fb;
    padding: 26px 30px;
    margin: 38px 0;
}
.article-highlight strong {
    display: block;
    font-family: Helvetica, sans-serif;
    font-size: 20px;
    color: #0682b6;
    margin-bottom: 8px;
}
.article-highlight p {
    margin: 0;
}
.article-table-wrap {
    overflow-x: auto;
    margin: 26px 0 36px;
}
.article-content table {
    border-collapse: collapse;
    width: 100%;
    min-width: 660px;
    font-size: 14px;
    line-height: 1.55;
}
.article-content th {
    background: #071526;
    color: #fff;
    text-align: left;
    padding: 16px;
}
.article-content td {
    border: 1px solid #dbe2e8;
    padding: 15px;
    vertical-align: top;
}
.article-content tr:nth-child(even) td {
    background: #f6f8fa;
}
.related-news {
    background: #f1f5f8;
    padding: 74px max(32px, calc((100% - 1180px) / 2)) 90px;
}
.related-news > h2 {
    font-family: Helvetica, sans-serif;
    font-size: 38px;
    margin: 8px 0 30px;
}
.related-news .kicker {
    color: #0682b6;
}
.related-news__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.related-news__grid > a {
    background: #fff;
    color: #0a1422;
    text-decoration: none;
    padding-bottom: 24px;
    overflow: hidden;
}
.related-news__grid img {
    display: block;
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.related-news__grid a:hover img {
    transform: scale(1.035);
}
.related-news__grid h3 {
    font-size: 18px;
    line-height: 1.45;
    margin: 20px 22px 0;
}
@media (max-width: 900px) {
    .news-lead {
        grid-template-columns: 1fr;
    }
    .news-lead > img {
        min-height: 0;
    }
    .news-showcase .news-grid {
        grid-template-columns: 1fr;
    }
    .article-layout {
        grid-template-columns: 1fr;
    }
    .article-aside {
        display: none;
    }
    .related-news__grid {
        grid-template-columns: 1fr 1fr;
    }
    .article-header h1 {
        font-size: clamp(34px, 8vw, 54px);
    }
}
@media (max-width: 600px) {
    .news-showcase {
        padding: 38px 18px 72px;
    }
    .news-lead__body {
        padding: 30px 24px;
    }
    .news-showcase .news-card {
        grid-template-columns: 1fr;
    }
    .news-showcase .news-card > a {
        aspect-ratio: 3/2;
    }
    .article-shell {
        padding: 34px 18px 65px;
    }
    .article-breadcrumb {
        margin-bottom: 34px;
    }
    .article-header {
        text-align: left;
    }
    .article-meta {
        justify-content: flex-start;
    }
    .article-cover {
        margin: 38px 0 42px;
    }
    .article-content {
        font-size: 16px;
    }
    .article-content .article-lead {
        font-size: 18px;
    }
    .article-content h2 {
        font-size: 27px;
    }
    .related-news {
        padding: 58px 18px;
    }
    .related-news__grid {
        grid-template-columns: 1fr;
    }
}

/* Preserve the native 3:2 news artwork and expose article TOCs */
.news-card__image {
    aspect-ratio: 3/2;
}
.news-showcase .news-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.news-showcase .news-card > a {
    display: block;
    aspect-ratio: 3/2;
    overflow: hidden;
}
.news-showcase .news-card > div {
    flex: 1;
}
.article-toc {
    margin: 32px 0 44px;
    padding: 27px 30px;
    border: 1px solid #dbe3e9;
    background: #f5f8fa;
}
.article-toc > strong {
    display: block;
    margin-bottom: 15px;
    font:
        700 18px/1.3 "Helvetica",
        sans-serif;
    color: #07111f;
}
.article-toc ol {
    display: grid;
    gap: 9px;
    margin: 0;
    padding-left: 20px;
}
.article-toc a {
    color: #3f5365;
    text-decoration: none;
}
.article-toc a:hover {
    color: #0682b6;
}

/* Resource pages: one consistent editorial system */
.article-header {
    width: 100%;
    max-width: none;
    margin: 0;
    text-align: left;
}
.article-header h1 {
    width: 100%;
    max-width: none;
    text-align: left;
    text-wrap: wrap;
    white-space: normal;
    font-size: clamp(34px, 3.6vw, 54px);
    line-height: 1.14;
    letter-spacing: -0.025em;
}
.article-meta {
    justify-content: flex-start;
}
.case-article .article-cover img {
    aspect-ratio: 3/2;
}
.case-article .article-toc a {
    line-height: 1.55;
}

/* Compact three-column news listing */
.news-showcase .news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.news-showcase .news-card > div {
    padding: 20px 21px 23px;
}
.news-showcase .news-card h3 {
    font-size: 17px;
    line-height: 1.42;
}
.news-showcase .news-card p {
    font-size: 10px;
    margin-bottom: 10px;
}
.news-showcase .news-card__link {
    font-size: 12px;
    padding-top: 17px;
}
@media (max-width: 980px) {
    .news-showcase .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 620px) {
    .news-showcase .news-grid {
        grid-template-columns: 1fr;
    }
}
/* Reusable industry solution detail template */
.industry-solution-page {
    background: #fff;
    color: #07111f;
}
.is-container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}
.is-hero {
    position: relative;
    min-height: 760px;
    height: 92vh;
    overflow: hidden;
    background: #07111f;
    color: #fff;
}
.is-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.is-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 13, 28, 0.92) 0%,
            rgba(3, 13, 28, 0.63) 38%,
            rgba(3, 13, 28, 0.12) 70%
        ),
        linear-gradient(0deg, rgba(3, 13, 28, 0.38), transparent 45%);
}
.is-hero__content {
    position: relative;
    z-index: 2;
    padding-top: clamp(190px, 27vh, 270px);
}
.is-hero__content > p,
.is-eyebrow,
.is-heading > p,
.is-final p {
    margin: 0 0 22px;
    color: #20b7ef;
    font:
        700 13px/1.2 "Helvetica",
        sans-serif;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.is-hero h1 {
    max-width: 760px;
    margin: 0;
    font:
        700 clamp(48px, 6vw, 84px)/1.02 Helvetica,
        sans-serif;
    letter-spacing: -0.05em;
}
.is-hero__content > span {
    display: block;
    max-width: 620px;
    margin: 28px 0 38px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.7;
}
.is-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 154px;
    padding: 14px 23px;
    margin: 0 9px 8px 0;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    transition: 0.25s;
}
.is-button--primary,
.is-button:hover {
    background: #0682b6;
    border-color: #0682b6;
}
.is-scroll {
    position: absolute;
    z-index: 2;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.is-subnav {
    position: sticky;
    top: 76px;
    z-index: 30;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #e7edf2;
    backdrop-filter: blur(12px);
}
.is-subnav .is-container {
    display: flex;
    justify-content: center;
    gap: 44px;
    overflow: auto;
}
.is-subnav a {
    padding: 20px 0;
    color: #687485;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}
.is-subnav a:hover {
    color: #0682b6;
}
.is-section {
    padding: 110px 0;
}
.is-heading {
    max-width: 760px;
    margin-bottom: 54px;
}
.is-heading h2,
.is-split__content h2,
.is-final h2 {
    margin: 0;
    font:
        700 clamp(38px, 4.6vw, 64px)/1.07 Helvetica,
        sans-serif;
    letter-spacing: -0.045em;
}
.is-heading > span {
    display: block;
    max-width: 660px;
    margin-top: 20px;
    color: #667284;
    line-height: 1.75;
}
.is-challenges {
    background: #f4f7f9;
}
.is-challenge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #cfd9e1;
    border-bottom: 1px solid #cfd9e1;
}
.is-challenge-grid article {
    min-height: 260px;
    padding: 32px 28px;
    border-right: 1px solid #cfd9e1;
}
.is-challenge-grid article:last-child {
    border: 0;
}
.is-challenge-grid b,
.is-system-grid span {
    color: #0682b6;
    font-size: 12px;
}
.is-challenge-grid h3,
.is-system-grid h3 {
    margin: 52px 0 13px;
    font:
        700 21px/1.25 Helvetica,
        sans-serif;
}
.is-challenge-grid p,
.is-system-grid p,
.is-split p,
.is-benefit-list p {
    color: #687485;
    line-height: 1.65;
}
.is-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 90px;
}
.is-split__image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #eef3f6;
}
.is-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.is-split__image > span {
    position: absolute;
    left: 24px;
    bottom: 24px;
    padding: 10px 15px;
    background: #fff;
    color: #07111f;
    font-size: 12px;
    font-weight: 700;
}
.is-split__content ul {
    margin: 46px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #dae2e8;
}
.is-split__content li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid #dae2e8;
}
.is-split__content li > span {
    color: #0682b6;
    font-size: 11px;
}
.is-split__content b {
    font-size: 16px;
}
.is-split__content li p {
    margin: 6px 0 0;
    font-size: 14px;
}
.is-system {
    background: #071522;
    color: #fff;
}
.is-heading--light > span {
    color: rgba(255, 255, 255, 0.62);
}
.is-system-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.is-system-grid article {
    padding: 36px 30px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.is-system-grid article:last-child {
    border: 0;
}
.is-system-grid h3 {
    margin-top: 76px;
}
.is-system-grid p {
    color: rgba(255, 255, 255, 0.58);
}
.is-benefits {
    background: #fff;
}
.is-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.is-metrics article {
    padding: 36px 26px;
    background: #f1f5f7;
}
.is-metrics strong {
    display: block;
    color: #0682b6;
    font:
        700 clamp(36px, 4vw, 56px)/1 Helvetica,
        sans-serif;
}
.is-metrics span {
    display: block;
    margin-top: 13px;
    color: #687485;
    font-size: 13px;
}
.is-benefit-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-top: 58px;
}
.is-benefit-list > div {
    padding-top: 22px;
    border-top: 2px solid #07111f;
}
.is-benefit-list b {
    font-size: 18px;
}
.is-zones {
    background: #edf3f6;
}
.is-zone-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.is-zone-grid article {
    position: relative;
    min-height: 210px;
    padding: 30px;
    background: linear-gradient(145deg, #fff, #dfe9ee);
}
.is-zone-grid span {
    color: #0682b6;
    font-size: 12px;
}
.is-zone-grid h3 {
    position: absolute;
    left: 30px;
    bottom: 26px;
    margin: 0;
    font:
        700 21px Helvetica,
        sans-serif;
}
.is-products {
    background: #fff;
}
.is-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.is-product-grid article {
    padding: 26px;
    background: #f4f6f8;
    transition: 0.3s;
}
.is-product-grid article:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(6, 35, 55, 0.1);
}
.is-product-grid article > div {
    height: 330px;
    display: grid;
    place-items: center;
}
.is-product-grid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.is-product-grid article > p {
    margin: 20px 0 8px;
    color: #0682b6;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.is-product-grid h3 {
    margin: 0;
    font:
        700 27px Helvetica,
        sans-serif;
}
.is-product-grid ul {
    min-height: 92px;
    padding-left: 18px;
    color: #697586;
    font-size: 13px;
    line-height: 1.7;
}
.is-product-grid a {
    display: inline-flex;
    padding-top: 16px;
    border-top: 1px solid #cfd9e1;
    color: #07111f;
    font-weight: 700;
}
.is-product-grid a span {
    margin-left: 12px;
    color: #0682b6;
}
.is-final {
    padding: 110px 0;
    background: #0682b6;
    color: #fff;
}
.is-final p {
    color: #bfeeff;
}
.is-final > div > span {
    display: block;
    max-width: 600px;
    margin: 24px 0 34px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}
.is-final a {
    display: inline-flex;
    padding: 15px 23px;
    border-radius: 999px;
    background: #fff;
    color: #07111f;
    font-weight: 700;
}
.is-final a b {
    margin-left: 12px;
    color: #0682b6;
}
@media (max-width: 980px) {
    .is-hero {
        min-height: 680px;
    }
    .is-challenge-grid,
    .is-system-grid,
    .is-metrics,
    .is-zone-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .is-challenge-grid article:nth-child(2),
    .is-system-grid article:nth-child(2) {
        border-right: 0;
    }
    .is-split {
        grid-template-columns: 1fr;
        gap: 52px;
    }
    .is-product-grid {
        grid-template-columns: 1fr 1fr;
    }
    .is-benefit-list {
        grid-template-columns: 1fr;
    }
    .is-subnav {
        top: 68px;
    }
}
@media (max-width: 640px) {
    .is-container {
        width: min(100% - 30px, 1180px);
    }
    .is-hero {
        height: 760px;
    }
    .is-hero__shade {
        background: linear-gradient(
            0deg,
            rgba(3, 13, 28, 0.96),
            rgba(3, 13, 28, 0.2)
        );
    }
    .is-hero__content {
        padding-top: 250px;
    }
    .is-hero h1 {
        font-size: 44px;
    }
    .is-subnav .is-container {
        justify-content: flex-start;
    }
    .is-section {
        padding: 76px 0;
    }
    .is-challenge-grid,
    .is-system-grid,
    .is-metrics,
    .is-zone-grid,
    .is-product-grid {
        grid-template-columns: 1fr;
    }
    .is-challenge-grid article,
    .is-system-grid article {
        border-right: 0;
        border-bottom: 1px solid #cfd9e1;
    }
    .is-system-grid article {
        border-color: rgba(255, 255, 255, 0.18);
    }
    .is-product-grid article > div {
        height: 280px;
    }
}

/* Refined, reusable visual language for solution sections */
.industry-solution-page .is-heading {
    max-width: none;
    margin-bottom: 42px;
}
.industry-solution-page .is-heading h2,
.industry-solution-page .is-split__content h2 {
    font-size: clamp(34px, 3vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    white-space: nowrap;
}
.industry-solution-page .is-heading > span {
    margin-top: 14px;
    font-size: 15px;
}
.industry-solution-page .is-challenge-grid {
    gap: 16px;
    border: 0;
}
.industry-solution-page .is-challenge-grid article {
    position: relative;
    min-height: 245px;
    padding: 28px;
    background: #fff;
    border: 1px solid #dce5eb;
    box-shadow: 0 12px 34px rgba(7, 27, 43, 0.055);
    overflow: hidden;
    transition: 0.3s;
}
.industry-solution-page .is-challenge-grid article:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0682b6, #34c5f4);
    transform: scaleX(0.22);
    transform-origin: left;
    transition: 0.3s;
}
.industry-solution-page .is-challenge-grid article:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 52px rgba(7, 27, 43, 0.1);
}
.industry-solution-page .is-challenge-grid article:hover:before {
    transform: scaleX(1);
}
.industry-solution-page .is-challenge-grid h3 {
    margin-top: 58px;
}
.industry-solution-page .is-scenario {
    background: linear-gradient(180deg, #fff, #f6f9fb);
}
.industry-solution-page .is-split__image {
    box-shadow: 0 26px 70px rgba(7, 27, 43, 0.12);
}
.industry-solution-page .is-system {
    position: relative;
    background: linear-gradient(135deg, #06111e, #09253a);
    overflow: hidden;
}
.industry-solution-page .is-system:after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    right: -240px;
    top: -260px;
    border: 1px solid rgba(40, 186, 239, 0.22);
    box-shadow:
        0 0 0 80px rgba(40, 186, 239, 0.035),
        0 0 0 160px rgba(40, 186, 239, 0.025);
}
.industry-solution-page .is-system .is-container {
    position: relative;
    z-index: 1;
}
.industry-solution-page .is-system-grid {
    gap: 14px;
    border: 0;
}
.industry-solution-page .is-system-grid article {
    position: relative;
    min-height: 270px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.industry-solution-page .is-system-grid article:after {
    content: "→";
    position: absolute;
    right: -12px;
    top: 50%;
    z-index: 2;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #0682b6;
    color: #fff;
    font-size: 12px;
}
.industry-solution-page .is-system-grid article:last-child:after {
    display: none;
}
.industry-solution-page .is-system-grid h3 {
    margin-top: 72px;
}
.industry-solution-page .is-metrics {
    gap: 1px;
    background: #dfe7ec;
    border: 1px solid #dfe7ec;
}
.industry-solution-page .is-metrics article {
    background: #f5f8fa;
    transition: 0.3s;
}
.industry-solution-page .is-metrics article:hover {
    background: #071522;
    color: #fff;
}
.industry-solution-page .is-metrics article:hover span {
    color: rgba(255, 255, 255, 0.7);
}
.industry-solution-page .is-zone-grid {
    gap: 16px;
}
.industry-solution-page .is-zone-grid article {
    min-height: 230px;
    border: 1px solid #d6e1e8;
    background: #fff;
    box-shadow: 0 12px 34px rgba(7, 27, 43, 0.05);
}
.industry-solution-page .is-zone-grid article:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 5px;
    background: #0682b6;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.3s;
}
.industry-solution-page .is-zone-grid article:hover:after {
    transform: scaleX(1);
}
.industry-solution-page .is-products {
    background: #f3f7f9;
}
.industry-solution-page .is-product-grid article {
    background: #fff;
    border: 1px solid #e0e8ed;
}
.industry-solution-page .is-product-grid article > div {
    background: linear-gradient(145deg, #f9fbfc, #edf3f6);
}
@media (max-width: 980px) {
    .industry-solution-page .is-heading h2,
    .industry-solution-page .is-split__content h2 {
        white-space: normal;
    }
    .industry-solution-page .is-system-grid article:after {
        display: none;
    }
}

/* Home — modern industry cleaning carousel */
.solutions-showcase {
    overflow: hidden;
    padding: 72px 0 84px;
    background: #fff;
}
.solutions-showcase .solutions-shell {
    width: 100%;
}
.solutions-showcase__heading {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto 42px;
}
.solutions-showcase__heading h2 {
    font-size: clamp(34px, 3.4vw, 52px);
    line-height: 1.08;
}
.solutions-showcase .solution-tabs {
    width: min(1010px, calc(100% - 130px));
    min-height: 52px;
    margin: 0 auto 38px;
    justify-content: space-between;
    gap: 0;
    border-bottom: 1px solid #dfe5ea;
}
.solutions-showcase .solution-tab {
    min-width: 0;
    padding: 15px 20px 14px;
    border: 0;
    border-radius: 0;
    color: #919cac;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}
.solutions-showcase .solution-tab:hover {
    color: #07111f;
    background: transparent;
}
.solutions-showcase .solution-tab::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    display: block;
    height: 2px;
    background: #0682b6;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}
.solutions-showcase .solution-tab.active {
    color: #07111f;
    border: 0;
    background: transparent;
}
.solutions-showcase .solution-tab.active::after {
    transform: scaleX(1);
}
.solutions-showcase .solution-frame {
    width: 100vw;
    height: clamp(360px, 32vw, 510px);
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    background: #eef2f5;
    box-shadow: none;
}
.solutions-showcase .solution-card {
    top: 0;
    width: 64vw;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition:
        left 0.68s cubic-bezier(0.2, 0.75, 0.2, 1),
        opacity 0.5s ease,
        transform 0.68s cubic-bezier(0.2, 0.75, 0.2, 1),
        visibility 0.5s;
}
.solutions-showcase .solution-card.active {
    left: 50%;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
}
.solutions-showcase .solution-card.prev {
    left: calc(18% - 14px);
    opacity: 1;
    visibility: visible;
    transform: translateX(-100%);
}
.solutions-showcase .solution-card.next {
    left: calc(82% + 14px);
    opacity: 1;
    visibility: visible;
    transform: none;
}
.solutions-showcase .solution-card.prev .solution-card__content,
.solutions-showcase .solution-card.next .solution-card__content {
    opacity: 1;
}
.solutions-showcase .solution-card img {
    transform: scale(1.025);
}
.solutions-showcase .solution-card.active img {
    transform: scale(1);
}
.solutions-showcase .solution-card__shade {
    background: linear-gradient(
        0deg,
        rgba(2, 8, 16, 0.84) 0%,
        rgba(2, 8, 16, 0.18) 42%,
        transparent 72%
    );
}
.solutions-showcase .solution-card__content {
    top: auto;
    right: 34px;
    bottom: 28px;
    left: 34px;
    max-width: none;
    transform: none;
    text-align: center;
}
.solutions-showcase .solution-card__content h3 {
    margin: 0 0 7px;
    font-size: clamp(25px, 2.1vw, 34px);
    line-height: 1.1;
    letter-spacing: -0.035em;
}
.solutions-showcase .solution-card__content > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}
.solutions-showcase .solution-arrow {
    width: 44px;
    height: 44px;
    border: 0;
    color: #fff;
    background: rgba(4, 12, 22, 0.48);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}
.solutions-showcase .solution-arrow--prev {
    left: 34px;
}
.solutions-showcase .solution-arrow--next {
    right: 34px;
}

@media (max-width: 900px) {
    .solutions-showcase {
        padding: 58px 0 70px;
    }
    .solutions-showcase .solution-tabs {
        width: calc(100% - 36px);
        justify-content: flex-start;
        overflow-x: auto;
    }
    .solutions-showcase .solution-tab {
        flex: 0 0 auto;
        padding-inline: 18px;
    }
    .solutions-showcase .solution-frame {
        height: clamp(330px, 56vw, 440px);
    }
    .solutions-showcase .solution-card {
        width: 78vw;
    }
    .solutions-showcase .solution-card.prev {
        left: calc(11% - 10px);
    }
    .solutions-showcase .solution-card.next {
        left: calc(89% + 10px);
    }
}
@media (max-width: 560px) {
    .solutions-showcase__heading {
        width: calc(100% - 36px);
        margin-bottom: 28px;
        text-align: left;
    }
    .solutions-showcase__heading h2 {
        font-size: 32px;
    }
    .solutions-showcase .solution-tabs {
        margin-bottom: 22px;
    }
    .solutions-showcase .solution-frame {
        height: 330px;
    }
    .solutions-showcase .solution-card {
        width: 88vw;
    }
    .solutions-showcase .solution-card.prev {
        left: calc(6% - 7px);
    }
    .solutions-showcase .solution-card.next {
        left: calc(94% + 7px);
    }
    .solutions-showcase .solution-card__content {
        right: 20px;
        bottom: 22px;
        left: 20px;
    }
    .solutions-showcase .solution-card__content h3 {
        font-size: 25px;
    }
    .solutions-showcase .solution-card__content > p {
        font-size: 12px;
    }
    .solutions-showcase .solution-arrow {
        display: none;
    }
}

/* Home — fixed customer and technology partner grids */
.trusted-section {
    overflow: hidden;
    padding: 54px 24px 58px;
    background: #fff;
}
.trusted-inner {
    width: min(940px, 100%);
    margin: 0 auto;
}
.trusted-section__heading {
    margin: 0 0 28px;
    text-align: center;
}
.trusted-section__heading .kicker {
    margin-bottom: 10px;
}
.trusted-section__heading h2 {
    font-size: clamp(34px, 3.2vw, 48px);
    line-height: 1.08;
}
.trusted-grid {
    display: grid;
    gap: 10px;
}
.trusted-grid--customers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.trusted-grid--partners {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.trusted-section .trusted-logo {
    width: auto;
    height: 72px;
    border: 1px solid #e3e9ed;
    background: #fff;
    box-shadow: none;
    transform: none;
}
.trusted-section .trusted-logo img {
    width: 78%;
    height: 66%;
    object-fit: contain;
    filter: grayscale(0.78);
    opacity: 0.72;
    transition:
        filter 0.28s ease,
        opacity 0.28s ease,
        transform 0.28s ease;
}
.trusted-section .trusted-logo:hover {
    border-color: rgba(6, 130, 182, 0.35);
    box-shadow: 0 12px 30px rgba(6, 130, 182, 0.09);
    transform: translateY(-2px);
}
.trusted-section .trusted-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.04);
}
.trusted-partners {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid #dfe6eb;
}
.trusted-partners h3 {
    margin: 0 0 16px;
    color: #07111f;
    font:
        700 20px/1.2 "Helvetica",
        sans-serif;
    text-align: center;
    letter-spacing: -0.025em;
}
.trusted-grid--partners .trusted-logo {
    height: 78px;
}

@media (max-width: 680px) {
    .trusted-section {
        padding: 46px 16px 50px;
    }
    .trusted-grid {
        gap: 8px;
    }
    .trusted-section .trusted-logo {
        height: 66px;
    }
    .trusted-section .trusted-logo img {
        width: 88%;
        height: 70%;
    }
}
@media (max-width: 480px) {
    .trusted-grid--customers {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .trusted-grid--partners {
        grid-template-columns: 1fr;
    }
    .trusted-grid--partners .trusted-logo {
        height: 70px;
    }
}

/* Trusted logos — use the supplied image frames directly */
.trusted-inner {
    width: min(1160px, 100%);
}
.trusted-section__heading {
    margin-bottom: 48px;
}
.trusted-grid {
    column-gap: 72px;
    row-gap: 42px;
}
.trusted-section .trusted-logo,
.trusted-grid--partners .trusted-logo {
    width: 100%;
    height: auto;
    min-height: 0;
    display: block;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}
.trusted-section .trusted-logo img {
    display: block;
    width: 82%;
    height: auto;
    max-height: none;
    margin: 0 auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
}
.trusted-section .trusted-logo:hover {
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
}
.trusted-section .trusted-logo:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.02);
}
.trusted-partners {
    margin-top: 76px;
    padding-top: 48px;
}
.trusted-partners h3 {
    margin-bottom: 30px;
    font-size: clamp(28px, 2.8vw, 40px);
    letter-spacing: -0.04em;
}
.trusted-grid--partners {
    column-gap: 88px;
}

@media (max-width: 680px) {
    .trusted-section__heading {
        margin-bottom: 34px;
    }
    .trusted-grid {
        column-gap: 22px;
        row-gap: 26px;
    }
    .trusted-partners {
        margin-top: 44px;
        padding-top: 34px;
    }
    .trusted-grid--partners {
        column-gap: 28px;
    }
}
@media (max-width: 480px) {
    .trusted-grid--partners {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Global section-title scale — consistent across the Elite site */
:root {
    --elite-section-title: clamp(32px, 3.1vw, 48px);
}
:is(
    .solutions-showcase__heading h2,
    .trusted-section__heading h2,
    .news-heading h2,
    .featured-products__heading h2,
    .intro h2,
    .section-heading h2,
    .resource-list > header h2,
    .industry-cta h2,
    .about-story__copy h2,
    .about-values__heading h2,
    .about-section-heading h2,
    .journey-heading h2,
    .catalog-results__bar h2,
    .l50-accessory__copy h2,
    .industry-solution-page .is-heading h2,
    .industry-solution-page .is-split__content h2
) {
    font-family: "Helvetica", sans-serif;
    font-size: var(--elite-section-title);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.045em;
}

/* Trusted section — lift the title and keep a clearer gap before logos */
.trusted-section {
    padding-top: 36px;
}
.trusted-section__heading {
    margin-bottom: 62px;
}

@media (max-width: 680px) {
    :root {
        --elite-section-title: 31px;
    }
    .trusted-section {
        padding-top: 30px;
    }
    .trusted-section__heading {
        margin-bottom: 42px;
    }
}

/* Home product banners — keep robots and copy inside the visual safe area */
@media (min-width: 981px) {
    .slide--product .hero-content--product {
        width: min(1280px, calc(100% - 112px));
    }
    .slide--text-right .slide-media {
        object-position: left center;
    }
    .slide--text-left .slide-media {
        object-position: right center;
    }
    .hero-content--product h2,
    .hero-content--product .hero-copy,
    .slide--text-right .hero-actions {
        width: min(560px, 42vw);
        max-width: 560px;
    }
    .hero-content--product h2 {
        font-size: clamp(46px, 4.6vw, 76px);
    }
    .hero-content--product .hero-copy {
        font-size: clamp(16px, 1.15vw, 19px);
        line-height: 1.6;
    }
}

/* CenoBots detail template — reusable editorial product system */
.l50-intro__copy h2 {
    max-width: 720px;
    font-size: clamp(36px, 3.5vw, 54px);
    line-height: 1.08;
}
.l50-tech > .l50-heading h2 {
    max-width: none;
    font-size: clamp(34px, 3.4vw, 52px);
    white-space: nowrap;
}
.l50-app__copy h2 {
    max-width: 700px;
    font-size: clamp(36px, 3.6vw, 54px);
    line-height: 1.08;
}

.l50-vision {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    color: #fff;
    background: #050a12;
}
.l50-vision > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.l50-vision::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(
        90deg,
        rgba(2, 8, 16, 0.92) 0%,
        rgba(2, 8, 16, 0.54) 36%,
        transparent 66%
    );
}
.l50-vision__copy {
    position: relative;
    z-index: 1;
    width: min(1320px, calc(100% - 64px));
    margin: auto;
    padding-top: 180px;
}
.l50-vision__copy .kicker {
    color: #55cfff;
}
.l50-vision__copy h2 {
    max-width: 650px;
    margin: 14px 0 24px;
    font:
        700 clamp(40px, 4.2vw, 66px)/1.04 "Helvetica",
        sans-serif;
    letter-spacing: -0.055em;
}
.l50-vision__copy > p:last-child {
    max-width: 540px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.8;
}

.l50-easy {
    background: #f4f7f9;
}

/* CenoBots L50 product image gallery */
.l50-gallery {
    padding: 96px max(32px, calc((100% - 1320px) / 2));
    overflow: hidden;
    background: #fff;
}
.l50-gallery__heading {
    text-align: center;
    margin: 0 auto 42px;
}
.l50-gallery__heading .kicker {
    margin: 0 0 11px;
    color: var(--blue);
}
.l50-gallery__heading h2 {
    margin: 0;
    color: #07111f;
    font:
        700 clamp(32px, 3.2vw, 50px)/1.08 "Helvetica",
        sans-serif;
    letter-spacing: -0.045em;
}
.l50-gallery__viewport {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
    cursor: grab;
}
.l50-gallery__viewport:active {
    cursor: grabbing;
}
.l50-gallery__track {
    display: flex;
    transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}
.l50-gallery__item {
    flex: 0 0 calc(50% - 9px);
    height: 430px;
    margin: 0 18px 0 0;
    overflow: hidden;
    background: #edf2f5;
}
.l50-gallery__item:nth-child(2n) {
    margin-right: 0;
}
.l50-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.l50-gallery__item:hover img {
    transform: scale(1.025);
}
.l50-gallery__item--product img {
    object-fit: contain;
    padding: 24px;
    background: linear-gradient(145deg, #f7f9fa, #e7edf1);
}
.l50-gallery__item--actual img {
    object-fit: contain;
    padding: 18px;
    background: linear-gradient(145deg, #f7f9fa, #e8eef2);
}
.l50-gallery__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: rgba(4, 18, 31, 0.62);
    backdrop-filter: blur(8px);
    font: 300 38px/1 Arial;
    transform: translateY(-50%);
    cursor: pointer;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}
.l50-gallery__arrow:hover {
    background: var(--blue);
    transform: translateY(-50%) scale(1.05);
}
.l50-gallery__arrow--prev {
    left: 18px;
}
.l50-gallery__arrow--next {
    right: 18px;
}
.l50-gallery__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 27px;
}
.l50-gallery__dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: #c8d1d7;
    cursor: pointer;
    transition:
        width 0.3s ease,
        background 0.3s ease;
}
.l50-gallery__dots button.is-active {
    width: 28px;
    background: var(--blue);
}
@media (max-width: 760px) {
    .l50-gallery {
        padding: 70px 16px;
    }
    .l50-gallery__heading {
        margin-bottom: 28px;
    }
    .l50-gallery__item {
        flex-basis: 100%;
        height: 330px;
        margin-right: 0;
    }
    .l50-gallery__arrow {
        width: 42px;
        height: 42px;
    }
    .l50-gallery__arrow--prev {
        left: 10px;
    }
    .l50-gallery__arrow--next {
        right: 10px;
    }
}

/* Alternating deployment cards with staged reveal */
.l50-easy__grid article {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease var(--easy-delay),
        transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) var(--easy-delay),
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}
.l50-easy__grid article.is-visible {
    opacity: 1;
    transform: none;
}
.l50-easy__grid article:nth-child(odd) {
    color: #fff;
    border-color: #075f84;
    background: linear-gradient(145deg, #0787bc, #045f88);
}
.l50-easy__grid article:nth-child(odd) p {
    color: rgba(255, 255, 255, 0.78);
}
.l50-easy__grid article:nth-child(odd) .l50-tool-icon {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.12);
}
.l50-easy__grid article:nth-child(odd) .l50-tool-icon svg {
    stroke: #fff;
}
.l50-easy__grid article:nth-child(odd):hover {
    border-color: #55cfff;
    background: linear-gradient(145deg, #0897cf, #056b96);
    box-shadow: 0 22px 52px rgba(6, 130, 182, 0.24);
}
.l50-heading--easy {
    align-items: flex-end;
}
.l50-heading--easy h2 {
    max-width: 820px;
    font-size: clamp(34px, 3.5vw, 52px);
    white-space: nowrap;
}
.l50-easy__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(270px, auto);
    gap: 18px;
}
.l50-easy__grid article,
.l50-easy__grid .l50-easy__primary {
    grid-column: auto;
    grid-row: auto;
    min-height: 270px;
    padding: 32px;
    border: 0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 34px rgba(20, 42, 58, 0.055);
}
.l50-easy__grid .l50-easy__primary {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 558px;
    color: #07111f;
    background: linear-gradient(145deg, #e7f5fb 0%, #fff 56%);
}
.l50-easy__top b,
.l50-easy__primary .l50-easy__top b {
    color: #0682b6;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.l50-easy__top > span,
.l50-easy__primary .l50-easy__top > span {
    width: 48px;
    height: 48px;
    color: #0682b6;
    border-color: rgba(6, 130, 182, 0.28);
    background: rgba(6, 130, 182, 0.06);
    font-size: 20px;
}
.l50-easy__grid h3,
.l50-easy__primary h3 {
    position: relative;
    z-index: 2;
    margin: 42px 0 14px;
    font:
        700 clamp(23px, 2vw, 31px)/1.16 "Helvetica",
        sans-serif;
    letter-spacing: -0.045em;
}
.l50-easy__primary h3 {
    max-width: 360px;
    font-size: clamp(32px, 3vw, 46px);
}
.l50-easy__grid p,
.l50-easy__primary > p {
    position: relative;
    z-index: 2;
    max-width: 380px;
    color: #667582;
    font-size: 13px;
    line-height: 1.7;
}
.l50-easy__primary > img {
    position: absolute;
    right: 22px;
    bottom: 18px;
    width: 54%;
    max-height: 300px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 22px 30px rgba(9, 31, 45, 0.16));
}
.l50-easy__grid article > a {
    font-size: 11px;
}

@media (max-width: 1000px) {
    .l50-tech > .l50-heading h2,
    .l50-heading--easy h2 {
        white-space: normal;
    }
    .l50-easy__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 760px) {
    .l50-intro__copy h2 br,
    .l50-app__copy h2 br {
        display: none;
    }
    .l50-vision {
        min-height: 590px;
    }
    .l50-vision__copy {
        width: calc(100% - 40px);
        padding-top: 110px;
    }
    .l50-vision::after {
        background: linear-gradient(
            0deg,
            rgba(2, 8, 16, 0.92),
            rgba(2, 8, 16, 0.16) 80%
        );
    }
    .l50-easy__grid {
        grid-template-columns: 1fr;
    }
    .l50-easy__grid .l50-easy__primary {
        grid-column: 1;
        grid-row: auto;
        min-height: 520px;
    }
    .l50-easy__primary > img {
        width: 72%;
    }
}

/* L50 deployment tools — concise, factual and interactive */
.l50-easy__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 16px;
}
.l50-easy__grid article,
.l50-easy__grid .l50-easy__primary {
    position: relative;
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
    padding: 32px 28px;
    border: 1px solid #dce5ea;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(17, 43, 59, 0.045);
    isolation: isolate;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}
.l50-easy__grid article .icon_hover {
    right: 22px;
    bottom: 18px;
    left: auto;
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    color: rgba(6, 130, 182, 0.17);
    border: 1px solid rgba(6, 130, 182, 0.15);
    border-radius: 24px;
    background: linear-gradient(
        145deg,
        rgba(6, 130, 182, 0.09),
        rgba(85, 207, 255, 0.02)
    );
    font:
        500 38px/1 "Helvetica",
        sans-serif;
    opacity: 0;
    transform: translateY(12px) scale(0.86);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}
/* .l50-easy__grid article[data-visual="touch"]::after {
    content: "◫";
}
.l50-easy__grid article[data-visual="map"]::after {
    content: "⌖";
}
.l50-easy__grid article[data-visual="ota"]::after {
    content: "↥";
}
.l50-easy__grid article[data-visual="mobile"]::after {
    content: "▯";
}
.l50-easy__grid article[data-visual="diagnostic"]::after {
    content: "⌁";
} */
.l50-easy__grid article:hover {
    z-index: 2;
    border-color: #0682b6;
    background: linear-gradient(155deg, #fff 55%, #f0faff);
    box-shadow: 0 20px 50px rgba(6, 130, 182, 0.13);
    transform: translateY(-7px);
}
.l50-easy__grid article:hover .icon_hover {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: l50-tool-float 2.2s ease-in-out infinite;
}
.l50-tool-icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    color: #0682b6;
    border: 1px solid rgba(6, 130, 182, 0.22);
    border-radius: 15px;
    background: rgba(6, 130, 182, 0.055);
    transition:
        color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}
.l50-tool-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.l50-easy__grid article:hover .l50-tool-icon {
    color: #fff;
    background: #0682b6;
    box-shadow:
        0 0 0 7px rgba(6, 130, 182, 0.1),
        0 10px 24px rgba(6, 130, 182, 0.22);
    transform: translateY(-2px);
}
.l50-easy__grid h3,
.l50-easy__primary h3 {
    max-width: none;
    margin: 34px 0 13px;
    font:
        700 clamp(21px, 1.65vw, 27px)/1.18 "Helvetica",
        sans-serif;
}
.l50-easy__grid p,
.l50-easy__primary > p {
    max-width: none;
    margin: 0;
    color: #697783;
    font-size: 13px;
    line-height: 1.65;
}
@keyframes l50-tool-float {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-6px) scale(1.03);
    }
}
@media (max-width: 1180px) {
    .l50-easy__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 760px) {
    .l50-easy__grid {
        grid-template-columns: 1fr;
    }
    .l50-easy__grid article {
        min-height: 280px;
    }
}

/* CenoBots L50 — final structured product presentation */
.l50-intro__copy h2 {
    max-width: none;
    font-size: clamp(25px, 1.75vw, 34px);
    line-height: 1.18;
    white-space: nowrap;
    letter-spacing: -0.04em;
}
.l50-intro__copy > p:last-of-type {
    font-size: 14px;
    line-height: 1.85;
}
.l50-intro__facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.reveal-from-left,
.reveal-from-right {
    opacity: 0;
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-from-left {
    transform: translateX(-46px);
}
.reveal-from-right {
    transform: translateX(46px);
}
.l50-intro.is-visible .reveal-from-left,
.l50-intro.is-visible .reveal-from-right {
    opacity: 1;
    transform: none;
}

.l50-vision__copy {
    display: none;
}
.l50-vision__points {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: max(46px, calc((100vw - 1320px) / 2));
    width: min(430px, 38vw);
    min-height: 250px;
    padding: 34px 36px 28px;
    border: 1px solid rgba(85, 207, 255, 0.28);
    border-radius: 18px;
    background: rgba(3, 12, 23, 0.72);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
    transform: translateY(-50%);
}

.l50-vision__points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
}

.l50-vision__points .item_vision {
    display: grid;
    align-content: space-around;
    align-items: center;
    height: 100%;
    padding-right: 50%;
}

.l50-vision__points .item_vision.right {
    padding-left: 50%;
    padding-right: 0;
}

.l50-vision__points article {
    /* position: absolute; */
    top: 34px;
    right: 36px;
    left: 36px;
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
    pointer-events: none;
}
.l50-vision__points article.is-active {
    opacity: 1;
    transform: none;
}
.l50-vision__points strong {
    display: block;
    color: #55cfff;
    font:
        700 clamp(30px, 3vw, 48px)/1 "Helvetica",
        sans-serif;
    letter-spacing: -0.045em;
}
.l50-vision__points h3 {
    margin: 18px 0 10px;
    font:
        700 clamp(22px, 2vw, 30px)/1.15 "Helvetica",
        sans-serif;
    letter-spacing: -0.04em;
}
.l50-vision__points p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.7;
}
.l50-vision__progress {
    position: absolute;
    right: 36px;
    bottom: 25px;
    left: 36px;
    display: flex;
    gap: 7px;
}
.l50-vision__progress i {
    height: 2px;
    flex: 1;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease;
}
.l50-vision__progress i.is-active {
    background: #55cfff;
}

.l50-app {
    grid-template-columns: 40% 60%;
    gap: 4vw;
    min-height: 820px;
    padding-block: 90px;
}
.l50-phone {
    position: relative;
    width: min(340px, 82%);
    height: 650px;
    overflow: hidden;
    transform: rotate(-3deg);
}
.l50-phone__screen {
    position: absolute;
    inset: 12px;
    min-height: 0;
    height: calc(100% - 24px);
    opacity: 0;
    transform: translateX(28px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}
.l50-phone__screen.is-active {
    z-index: 2;
    opacity: 1;
    transform: none;
}
.l50-phone__screen > small {
    display: block;
    margin-top: 20px;
    color: #8296a1;
}
.l50-phone__screen > b {
    margin-top: 54px;
}
.l50-app-bars {
    display: flex;
    height: 150px;
    align-items: end;
    gap: 12px;
    margin-top: 42px;
    padding: 0 10px 18px;
    border-bottom: 1px solid #2b4655;
}
.l50-app-bars i {
    flex: 1;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(#55cfff, #0879a9);
    animation: l50-bar 2.4s ease-in-out infinite alternate;
}
.l50-app-bars i:nth-child(1) {
    height: 42%;
}
.l50-app-bars i:nth-child(2) {
    height: 70%;
    animation-delay: 0.2s;
}
.l50-app-bars i:nth-child(3) {
    height: 55%;
    animation-delay: 0.4s;
}
.l50-app-bars i:nth-child(4) {
    height: 88%;
    animation-delay: 0.6s;
}
.l50-app-check {
    display: grid;
    width: 116px;
    height: 116px;
    margin: 90px auto 20px;
    place-items: center;
    border: 1px solid rgba(85, 207, 255, 0.5);
    border-radius: 50%;
    color: #55cfff;
    font-size: 58px;
    box-shadow: 0 0 45px rgba(85, 207, 255, 0.18);
}
.l50-app__copy {
    max-width: 780px;
}
.l50-app__copy h2 {
    max-width: none;
    font-size: clamp(31px, 3vw, 48px);
    white-space: nowrap;
}
.l50-app__copy > p:not(.kicker) {
    font-size: 14px;
    line-height: 1.8;
}
.l50-app__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}
.l50-app__features article {
    display: flex;
    gap: 15px;
    min-height: 118px;
    padding: 19px;
    border: 1px solid #243b4a;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
    opacity: 1;
    transform: translateY(22px);
    transition:
        opacity 0.55s ease var(--reveal-delay),
        transform 0.55s ease var(--reveal-delay),
        border-color 0.25s ease,
        background 0.25s ease;
    cursor: default;
}
.l50-app__features article.is-visible {
    opacity: 1;
    transform: none;
}
.l50-app__features article:hover {
    border-color: #55cfff;
    background: rgba(85, 207, 255, 0.07);
}
.l50-app__features article > span {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border: 1px solid #2c6179;
    border-radius: 10px;
    color: #55cfff;
}
.l50-app__features h3 {
    margin: 1px 0 7px;
    font:
        700 15px/1.3 "Helvetica",
        sans-serif;
}
.l50-app__features p {
    margin: 0;
    color: #91a2ad;
    font-size: 11px;
    line-height: 1.55;
}
@keyframes l50-bar {
    to {
        filter: brightness(1.35);
        transform: scaleY(0.88);
    }
}

.l50-heading--easy h2 {
    white-space: nowrap;
}
.l50-use__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.l50-use__grid a {
    height: 360px;
}

.l50-video {
    padding: 110px max(32px, calc((100% - 1320px) / 2));
    color: #fff;
    background: #07111f;
}
.l50-video header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 42px;
}
.l50-video header h2 {
    max-width: 780px;
    margin: 0;
    font:
        700 clamp(34px, 3.4vw, 52px)/1.08 "Helvetica",
        sans-serif;
    letter-spacing: -0.05em;
}
.l50-video header .kicker {
    color: #55cfff;
}
.l50-video__frame {
    overflow: hidden;
    border: 1px solid #20394a;
    border-radius: 18px;
    background: #02070c;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}
.l50-video video {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.l50-related {
    padding: 110px max(32px, calc((100% - 1320px) / 2));
    background: #f4f7f9;
}
.l50-related__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.l50-related__grid > a {
    padding: 24px;
    border: 1px solid #dfe7ec;
    border-radius: 16px;
    background: #fff;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}
.l50-related__grid > a:hover {
    border-color: #0682b6;
    box-shadow: 0 18px 46px rgba(6, 130, 182, 0.11);
    transform: translateY(-6px);
}
.l50-related__grid span {
    display: grid;
    height: 260px;
    place-items: center;
    border-radius: 10px;
    background: #f6f8f9;
    overflow: hidden;
}
.l50-related__grid img {
    width: 86%;
    height: 86%;
    object-fit: contain;
    transition: transform 0.35s ease;
}
.l50-related__grid > a:hover img {
    transform: scale(1.05);
}
.l50-related__grid h3 {
    margin: 22px 0 8px;
    font:
        700 21px "Helvetica",
        sans-serif;
}
.l50-related__grid p {
    margin: 0;
    color: #75818b;
    font-size: 12px;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .l50-intro__copy h2,
    .l50-app__copy h2,
    .l50-heading--easy h2 {
        white-space: normal;
    }
    .l50-app {
        grid-template-columns: 1fr;
    }
    .l50-use__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .l50-related__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 760px) {
    .l50-intro__copy h2 {
        font-size: 30px;
        white-space: normal;
    }
    .l50-intro__facts {
        grid-template-columns: 1fr 1fr;
    }
    .l50-vision__points {
        top: auto;
        right: 20px;
        bottom: 26px;
        left: 20px;
        width: auto;
        transform: none;
    }
    .l50-app__features {
        grid-template-columns: 1fr;
    }
    .l50-use__grid,
    .l50-related__grid {
        grid-template-columns: 1fr;
    }
    .l50-video,
    .l50-related {
        padding: 78px 18px;
    }
    .l50-video header {
        display: block;
    }
    .l50-video header .kicker {
        margin-bottom: 14px;
    }
}

/* CenoBots L50 — refined technology, app and product presentation */
.l50-vision__points {
    inset: 0;
    width: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
    pointer-events: none;
}
.l50-vision__points article {
    /* position: absolute; */
    width: min(285px, 23vw);
    padding: 18px 20px;
    border: 1px solid rgba(85, 207, 255, 0.3);
    border-radius: 12px;
    background: rgba(3, 12, 23, 0.68);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
    opacity: 1;
    transform: none;
    backdrop-filter: blur(12px);
}
/* .l50-vision__points article:nth-child(1) {
    top: 8%;
    left: 5%;
    right: auto;
}
.l50-vision__points article:nth-child(2) {
    top: 8%;
    right: 5%;
    left: auto;
}
.l50-vision__points article:nth-child(3) {
    top: auto;
    bottom: 8%;
    left: 5%;
    right: auto;
}
.l50-vision__points article:nth-child(4) {
    top: auto;
    right: 5%;
    bottom: 8%;
    left: auto;
} */
.l50-vision__points strong {
    font-size: clamp(20px, 2vw, 30px);
}
.l50-vision__points h3 {
    margin: 9px 0 6px;
    font-size: clamp(15px, 1.35vw, 20px);
}
.l50-vision__points p {
    font-size: 11px;
    line-height: 1.55;
}

.l50-app {
    grid-template-columns: 32% 68%;
    gap: 5vw;
    min-height: 720px;
}
.l50-phone {
    width: min(270px, 76%);
    height: 570px;
    border-radius: 37px;
}
.l50-phone__screen {
    padding: 5px 0;
    border-radius: 27px;
}
.l50-phone__screen > b {
    margin-top: 38px;
    font-size: 54px;
}
.l50-map {
    height: 150px;
}
.l50-app-bars {
    height: 112px;
    margin-top: 28px;
}
.l50-app-check {
    width: 86px;
    height: 86px;
    margin: 65px auto 18px;
    font-size: 42px;
}
.l50-app__copy h2 {
    margin-top: 0;
}
.l50-heading--easy {
    display: block;
}
.l50-heading--easy h2 {
    margin-bottom: 0;
}
.l50-use .l50-heading h2 {
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: -0.035em;
}

.l50-video {
    padding-block: 72px;
}
.l50-video__frame {
    border-radius: 10px;
}

.l50-related .l50-heading h2 {
    margin-bottom: 4px;
    font-size: clamp(26px, 2.5vw, 38px);
    letter-spacing: -0.035em;
}
.l50-related__grid {
    gap: 2px;
}
.l50-related__grid .catalog-card {
    border-radius: 0;
}
.l50-related__grid .catalog-card__image {
    height: 300px;
    padding: 20px;
}
.l50-related__grid .catalog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.l50-related__grid .catalog-card__body {
    min-height: 230px;
    padding: 23px 24px 27px;
}
.l50-related__grid .catalog-card__body > span {
    display: block;
    min-height: 62px;
    width: auto;
    height: auto;
    place-items: initial;
    overflow: visible;
    border-radius: 0;
    background: none;
    color: #74808d;
    font-size: 12px;
    line-height: 1.7;
}
.l50-related__grid .catalog-card__body h3 {
    margin: 0 0 13px;
    font-size: 20px;
}
.l50-related__grid .catalog-card__body p {
    color: var(--blue);
    font-size: 9px;
    line-height: normal;
}

@media (max-width: 1100px) {
    .l50-app {
        grid-template-columns: 1fr;
    }
    .l50-phone {
        width: 250px;
        height: 490px;
    }
    .l50-vision__points article {
        width: min(245px, 28vw);
    }
}
@media (max-width: 760px) {
    .l50-vision__points .item_vision {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding-right: 0;
    }
    .l50-vision__points .item_vision.right {
        padding-left: 0;
        padding-right: 0;
    }
    .l50-vision {
        min-height: 760px;
    }
    .l50-vision__points {
        inset: 0;
        display: grid;
        grid-template-columns: 1fr;
        align-content: space-between;
        gap: 8px;
        padding: 78px 14px 24px;
    }
    .l50-vision__points article,
    .l50-vision__points article:nth-child(n) {
        position: relative;
        inset: auto;
        width: auto;
        padding: 13px 14px;
    }
    .l50-vision__points p {
        display: none;
    }
    .l50-vision__points h3 {
        font-size: 14px;
    }
    .l50-phone {
        width: 230px;
        height: 555px;
        margin-bottom: 54px;
    }
    .l50-related__grid .catalog-card__image {
        height: 290px;
    }
}

/* Contact & lead form */
.contact-page {
    background: #fff;
    color: #07111f;
}
.contact-container {
    width: min(1320px, calc(100% - 64px));
    margin-inline: auto;
}
.contact-hero {
    padding: 190px 0 88px;
    background: linear-gradient(135deg, #f4f8fa 0%, #fff 58%, #e9f3f7 100%);
    border-bottom: 1px solid #dce7ed;
}
.contact-hero__inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: 80px;
}
.contact-hero__inner > div > p,
.contact-eyebrow {
    margin: 0 0 19px;
    color: #0682b6;
    font:
        700 11px/1.2 "Helvetica",
        sans-serif;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.contact-hero h1 {
    margin: 0;
    font:
        700 clamp(48px, 5.5vw, 78px)/1.03 "Helvetica",
        sans-serif;
    letter-spacing: -0.055em;
}
.contact-hero__inner > p {
    max-width: 520px;
    margin: 0 0 7px;
    color: #657484;
    font-size: 16px;
    line-height: 1.8;
}
.contact-details {
    background: #071522;
    color: #fff;
}
.contact-details__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.contact-details__grid > * {
    display: grid;
    min-height: 190px;
    padding: 34px 38px;
    align-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
}
.contact-details__grid > *:last-child {
    border: 0;
}
.contact-details__grid span {
    color: #36c4f6;
    font-size: 10px;
    letter-spacing: 0.13em;
}
.contact-details__grid small {
    margin: 25px 0 8px;
    color: #8fa2af;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.contact-details__grid strong {
    font:
        600 clamp(16px, 1.5vw, 21px)/1.45 "Helvetica",
        sans-serif;
}
.lead-section {
    padding: 110px 0;
    background: #f2f6f8;
}
.lead-layout {
    display: grid;
    grid-template-columns: 46% 54%;
    min-height: 760px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(7, 31, 49, 0.09);
}
.lead-visual {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: radial-gradient(
        circle at 50% 42%,
        #163f58 0,
        #081b29 47%,
        #06121d 78%
    );
}
.lead-visual::before {
    content: "";
    position: absolute;
    inset: 8% 7%;
    border: 1px solid rgba(63, 198, 247, 0.17);
    border-radius: 50%;
    box-shadow:
        0 0 0 70px rgba(62, 194, 244, 0.03),
        0 0 0 140px rgba(62, 194, 244, 0.02);
}
.lead-visual__halo {
    position: absolute;
    bottom: 18%;
    width: 66%;
    height: 14%;
    border-radius: 50%;
    background: rgba(30, 176, 230, 0.27);
    filter: blur(40px);
}
.lead-visual > img {
    position: relative;
    z-index: 1;
    width: 75%;
    height: 72%;
    object-fit: contain;
    filter: drop-shadow(0 32px 34px rgba(0, 0, 0, 0.46));
    transition: transform 0.6s ease;
}
.lead-visual:hover > img {
    transform: translateY(-7px) scale(1.015);
}
.lead-visual__caption {
    position: absolute;
    z-index: 2;
    right: 42px;
    bottom: 38px;
    left: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}
.lead-visual__caption span {
    display: block;
    margin-bottom: 8px;
    color: #55cfff;
    font-size: 10px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}
.lead-visual__caption strong {
    font:
        600 22px/1.35 "Helvetica",
        sans-serif;
}
.lead-form-wrap {
    padding: 72px clamp(38px, 5vw, 78px);
}
.lead-form-wrap h2 {
    margin: 0;
    font:
        700 clamp(37px, 3.5vw, 54px)/1.08 "Helvetica",
        sans-serif;
    letter-spacing: -0.05em;
}
.lead-intro {
    max-width: 660px;
    margin: 22px 0 38px;
    color: #687787;
    font-size: 14px;
    line-height: 1.8;
}
.lead-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
}
.lead-form label {
    display: grid;
    gap: 10px;
}
.lead-form label:nth-child(5) {
    grid-column: 1/-1;
}
.lead-form label > span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid #bdc9d0;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: #07111f;
    font:
        400 14px "Helvetica",
        sans-serif;
    transition: border-color 0.25s ease;
}
.lead-form textarea {
    resize: vertical;
    min-height: 105px;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: #0682b6;
}
.lead-form button {
    grid-column: 1/-1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 7px;
    padding: 18px 22px;
    border: 1px solid #0682b6;
    border-radius: 0;
    background: #0682b6;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}
.lead-form button:hover {
    background: #071522;
    border-color: #071522;
}
.lead-form button:disabled {
    opacity: 0.75;
    cursor: default;
}
.lead-form__status {
    grid-column: 1/-1;
    min-height: 22px;
    margin: 0;
    color: #0682b6;
    font-size: 12px;
}
.contact-process {
    padding: 110px 0;
    background: #fff;
}
.contact-process header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 52px;
}
.contact-process h2 {
    max-width: 800px;
    margin: 0;
    font:
        700 clamp(36px, 4vw, 56px)/1.08 "Helvetica",
        sans-serif;
    letter-spacing: -0.05em;
}
.contact-process .contact-container > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #ced9df;
    border-bottom: 1px solid #ced9df;
}
.contact-process article {
    min-height: 260px;
    padding: 32px;
    border-right: 1px solid #ced9df;
}
.contact-process article:last-child {
    border: 0;
}
.contact-process article span {
    color: #0682b6;
    font-size: 11px;
}
.contact-process h3 {
    margin: 70px 0 12px;
    font:
        700 21px "Helvetica",
        sans-serif;
}
.contact-process article p {
    margin: 0;
    color: #6f7d89;
    font-size: 13px;
    line-height: 1.7;
}

.language-switch {
    position: relative;
    flex: 0 0 auto;
}
.language-switch > button {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 2px;
    border: 0;
    background: transparent;
    color: inherit;
    font:
        700 11px "Helvetica",
        sans-serif;
    cursor: pointer;
}
.language-switch > button span {
    font-size: 16px;
    font-weight: 400;
}
.language-switch > button b {
    font-size: 10px;
    transition: transform 0.2s ease;
}
.language-switch > button[aria-expanded="true"] b {
    transform: rotate(180deg);
}
.language-switch > div {
    position: absolute;
    z-index: 80;
    top: 100%;
    right: 0;
    display: none;
    width: 145px;
    padding: 7px;
    background: #fff;
    border: 1px solid #dce5ea;
    box-shadow: 0 16px 40px rgba(7, 24, 38, 0.14);
}

.language_bar_list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.language-switch > div.open,
.language-switch:hover > div,
.language-switch:focus-within > div {
    display: grid;
}
.language-switch > div a {
    padding: 11px 12px;
    color: #687582;
    font-size: 12px;
    display: block;
}
.language-switch > div a:hover,
.language-switch > div li.show a {
    color: #0682b6;
    background: #f1f7fa;
}
.site-header.subpage .language-switch,
.site-header.scrolled .language-switch {
    color: #07111f;
}

.contact-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 150px 0 52px;
    background: #dce8ef;
}
.contact-hero .bg_contact {
    position: absolute;
    z-index: -2;
    inset: -24px;
    filter: blur(10px);
    transform: scale(1.04);
    opacity: 0.52;
}
.contact-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(237, 246, 250, 0.92),
        rgba(230, 241, 247, 0.72)
    );
}
.contact-hero__inner {
    display: block;
}
.contact-hero h1 {
    font-size: clamp(34px, 3.25vw, 48px);
    white-space: nowrap;
}
.contact-details {
    background: #fff;
    color: #07111f;
    border-bottom: 1px solid #dce7ed;
}
.contact-details__grid > * {
    min-height: 118px;
    padding: 24px 32px;
    border-right: 1px solid #dce7ed;
    color: #07111f;
}
.contact-details__grid small {
    margin: 0 0 8px;
    color: #0682b6;
    font-size: 10px;
    font-weight: 700;
}
.contact-details__grid strong {
    font-size: clamp(16px, 1.3vw, 19px);
}
.lead-section {
    padding: 72px 0;
    background: #eef4f7;
}
.lead-layout {
    grid-template-columns: 42% 58%;
    min-height: 620px;
}
.lead-visual {
    background: #edf4f7;
}
.lead-visual::before,
.lead-visual__halo {
    display: none;
}
.lead-visual > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: none;
}
.lead-form-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px clamp(38px, 4.5vw, 68px);
}
.lead-form-wrap h2 {
    margin-bottom: 32px;
    font-size: clamp(38px, 3.2vw, 52px);
    white-space: nowrap;
}
.lead-form {
    gap: 20px 18px;
}
.lead-form label > span {
    font-size: 12px;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
    font-size: 15px;
}
@media (max-width: 900px) {
    .contact-hero__inner,
    .lead-layout {
        grid-template-columns: 1fr;
    }
    .contact-hero__inner {
        gap: 34px;
    }
    .lead-visual {
        min-height: 620px;
    }
    .contact-details__grid {
        grid-template-columns: 1fr;
    }
    .contact-details__grid > * {
        min-height: 150px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }
    .contact-hero h1,
    .lead-form-wrap h2 {
        white-space: normal;
    }
    .contact-details__grid > * {
        min-height: 105px;
    }
    .lead-visual > img {
        width: 50%;
        height: 58%;
    }
}
@media (max-width: 640px) {
    .contact-container {
        width: min(100% - 32px, 1320px);
    }
    .contact-hero {
        padding: 145px 0 68px;
    }
    .contact-hero h1 {
        font-size: 42px;
    }
    .lead-section {
        padding: 60px 0;
    }
    .lead-layout {
        width: 100%;
    }
    .lead-visual {
        min-height: 500px;
    }
    .lead-visual__caption {
        right: 24px;
        bottom: 24px;
        left: 24px;
    }
    .lead-form-wrap {
        padding: 50px 24px;
    }
    .lead-form {
        grid-template-columns: 1fr;
    }
    .lead-form label:nth-child(4),
    .lead-form button,
    .lead-form__status {
        grid-column: 1;
    }
    .contact-process {
        padding: 75px 0;
    }
    .contact-process header {
        display: block;
    }
    .contact-process .contact-container > div {
        grid-template-columns: 1fr;
    }
    .contact-process article {
        min-height: 210px;
        border-right: 0;
        border-bottom: 1px solid #ced9df;
    }
    .contact-process h3 {
        margin-top: 45px;
    }
    .language-switch {
        margin-left: 2px;
    }
    .language-switch > button {
        padding-inline: 5px;
    }
    .lead-form-wrap h2 {
        font-size: 40px;
    }
}
/* Why Elite — full-frame background journey */
.why-elite {
    height: 400vh;
    background: #061522;
    color: #fff;
}
.why-elite__sticky {
    position: sticky;
    top: 0;
    display: block;
    min-height: 100vh;
    background: #061522;
    isolation: isolate;
    overflow: hidden;
}
.why-elite__backgrounds,
.why-elite__overlay {
    position: absolute;
    inset: 0;
}
.why-elite__backgrounds {
    z-index: -3;
    overflow: hidden;
}
.why-elite__backgrounds .why-image {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.06);
    transition:
        opacity 0.75s ease,
        transform 1.25s ease;
}
.why-elite__backgrounds .why-image.active {
    opacity: 1;
    transform: scale(1);
}
.why-elite__backgrounds img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.why-elite__overlay {
    z-index: -2;
    background: linear-gradient(
        90deg,
        rgba(3, 18, 29, 0.94) 0%,
        rgba(4, 28, 43, 0.76) 42%,
        rgba(3, 18, 29, 0.2) 72%,
        rgba(3, 18, 29, 0.08) 100%
    );
}
.why-elite__shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto 1fr auto;
    width: min(1380px, calc(100% - 72px));
    height: 100vh;
    margin: auto;
    padding: 110px 0 48px;
}
.why-elite__heading {
    display: block;
    width: min(940px, 72vw);
    margin: 44px 0 0;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.9);
}
.why-elite__heading h2 {
    margin: 0;
    color: #35c9fa;
    font:
        700 clamp(62px, 6vw, 92px)/1 "Helvetica",
        sans-serif;
    letter-spacing: -0.06em;
    white-space: nowrap;
    text-shadow: 0 3px 28px rgba(0, 0, 0, 0.94);
}
.why-elite__heading > p:last-child {
    max-width: 680px;
    margin: 0;
    color: #f3f8fa;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.95);
}
.why-elite__content {
    position: relative;
    align-self: end;
    width: min(780px, 62vw);
    min-height: 285px;
    margin-bottom: 28px;
}
.why-copy {
    position: absolute;
    inset: 0;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    opacity: 0;
    transform: translateX(-38px);
    filter: blur(8px);
    transition:
        opacity 0.5s ease,
        transform 0.6s ease,
        filter 0.6s ease;
    pointer-events: none;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.95);
}
.why-copy.active {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}
.why-copy span {
    color: #48cef9;
    font:
        700 11px "Helvetica",
        sans-serif;
    letter-spacing: 0.14em;
}
.why-copy h3 {
    margin: 0 0 18px;
    color: #fff;
    font:
        700 clamp(31px, 2.8vw, 42px)/1.08 "Helvetica",
        sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}
.why-copy p {
    max-width: 770px;
    margin: 0;
    color: #f2f6f8;
    font-size: 17px;
    font-weight: 450;
    line-height: 1.7;
}
.why-copy p strong {
    color: #fff;
    font-weight: 700;
}
.why-elite__journey {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}
.why-marker {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 78px;
    padding: 18px 12px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(3, 20, 32, 0.38);
    color: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease,
        background 0.35s ease;
    cursor: pointer;
}
.why-marker:last-child {
    border-right: 0;
}
.why-marker.revealed {
    opacity: 0.58;
    transform: translateY(0);
}
.why-marker.active {
    opacity: 1;
    background: rgba(6, 130, 182, 0.72);
}
.why-marker span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    font-size: 10px;
}
.why-marker b {
    font:
        600 clamp(15px, 1.4vw, 20px) "Helvetica",
        sans-serif;
}
.why-marker::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: #45d0ff;
    transition: width 0.5s ease;
}
.why-marker.active::before {
    width: 100%;
}
@media (max-height: 780px) and (min-width: 901px) {
    .why-elite__shell {
        padding: 82px 0 26px;
    }
    .why-elite__heading {
        margin-top: 24px;
        padding: 0;
    }
    .why-elite__heading h2 {
        font-size: 64px;
    }
    .why-elite__content {
        min-height: 230px;
        margin-bottom: 18px;
    }
    .why-copy {
        padding: 0;
    }
    .why-copy h3 {
        margin-bottom: 12px;
        font-size: 30px;
    }
    .why-copy p {
        font-size: 14px;
        line-height: 1.58;
    }
    .why-marker {
        min-height: 65px;
        padding: 12px 10px;
    }
}

.caclinhvuc {
    gap: 20px;
    flex-wrap: wrap;
}

.item_caclinhvuc {
    width: 318px;
    padding: 20px;
        transition: transform .32s cubic-bezier(.22, .61, .36, 1), box-shadow .32s ease;
}

.item_caclinhvuc:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 34px rgba(0, 0, 0, .13);
        transition: transform .32s cubic-bezier(.22, .61, .36, 1), box-shadow .32s ease;
}

@media (max-width: 900px) {
    .why-elite {
        height: auto;
    }
    .why-elite__sticky {
        position: relative;
        min-height: 820px;
    }
    .why-elite__shell {
        width: min(100% - 32px, 1380px);
        height: auto;
        min-height: 820px;
        padding: 100px 0 34px;
    }
    .why-elite__heading,
    .why-elite__content {
        width: min(100%, 620px);
    }
    .why-elite__heading h2 {
        white-space: normal;
    }
    .why-elite__content {
        min-height: 240px;
    }
    .why-elite__journey {
        grid-template-columns: 1fr 1fr;
    }
    .why-marker {
        opacity: 0.64;
        transform: none;
    }
}

/* Final L50 deployment-card theme: blue/white alternating + staggered entrance */
.l50-easy__grid article {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease var(--easy-delay),
        transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) var(--easy-delay),
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}
.l50-easy__grid article.is-visible {
    opacity: 1;
    transform: none;
}
.l50-easy__grid article:nth-child(odd) {
    color: #fff;
    border-color: #075f84;
    background: linear-gradient(145deg, #0787bc, #045f88);
}
.l50-easy__grid article:nth-child(odd) p {
    color: rgba(255, 255, 255, 0.8);
}
.l50-easy__grid article:nth-child(odd) .l50-tool-icon {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.12);
}
.l50-easy__grid article:nth-child(odd) .l50-tool-icon svg {
    stroke: #fff;
}
.l50-easy__grid article:nth-child(odd):hover {
    border-color: #55cfff;
    background: linear-gradient(145deg, #0897cf, #056b96);
    box-shadow: 0 22px 52px rgba(6, 130, 182, 0.24);
    transform: translateY(-7px);
}
.l50-easy__grid article:nth-child(even) {
    color: #07111f;
    background: #fff;
}
/* Warehouse solution detail */
.warehouse-solution {
    --wh-blue: #0682b6;
    --wh-ink: #081525;
    --wh-muted: #607084;
    background: #fff;
    color: var(--wh-ink);
}
.wh-section {
    padding: 82px 0;
}
.wh-kicker {
    margin: 0 0 12px;
    color: var(--wh-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.wh-heading {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}
.wh-heading h2,
.wh-copy h2 {
    margin: 0;
    font:
        700 clamp(28px, 3vw, 40px)/1.18 Helvetica,
        sans-serif;
    letter-spacing: -0.035em;
}
.wh-heading > span {
    display: block;
    margin-top: 12px;
    color: var(--wh-muted);
    font-size: 15px;
    line-height: 1.7;
}
.wh-two-col {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 76px;
    align-items: center;
    max-width: 1160px;
}
.wh-photo {
    position: relative;
    height: 470px;
    overflow: hidden;
    background: #eef3f6;
    box-shadow: 0 24px 60px rgba(12, 40, 58, 0.12);
}
.wh-photo:after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.55);
    pointer-events: none;
}
.wh-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.wh-photo:hover img {
    transform: scale(1.025);
}
.wh-copy > .wh-kicker {
    margin-bottom: 10px;
}
.wh-challenge-list {
    margin-top: 26px;
    border-top: 1px solid #dce4e9;
}
.wh-challenge-list article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 17px 0;
    border-bottom: 1px solid #dce4e9;
    transition:
        padding-left 0.25s,
        background 0.25s;
}
.wh-challenge-list article:hover {
    padding-left: 10px;
    background: linear-gradient(90deg, rgba(6, 130, 182, 0.055), transparent);
}
.wh-challenge-list article > span {
    color: var(--wh-blue);
    font: 700 12px/1 Helvetica;
}
.wh-challenge-list h3 {
    margin: 0 0 6px;
    font: 700 17px/1.35 Helvetica;
}
.wh-challenge-list p {
    margin: 0;
    color: var(--wh-muted);
    font-size: 13.5px;
    line-height: 1.6;
}
.wh-process {
    background: #f5f8fa;
}
.wh-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    border: 0;
}
.wh-process-grid article {
    position: relative;
    display: flex;
    min-height: 285px;
    padding: 40px 32px 34px;
    border: 1px solid #d7e2e8;
    background: #fff;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 16px 38px rgba(14, 44, 61, 0.055);
    transition:
        transform 0.4s,
        border-color 0.4s,
        box-shadow 0.4s;
}
.wh-process-grid article:last-child {
    border-right: 1px solid #d7e2e8;
}
.wh-process-grid article:not(:last-child):after {
    content: "→";
    position: absolute;
    top: 28px;
    right: -22px;
    z-index: 2;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--wh-blue);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
}
.wh-process-grid article:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 130, 182, 0.55);
    box-shadow: 0 22px 50px rgba(14, 75, 104, 0.12);
}
.wh-process-grid h3 {
    margin: 0 0 16px;
    font: 700 22px/1.3 Helvetica;
}
.wh-process-grid p {
    margin: 0;
    color: var(--wh-muted);
    font-size: 14px;
    line-height: 1.7;
}
.wh-robots {
    background: #fff;
}
.wh-tabs {
    display: flex;
    justify-content: center;
    gap: 54px;
    margin: 0 auto 26px;
    max-width: 1040px;
    border-bottom: 1px solid #d9e2e8;
}
.wh-tabs button {
    position: relative;
    padding: 14px 8px 16px;
    border: 0;
    background: none;
    color: #8794a3;
    font: 600 15px Helvetica;
    cursor: pointer;
    transition: 0.25s;
}
.wh-tabs button:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--wh-blue);
    transform: scaleX(0);
    transition: 0.25s;
}
.wh-tabs button:hover,
.wh-tabs button.active {
    color: var(--wh-blue);
}
.wh-tabs button.active:after {
    transform: scaleX(1);
}
.wh-robot-stage {
    display: grid;
    grid-template-columns: 52% 48%;
    width: min(1080px, 100%);
    min-height: 510px;
    margin: 0 auto;
    background: #f4f7f9;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(15, 43, 61, 0.09);
    transition:
        opacity 0.22s,
        transform 0.22s;
}
.wh-robot-stage.changing {
    opacity: 0.25;
    transform: translateY(8px);
}
.wh-robot-visual {
    position: relative;
    display: grid;
    place-items: center;
    padding: 38px;
    background: linear-gradient(145deg, #e9f3f7, #f8fafb);
}
.wh-robot-visual:before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(6, 130, 182, 0.14);
    border-radius: 50%;
}
.wh-robot-visual img {
    position: relative;
    z-index: 1;
    width: min(78%, 430px);
    height: 390px;
    object-fit: contain;
    transition: 0.45s;
}
.wh-robot-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 45px 54px;
    background: #fff;
}
.wh-robot-copy > p {
    margin: 0 0 8px;
    color: var(--wh-blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.wh-robot-copy h3 {
    margin: 0 0 14px;
    font: 700 34px/1.15 Helvetica;
}
.wh-robot-desc {
    color: var(--wh-muted);
    font-size: 14px;
    line-height: 1.65;
}
.wh-robot-copy ul {
    display: grid;
    gap: 9px;
    margin: 22px 0 26px;
    padding: 0;
    list-style: none;
}
.wh-robot-copy li {
    position: relative;
    padding-left: 22px;
    color: #27394b;
    font-size: 13px;
    line-height: 1.45;
}
.wh-robot-copy li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--wh-blue);
    font-weight: 700;
}
.wh-robot-copy a {
    align-self: flex-start;
    padding: 12px 18px;
    border: 1px solid var(--wh-blue);
    color: var(--wh-blue);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s;
}
.wh-robot-copy a:hover {
    background: var(--wh-blue);
    color: #fff;
    transform: translateY(-2px);
}
.wh-values {
    position: relative;
    background: url("assets/solution-kho-hang-v2.png") center/cover fixed;
    color: #fff;
    overflow: hidden;
}
.wh-values:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        rgba(3, 20, 34, 0.94),
        rgba(4, 47, 68, 0.8)
    );
}
.wh-values .is-container {
    position: relative;
    z-index: 1;
}
.wh-heading--light > span {
    color: #d1dde4;
}
.wh-heading--light .wh-kicker {
    color: #55c8f2;
}
.wh-value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    border: 0;
}
.wh-value-grid article {
    min-height: 230px;
    padding: 28px;
    background: rgba(8, 30, 44, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        transform 0.35s,
        background 0.35s,
        border-color 0.35s;
}
.wh-value-grid article:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.wh-value-grid article:hover {
    transform: translateY(-8px);
    background: rgba(8, 50, 70, 0.68);
    border-color: rgba(85, 200, 242, 0.65);
}
.wh-value-grid article > span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(85, 200, 242, 0.5);
    border-radius: 50%;
    color: #55c8f2;
    font-size: 18px;
}
.wh-value-grid h3 {
    margin: 34px 0 12px;
    font: 700 18px/1.35 Helvetica;
}
.wh-value-grid p {
    margin: 0;
    color: #d1dde4;
    font-size: 13.5px;
    line-height: 1.65;
}
.warehouse-solution .wh-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}
.warehouse-solution .wh-reveal.is-visible {
    opacity: 1;
    transform: none;
}
.warehouse-solution .wh-reveal:nth-child(2) {
    transition-delay: 0.08s;
}
.warehouse-solution .wh-reveal:nth-child(3) {
    transition-delay: 0.16s;
}
.warehouse-solution .wh-reveal:nth-child(4) {
    transition-delay: 0.24s;
}
.wh-challenges .wh-two-col {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 64px;
}
.wh-challenge-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
    border: 0;
}
.wh-challenge-list article {
    display: block;
    min-height: 172px;
    padding: 25px 23px;
    border: 1px solid #dbe5ea;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 47, 65, 0.055);
    transition:
        transform 0.35s,
        border-color 0.35s,
        box-shadow 0.35s;
}
.wh-challenge-list article:nth-child(even) {
    transform: translateY(22px);
}
.wh-challenge-list article:hover {
    padding-left: 23px;
    background: #fff;
    border-color: rgba(6, 130, 182, 0.55);
    box-shadow: 0 18px 38px rgba(15, 70, 96, 0.12);
    transform: translateY(-5px);
}
.wh-challenge-list article:nth-child(even):hover {
    transform: translateY(17px);
}
.wh-challenge-list h3 {
    margin: 0 0 11px;
    font: 700 19px/1.35 Helvetica;
}
.wh-challenge-list p {
    font-size: 13px;
    line-height: 1.6;
}
.wh-process-grid .wh-reveal:nth-child(1) {
    transition-delay: 0s;
}
.wh-process-grid .wh-reveal:nth-child(2) {
    transition-delay: 0.16s;
}
.wh-process-grid .wh-reveal:nth-child(3) {
    transition-delay: 0.32s;
}
.wh-process-grid .wh-reveal:nth-child(4) {
    transition-delay: 0.48s;
}
.wh-process {
    position: relative;
    min-height: 790px;
    padding: 78px 0;
    background: url("assets/warehouse-elite-team.png") center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}
.wh-process:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(4, 20, 33, 0.92) 0%,
        rgba(4, 31, 47, 0.78) 32%,
        rgba(3, 24, 38, 0.28) 58%,
        rgba(3, 20, 32, 0.06) 100%
    );
}
.wh-process .is-container {
    position: relative;
    z-index: 1;
}
.wh-process .wh-heading {
    width: 48%;
    max-width: 600px;
    margin: 0 0 32px;
    text-align: left;
}
.wh-process .wh-kicker {
    color: #52c7f1;
}
.wh-process .wh-heading h2 {
    color: #fff;
}
.wh-process .wh-heading > span {
    max-width: 520px;
    color: #d9e5eb;
}
.wh-process-grid {
    display: grid;
    width: 48%;
    max-width: 610px;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}
.wh-process-grid article {
    display: block;
    min-height: 0;
    padding: 19px 0 18px 4px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    box-shadow: none;
    color: #fff;
    transition:
        opacity 0.8s ease,
        transform 0.8s ease,
        padding-left 0.3s ease;
}
.wh-process-grid article:last-child {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.wh-process-grid article:not(:last-child):after {
    display: none;
}
.wh-process-grid article:hover {
    padding-left: 14px;
    border-color: rgba(82, 199, 241, 0.7);
    background: transparent;
    box-shadow: none;
    transform: none;
}
.wh-process-grid h3 {
    margin: 0 0 7px;
    color: #fff;
    font: 700 20px/1.3 Helvetica;
}
.wh-process-grid p {
    max-width: 550px;
    color: #d8e2e8;
    font-size: 13px;
    line-height: 1.55;
}
.wh-process-grid .wh-reveal {
    opacity: 0;
    transform: translateX(-44px);
}
.wh-process-grid .wh-reveal.is-visible {
    opacity: 1;
    transform: none;
}
.wh-process-grid .wh-reveal:nth-child(1) {
    transition-delay: 0.08s;
}
.wh-process-grid .wh-reveal:nth-child(2) {
    transition-delay: 0.28s;
}
.wh-process-grid .wh-reveal:nth-child(3) {
    transition-delay: 0.48s;
}
.wh-process-grid .wh-reveal:nth-child(4) {
    transition-delay: 0.68s;
}
.wh-scenes {
    background: #f6f8fa;
}
.wh-scene-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.wh-scene-grid article {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #102233;
}
.wh-scene-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.55s,
        filter 0.55s;
}
.wh-scene-grid article:after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(transparent, rgba(2, 14, 24, 0.82));
}
.wh-scene-grid h3 {
    position: absolute;
    left: 24px;
    bottom: 22px;
    z-index: 2;
    margin: 0;
    color: #fff;
    font: 600 18px Helvetica;
}
.wh-scene-grid article:hover img {
    transform: scale(1.035);
    filter: brightness(1.06);
}
.wh-cta {
    padding: 82px 0;
    background: #fff;
    text-align: center;
}
.wh-cta p {
    margin: 0 0 12px;
    color: var(--wh-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.wh-cta h2 {
    margin: 0 auto 28px;
    max-width: 820px;
    font: 700 clamp(30px, 3.2vw, 46px)/1.2 Helvetica;
    letter-spacing: -0.035em;
}
.wh-cta a {
    display: inline-block;
    padding: 14px 24px;
    background: var(--wh-blue);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}
@media (max-width: 900px) {
    .wh-section {
        padding: 64px 0;
    }
    .wh-two-col,
    .wh-challenges .wh-two-col,
    .wh-robot-stage {
        grid-template-columns: 1fr;
    }
    .wh-photo {
        height: 400px;
    }
    .wh-process-grid,
    .wh-value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .wh-process-grid article:nth-child(2),
    .wh-value-grid article:nth-child(2) {
        border-right: 1px solid #d7e2e8;
    }
    .wh-robot-copy {
        padding: 42px;
    }
    .wh-scene-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 900px) {
    .wh-process {
        min-height: 720px;
        background-position: 62% center;
    }
    .wh-process:before {
        background: linear-gradient(
            90deg,
            rgba(3, 19, 31, 0.94),
            rgba(3, 25, 39, 0.72) 70%,
            rgba(3, 20, 32, 0.25)
        );
    }
    .wh-process .wh-heading,
    .wh-process-grid {
        width: 62%;
        max-width: none;
    }
    .wh-process-grid {
        grid-template-columns: 1fr;
    }
    .wh-process-grid article:nth-child(2) {
        border-right: 0;
    }
}
@media (max-width: 600px) {
    .wh-two-col {
        gap: 34px;
    }
    .wh-photo {
        height: 340px;
    }
    .wh-challenge-list,
    .wh-process-grid,
    .wh-value-grid,
    .wh-scene-grid {
        grid-template-columns: 1fr;
    }
    .wh-challenge-list article:nth-child(even),
    .wh-challenge-list article:nth-child(even):hover {
        transform: none;
    }
    .wh-process-grid article,
    .wh-value-grid article {
        border-right: 1px solid #d7e2e8;
        border-bottom: 1px solid #d7e2e8;
    }
    .wh-process-grid article:not(:last-child):after {
        display: none;
    }
    .wh-tabs {
        gap: 20px;
        overflow-x: auto;
        justify-content: flex-start;
    }
    .wh-robot-visual {
        padding: 24px;
    }
    .wh-robot-visual img {
        height: 340px;
    }
    .wh-robot-copy {
        padding: 32px 24px;
    }
    .wh-scene-grid article {
        height: 260px;
    }
}

/* Warehouse value cards + interactive ROI calculator */
.wh-values {
    background: #f4f8fb;
    color: #071421;
}
.wh-values .wh-heading {
    max-width: 980px;
    margin-bottom: 34px;
}
.wh-values .wh-heading h2 {
    font-size: clamp(30px, 3vw, 44px);
}
.wh-values .wh-heading span {
    font-size: 17px;
    line-height: 1.65;
}
.wh-value-grid {
    gap: 18px;
}
.wh-value-grid article {
    min-height: 220px;
    padding: 32px 30px;
    border: 1px solid #d9e6ed;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(4, 32, 52, 0.06);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}
.wh-value-grid article:nth-child(odd) {
    background: var(--wh-blue);
    border-color: var(--wh-blue);
    color: #fff;
}
.wh-value-grid article:hover {
    transform: translateY(-5px);
    border-color: var(--wh-blue);
    box-shadow: 0 18px 42px rgba(4, 55, 83, 0.14);
}
.wh-value-grid article > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 25px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 21px;
    font-weight: 700;
}
.wh-value-grid article h3 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.25;
    letter-spacing: -0.015em;
}
.wh-value-grid article p {
    margin: 0;
    font-size: 16px;
    line-height: 1.62;
    color: #536674;
}
.wh-value-grid article:nth-child(odd) p {
    color: rgba(255, 255, 255, 0.84);
}
.wh-roi {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 48px;
    margin-top: 42px;
    padding: 42px;
    background: #fff;
    border: 1px solid #d9e6ed;
    box-shadow: 0 18px 54px rgba(4, 32, 52, 0.08);
}
.wh-roi-copy h3 {
    margin: 8px 0 14px;
    font-size: clamp(27px, 2.3vw, 36px);
    line-height: 1.18;
    letter-spacing: -0.025em;
}
.wh-roi-copy > p {
    font-size: 16px;
    line-height: 1.65;
    color: #586a77;
}
.wh-roi-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 24px;
}
.wh-roi-results > div {
    padding: 17px;
    background: #f3f7fa;
    border: 1px solid #e0e8ed;
}
.wh-roi-results span {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    color: #687b88;
}
.wh-roi-results strong {
    display: block;
    font-size: 19px;
    line-height: 1.25;
    color: #071421;
}
.wh-roi-results .primary {
    background: var(--wh-blue);
    border-color: var(--wh-blue);
}
.wh-roi-results .primary span,
.wh-roi-results .primary strong {
    color: #fff;
}
.wh-roi-formula {
    margin-top: 16px !important;
    font-size: 13px !important;
    color: #78909d !important;
}
.wh-roi-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 16px;
    align-content: start;
}
.wh-roi-form label {
    display: grid;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #253845;
}
.wh-roi-form input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #ccdbe3;
    border-radius: 0;
    background: #f9fbfc;
    color: #071421;
    font:
        600 16px Helvetica,
        Arial,
        sans-serif;
    outline: none;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}
.wh-roi-form input:focus {
    background: #fff;
    border-color: var(--wh-blue);
    box-shadow: 0 0 0 3px rgba(6, 130, 182, 0.12);
}
.wh-roi-form button {
    grid-column: 1/-1;
    min-height: 50px;
    margin-top: 4px;
    border: 0;
    background: var(--wh-blue);
    color: #fff;
    font:
        700 16px Helvetica,
        Arial,
        sans-serif;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.wh-roi-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(6, 130, 182, 0.22);
}
.wh-value-reveal {
    opacity: 0;
    transform: translateY(28px);
}
.wh-value-reveal.is-visible {
    opacity: 1;
    transform: none;
}
.wh-value-grid .wh-value-reveal:nth-child(2) {
    transition-delay: 0.08s;
}
.wh-value-grid .wh-value-reveal:nth-child(3) {
    transition-delay: 0.16s;
}
.wh-value-grid .wh-value-reveal:nth-child(4) {
    transition-delay: 0.24s;
}
.wh-value-grid .wh-value-reveal:nth-child(5) {
    transition-delay: 0.32s;
}
.wh-value-grid .wh-value-reveal:nth-child(6) {
    transition-delay: 0.4s;
}
@media (max-width: 900px) {
    .wh-roi {
        grid-template-columns: 1fr;
    }
    .wh-value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .wh-value-grid,
    .wh-roi-form,
    .wh-roi-results {
        grid-template-columns: 1fr;
    }
    .wh-roi {
        padding: 28px 22px;
    }
    .wh-value-grid article {
        min-height: 0;
    }
    .wh-value-grid article:nth-child(odd) {
        background: var(--wh-blue);
    }
}
@media (max-width: 600px) {
    .wh-process {
        min-height: auto;
        padding: 58px 0;
        background-position: 58% center;
    }
    .wh-process:before {
        background: rgba(3, 21, 34, 0.82);
    }
    .wh-process .wh-heading,
    .wh-process-grid {
        width: 100%;
    }
    .wh-process-grid article,
    .wh-process-grid article:last-child {
        padding: 16px 0;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }
}

.rental-page {
    background: #fff;
    color: var(--rent-ink);
}
.rent-shell {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}
.rent-section {
    padding: 94px 0;
}
.rent-kicker {
    margin: 0 0 15px;
    color: var(--rent-blue);
    font:
        700 12px/1.2 "Helvetica",
        sans-serif;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.rent-heading {
    margin-bottom: 48px;
}
.rent-heading h2,
.rent-service__copy h2,
.rent-final h2 {
    margin: 0;
    font:
        700 clamp(34px, 3.1vw, 46px)/1.12 Helvetica,
        sans-serif;
    letter-spacing: -0.04em;
}
.rent-btn {
    display: inline-flex;
    min-width: 148px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    transition: 0.25s ease;
}
.rent-btn:hover {
    border-color: #0799d3;
    background: #0799d3;
    transform: translateY(-2px);
}
.rent-btn--blue {
    border-color: #0799d3;
    background: #0799d3;
}
.rent-btn--blue:hover {
    background: #0799d3;
    box-shadow: 0 14px 28px rgba(6, 130, 182, 0.24);
}
.rent-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.rent-hero {
    position: relative;
    min-height: 730px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 76% 44%,
            rgba(16, 137, 185, 0.25),
            transparent 30%
        ),
        linear-gradient(120deg, #061221 0%, #0a1d30 58%, #082d45 100%);
    color: #fff;
}
.rent-hero:after {
    position: absolute;
    inset: auto -10% -42% 35%;
    height: 76%;
    content: "";
    border: 1px solid rgba(58, 184, 231, 0.2);
    border-radius: 50%;
    transform: rotate(-8deg);
}
.rent-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
    padding-top: 84px;
}
.rent-hero__copy h1 {
    margin: 0 0 22px;
    font:
        700 clamp(42px, 4vw, 58px)/1.04 Helvetica,
        sans-serif;
    letter-spacing: -0.05em;
    white-space: nowrap;
}
.rent-hero__copy > span {
    display: block;
    max-width: 570px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.7;
}
.rent-hero__visual {
    position: relative;
    height: 570px;
    display: grid;
    place-items: center;
}
.rent-hero__visual > span {
    position: absolute;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(74, 204, 247, 0.3);
    border-radius: 50%;
    box-shadow:
        0 0 90px rgba(15, 154, 205, 0.15),
        inset 0 0 70px rgba(11, 143, 193, 0.08);
}
.rent-hero__visual img {
    position: relative;
    z-index: 1;
    width: min(520px, 92%);
    height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 35px 35px rgba(0, 0, 0, 0.34));
}
.rent-needs {
    background: #f4f7f9;
}
.rent-needs__layout {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 68px;
    align-items: stretch;
}
.rent-needs__list article {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 18px;
    padding: 22px 6px;
    border-bottom: 1px solid #cad6de;
    cursor: pointer;
    transition: 0.3s ease;
}
.rent-needs__list article > b {
    color: #a8b7c2;
    font:
        600 29px/1 Helvetica,
        sans-serif;
    transition: 0.3s;
}
.rent-needs__list h3 {
    margin: 0;
    color: #324252;
    font:
        600 21px/1.2 Helvetica,
        sans-serif;
    transition: 0.3s;
}
.rent-needs__list p {
    max-height: 0;
    margin: 0;
    color: var(--rent-muted);
    font-size: 14px;
    line-height: 1.7;
    opacity: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        opacity 0.35s ease,
        margin 0.35s ease;
}
.rent-needs__list article:hover,
.rent-needs__list article.active {
    padding-left: 16px;
    border-color: var(--rent-blue);
    background: linear-gradient(90deg, rgba(6, 130, 182, 0.08), transparent);
}
.rent-needs__list article:hover > b,
.rent-needs__list article.active > b,
.rent-needs__list article:hover h3,
.rent-needs__list article.active h3 {
    color: var(--rent-blue);
}
.rent-needs__list article:hover p,
.rent-needs__list article.active p {
    max-height: 90px;
    margin-top: 10px;
    opacity: 1;
}
.rent-needs__visual {
    position: relative;
    min-height: 490px;
    overflow: hidden;
    background: #dfe8ee;
}
.rent-needs__visual:after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 52%, rgba(2, 17, 29, 0.75));
}
.rent-needs__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        opacity 0.2s,
        transform 0.55s;
}
.rent-needs__visual img.changing {
    opacity: 0.25;
    transform: scale(1.035);
}
.rent-needs__visual span {
    position: absolute;
    z-index: 1;
    left: 34px;
    bottom: 28px;
    color: #fff;
    font:
        600 22px/1.2 Helvetica,
        sans-serif;
}
.rent-process {
    background: #fff;
}
.rent-process__flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}
.rent-process__flow:before {
    position: absolute;
    top: 26px;
    left: 9%;
    right: 9%;
    height: 1px;
    content: "";
    background: #bed2dd;
}
.rent-process__flow article {
    position: relative;
    padding: 0 22px 0 0;
    opacity: 0;
    transform: translateX(-24px);
    transition: 0.55s ease;
}
.rent-process__flow article.visible {
    opacity: 1;
    transform: none;
}
.rent-process__flow article:nth-child(2) {
    transition-delay: 0.1s;
}
.rent-process__flow article:nth-child(3) {
    transition-delay: 0.2s;
}
.rent-process__flow article:nth-child(4) {
    transition-delay: 0.3s;
}
.rent-process__flow article:nth-child(5) {
    transition-delay: 0.4s;
}
.rent-line-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    place-items: center;
    border: 1px solid #b8d5e1;
    border-radius: 50%;
    background: #fff;
    color: var(--rent-blue);
    font-size: 20px;
    overflow: hidden;
    align-items: center;
    justify-items: center;
    justify-content: center;
    align-content: center;
}
.rent-process__flow h3 {
    margin: 0 0 10px;
    font:
        600 19px/1.2 Helvetica,
        sans-serif;
}
.rent-process__flow p {
    margin: 0;
    color: var(--rent-muted);
    font-size: 14px;
    line-height: 1.65;
}
.rent-robots {
    background: #eef3f6;
}
.rent-tabs {
    display: flex;
    gap: 40px;
    margin: -14px 0 34px;
    border-bottom: 1px solid #c8d5dd;
}
.rent-tabs button {
    position: relative;
    padding: 18px 0;
    border: 0;
    background: none;
    color: #788895;
    font:
        600 15px/1 "Helvetica",
        sans-serif;
    cursor: pointer;
}
.rent-tabs button:after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    content: "";
    background: var(--rent-blue);
    transform: scaleX(0);
    transition: 0.25s;
}
.rent-tabs button:hover,
.rent-tabs button.active {
    color: var(--rent-blue);
}
.rent-tabs button.active:after {
    transform: scaleX(1);
}
.rent-robot-stage {
    display: grid;
    grid-template-columns: 52% 48%;
    min-height: 590px;
    background: #fff;
    box-shadow: 0 26px 64px rgba(12, 42, 61, 0.1);
    transition:
        opacity 0.2s,
        transform 0.2s;
}
.rent-robot-stage.changing {
    opacity: 0.2;
    transform: translateY(8px);
}
.rent-robot-stage__visual {
    display: grid;
    place-items: center;
    padding: 45px;
    background: linear-gradient(145deg, #061522, #0b2a3d);
}
.rent-robot-stage__visual img {
    width: 100%;
    height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 30px 28px rgba(0, 0, 0, 0.28));
}
.rent-robot-stage__copy {
    padding: 58px 54px;
}
.rent-robot-stage__copy > p {
    margin: 0 0 12px;
    color: var(--rent-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
}
.rent-robot-stage__copy h3 {
    margin: 0 0 18px;
    font:
        700 38px/1.1 Helvetica,
        sans-serif;
    letter-spacing: -0.04em;
}
.rent-robot-stage__copy > span {
    display: block;
    color: var(--rent-muted);
    line-height: 1.75;
}
.rent-robot-stage__copy ul {
    display: grid;
    gap: 11px;
    margin: 25px 0;
    padding: 0;
    list-style: none;
}
.rent-robot-stage__copy li:before {
    margin-right: 10px;
    color: var(--rent-blue);
    content: "✓";
}
.rent-fit {
    padding-top: 22px;
    border-top: 1px solid #dbe4e9;
}
.rent-fit > b {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
}
.rent-fit > div {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.rent-fit span {
    padding: 7px 11px;
    background: #edf5f8;
    color: #365064;
    font-size: 12px;
}
.rent-robot-stage__copy > a {
    display: inline-flex;
    margin-top: 28px;
    gap: 12px;
    align-items: center;
    color: var(--rent-blue);
    font-weight: 700;
}
.rent-service__grid {
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
    gap: 74px;
}
.rent-service__visual {
    height: 560px;
    overflow: hidden;
}
.rent-service__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rent-service__copy h2 {
    font-size: clamp(32px, 2.8vw, 42px);
}
.rent-service__copy ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
    margin: 38px 0 0;
    padding: 0;
    list-style: none;
}
.rent-service__copy li {
    padding: 17px 0;
    border-bottom: 1px solid #dbe3e8;
    font-weight: 600;
}
.rent-service__copy li:before {
    display: inline-grid;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    place-items: center;
    border-radius: 50%;
    background: #e2f4fa;
    color: var(--rent-blue);
    content: "✓";
    font-size: 12px;
}
.rent-final {
    padding: 92px 0;
    background: linear-gradient(120deg, #061522, #07324b);
    color: #fff;
    text-align: center;
}
.rent-final .rent-kicker {
    color: #57c6ed;
}
.rent-final h2 {
    white-space: nowrap;
}
.rent-final > div > span {
    display: block;
    max-width: 760px;
    margin: 20px auto 30px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.75;
}
.rent-final .rent-actions {
    justify-content: center;
}
.rent-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}
.rent-reveal.visible {
    opacity: 1;
    transform: none;
}
@media (min-width: 901px) {
    .rental-page .rent-heading h2,
    .rental-page .rent-service__copy h2 {
        white-space: nowrap;
    }
}
@media (max-width: 900px) {
    .rent-section {
        padding: 72px 0;
    }
    .rent-hero {
        min-height: auto;
        padding: 120px 0 64px;
    }
    .rent-hero__grid,
    .rent-needs__layout,
    .rent-robot-stage,
    .rent-service__grid {
        grid-template-columns: 1fr;
    }
    .rent-hero__visual {
        height: 440px;
    }
    .rent-hero__visual img {
        height: 420px;
    }
    .rent-process__flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 38px 24px;
    }
    .rent-process__flow:before {
        display: none;
    }
    .rent-tabs {
        overflow-x: auto;
    }
    .rent-robot-stage__visual img {
        height: 400px;
    }
    .rent-service__visual {
        height: 450px;
    }
    .rent-final h2 {
        white-space: normal;
    }
}
@media (max-width: 600px) {
    .rent-shell {
        width: min(100% - 30px, 1180px);
    }
    .rent-heading h2,
    .rent-service__copy h2,
    .rent-final h2 {
        font-size: 32px;
        white-space: normal;
    }
    .rent-hero__copy h1 {
        font-size: 40px;
        white-space: normal;
    }
    .rent-hero__visual {
        height: 360px;
    }
    .rent-hero__visual > span {
        width: 290px;
        height: 290px;
    }
    .rent-hero__visual img {
        height: 340px;
    }
    .rent-needs__layout {
        gap: 28px;
    }
    .rent-needs__list article {
        grid-template-columns: 48px 1fr;
    }
    .rent-needs__visual {
        min-height: 340px;
    }
    .rent-process__flow {
        grid-template-columns: 1fr;
    }
    .rent-tabs {
        gap: 26px;
    }
    .rent-robot-stage__visual {
        padding: 25px;
    }
    .rent-robot-stage__visual img {
        height: 330px;
    }
    .rent-robot-stage__copy {
        padding: 36px 25px;
    }
    .rent-service__visual {
        height: 360px;
    }
    .rent-service__copy ul {
        grid-template-columns: 1fr;
    }
    .rent-actions .rent-btn {
        width: 100%;
    }
}

/* Rental page compact refinements */
@media (min-width: 901px) {
    .rent-needs__layout {
        align-items: start;
    }
    .rent-needs__visual {
        min-height: 0;
        height: 420px;
        align-self: start;
        margin-top: -12px;
    }
    .rent-needs__visual img {
        object-position: center 42%;
    }
    .rent-robots {
        padding-top: 72px;
        padding-bottom: 72px;
    }
    .rent-robots .rent-heading {
        margin-bottom: 30px;
    }
    .rent-robot-stage {
        min-height: 0;
        height: 100%;
    }
    .rent-robot-stage__visual {
        padding: 28px 38px;
    }
    .rent-robot-stage__visual img {
        height: 410px;
    }
    .rent-robot-stage__copy {
        padding: 38px 46px;
    }
    .rent-robot-stage__copy h3 {
        margin-bottom: 12px;
        font-size: 34px;
    }
    .rent-robot-stage__copy > span {
        font-size: 14px;
        line-height: 1.65;
    }
    .rent-robot-stage__copy ul {
        gap: 7px;
        margin: 18px 0;
        font-size: 14px;
    }
    .rent-fit {
        padding-top: 15px;
    }
    .rent-robot-stage__copy > a {
        margin-top: 18px;
    }
}
.rent-service__copy h2 {
    font-size: clamp(34px, 3vw, 44px);
    text-transform: uppercase;
}

/* Warehouse page refinements */
.wh-challenges .wh-copy h2 {
    font-size: clamp(32px, 3.15vw, 44px);
}
.wh-challenges .wh-challenge-list article {
    background: linear-gradient(145deg, #087fac 0%, #056d9a 100%);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 34px rgba(5, 75, 108, 0.18);
    color: #fff;
}
.wh-challenges .wh-challenge-list article:hover {
    background: linear-gradient(145deg, #0793c9 0%, #0575a5 100%);
    border-color: #56cef5;
    box-shadow: 0 22px 44px rgba(5, 86, 123, 0.25);
}
.wh-challenges .wh-challenge-list h3 {
    color: #fff;
    font-size: 22px;
}
.wh-challenges .wh-challenge-list p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.65;
}
.wh-process .wh-heading {
    margin-bottom: 38px;
}
.wh-process .wh-heading h2 {
    font-size: clamp(34px, 3.2vw, 46px);
}
.wh-process-grid article {
    padding-top: 22px;
    padding-bottom: 21px;
}
.wh-process-grid h3 {
    font-size: 23px;
}
.wh-process-grid p {
    font-size: 15px;
    line-height: 1.65;
}
.wh-process .wh-heading {
    width: 100%;
    max-width: none;
    margin-bottom: 44px;
    text-align: left;
}
.wh-process .wh-heading h2 {
    font-size: clamp(34px, 3.2vw, 46px);
    letter-spacing: -0.04em;
    white-space: nowrap;
}
.wh-process-grid {
    border-top: 0;
}
.wh-process-grid article,
.wh-process-grid article:last-child {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 16px;
    align-items: center;
    padding: 22px 0;
    border: 0;
}
.wh-process-grid article:hover {
    border: 0;
}
.wh-process-icon {
    display: grid;
    grid-column: 1;
    grid-row: 1;
    width: 46px;
    height: 46px;
    margin: 0;
    place-items: center;
    border: 1px solid rgba(82, 199, 241, 0.62);
    border-radius: 50%;
    color: #52c7f1;
    background: rgba(4, 30, 46, 0.32);
    backdrop-filter: blur(8px);
    transition:
        transform 0.3s,
        background 0.3s,
        color 0.3s;
}
.wh-process-grid h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
}
.wh-process-grid p {
    grid-column: 2;
    grid-row: 2;
    margin-top: 7px;
}
.wh-process-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.wh-process-grid article:hover .wh-process-icon {
    transform: translateY(-3px);
    background: #0682b6;
    color: #fff;
}

/* Warehouse solution — hero and operational challenges */
.industry-solution-page .is-hero__content {
    max-width: 780px;
}
.industry-solution-page .is-hero__content > span {
    max-width: 750px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    line-height: 1.68;
}
.industry-solution-page .is-hero__content > div {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.industry-solution-page .is-hero__content .is-button {
    min-width: 190px;
}
.wh-challenges {
    background: #f5f8fa;
}
.wh-challenges .wh-two-col {
    grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
    gap: 54px;
    align-items: center;
    max-width: 1220px;
}
.wh-challenges .wh-copy h2 {
    margin-bottom: 30px;
    font-size: clamp(31px, 3vw, 43px);
    white-space: nowrap;
}
.wh-challenges .wh-photo {
    order: 2;
    height: 590px;
    border-radius: 2px;
    box-shadow: 0 24px 55px rgba(11, 43, 61, 0.13);
}
.wh-challenges .wh-photo img {
    object-position: center;
}
.wh-challenges .wh-challenge-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}
.wh-challenges .wh-challenge-list article,
.wh-challenges .wh-challenge-list article:nth-child(even) {
    min-height: 148px;
    padding: 23px 22px;
    transform: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 2px;
}
.wh-challenges .wh-challenge-list article:hover,
.wh-challenges .wh-challenge-list article:nth-child(even):hover {
    padding-left: 22px;
    transform: translateY(-5px);
}
.wh-challenges .wh-challenge-list h3 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.3;
}
.wh-challenges .wh-challenge-list p {
    font-size: 14px;
    line-height: 1.55;
}
@media (max-width: 900px) {
    .wh-challenges .wh-two-col {
        grid-template-columns: 1fr;
    }
    .wh-challenges .wh-copy h2 {
        white-space: normal;
    }
    .wh-challenges .wh-photo {
        height: 440px;
    }
    .industry-solution-page .is-hero__content > span {
        max-width: 650px;
    }
}
@media (max-width: 600px) {
    .wh-challenges .wh-challenge-list {
        grid-template-columns: 1fr;
    }
    .wh-challenges .wh-photo {
        height: 340px;
    }
    .industry-solution-page .is-hero__content .is-button {
        width: 100%;
    }
}

/* Warehouse solution — lighter operational challenges */
.industry-solution-page .is-hero__shade {
    background: linear-gradient(
        90deg,
        rgba(3, 18, 30, 0.78) 0%,
        rgba(3, 18, 30, 0.52) 36%,
        rgba(3, 18, 30, 0.08) 70%
    );
}
.industry-solution-page .is-hero__content {
    width: min(720px, calc(100% - 48px));
    margin-left: clamp(24px, 4vw, 68px);
    margin-right: 0;
}
.industry-solution-page .is-hero > img {
    object-position: center;
}
.wh-challenges {
    background: #f7f9fa;
}
.wh-challenges .wh-two-col {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: 58px;
    align-items: center;
}
.wh-challenges .wh-copy h2 {
    margin-bottom: 32px;
    color: #071522;
    font-size: clamp(32px, 3vw, 43px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
}
.wh-challenges .wh-copy h2 > span,
.wh-challenges .wh-copy h2 > strong {
    display: block;
}
.wh-challenges .wh-copy h2 > span {
    color: #071522;
}
.wh-challenges .wh-copy h2 > strong {
    margin-top: 5px;
    color: #0682b6;
    font: inherit;
}
.wh-challenges .wh-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 0;
    box-shadow: 0 20px 48px rgba(12, 40, 58, 0.11);
}
.wh-challenges .wh-photo img {
    object-fit: cover;
    object-position: center;
}
.wh-challenges .wh-challenge-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
    margin: 0;
    border-top: 1px solid #d8e1e6;
}
.wh-challenges .wh-challenge-list article,
.wh-challenges .wh-challenge-list article:nth-child(even) {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    min-height: 126px;
    padding: 22px 2px;
    border: 0;
    border-bottom: 1px solid #d8e1e6;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #071522;
    transform: none;
    transition: padding-left 0.25s ease;
}
.wh-challenges .wh-challenge-list article:hover,
.wh-challenges .wh-challenge-list article:nth-child(even):hover {
    padding-left: 7px;
    background: transparent;
    border-color: #d8e1e6;
    box-shadow: none;
    transform: none;
}
.wh-challenges .wh-challenge-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(6, 130, 182, 0.32);
    border-radius: 50%;
    color: #0682b6;
    font:
        700 18px/1 Helvetica,
        sans-serif;
    transition: 0.25s ease;
}
.wh-challenges .wh-challenge-list article:hover .wh-challenge-icon {
    border-color: #0682b6;
    background: #0682b6;
    color: #fff;
    box-shadow: 0 8px 22px rgba(6, 130, 182, 0.2);
}
.wh-challenges .wh-challenge-list h3 {
    margin: 0 0 8px;
    color: #071522;
    font-size: 18px;
    line-height: 1.3;
}
.wh-challenges .wh-challenge-list p {
    margin: 0;
    color: #667482;
    font-size: 14px;
    line-height: 1.55;
}
@media (max-width: 900px) {
    .industry-solution-page .is-hero__content {
        width: min(680px, calc(100% - 40px));
        margin-inline: 20px;
    }
    .wh-challenges .wh-two-col {
        grid-template-columns: 1fr;
    }
    .wh-challenges .wh-photo {
        max-width: 560px;
        margin-inline: auto;
    }
}
@media (max-width: 600px) {
    .wh-challenges .wh-challenge-list {
        grid-template-columns: 1fr;
    }
    .wh-challenges .wh-challenge-list article {
        min-height: auto;
    }
    .wh-challenges .wh-photo {
        height: auto;
        aspect-ratio: 1/1;
    }
}

/* Warehouse solution — six-step delivery timeline */
.wh-process {
    min-height: 860px;
}
.wh-process .wh-heading {
    margin-bottom: 26px;
}
.wh-process .wh-heading h2 {
    font-size: clamp(32px, 3vw, 44px);
    text-transform: none;
}
.wh-process-grid {
    position: relative;
    width: 52%;
    max-width: 650px;
    padding-left: 26px;
    border: 0;
}
.wh-process-grid:before {
    content: "";
    position: absolute;
    top: 22px;
    bottom: 22px;
    left: 7px;
    width: 1px;
    background: linear-gradient(180deg, #52c7f1, rgba(82, 199, 241, 0.18));
}
.wh-process-grid article,
.wh-process-grid article:last-child {
    position: relative;
    display: block;
    padding: 13px 0 13px 22px;
    border: 0;
    background: transparent;
    box-shadow: none;
}
.wh-process-grid article:hover {
    padding-left: 28px;
    border: 0;
    background: transparent;
    box-shadow: none;
}
.wh-process-grid article > div {
    display: block;
}
.wh-timeline-dot {
    position: absolute;
    top: 22px;
    left: -23px;
    width: 11px;
    height: 11px;
    border: 2px solid #52c7f1;
    border-radius: 50%;
    background: #071f30;
    box-shadow: 0 0 0 5px rgba(82, 199, 241, 0.1);
    transition: 0.3s ease;
}
.wh-process-grid article:hover .wh-timeline-dot,
.wh-process-grid article.is-visible .wh-timeline-dot {
    background: #52c7f1;
    box-shadow: 0 0 0 7px rgba(82, 199, 241, 0.16);
}
.wh-process-grid h3 {
    margin: 0 0 5px;
    font-size: 20px;
    line-height: 1.25;
}
.wh-process-grid p {
    max-width: 590px;
    margin: 0;
    color: #d8e2e8;
    font-size: 14px;
    line-height: 1.5;
}
.wh-process-grid .wh-reveal {
    opacity: 0;
    transform: translateX(-30px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease,
        padding-left 0.3s ease;
}
.wh-process-grid .wh-reveal.is-visible {
    opacity: 1;
    transform: none;
}
.wh-process-grid .wh-reveal:nth-child(1) {
    transition-delay: 0.06s;
}
.wh-process-grid .wh-reveal:nth-child(2) {
    transition-delay: 0.17s;
}
.wh-process-grid .wh-reveal:nth-child(3) {
    transition-delay: 0.28s;
}
.wh-process-grid .wh-reveal:nth-child(4) {
    transition-delay: 0.39s;
}
.wh-process-grid .wh-reveal:nth-child(5) {
    transition-delay: 0.5s;
}
.wh-process-grid .wh-reveal:nth-child(6) {
    transition-delay: 0.61s;
}
.wh-process-note {
    width: 52%;
    max-width: 650px;
    margin: 24px 0 0;
    padding: 17px 20px;
    border-left: 3px solid #52c7f1;
    background: rgba(4, 31, 47, 0.5);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
    backdrop-filter: blur(8px);
}
@media (max-width: 900px) {
    .wh-process {
        min-height: 820px;
    }
    .wh-process .wh-heading,
    .wh-process-grid,
    .wh-process-note {
        width: 68%;
    }
}
@media (max-width: 600px) {
    .wh-process {
        min-height: auto;
    }
    .wh-process .wh-heading,
    .wh-process-grid,
    .wh-process-note {
        width: 100%;
    }
    .wh-process-grid {
        padding-left: 24px;
    }
    .wh-process-grid article,
    .wh-process-grid article:last-child {
        padding: 13px 0 13px 18px;
    }
    .wh-process-grid article:hover {
        padding-left: 22px;
    }
    .wh-process-note {
        font-size: 14px;
    }
}

/* Warehouse solution: robot facts and evidence-led value section */
.wh-robot-facts {
    display: grid;
    gap: 0;
    margin: 18px 0 26px;
}
.wh-robot-facts > div {
    padding: 14px 0;
    border-bottom: 1px solid #e0e8ed;
}
.wh-robot-facts dt {
    margin-bottom: 6px;
    color: #71808e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.wh-robot-facts dd {
    margin: 0;
    color: #1c2d3b;
    font-size: 15px;
    line-height: 1.55;
}
.wh-robot-facts ul {
    margin: 0;
    padding: 0;
    gap: 6px;
}
.wh-robot-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.wh-robot-actions a {
    margin: 0;
}
.wh-robot-actions .wh-demo-link {
    background: var(--wh-blue);
    color: #fff;
}
.wh-robot-actions .wh-demo-link:hover {
    background: #045f88;
    border-color: #045f88;
}
.wh-values {
    background: #f3f7fa;
    color: #071421;
    overflow: hidden;
}
.wh-values:before {
    display: none;
}
.wh-values .wh-heading {
    position: relative;
    z-index: 1;
    max-width: 1050px;
}
.wh-values .wh-heading h2 {
    color: #071421;
    font-size: clamp(30px, 3.1vw, 46px);
    white-space: nowrap;
}
.wh-values .wh-heading > span {
    color: #627384;
}
.wh-values .wh-heading .wh-kicker {
    color: var(--wh-blue);
}
.wh-value-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.wh-value-grid article,
.wh-value-grid article:last-child {
    min-height: 205px;
    padding: 28px;
    background: #fff;
    border: 1px solid #dce6ec;
    color: #071421;
    box-shadow: 0 12px 35px rgba(17, 54, 76, 0.055);
    backdrop-filter: none;
}
.wh-value-grid article:hover {
    background: #fff;
    border-color: var(--wh-blue);
    box-shadow: 0 20px 45px rgba(6, 130, 182, 0.13);
}
.wh-value-grid article > span {
    border-color: rgba(6, 130, 182, 0.28);
    background: #edf8fc;
    color: var(--wh-blue);
}
.wh-value-grid h3 {
    margin: 24px 0 10px;
    color: #071421;
    font-size: 19px;
}
.wh-value-grid p {
    color: #5d6d7c;
    font-size: 14px;
    line-height: 1.62;
}
.wh-roi {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 54px;
    margin-top: 26px;
    padding: 38px 42px;
    background: #fff;
    border: 1px solid #dce6ec;
    box-shadow: 0 18px 48px rgba(17, 54, 76, 0.06);
}
.wh-roi-copy h3 {
    margin: 7px 0 14px;
    font-size: 25px;
    line-height: 1.25;
}
.wh-roi-copy > p:not(.wh-kicker) {
    margin: 0 0 22px;
    color: #647484;
    font-size: 14px;
    line-height: 1.7;
}
.wh-roi-copy a {
    display: inline-flex;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--wh-blue);
    color: var(--wh-blue);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}
.wh-roi-data {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.wh-roi-data span,
.wh-roi-data strong {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 11px 14px;
    border: 1px solid #e0e8ed;
    background: #f8fafb;
    color: #354958;
    font-size: 13px;
}
.wh-roi-data strong {
    grid-column: 1/-1;
    border-color: rgba(6, 130, 182, 0.34);
    background: #edf8fc;
    color: var(--wh-blue);
    font-size: 14px;
}
@media (max-width: 900px) {
    .wh-values .wh-heading h2 {
        white-space: normal;
    }
    .wh-value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .wh-roi {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}
@media (max-width: 600px) {
    .wh-value-grid {
        grid-template-columns: 1fr;
    }
    .wh-roi {
        padding: 28px 22px;
    }
    .wh-roi-data {
        grid-template-columns: 1fr;
    }
    .wh-roi-data strong {
        grid-column: auto;
    }
    .wh-robot-actions {
        flex-direction: column;
    }
    .wh-robot-actions a {
        align-self: stretch;
        text-align: center;
    }
}

/* Keep warehouse headings orderly on desktop */
@media (min-width: 901px) {
    .industry-solution-page .wh-heading h2,
    .industry-solution-page .wh-copy h2,
    .industry-solution-page .wh-robot-copy h2,
    .industry-solution-page .wh-value h2,
    .industry-solution-page .wh-scenes h2,
    .industry-solution-page .is-final h2 {
        white-space: nowrap;
    }
}
.industry-solution-page .is-hero h1 {
    width: max-content;
    max-width: none;
    font-size: clamp(38px, 3.8vw, 54px);
    line-height: 1.06;
    white-space: nowrap;
}
.industry-solution-page .is-hero__content > span {
    max-width: 590px;
    font-size: 15px;
    line-height: 1.6;
}

.bg-post {
    background: #fff;
}

@media (max-width: 900px) {
    .industry-solution-page .is-hero h1 {
        width: auto;
        max-width: 680px;
        font-size: clamp(36px, 6vw, 48px);
        white-space: normal;
    }
}
@media (max-width: 600px) {
    .industry-solution-page .is-hero h1 {
        font-size: 39px;
        white-space: normal;
    }
}

/* Global navigation and supporting-copy readability */
@media (min-width: 901px) {
    .main-nav > a,
    .main-nav .nav-dropdown__trigger,
    .main-nav .product-mega__trigger {
        font-size: 13.5px;
    }

    .nav-dropdown__menu {
        top: calc(100% + 9px);
        left: 50%;
        width: 250px;
        padding: 16px 12px;
        border: 0;
        border-radius: 5px;
        background: rgba(255, 255, 255, 0.99);
        box-shadow: 0 18px 42px rgba(7, 17, 31, 0.16);
        transform: translate(-50%, 9px);
    }

    .nav-dropdown__menu::before {
        content: "";
        position: absolute;
        top: -9px;
        left: 50%;
        width: 18px;
        height: 18px;
        background: #fff;
        border-radius: 2px 0 0;
        transform: translateX(-50%) rotate(45deg);
    }

    .main-nav .nav-dropdown__menu a {
        position: relative;
        z-index: 1;
        gap: 0;
        padding: 11px 13px;
        color: #526075;
        border-radius: 3px;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.35;
    }

    .main-nav .nav-dropdown__menu a > span {
        display: none;
    }

    .main-nav .nav-dropdown__menu a:hover {
        padding-left: 17px;
        color: var(--blue);
        background: rgba(6, 130, 182, 0.055);
    }

    .main-nav .nav-dropdown__menu .nav-dropdown__all {
        margin-top: 9px;
        padding-top: 14px;
    }
}

@media (min-width: 901px) and (max-width: 1200px) {
    .main-nav > a,
    .main-nav .nav-dropdown__trigger,
    .main-nav .product-mega__trigger {
        font-size: 11.5px;
    }
}

body :where(p, li, label, input, textarea, select) {
    font-size: max(14px, 1em) !important;
}

body small {
    font-size: max(12px, 1em) !important;
}

.toc-style-minimal .toc_title {
    border-top: 1px solid #ddd;
    padding: 10px 0;
}

.toc-style-minimal .toc_list {
}

/* Product mega menu: clearer categories and five products per row */
@media (min-width: 901px) {
    .product-mega__menu {
        grid-template-columns: minmax(250px, 18vw) minmax(0, 1fr);
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .product-mega__categories p {
        margin-bottom: 22px;
        font-size: 12px;
    }

    .product-mega__categories button {
        padding: 18px 16px;
        font-size: 16px;
        line-height: 1.25;
    }

    .product-mega__categories button b {
        font-size: 12px;
    }

    .main-nav .product-mega__categories > a {
        font-size: 13px;
    }

    .product-mega__heading small {
        font-size: 12px !important;
    }

    .product-mega__heading h2 {
        font-size: 27px;
    }

    .main-nav .product-mega__heading a {
        font-size: 13px;
    }

    .product-mega__grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: clamp(10px, 1vw, 18px);
    }

    .product-mega__card > span {
        height: min(37vh, 340px);
        padding: clamp(14px, 1.5vw, 24px);
    }

    .product-mega__card strong {
        margin-top: 15px;
        font-size: 17px;
        line-height: 1.25;
    }

    .product-mega__card small {
        margin-top: 7px;
        font-size: 12px !important;
    }
}

@media (min-width: 901px) and (max-width: 1200px) {
    .product-mega__menu {
        grid-template-columns: 210px minmax(0, 1fr);
        padding-right: 24px;
        padding-left: 24px;
    }

    .product-mega__categories button {
        font-size: 14px;
    }
    .product-mega__card > span {
        height: min(32vh, 280px);
    }
    .product-mega__card strong {
        font-size: 15px;
    }
}

/* Warehouse solution — interactive six-step delivery journey */
.wh-process {
    min-height: auto;
    padding: 50px 0 56px;
    overflow: hidden;
    color: #091626;
    background: #fff;
}

.wh-process::before {
    display: none;
}

.wh-process-shell {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.wh-process-heading {
    margin-bottom: 22px;
    text-align: center;
}

.wh-process-heading h2 {
    margin: 0;
    color: #091626;
    font-size: clamp(31px, 3vw, 44px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.wh-process-heading p {
    max-width: 760px;
    margin: 13px auto 0;
    color: #5d6d7d;
    font-size: 16px !important;
    line-height: 1.55;
}

.wh-process-nav {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: start;
    gap: 8px;
}

.wh-process-nav::before {
    position: absolute;
    z-index: -1;
    top: 27px;
    right: 8.5%;
    left: 8.5%;
    height: 1px;
    background: #d4dde6;
    content: "";
}

.wh-process-step {
    appearance: none;
    display: grid;
    justify-items: center;
    gap: 11px;
    padding: 0 5px 17px;
    border: 0;
    color: #8794a3;
    background: transparent;
    cursor: pointer;
    font: inherit;
    transition:
        color 0.28s ease,
        transform 0.28s ease;
}

.wh-process-step > span {
    display: grid;
    width: 55px;
    height: 55px;
    place-items: center;
    border: 1px solid #cbd6e1;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 7px #fff;
    transition:
        border-color 0.28s ease,
        background 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
}

.wh-process-step svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wh-process-step b {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.wh-process-step:hover,
.wh-process-step.is-active {
    color: #0682b6;
}

.wh-process-step:hover > span {
    transform: translateY(-2px);
}

.wh-process-step.is-active > span {
    border-color: #0682b6;
    color: #fff;
    background: #0682b6;
    box-shadow:
        0 0 0 7px #fff,
        0 9px 25px rgba(6, 130, 182, 0.22);
    transform: translateY(-3px);
}

.wh-process-story {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.82fr);
    align-items: center;
    min-height: 315px;
    max-width: 1040px;
    margin: 16px auto 0;
    column-gap: clamp(24px, 3.2vw, 44px);
    overflow: visible;
    border: 0;
    background: transparent;
}

.wh-process-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}

.wh-process-copy h3 {
    margin: 0 0 15px;
    color: #0682b6;
    font-size: clamp(29px, 3vw, 39px);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.025em;
}

.wh-process-copy ul {
    max-width: 540px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #344456;
    font-size: 16px !important;
    line-height: 1.58;
}

.wh-process-copy li {
    position: relative;
    margin: 0 0 9px;
    padding-left: 23px;
    font-size: inherit !important;
}

.wh-process-copy li::before {
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0682b6;
    content: "";
}

.wh-process-story figure {
    width: min(100%, 410px);
    height: 308px;
    min-height: 0;
    margin: 0;
    justify-self: end;
    overflow: hidden;
    background: transparent;
}

.wh-process-story img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    transition:
        opacity 0.22s ease,
        transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.wh-process-story.is-switching .wh-process-copy,
.wh-process-story.is-switching img {
    opacity: 0;
    transform: translateY(8px) scale(1.015);
}

@media (max-width: 900px) {
    .wh-process {
        padding: 60px 0;
    }
    .wh-process-shell {
        width: min(100% - 30px, 720px);
    }
    .wh-process-heading {
        margin-bottom: 27px;
        text-align: left;
    }
    .wh-process-heading p {
        margin-left: 0;
    }
    .wh-process-nav {
        grid-template-columns: repeat(6, 100px);
        justify-content: start;
        padding: 6px 6px 13px;
        overflow-x: auto;
        scrollbar-width: thin;
    }
    .wh-process-nav::before {
        right: auto;
        left: 55px;
        width: 500px;
    }
    .wh-process-story {
        grid-template-columns: 1fr;
        margin-top: 18px;
        row-gap: 24px;
    }
    .wh-process-copy {
        min-height: 280px;
        padding: 18px 4px;
    }
    .wh-process-story figure,
    .wh-process-story img {
        width: 100%;
        min-height: 0;
        height: auto;
        aspect-ratio: 4 / 3;
    }
    .wh-process-story figure {
        height: auto;
        justify-self: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wh-process-step,
    .wh-process-step > span,
    .wh-process-copy,
    .wh-process-story img {
        transition: none;
    }
}
/* Warehouse solution refinements — August 2026 */
.wh-process-step b {
    font-size: 11px !important;
    letter-spacing: 0.015em !important;
    white-space: nowrap !important;
}
.wh-value-heading {
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
}
.wh-value-heading > p,
.wh-roi-copy > p {
    color: #0682b6;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    margin: 0 0 10px;
}
.wh-value-heading h2 {
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.08;
    margin: 0;
    color: #071323;
}
.wh-benefit-band {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background: #0682b6;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 0 34px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(6, 130, 182, 0.18);
}
.wh-benefit-band article {
    min-height: 180px;
    padding: 28px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.55s ease var(--delay),
        transform 0.55s ease var(--delay),
        background 0.25s ease;
}
.wh-benefit-band article:last-child {
    border-right: 0;
}
.wh-benefit-band article:hover {
    background: #0574a3;
}
.wh-benefit-band article.is-visible {
    opacity: 1;
    transform: none;
}
.wh-benefit-band span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    font-size: 17px;
    margin-bottom: 24px;
}
.wh-benefit-band h3 {
    font-size: 17px;
    line-height: 1.25;
    margin: 0 0 9px;
    color: #fff;
}
.wh-benefit-band p {
    font-size: 14px;
    line-height: 1.45;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}
.wh-roi-simple {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    background: #fff;
    border: 1px solid #dce6eb;
    border-radius: 4px;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(7, 19, 35, 0.07);
}
.wh-roi-copy h3 {
    font-size: 27px;
    line-height: 1.1;
    margin: 0 0 12px;
    color: #071323;
}
.wh-roi-copy span {
    font-size: 15px;
    line-height: 1.55;
    color: #677485;
}
.wh-roi-fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.wh-roi-fields label {
    font-size: 13px;
    font-weight: 700;
    color: #536173;
}
.wh-roi-fields input {
    width: 100%;
    margin-top: 7px;
    padding: 12px 13px;
    border: 1px solid #d7e0e6;
    border-radius: 3px;
    font:
        600 15px Helvetica,
        Arial,
        sans-serif;
    color: #071323;
    background: #f8fafb;
    box-sizing: border-box;
}
.wh-roi-fields input:focus {
    outline: 2px solid rgba(6, 130, 182, 0.2);
    border-color: #0682b6;
}
.wh-roi-results {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #dce6eb;
    padding-top: 22px;
}
.wh-roi-results div {
    padding-right: 18px;
}
.wh-roi-results small {
    display: block;
    font-size: 12px;
    color: #7b8795;
    margin-bottom: 7px;
}
.wh-roi-results strong {
    font-size: 20px;
    color: #0682b6;
}
.wh-roi-note {
    grid-column: 2;
    font-size: 12px;
    color: #8a95a1;
    margin: 0;
}
.wh-deployment-partner {
    position: relative;
    isolation: isolate;
    min-height: 760px;
    display: flex;
    align-items: center;
    background: url("assets/warehouse-process-06.png") center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}
.wh-deployment-partner:before {
    content: "";
    position: absolute;
    inset: -12px;
    z-index: -2;
    background: inherit;
    filter: blur(3px);
    transform: scale(1.03);
}
.wh-deployment-partner:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        90deg,
        rgba(3, 17, 29, 0.92) 0%,
        rgba(3, 17, 29, 0.78) 46%,
        rgba(3, 17, 29, 0.22) 100%
    );
}
.wh-deployment-partner .is-container {
    width: 100%;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}
.wh-partner-heading h2 {
    font-size: clamp(36px, 4vw, 62px);
    line-height: 1.08;
    margin: 0;
    color: #fff;
}
.wh-partner-heading em {
    font-style: normal;
    color: #37b9ec;
}
.wh-partner-list {
    display: flex;
    flex-direction: column;
}
.wh-partner-list article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    opacity: 0;
    transform: translateX(24px);
    transition:
        opacity 0.55s ease var(--delay),
        transform 0.55s ease var(--delay);
}
.wh-partner-list article.is-visible {
    opacity: 1;
    transform: none;
}
.wh-partner-list article > span {
    color: #37b9ec;
    font-size: 12px;
    font-weight: 800;
    padding-top: 5px;
}
.wh-partner-list h3 {
    font-size: 20px;
    margin: 0 0 6px;
    color: #fff;
}
.wh-partner-list p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}
.wh-cta .is-container {
    max-width: 980px;
    text-align: center;
}
.wh-cta .is-container > p {
    max-width: 820px;
    margin: 18px auto 28px;
    font-size: 17px;
    line-height: 1.65;
}
.wh-cta h2 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.08;
    margin: 0 auto;
}
@media (max-width: 1100px) {
    .wh-benefit-band {
        grid-template-columns: repeat(3, 1fr);
    }
    .wh-benefit-band article {
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }
    .wh-roi-simple {
        grid-template-columns: 1fr;
    }
    .wh-roi-results,
    .wh-roi-note {
        grid-column: 1;
    }
    .wh-deployment-partner .is-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}
@media (max-width: 720px) {
    .wh-process-step b {
        font-size: 10px !important;
    }
    .wh-benefit-band {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    .wh-benefit-band article {
        min-width: 220px;
        scroll-snap-align: start;
    }
    .wh-roi-fields {
        grid-template-columns: 1fr;
    }
    .wh-roi-results {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .wh-deployment-partner {
        min-height: auto;
        padding: 90px 0;
    }
    .wh-deployment-partner:after {
        background: rgba(3, 17, 29, 0.82);
    }
    .wh-partner-heading h2 {
        font-size: 36px;
    }
    .wh-cta .is-container > p {
        font-size: 15px;
    }
}

/* Warehouse typography and interaction polish */
.industry-solution-page,
.industry-solution-page button,
.industry-solution-page input,
.industry-solution-page textarea,
.industry-solution-page select {
    font-family: Helvetica, Arial, sans-serif !important;
}
.wh-process-step {
    min-width: 0 !important;
}
.wh-process-step b {
    font-size: 16px !important;
    line-height: 1.15 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
}
.wh-process-copy h3 {
    font-size: clamp(22px, 2vw, 30px) !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
}
.wh-roi-calculate {
    grid-column: 1/-1;
    justify-self: start;
    margin-top: 3px;
    padding: 12px 19px;
    border: 1px solid #0682b6;
    border-radius: 3px;
    background: #0682b6;
    color: #fff;
    font:
        700 14px Helvetica,
        Arial,
        sans-serif;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}
.wh-roi-calculate:hover {
    background: #056f9c;
    transform: translateY(-1px);
}
.wh-roi-calculate b {
    margin-left: 8px;
}
.wh-deployment-partner .is-container {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
}
.wh-partner-heading h2 {
    margin: 0;
    line-height: 1.08;
    letter-spacing: -0.025em;
    white-space: normal;
}
.wh-partner-heading h2 span {
    display: block;
    color: #fff;
    font-size: clamp(40px, 4vw, 60px);
    font-weight: 700;
}
.wh-partner-heading h2 em {
    display: block;
    margin-top: 12px;
    color: #37b9ec;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 600;
    line-height: 1.2;
}
.wh-partner-list article {
    display: block;
    padding: 21px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}
.wh-partner-list h3 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 8px;
}
.wh-partner-list p {
    font-size: 16px;
    line-height: 1.58;
}
.wh-cta .is-container > p {
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 400 !important;
    text-align: center !important;
}
.industry-solution-page .wh-kicker {
    display: none !important;
}
@media (max-width: 1100px) {
    .wh-deployment-partner .is-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .wh-partner-heading h2 {
        white-space: normal;
    }
}
@media (max-width: 720px) {
    .wh-process-step b {
        font-size: 13px !important;
    }
    .wh-process-copy h3 {
        font-size: 21px !important;
        white-space: normal !important;
    }
    .wh-partner-heading h2 span {
        font-size: 38px;
    }
    .wh-partner-heading h2 em {
        font-size: 21px;
    }
    .wh-partner-list h3 {
        font-size: 20px;
    }
    .wh-partner-list p {
        font-size: 15px;
    }
}

/* Warehouse partner cards and simplified robot details */
.wh-deployment-partner {
    min-height: auto !important;
    padding: 88px 0 96px !important;
    display: block !important;
    background: #f4f7f9 !important;
    color: #071323 !important;
}
.wh-deployment-partner:before,
.wh-deployment-partner:after {
    display: none !important;
}
.wh-deployment-partner .is-container {
    display: block !important;
    width: min(1240px, calc(100% - 48px)) !important;
}
.wh-partner-heading {
    text-align: center;
    margin-bottom: 42px;
}
.wh-partner-heading h2 span {
    color: #071323 !important;
    font-size: clamp(38px, 3.3vw, 52px) !important;
}
.wh-partner-heading h2 em {
    margin-top: 8px !important;
    color: #0682b6 !important;
    font-size: clamp(22px, 2vw, 29px) !important;
}
.wh-partner-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px !important;
}
.wh-partner-list article {
    position: relative;
    isolation: isolate;
    min-height: 300px;
    padding: 30px !important;
    display: flex !important;
    align-items: flex-end;
    border: 0 !important;
    border-radius: 18px;
    overflow: hidden;
    background-image: var(--partner-image);
    background-position: center;
    background-size: cover;
    box-shadow: 0 18px 42px rgba(8, 32, 52, 0.13);
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.6s ease var(--delay),
        transform 0.6s ease var(--delay),
        box-shadow 0.3s ease !important;
}
.wh-partner-list article:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        180deg,
        rgba(4, 48, 83, 0.18) 5%,
        rgba(3, 38, 68, 0.78) 100%
    );
    backdrop-filter: blur(1.25px);
    transition: background 0.3s ease;
}
.wh-partner-list article.is-visible {
    opacity: 1;
    transform: none;
}
.wh-partner-list article:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 52px rgba(8, 32, 52, 0.2);
}
.wh-partner-list article:hover:before {
    background: linear-gradient(
        180deg,
        rgba(4, 48, 83, 0.12),
        rgba(3, 38, 68, 0.72)
    );
}
.wh-partner-list article:nth-child(5) {
    grid-column: 1/-1;
    width: calc(50% - 11px);
    justify-self: center;
}
.wh-partner-list article > div {
    position: relative;
    z-index: 1;
    max-width: 580px;
}
.wh-partner-list h3 {
    margin: 0 0 10px !important;
    color: #fff !important;
    font-size: clamp(24px, 2vw, 31px) !important;
    line-height: 1.15 !important;
}
.wh-partner-list p {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 17px !important;
    line-height: 1.55 !important;
}

.wh-robot-copy h3 {
    font-size: 42px !important;
    margin-bottom: 18px !important;
}
.wh-robot-copy .wh-robot-desc,
.wh-robot-copy .wh-robot-environment {
    margin: 0 0 12px;
    color: #34495b;
    font-size: 18px !important;
    line-height: 1.55 !important;
}
.wh-robot-copy .wh-robot-environment {
    color: #647586;
}
.wh-robot-copy .wh-robot-points {
    margin: 18px 0 28px !important;
    gap: 11px !important;
}
.wh-robot-copy .wh-robot-points li {
    font-size: 17px !important;
    line-height: 1.5 !important;
    padding-left: 24px !important;
}
.wh-robot-copy .wh-robot-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.wh-robot-copy .wh-robot-actions a {
    font-size: 15px !important;
}

@media (max-width: 760px) {
    .wh-deployment-partner {
        padding: 68px 0 74px !important;
    }
    .wh-deployment-partner .is-container {
        width: min(100% - 28px, 1240px) !important;
    }
    .wh-partner-list {
        grid-template-columns: 1fr !important;
    }
    .wh-partner-list article,
    .wh-partner-list article:nth-child(5) {
        grid-column: auto;
        width: 100%;
        min-height: 270px;
    }
    .wh-partner-list h3 {
        font-size: 24px !important;
    }
    .wh-partner-list p {
        font-size: 16px !important;
    }
    .wh-robot-copy h3 {
        font-size: 36px !important;
    }
    .wh-robot-copy .wh-robot-desc,
    .wh-robot-copy .wh-robot-environment,
    .wh-robot-copy .wh-robot-points li {
        font-size: 16px !important;
    }
}
/* Warehouse locations: five compact cards on one row */
.industry-solution-page .wh-scenes .is-container {
    width: min(1480px, calc(100% - 48px));
}
.industry-solution-page .wh-scene-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}
.industry-solution-page .wh-scene-grid article {
    height: 230px;
    border-radius: 4px;
}
.industry-solution-page .wh-scene-grid article:after {
    inset: 38% 0 0;
}
.industry-solution-page .wh-scene-grid h3 {
    left: 0;
    right: 0;
    bottom: 20px;
    padding: 0 10px;
    text-align: center;
    font-size: 22px;
    line-height: 1.15;
}
@media (max-width: 1100px) {
    .industry-solution-page .wh-scene-grid {
        grid-template-columns: repeat(5, minmax(190px, 1fr));
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .industry-solution-page .wh-scene-grid article {
        height: 210px;
    }
}
@media (max-width: 600px) {
    .industry-solution-page .wh-scenes .is-container {
        width: min(100% - 28px, 1480px);
    }
    .industry-solution-page .wh-scene-grid {
        grid-template-columns: repeat(5, 190px);
    }
    .industry-solution-page .wh-scene-grid article {
        height: 200px;
    }
    .industry-solution-page .wh-scene-grid h3 {
        font-size: 20px;
    }
}
