:root {
    --ink: #07111f;
    --ink-2: #102033;
    --muted: #617085;
    --line: rgba(125, 150, 180, .22);
    --paper: #f6f9fc;
    --white: #fff;
    --cyan: #19d6ff;
    --blue: #246bff;
    --violet: #725cff;
    --green: #1ed7a6;
    --radius: 8px;
    --shadow: 0 22px 70px rgba(7, 17, 31, .14);
}

.solution-card {
    display: block;
    overflow: hidden;
    color: var(--ink);
    text-decoration: none;
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.solution-card:hover,
.solution-card:focus-visible {
    transform: translateY(-5px);
    border-color: rgba(36, 107, 255, .28);
    color: var(--ink);
}

.solution-card-image {
    display: block;
    width: calc(100% + 2.7rem);
    height: 160px;
    margin: -1.35rem -1.35rem 1.2rem;
    object-fit: cover;
    background: #eef4f8;
}

.education-solution {
    background:
        linear-gradient(180deg, #f6f9fc 0%, #fff 48%, #eef5f8 100%);
}

.solution-deep-dive {
    display: none;
    scroll-margin-top: 96px;
}

.solution-deep-dive:target,
.solution-deep-dive.is-active {
    display: block;
}

.education-hero-grid,
.education-workflow-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(1.2rem, 3vw, 2rem);
    align-items: center;
}

.education-copy h2,
.education-workflow-panel h2,
.education-case-heading h2 {
    font-size: clamp(1.9rem, 3.4vw, 3.7rem);
    line-height: 1.05;
    font-weight: 850;
}

.education-copy p {
    max-width: 700px;
    color: var(--muted);
    font-size: 1.06rem;
}

.education-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    margin-top: 1.5rem;
}

.education-metrics div {
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.education-metrics strong,
.education-metrics span {
    display: block;
}

.education-metrics strong {
    color: var(--blue);
    font-size: 1.18rem;
    font-weight: 850;
}

.education-metrics span {
    color: var(--muted);
    font-size: .84rem;
}

.education-visual-stack {
    display: grid;
    gap: .9rem;
}

.education-main-visual,
.education-support-visual,
.education-gallery img,
.education-case-card img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.education-main-visual {
    height: clamp(240px, 32vw, 430px);
    box-shadow: var(--shadow);
}

.education-support-visual {
    height: 150px;
    border: 1px solid var(--line);
}

.education-capability-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin: clamp(2rem, 5vw, 4rem) 0;
}

.education-capability-card,
.education-workflow-panel,
.education-case-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .86);
    box-shadow: var(--shadow);
}

.education-capability-card {
    min-height: 230px;
    padding: 1.25rem;
}

.education-capability-card i {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 50%;
    color: #03101d;
    background: linear-gradient(135deg, var(--green), #fff);
}

.education-capability-card h3,
.education-case-card h3 {
    margin: 0 0 .55rem;
    font-size: 1.08rem;
    font-weight: 850;
}

.education-capability-card p,
.education-case-card p {
    margin: 0;
    color: var(--muted);
}

.education-workflow-panel {
    padding: clamp(1.4rem, 3vw, 2rem);
}

.education-workflow-panel ul {
    display: grid;
    gap: .85rem;
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}

.education-workflow-panel li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: .75rem;
    align-items: start;
    color: var(--ink-2);
}

.education-workflow-panel li i {
    color: var(--green);
}

.education-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
}

.education-gallery img {
    height: 180px;
    background: #fff;
    border: 1px solid var(--line);
}

.education-gallery img:first-child {
    grid-column: 1 / -1;
    height: 260px;
}

.education-case-heading {
    margin-top: clamp(2rem, 5vw, 4rem);
}

.education-case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.education-case-card {
    overflow: hidden;
}

.education-case-card img {
    height: 210px;
    border-radius: 0;
}

.education-case-card div {
    padding: 1.2rem;
}

@media (max-width: 991.98px) {
    .education-hero-grid,
    .education-workflow-grid {
        grid-template-columns: 1fr;
    }

    .education-capability-grid,
    .education-case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .solution-card-image {
        height: 140px;
    }

    .education-metrics,
    .education-capability-grid,
    .education-case-grid,
    .education-gallery {
        grid-template-columns: 1fr;
    }

    .education-gallery img,
    .education-gallery img:first-child,
    .education-case-card img {
        height: 220px;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.glass-nav {
    background: rgba(246, 249, 252, .76);
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 40px rgba(7, 17, 31, .06);
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: .72rem;
    color: var(--ink);
}

.brand-lockup strong {
    display: block;
    line-height: 1;
    letter-spacing: .08em;
}

.brand-lockup small {
    display: block;
    color: var(--muted);
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.brand-mark {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: #03101d;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan), #fff 45%, var(--green));
    box-shadow: 0 10px 30px rgba(25, 214, 255, .35);
}

.brand-logo-img {
    display: inline-grid;
    width: 96px;
    min-width: 96px;
    place-items: center;
}

.brand-logo-img img {
    width: 100%;
    height: auto;
    filter: brightness(0);
}

.brand-logo-img + span strong {
    display: none;
}

.navbar .nav-link {
    color: rgba(7, 17, 31, .72);
    font-weight: 650;
    padding-inline: .82rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--blue);
}

.btn {
    border-radius: 999px;
    font-weight: 750;
    padding: .78rem 1.15rem;
}

.btn-sm {
    padding: .5rem .85rem;
}

.btn-primary {
    border: 0;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #fff;
}

.glow-btn {
    box-shadow: 0 16px 36px rgba(36, 107, 255, .28);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, .52);
}

.hero-section {
    position: relative;
    isolation: isolate;
    padding: 7rem 0 4rem;
    color: #fff;
    background:
        radial-gradient(circle at 76% 18%, rgba(25, 214, 255, .32), transparent 26rem),
        radial-gradient(circle at 15% 82%, rgba(114, 92, 255, .28), transparent 24rem),
        linear-gradient(135deg, #03070d 0%, #07172a 46%, #03101d 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .28;
    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000 10%, transparent 88%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
    color: var(--cyan);
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    font-size: .78rem;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    background: currentColor;
}

.display-title,
.page-hero h1,
.product-hero h1 {
    letter-spacing: 0;
    line-height: .98;
    font-weight: 850;
}

.display-title {
    max-width: 780px;
    font-size: clamp(2.45rem, 5.2vw, 5rem);
}

.text-rotator {
    color: var(--cyan);
}

.hero-lead {
    max-width: 650px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 1.6rem;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .8rem;
    max-width: 560px;
    margin-top: 2rem;
}

.hero-metrics div {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(12px);
}

.hero-metrics strong {
    display: block;
    font-size: 1.45rem;
}

.hero-metrics span {
    color: rgba(255, 255, 255, .68);
    font-size: .86rem;
}

.hero-device-wrap {
    position: relative;
    min-height: 460px;
}

.hero-device {
    width: 100%;
    animation: floatDevice 5s ease-in-out infinite;
}

.floating-spec {
    position: absolute;
    padding: .72rem 1rem;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    color: #fff;
    background: rgba(3, 12, 24, .56);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
    font-weight: 750;
}

.floating-spec i {
    color: var(--cyan);
    margin-right: .4rem;
}

.spec-one { top: 18%; left: 1%; }
.spec-two { right: 6%; top: 24%; }
.spec-three { left: 20%; bottom: 12%; }

@keyframes floatDevice {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

.section-pad {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 2.4rem;
    text-align: center;
}

.section-heading.left {
    margin-inline: 0;
    text-align: left;
}

.section-heading h2,
.dark-band h2,
.trust-band h2 {
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    line-height: 1.05;
    font-weight: 850;
}

.section-heading p,
.muted-copy,
.trust-band p {
    color: var(--muted);
    font-size: 1.06rem;
}

.dark-band {
    color: #fff;
    background:
        radial-gradient(circle at 82% 0%, rgba(25, 214, 255, .18), transparent 22rem),
        linear-gradient(135deg, #07111f, #0b1f33 54%, #05101d);
}

.dark-band p,
.dark-band .muted-copy {
    color: rgba(255, 255, 255, .7);
}

.product-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.product-listing {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card,
.solution-card,
.feature-card,
.stat-card,
.contact-panel,
.inquiry-form,
.download-card,
.gallery-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .78);
    box-shadow: var(--shadow);
}

.product-card {
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(25, 214, 255, .5);
    box-shadow: 0 28px 80px rgba(7, 17, 31, .18);
}

.product-media {
    display: grid;
    height: 250px;
    place-items: center;
    background: linear-gradient(135deg, #eef7ff, #f8fbff);
    overflow: hidden;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform .35s ease;
}

.product-card:hover .product-media img {
    transform: scale(1.05);
}

.product-body {
    padding: 1.25rem;
}

.pill,
.chip-row span,
.gallery-panel span,
.contact-panel span {
    display: inline-flex;
    border-radius: 999px;
    align-items: center;
    border: 1px solid rgba(36, 107, 255, .18);
    background: rgba(36, 107, 255, .08);
    color: #1744a5;
    font-size: .78rem;
    font-weight: 800;
}

.pill {
    padding: .35rem .62rem;
}

.product-body h3 {
    margin: .8rem 0 .45rem;
    font-size: 1.55rem;
    font-weight: 850;
}

.product-body p {
    color: var(--muted);
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.chip-row span {
    padding: .34rem .56rem;
}

.chip-row.light span {
    color: #fff;
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .1);
}

.text-link {
    color: var(--blue);
    font-weight: 850;
}

.dark-band .text-link {
    color: var(--cyan);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.solution-grid.wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-card {
    padding: 1.35rem;
    color: var(--ink);
    scroll-margin-top: 120px;
}

.dark-band .solution-card {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.solution-icon,
.feature-card i {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 50%;
    color: #03101d;
    background: linear-gradient(135deg, var(--cyan), #fff);
}

.solution-card > span {
    color: var(--blue);
    font-weight: 850;
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .1em;
}

.dark-band .solution-card > span {
    color: var(--cyan);
}

.solution-card h3,
.feature-card h2 {
    margin: .5rem 0;
    font-size: 1.35rem;
    font-weight: 850;
}

.solution-card p,
.feature-card p {
    color: var(--muted);
}

.dark-band .solution-card p {
    color: rgba(255, 255, 255, .7);
}

.outcome-list {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.outcome-list b {
    padding: .38rem .55rem;
    border-radius: 999px;
    background: rgba(25, 214, 255, .1);
    color: inherit;
    font-size: .78rem;
}

.feature-matrix {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}

.feature-matrix article {
    padding: 1.15rem;
    min-height: 174px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .82);
}

.feature-matrix i {
    color: var(--blue);
    font-size: 1.55rem;
}

.feature-matrix h3 {
    margin-top: .65rem;
    font-size: 1.05rem;
    font-weight: 850;
}

.feature-matrix p {
    margin-bottom: 0;
    color: var(--muted);
}

.trust-band {
    background: linear-gradient(180deg, #f6f9fc, #e9f7fb);
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
}

.trust-logos span {
    padding: 1.1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    font-weight: 850;
}

blockquote {
    margin: 1.2rem 0 0;
    padding: 1.2rem;
    border-left: 4px solid var(--cyan);
    color: var(--ink-2);
    background: #fff;
    border-radius: var(--radius);
}

.page-shell {
    padding-top: 72px;
}

.page-hero {
    position: relative;
    padding: clamp(5rem, 10vw, 9rem) 0;
    color: #fff;
    background:
        radial-gradient(circle at 82% 0%, rgba(25, 214, 255, .25), transparent 24rem),
        linear-gradient(135deg, #04101d, #10243b);
}

.page-hero.compact {
    padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.page-hero h1 {
    max-width: 920px;
    font-size: clamp(2.15rem, 4.6vw, 4.3rem);
}

.page-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, .74);
    font-size: 1.18rem;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding: .9rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.search-box {
    display: flex;
    flex: 1 1 300px;
    align-items: center;
    gap: .65rem;
    padding: .75rem 1rem;
    border-radius: 999px;
    background: #f1f5f9;
}

.search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.filter-pills button {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .55rem .8rem;
    background: #fff;
    color: var(--ink);
    font-weight: 800;
}

.filter-pills button.active {
    border-color: transparent;
    background: var(--ink);
    color: #fff;
}

.product-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    overflow: hidden;
    color: #fff;
    background: #04101d;
}

.product-hero-bg {
    position: absolute;
    inset: 0;
    opacity: .28;
    background-position: center;
    background-size: cover;
    filter: saturate(1.05);
}

.product-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 16, 29, .96), rgba(4, 16, 29, .72), rgba(4, 16, 29, .4));
}

.product-hero .container-xl {
    position: relative;
    z-index: 1;
}

.product-hero h1 {
    font-size: clamp(2.35rem, 5.8vw, 5.4rem);
}

.product-hero p {
    color: rgba(255, 255, 255, .78);
    font-size: 1.2rem;
}

.product-visual {
    display: grid;
    min-height: 380px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
}

.product-visual img {
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
}

.feature-card {
    padding: 1.25rem;
}

.spec-accordion .accordion-item,
.spec-accordion .accordion-button {
    color: #fff;
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .07);
}

.spec-accordion .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.spec-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
}

.spec-table div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .9rem 1rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
}

.spec-table span {
    color: rgba(255, 255, 255, .74);
    text-align: right;
}

.specs-page {
    background: linear-gradient(180deg, #f6f9fc 0%, #edf4f8 42%, #f6f9fc 100%);
}

.specs-overview {
    padding-bottom: 1rem;
}

.specs-jump-list span {
    color: var(--muted);
}

.specs-jump-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .8rem;
}

.specs-jump-list a {
    display: flex;
    min-height: 92px;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: #fff;
    font-weight: 850;
    transition: transform .25s ease, border-color .25s ease;
}

.specs-jump-list a:hover {
    transform: translateY(-4px);
    border-color: rgba(36, 107, 255, .45);
}

.specs-jump-list span {
    display: block;
    font-size: .76rem;
    font-weight: 760;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.specs-catalog {
    padding-top: 1rem;
}

.spec-product-panel {
    margin-bottom: 1.2rem;
    padding: 1.15rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    color: #fff;
    background: linear-gradient(135deg, #07111f, #133052);
    box-shadow: var(--shadow);
    scroll-margin-top: 120px;
}

.spec-product-heading {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) auto;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.spec-product-thumb {
    display: grid;
    width: 220px;
    height: 150px;
    place-items: center;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #eef7ff, #f9fbff);
}

.spec-product-thumb img {
    max-width: 100%;
    max-height: 132px;
    object-fit: contain;
}

.spec-product-heading h2 {
    margin: .2rem 0 .4rem;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.spec-product-heading p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .74);
}

.spec-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: flex-end;
}

.spec-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
}

.spec-detail-grid div {
    display: grid;
    gap: .25rem;
    padding: .8rem .9rem;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
}

.spec-detail-grid strong {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.spec-detail-grid span {
    color: rgba(255, 255, 255, .76);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    height: 430px;
    object-fit: contain;
    background: linear-gradient(135deg, #eef7ff, #f8fbff);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.gallery-panel {
    padding: 1.3rem;
}

.gallery-panel.accent {
    color: #fff;
    background: linear-gradient(135deg, var(--ink), #173b5c);
}

.gallery-panel span {
    margin: .25rem;
    padding: .4rem .6rem;
}

.support-strip {
    background: #eaf6fb;
}

.promotion-video-section {
    background: #f7f9fc;
}

.promotion-video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
    max-width: 1180px;
    margin: 0 auto;
}

.promotion-video-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.promotion-video-card video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #07111f;
    object-fit: contain;
}

.promotion-video-copy {
    padding: 1rem 1.1rem 1.15rem;
}

.promotion-video-copy span {
    display: inline-flex;
    margin-bottom: .55rem;
    padding: .3rem .55rem;
    border: 1px solid rgba(36, 107, 255, .18);
    border-radius: 999px;
    color: #1744a5;
    background: rgba(36, 107, 255, .08);
    font-size: .76rem;
    font-weight: 800;
}

.promotion-video-copy h2 {
    margin: 0 0 .4rem;
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 850;
    line-height: 1.25;
}

.promotion-video-copy p {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.55;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
}

.download-grid.full {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.download-card {
    display: flex;
    min-height: 145px;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    color: var(--ink);
    transition: transform .25s ease, border-color .25s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: rgba(36, 107, 255, .45);
}

.download-card i {
    color: var(--blue);
    font-size: 1.8rem;
}

.download-card span {
    font-weight: 850;
}

.download-card small {
    color: var(--muted);
}

.comparison-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.comparison-row article {
    padding: 1.3rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
}

.stat-card {
    padding: 1.5rem;
    min-height: 180px;
}

.stat-card strong {
    display: block;
    font-size: clamp(2.7rem, 4vw, 3.5rem);
    line-height: 1;
    color: var(--blue);
}

.stat-card span {
    color: var(--muted);
    font-weight: 750;
}

.contact-panel {
    padding: 1.3rem;
}

.inquiry-form {
    position: relative;
    overflow: hidden;
    padding: clamp(1.25rem, 3vw, 2rem);
    border-color: rgba(36, 107, 255, .16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 251, 255, .94)),
        linear-gradient(135deg, rgba(36, 107, 255, .08), rgba(25, 214, 255, .1));
    box-shadow: 0 24px 70px rgba(7, 17, 31, .1);
}

.inquiry-form::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
}

.inquiry-form::after {
    content: "";
    position: absolute;
    inset: 6px 0 auto;
    height: 110px;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(36, 107, 255, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36, 107, 255, .055) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to bottom, #000, transparent);
}

.inquiry-form > * {
    position: relative;
    z-index: 1;
}

.form-heading {
    max-width: 560px;
    margin-bottom: 1.35rem;
}

.form-heading span {
    display: inline-flex;
    margin-bottom: .55rem;
    color: var(--blue);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.form-heading h2 {
    margin: 0 0 .45rem;
    color: var(--ink);
    font-size: clamp(1.35rem, 2.4vw, 1.9rem);
    line-height: 1.12;
    font-weight: 850;
}

.form-heading p {
    margin: 0;
    color: var(--muted);
}

.dealer-inquiry-form {
    border-color: rgba(30, 215, 166, .34);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(242, 255, 251, .94)),
        linear-gradient(135deg, rgba(30, 215, 166, .1), rgba(0, 163, 163, .08));
    box-shadow: 0 24px 72px rgba(8, 78, 63, .12);
}

.dealer-inquiry-form::before {
    background: linear-gradient(90deg, var(--green), #00a3a3, var(--cyan));
}

.dealer-inquiry-form .form-heading span {
    color: #087b67;
}

.inquiry-form label {
    display: grid;
    gap: .48rem;
    color: var(--ink-2);
    font-size: .9rem;
    font-weight: 850;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea,
.newsletter input {
    width: 100%;
    border: 1px solid rgba(125, 150, 180, .28);
    border-radius: var(--radius);
    padding: .9rem 1rem;
    background-color: rgba(255, 255, 255, .92);
    color: var(--ink);
    outline: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.inquiry-form input,
.inquiry-form select {
    min-height: 54px;
}

.inquiry-form textarea {
    min-height: 172px;
    resize: vertical;
}

.inquiry-form select {
    appearance: none;
    padding-right: 3rem;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--blue) 50%),
        linear-gradient(135deg, var(--blue) 50%, transparent 50%);
    background-position:
        calc(100% - 20px) 50%,
        calc(100% - 14px) 50%;
    background-repeat: no-repeat;
    background-size: 6px 6px;
}

.inquiry-form input:hover,
.inquiry-form select:hover,
.inquiry-form textarea:hover {
    border-color: rgba(36, 107, 255, .34);
    background-color: #fff;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    border-color: var(--blue);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(36, 107, 255, .1), inset 0 1px 0 rgba(255, 255, 255, .8);
}

.inquiry-form .btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding-inline: 1.25rem;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.inquiry-form .btn:hover {
    transform: translateY(-2px);
}

.inquiry-form .btn-outline-dark {
    border-color: rgba(16, 32, 51, .28);
    background: rgba(255, 255, 255, .72);
    color: var(--ink-2);
}

.inquiry-form .btn-outline-dark:hover {
    border-color: rgba(36, 107, 255, .32);
    background: rgba(36, 107, 255, .08);
    color: var(--blue);
}

.dealer-inquiry-form input,
.dealer-inquiry-form select,
.dealer-inquiry-form textarea {
    border-color: rgba(30, 215, 166, .28);
    background-color: rgba(250, 255, 253, .96);
}

.dealer-inquiry-form select {
    background-image:
        linear-gradient(45deg, transparent 50%, #087b67 50%),
        linear-gradient(135deg, #087b67 50%, transparent 50%);
}

.dealer-inquiry-form input:hover,
.dealer-inquiry-form select:hover,
.dealer-inquiry-form textarea:hover,
.dealer-inquiry-form input:focus,
.dealer-inquiry-form select:focus,
.dealer-inquiry-form textarea:focus {
    border-color: var(--green);
}

.dealer-inquiry-form input:focus,
.dealer-inquiry-form select:focus,
.dealer-inquiry-form textarea:focus {
    box-shadow: 0 0 0 4px rgba(30, 215, 166, .13), inset 0 1px 0 rgba(255, 255, 255, .8);
}

.dealer-inquiry-form .glow-btn {
    border-color: transparent;
    color: #03101d;
    background: linear-gradient(135deg, var(--green), #7df0d2);
    box-shadow: 0 14px 36px rgba(30, 215, 166, .26);
}

.dealer-inquiry-form .btn-outline-dark {
    border-color: rgba(30, 215, 166, .48);
    color: #075747;
}

.dealer-inquiry-form .btn-outline-dark:hover {
    color: #03101d;
    background: rgba(30, 215, 166, .12);
}

.contact-panel h2 {
    font-size: 1.5rem;
    font-weight: 850;
}

.contact-panel p {
    display: flex;
    gap: .65rem;
    align-items: center;
}

.contact-panel span {
    margin: .25rem;
    padding: .42rem .62rem;
}

.site-footer {
    padding: 4rem 0 1.4rem;
    color: rgba(255, 255, 255, .76);
    background: #03070d;
}

.footer-brand {
    color: #fff;
}

.footer-copy {
    max-width: 360px;
    margin: 1rem 0;
}

.site-footer h2 {
    color: #fff;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.site-footer a {
    display: block;
    margin: .45rem 0;
    color: rgba(255, 255, 255, .72);
}

.site-footer a:hover {
    color: var(--cyan);
}

.social-link {
    display: grid !important;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
}

.newsletter {
    display: flex;
    gap: .5rem;
}

.newsletter input {
    border-color: rgba(255, 255, 255, .18);
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .88rem;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #25d366;
    box-shadow: 0 18px 40px rgba(37, 211, 102, .35);
    font-size: 1.55rem;
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-3px);
}

.is-hidden {
    display: none !important;
}

@media (max-width: 1199.98px) {
    .solution-grid.wide,
    .download-grid.full,
    .promotion-video-grid,
    .specs-jump-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: .8rem;
        padding: .85rem;
        border-radius: var(--radius);
        background: rgba(255, 255, 255, .94);
    }

    .hero-section {
        min-height: auto !important;
        padding-top: 7rem;
    }

    .hero-device-wrap {
        min-height: 360px;
    }

    .product-showcase,
    .product-listing,
    .solution-grid,
    .feature-matrix,
    .comparison-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .spec-table,
    .spec-detail-grid {
        grid-template-columns: 1fr;
    }

    .spec-product-heading {
        grid-template-columns: 160px minmax(0, 1fr);
    }

    .spec-product-thumb {
        width: 160px;
        height: 112px;
    }

    .spec-product-thumb img {
        max-height: 98px;
    }

    .spec-product-actions {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .display-title {
        font-size: clamp(2.15rem, 10vw, 3.25rem);
    }

    .hero-metrics,
    .specs-jump-list,
    .product-showcase,
    .product-listing,
    .solution-grid,
    .solution-grid.wide,
    .feature-matrix,
    .comparison-row,
    .download-grid,
    .promotion-video-grid,
    .download-grid.full {
        grid-template-columns: 1fr;
    }

    .inquiry-form {
        padding: 1.2rem;
    }

    .form-heading {
        margin-bottom: 1rem;
    }

    .inquiry-form input,
    .inquiry-form select {
        min-height: 50px;
    }

    .inquiry-form .btn {
        width: 100%;
    }

    .floating-spec {
        position: static;
        display: inline-flex;
        margin: .35rem;
        font-size: .86rem;
    }

    .hero-device-wrap {
        min-height: auto;
        text-align: center;
    }

    .product-hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .product-visual {
        min-height: 260px;
    }

    .gallery-grid img {
        height: 280px;
    }

    .spec-product-heading {
        grid-template-columns: 1fr;
    }

    .spec-product-thumb {
        width: 100%;
        max-width: 280px;
        height: 170px;
    }

    .spec-product-thumb img {
        max-height: 150px;
    }

    .newsletter {
        flex-direction: column;
    }

    .footer-bottom {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* Horion Global-inspired homepage treatment */
.global-home {
    background: #fff;
}

.global-home .glass-nav {
    background: rgba(255, 255, 255, .92);
}

.global-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: #f4f6f9;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background-color: #f4f6f9;
    background-image: var(--slide-image);
    background-position: calc(100% + 260px) bottom;
    background-repeat: no-repeat;
    background-size: auto 76%;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity .9s ease, transform 1.4s ease;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(246, 249, 252, .94) 0%, rgba(246, 249, 252, .88) 34%, rgba(246, 249, 252, .38) 55%, rgba(246, 249, 252, 0) 76%);
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-slide.ghost {
    z-index: 0;
}

.hero-copy {
    position: relative;
    z-index: 1;
    width: min(500px, 100%);
    padding-top: 5rem;
}

.hero-copy h1,
.hero-copy h2 {
    margin-bottom: 1rem;
    color: #111;
    font-size: clamp(2.15rem, 3.7vw, 4.1rem);
    font-weight: 650;
    line-height: 1.08;
    letter-spacing: 0;
}

.hero-copy p {
    max-width: 455px;
    color: #333;
    font-size: clamp(.98rem, 1.18vw, 1.16rem);
    line-height: 1.55;
}

.hero-copy.light-copy h2,
.hero-copy.light-copy p {
    color: #111;
    text-shadow: none;
}

.learn-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: 1.15rem;
    color: #0b63ff;
    font-size: 1rem;
    font-style: normal;
    font-weight: 650;
}

.learn-link:hover {
    color: #000;
}

.hero-pagination {
    position: absolute;
    left: 50%;
    bottom: 2.2rem;
    z-index: 2;
    display: flex;
    gap: .7rem;
    transform: translateX(-50%);
}

.hero-pagination span {
    width: 42px;
    height: 3px;
    border-radius: 99px;
    background: rgba(20, 30, 45, .25);
}

.hero-pagination span.active {
    background: #111;
}

.home-products,
.home-showcase,
.home-solutions,
.home-features {
    padding: clamp(3.4rem, 6vw, 5.6rem) 0;
    background: #fff;
}

.global-section-title {
    margin-bottom: 2rem;
    text-align: center;
}

.global-section-title h2 {
    margin: 0;
    color: #111;
    font-size: clamp(1.85rem, 2.8vw, 3.2rem);
    font-weight: 650;
    line-height: 1.1;
}

.recommend-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: #e4e7eb;
}

.recommend-card {
    position: relative;
    min-height: 360px;
    padding: 2rem;
    overflow: hidden;
    color: #111;
    background: #f5f6f8;
}

.recommend-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--card-image);
    background-position: var(--card-position, center bottom);
    background-size: var(--card-size, cover);
    background-repeat: no-repeat;
    transform-origin: var(--card-origin, center center);
    transition: transform .55s ease;
}

.recommend-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .12) 58%, rgba(255, 255, 255, .0));
}

.recommend-card:hover::before {
    transform: scale(1.06);
}

.recommend-card span,
.recommend-card h3,
.recommend-card em {
    position: relative;
    z-index: 1;
}

.recommend-card span {
    display: block;
    margin-bottom: .55rem;
    color: #666;
    font-size: .86rem;
    font-weight: 600;
}

.recommend-card h3 {
    max-width: 340px;
    color: #111;
    font-size: clamp(1.35rem, 1.75vw, 2rem);
    font-weight: 650;
    line-height: 1.12;
}

.recommend-card em {
    display: inline-flex;
    margin-top: .45rem;
    color: #0b63ff;
    font-style: normal;
    font-weight: 650;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease;
}

.recommend-card:hover em {
    opacity: 1;
    transform: translateY(0);
}

.showcase-stack {
    display: grid;
    gap: 1rem;
}

.showcase-panel {
    position: relative;
    display: flex;
    min-height: 520px;
    align-items: center;
    overflow: hidden;
    border-radius: 0;
    background: #f4f5f7;
}

.showcase-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--panel-image);
    background-position: center;
    background-size: cover;
    transition: transform .8s ease;
}

.showcase-panel:nth-child(even)::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .46));
}

.showcase-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .32), rgba(255, 255, 255, .08));
}

.showcase-panel:hover::before {
    transform: scale(1.035);
}

.showcase-panel > div {
    position: relative;
    z-index: 1;
    width: min(520px, 92%);
    margin-left: clamp(1.4rem, 6vw, 5rem);
}

.showcase-panel:nth-child(even) {
    justify-content: flex-end;
}

.showcase-panel:nth-child(even) > div {
    margin-right: clamp(1.4rem, 6vw, 5rem);
    margin-left: 0;
    color: #fff;
}

.showcase-panel span {
    color: #0b63ff;
    font-weight: 650;
}

.showcase-panel:nth-child(even) span,
.showcase-panel:nth-child(even) .learn-link {
    color: #8feeff;
}

.showcase-panel h3 {
    margin: .5rem 0;
    font-size: clamp(1.9rem, 3.6vw, 3.8rem);
    font-weight: 650;
    line-height: 1.02;
    letter-spacing: 0;
}

.showcase-panel p {
    color: #333;
    font-size: 1.12rem;
}

.showcase-panel:nth-child(even) p {
    color: rgba(255, 255, 255, .82);
}

.home-solutions {
    background: #f5f6f8;
}

.solution-image-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.solution-image-card {
    position: relative;
    display: flex;
    min-height: 430px;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 1.4rem;
    color: #fff;
    background: #111;
}

.solution-image-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--solution-image);
    background-position: center;
    background-size: cover;
    transition: transform .45s ease;
}

.solution-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, .74));
}

.solution-image-card:hover::before {
    transform: scale(1.06);
}

.solution-image-card i,
.solution-image-card h3 {
    position: relative;
    z-index: 1;
}

.solution-image-card i {
    margin-bottom: .65rem;
    font-size: 2rem;
}

.solution-image-card h3 {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 650;
}

.home-features {
    background: #fff;
}

.feature-ribbon {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #e5e7eb;
    border-left: 1px solid #e5e7eb;
}

.feature-ribbon article {
    min-height: 190px;
    padding: 1.6rem;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
    transition: background .25s ease, transform .25s ease;
}

.feature-ribbon article:hover {
    background: #f4f8ff;
    transform: translateY(-4px);
}

.feature-ribbon i {
    color: #0b63ff;
    font-size: 2rem;
}

.feature-ribbon h3 {
    margin-top: 1rem;
    color: #111;
    font-size: 1.2rem;
    font-weight: 650;
}

.partner-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .32)),
        url("https://overseafile.horion.com/offical_site/PC/pages/home/sw1-1.webp") center / cover;
}

.partner-section .container-xl {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: end;
}

.partner-copy h2 {
    font-size: clamp(2rem, 3.8vw, 4rem);
    font-weight: 650;
    line-height: 1.05;
}

.partner-copy p {
    max-width: 720px;
    color: rgba(255, 255, 255, .82);
    font-size: 1.12rem;
}

.partner-section .learn-link {
    color: #fff;
}

.partner-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.partner-stats div {
    min-height: 150px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
}

.partner-stats strong {
    display: block;
    margin-bottom: .55rem;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 650;
}

.partner-stats span {
    color: rgba(255, 255, 255, .78);
}

@media (max-width: 1199.98px) {
    .solution-image-grid,
    .feature-ribbon,
    .feature-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .brand-logo-img {
        width: 82px;
        min-width: 82px;
    }

    .global-hero {
        min-height: 760px;
    }

    .hero-copy {
        padding-top: 6rem;
    }

    .recommend-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partner-section .container-xl {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .global-hero {
        min-height: 690px;
    }

    .hero-slide {
        align-items: flex-start;
        padding-top: 4.5rem;
        background-color: #eef2f7;
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: auto 62%;
    }

    .hero-slide::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(246, 249, 252, .92) 0%, rgba(246, 249, 252, .78) 34%, rgba(246, 249, 252, .1) 68%);
    }

    .hero-slide .container-xl {
        position: relative;
        z-index: 1;
    }

    .hero-copy h1,
    .hero-copy h2 {
        max-width: 310px;
        font-size: clamp(1.85rem, 7vw, 2.25rem);
        line-height: 1.08;
    }

    .hero-copy p {
        max-width: 330px;
        font-size: 1rem;
    }

    .recommend-grid,
    .solution-image-grid,
    .feature-ribbon,
    .partner-stats {
        grid-template-columns: 1fr;
    }

    .recommend-card {
        min-height: 310px;
    }

    .showcase-panel {
        min-height: 480px;
        align-items: flex-start;
        padding-top: 2rem;
    }

    .showcase-panel::after,
    .showcase-panel:nth-child(even)::after {
        background: linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .4), rgba(255, 255, 255, .04));
    }

    .showcase-panel:nth-child(even) > div {
        margin-left: 1.4rem;
        color: #111;
    }

    .showcase-panel:nth-child(even) p {
        color: #333;
    }

    .solution-image-card {
        min-height: 320px;
    }
}

/* Horion Global reference pass */
:root {
    --global-blue: #0058ff;
    --global-nav-height: 76px;
    --global-max: 1360px;
}

body {
    background: #fff;
}

.horion-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1050;
    background: #fff;
    border-bottom: 1px solid rgba(10, 20, 35, .08);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .05);
}

.nav-locale {
    position: absolute;
    top: .45rem;
    left: max(1rem, calc((100vw - var(--global-max)) / 2));
    display: flex;
    gap: .72rem;
    color: #111;
    font-size: .72rem;
    line-height: 1;
    z-index: 2;
}

.nav-locale a,
.nav-locale span {
    color: #111;
    font-weight: 600;
}

.nav-locale a {
    opacity: .45;
}

.nav-shell {
    max-width: var(--global-max);
    min-height: var(--global-nav-height);
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2.4rem);
    padding: .75rem 1rem .45rem;
    margin: 0 auto;
}

.global-logo {
    display: inline-flex;
    align-items: center;
    width: 128px;
    min-width: 128px;
}

.global-logo img,
.footer-logo img {
    width: 100%;
    height: auto;
}

.global-menu {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.global-menu-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(.4rem, 1.4vw, 1.3rem);
    margin: 0 auto;
}

.global-menu-item {
    position: static;
}

.global-menu-link {
    border: 0;
    background: transparent;
    color: #111;
    text-decoration: none;
    padding: .7rem .4rem;
    font-size: .96rem;
    font-weight: 600;
    line-height: 1;
}

.global-menu-link:hover,
.global-menu-link.active,
.global-menu-item.is-open .global-menu-link {
    color: var(--global-blue);
}

.global-menu-link[data-mega-toggle]::after {
    content: "";
    display: inline-block;
    width: .36rem;
    height: .36rem;
    margin-left: .48rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-.16rem) rotate(45deg);
    transition: transform .2s ease;
}

.global-menu-item:hover .global-menu-link[data-mega-toggle]::after,
.global-menu-item.is-open .global-menu-link[data-mega-toggle]::after {
    transform: translateY(.05rem) rotate(225deg);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: .9rem;
}

.nav-icon-link,
.nav-language {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: #111;
    font-weight: 700;
}

.nav-icon-link:hover {
    color: var(--global-blue);
    background: #f2f5fa;
}

.contact-sales-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: .55rem 1.05rem;
    border-radius: 99px;
    color: #fff;
    background: #111;
    font-size: .9rem;
    font-weight: 700;
    white-space: nowrap;
}

.contact-sales-link:hover {
    color: #fff;
    background: var(--global-blue);
}

.nav-menu-button {
    display: none;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: #111;
    font-size: 1.9rem;
}

.mega-panel {
    position: fixed;
    top: var(--global-nav-height);
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--global-nav-height));
    overflow: auto;
    padding: 2rem max(1rem, calc((100vw - var(--global-max)) / 2)) 2.25rem;
    background: rgba(255, 255, 255, .98);
    border-top: 1px solid #eef0f4;
    box-shadow: 0 30px 70px rgba(7, 17, 31, .14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
}

.global-menu-item:hover > .mega-panel,
.global-menu-item:focus-within > .mega-panel,
.global-menu-item.is-open > .mega-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.mega-heading span {
    color: #111;
    font-size: 1.18rem;
    font-weight: 700;
}

.mega-heading a {
    color: var(--global-blue);
    font-weight: 700;
}

.mega-product-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.mega-product-group {
    min-width: 0;
}

.mega-group-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    color: #111;
    font-weight: 700;
}

.mega-group-title:hover {
    color: var(--global-blue);
}

.mega-product-list,
.visual-menu-grid {
    display: grid;
    gap: .8rem;
}

.mega-product-list {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.mega-product-list.is-single {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mega-product-card,
.visual-menu-card {
    position: relative;
    overflow: hidden;
    color: #111;
    background: #f5f6f8;
    min-height: 148px;
}

.mega-product-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    gap: .9rem;
    padding: 1rem;
}

.mega-product-card img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    transition: transform .25s ease;
}

.mega-product-card span {
    font-weight: 700;
    overflow-wrap: anywhere;
}

.mega-product-card:hover img,
.visual-menu-card:hover img {
    transform: scale(1.06);
}

.visual-menu-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.visual-menu-grid.three-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visual-menu-grid.four-up {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.visual-menu-card {
    display: flex;
    min-height: 210px;
    align-items: flex-end;
    padding: 1rem;
}

.visual-menu-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.visual-menu-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, .72));
}

.visual-menu-card span {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
}

.global-home {
    padding-top: var(--global-nav-height);
    background: #fff;
}

.global-hero {
    position: relative;
    height: calc(100vh - var(--global-nav-height));
    min-height: 650px;
    overflow: hidden;
    background: #f4f6f9;
}

.hero-stage,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    display: flex;
    align-items: center;
    background-color: #f4f6f9;
    background-image: var(--slide-image);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: auto 100%;
    opacity: 0;
    transform: scale(1.025);
    transition: opacity .75s ease, transform 1.2s ease;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(245, 247, 250, .96) 0%, rgba(245, 247, 250, .88) 32%, rgba(245, 247, 250, .28) 58%, rgba(245, 247, 250, 0) 78%);
}

.hero-slide.light-copy::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .48) 38%, rgba(0, 0, 0, .08) 76%);
}

.hero-slide.active {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
}

.hero-slide.ghost {
    z-index: 0;
}

.hero-slide .container-xl {
    position: relative;
    z-index: 1;
}

.hero-copy {
    width: min(590px, 100%);
}

.hero-sales-link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    margin-bottom: 1.25rem;
    padding: .5rem 1.05rem;
    border-radius: 999px;
    color: #fff;
    background: #111;
    font-weight: 700;
}

.hero-sales-link:hover {
    color: #fff;
    background: var(--global-blue);
}

.hero-copy h1,
.hero-copy h2 {
    color: #111;
    font-size: clamp(2.15rem, 3.55vw, 3.9rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0;
}

.hero-copy p {
    max-width: 540px;
    color: #333;
    font-size: clamp(1rem, 1.25vw, 1.2rem);
    line-height: 1.65;
}

.hero-slide.light-copy .hero-copy h2,
.hero-slide.light-copy .hero-copy p {
    color: #fff;
}

.learn-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: 1.15rem;
    color: var(--global-blue);
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
}

.learn-link:hover {
    color: #111;
}

.hero-slide.light-copy .learn-link,
.partner-section .learn-link {
    color: #fff;
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: .8rem;
    transform: translateX(-50%);
}

.hero-arrow {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(17, 17, 17, .18);
    border-radius: 50%;
    color: #111;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(12px);
}

.hero-arrow:hover {
    color: #fff;
    background: #111;
}

.hero-pagination {
    position: static;
    left: auto;
    bottom: auto;
    z-index: auto;
    display: flex;
    align-items: center;
    gap: .68rem;
    transform: none;
}

.hero-pagination button {
    width: 42px;
    height: 3px;
    border: 0;
    border-radius: 99px;
    background: rgba(20, 30, 45, .25);
    padding: 0;
}

.hero-pagination button.active {
    background: #111;
}

.home-section-head {
    width: min(var(--global-max), calc(100% - 2rem));
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 auto 2rem;
}

.home-section-head h2 {
    margin: 0;
    color: #111;
    font-size: clamp(1.9rem, 3vw, 3.4rem);
    font-weight: 600;
    line-height: 1.08;
}

.home-section-head a {
    color: var(--global-blue);
    font-weight: 700;
    white-space: nowrap;
}

.home-recommend,
.home-showcase,
.home-solutions,
.home-features {
    padding: clamp(3.5rem, 6.5vw, 6rem) 0;
    background: #fff;
}

.recommend-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: #e2e5eb;
}

.recommend-card {
    position: relative;
    min-height: 385px;
    padding: 2rem;
    overflow: hidden;
    color: #111;
    background: #f5f6f8;
}

.recommend-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--card-image);
    background-position: var(--card-position, center bottom);
    background-size: var(--card-size, cover);
    background-repeat: no-repeat;
    transform-origin: var(--card-origin, center center);
    transition: transform .45s ease;
}

.recommend-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .26) 55%, rgba(255, 255, 255, 0));
}

.recommend-card:hover::before {
    transform: scale(1.06);
}

.recommend-card span,
.recommend-card h3,
.recommend-card em {
    position: relative;
    z-index: 1;
}

.recommend-card span {
    display: block;
    color: #666;
    font-size: .86rem;
    font-weight: 700;
}

.recommend-card h3 {
    max-width: 360px;
    margin: .55rem 0 0;
    color: #111;
    font-size: clamp(1.35rem, 1.8vw, 2rem);
    font-weight: 600;
    line-height: 1.12;
}

.recommend-card em {
    display: inline-flex;
    margin-top: .65rem;
    color: var(--global-blue);
    font-style: normal;
    font-weight: 700;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
}

.recommend-card:hover em {
    opacity: 1;
    transform: translateY(0);
}

.showcase-stack {
    width: min(var(--global-max), calc(100% - 2rem));
    display: grid;
    gap: 1rem;
    margin: 0 auto;
}

.showcase-panel {
    position: relative;
    display: flex;
    min-height: 520px;
    align-items: center;
    overflow: hidden;
    background: #f4f5f7;
}

.showcase-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--panel-image);
    background-position: center;
    background-size: cover;
    transition: transform .7s ease;
}

.showcase-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .34), rgba(255, 255, 255, .04));
}

.showcase-panel:nth-child(even)::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .52));
}

.showcase-panel:hover::before {
    transform: scale(1.035);
}

.showcase-panel > div {
    position: relative;
    z-index: 1;
    width: min(540px, 92%);
    margin-left: clamp(1.4rem, 6vw, 5rem);
}

.showcase-panel:nth-child(even) {
    justify-content: flex-end;
}

.showcase-panel:nth-child(even) > div {
    margin-right: clamp(1.4rem, 6vw, 5rem);
    margin-left: 0;
    color: #fff;
}

.showcase-panel span {
    color: var(--global-blue);
    font-weight: 700;
}

.showcase-panel:nth-child(even) span,
.showcase-panel:nth-child(even) .learn-link {
    color: #fff;
}

.showcase-panel h3 {
    margin: .55rem 0;
    font-size: clamp(1.9rem, 3.7vw, 4rem);
    font-weight: 600;
    line-height: 1.02;
}

.showcase-panel p {
    color: #333;
    font-size: 1.12rem;
}

.showcase-panel:nth-child(even) p {
    color: rgba(255, 255, 255, .82);
}

.home-solutions {
    background: #f5f6f8;
}

.solution-switcher {
    width: min(var(--global-max), calc(100% - 2rem));
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 1rem;
    margin: 0 auto;
}

.solution-tab-list {
    display: grid;
    align-content: start;
    gap: .65rem;
}

.solution-tab-list button {
    display: flex;
    align-items: center;
    gap: .8rem;
    min-height: 72px;
    border: 1px solid #e1e5ec;
    background: #fff;
    color: #111;
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.solution-tab-list button i {
    color: var(--global-blue);
    font-size: 1.5rem;
}

.solution-tab-list button.active,
.solution-tab-list button:hover {
    border-color: #111;
    background: #111;
    color: #fff;
}

.solution-tab-list button.active i,
.solution-tab-list button:hover i {
    color: #fff;
}

.solution-panel-wrap {
    position: relative;
    min-height: 520px;
}

.solution-panel {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: clamp(1.5rem, 4vw, 3rem);
    color: #fff;
    background: #111;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}

.solution-panel.active {
    opacity: 1;
    pointer-events: auto;
}

.solution-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--solution-image);
    background-position: center;
    background-size: cover;
    transition: transform .6s ease;
}

.solution-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .76));
}

.solution-panel.active:hover::before {
    transform: scale(1.04);
}

.solution-panel > div {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.solution-panel span {
    display: inline-block;
    margin-bottom: .5rem;
    font-weight: 700;
}

.solution-panel h3 {
    margin: 0 0 .55rem;
    font-size: clamp(2rem, 4vw, 4.2rem);
    font-weight: 600;
}

.solution-panel p {
    color: rgba(255, 255, 255, .82);
    font-size: 1.1rem;
}

.feature-ribbon {
    width: min(var(--global-max), calc(100% - 2rem));
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 auto;
    border-top: 1px solid #e5e7eb;
    border-left: 1px solid #e5e7eb;
}

.feature-ribbon article {
    min-height: 190px;
    padding: 1.6rem;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
    transition: background .2s ease, transform .2s ease;
}

.feature-ribbon article:hover {
    background: #f4f8ff;
    transform: translateY(-4px);
}

.feature-ribbon i {
    color: var(--global-blue);
    font-size: 2rem;
}

.feature-ribbon h3 {
    margin-top: 1rem;
    color: #111;
    font-size: 1.2rem;
    font-weight: 600;
}

.apple-features {
    padding: clamp(4.5rem, 8vw, 7.25rem) 0;
    background: #f5f5f7;
}

.feature-heading {
    width: min(900px, calc(100% - 2rem));
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.feature-heading span {
    display: block;
    margin-bottom: .7rem;
    color: #6e6e73;
    font-size: .95rem;
    font-weight: 700;
}

.feature-heading h2 {
    margin: 0;
    color: #1d1d1f;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.02;
}

.feature-heading p {
    max-width: 620px;
    margin: 1rem auto 0;
    color: #6e6e73;
    font-size: clamp(1.08rem, 2vw, 1.45rem);
    line-height: 1.35;
}

.feature-showcase-grid {
    width: min(var(--global-max), calc(100% - 2rem));
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin: 0 auto;
}

.feature-showcase-grid article {
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: clamp(1.4rem, 2.4vw, 2rem);
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 8px;
    background:
        radial-gradient(circle at 84% 12%, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0) 34%),
        linear-gradient(180deg, #fff, #fbfbfd);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .045);
    transition: box-shadow .22s ease, transform .22s ease;
}

.feature-showcase-grid article::after {
    content: "";
    position: absolute;
    inset: auto -32px -42px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .035);
    filter: blur(2px);
}

.feature-showcase-grid article:hover {
    box-shadow: 0 28px 70px rgba(0, 0, 0, .075);
    transform: translateY(-3px);
}

.feature-icon {
    position: relative;
    z-index: 1;
    display: inline-grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 8px;
    color: #1d1d1f;
    background: #f5f5f7;
}

.feature-icon i {
    font-size: 1.9rem;
    line-height: 1;
}

.feature-showcase-grid article > div {
    position: relative;
    z-index: 1;
}

.feature-showcase-grid h3 {
    margin: 0 0 .55rem;
    color: inherit;
    font-size: clamp(1.12rem, 1.45vw, 1.45rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.12;
}

.feature-showcase-grid p {
    max-width: 30rem;
    margin: 0;
    color: #6e6e73;
    font-size: 1rem;
    line-height: 1.48;
}

.partner-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .28)),
        url("https://overseafile.horion.com/offical_site/PC/pages/home/sw1-1.webp") center / cover;
}

.partner-section .container-xl {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: end;
}

.partner-copy h2 {
    font-size: clamp(2rem, 3.8vw, 4rem);
    font-weight: 600;
    line-height: 1.05;
}

.partner-copy p {
    max-width: 720px;
    color: rgba(255, 255, 255, .82);
    font-size: 1.12rem;
}

.partner-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.partner-stats div {
    min-height: 150px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
}

.partner-stats strong {
    display: block;
    margin-bottom: .55rem;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 600;
}

.partner-stats span {
    color: rgba(255, 255, 255, .78);
}

.site-footer {
    padding: 4.2rem 0 1.4rem;
    color: rgba(255, 255, 255, .72);
    background: #030303;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(260px, 1.6fr) repeat(4, minmax(120px, 1fr));
    gap: clamp(1.2rem, 3vw, 3rem);
    align-items: start;
}

.footer-logo {
    display: inline-flex;
    width: 128px;
}

.footer-brand-area p {
    max-width: 360px;
    margin: 1.2rem 0;
}

.footer-socials {
    display: flex;
    gap: .6rem;
}

.footer-socials a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    color: #fff;
}

.footer-socials a:hover {
    color: #030303;
    background: #fff;
}

.footer-column h2 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: .88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.footer-column a,
.legal-links a {
    display: block;
    margin: .5rem 0;
    color: rgba(255, 255, 255, .68);
}

.footer-column a:hover,
.legal-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: .86rem;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-links a {
    margin: 0;
}

@media (max-width: 1199.98px) {
    .visual-menu-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .visual-menu-grid.four-up {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-top {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    :root {
        --global-nav-height: 68px;
    }

    .nav-locale,
    .nav-actions .nav-icon-link,
    .nav-actions .nav-language {
        display: none;
    }

    .nav-shell {
        min-height: var(--global-nav-height);
        padding: .5rem 1rem;
    }

    .global-logo {
        width: 112px;
        min-width: 112px;
    }

    .nav-menu-button {
        display: inline-grid;
        place-items: center;
    }

    .global-menu {
        position: fixed;
        top: var(--global-nav-height);
        left: 0;
        right: 0;
        max-height: calc(100vh - var(--global-nav-height));
        display: none;
        overflow: auto;
        background: #fff;
        border-top: 1px solid #eef0f4;
        padding: .6rem 1rem 1.3rem;
        box-shadow: 0 26px 60px rgba(0, 0, 0, .12);
    }

    .global-menu.is-open {
        display: block;
    }

    .global-menu-list {
        display: grid;
        gap: 0;
    }

    .global-menu-link {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 54px;
        border-bottom: 1px solid #eef0f4;
        padding: 1rem 0;
        text-align: left;
    }

    .mega-panel {
        position: static;
        max-height: 0;
        padding: 0;
        overflow: hidden;
        border: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        transition: max-height .25s ease;
    }

    .global-menu-item.is-open > .mega-panel {
        max-height: 1500px;
        padding: 1rem 0 1.4rem;
    }

    .global-menu-item:hover > .mega-panel,
    .global-menu-item:focus-within > .mega-panel {
        transform: none;
    }

    .mega-product-layout {
        grid-template-columns: 1fr;
    }

    .mega-product-list,
    .visual-menu-grid,
    .visual-menu-grid.four-up,
    .visual-menu-grid.three-up {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav-actions {
        margin-top: 1rem;
    }

    .global-hero {
        min-height: 650px;
    }

    .hero-slide {
        align-items: flex-start;
        padding-top: 4.6rem;
        background-position: center bottom;
        background-size: auto 58%;
    }

    .hero-slide::after,
    .hero-slide.light-copy::after {
        background: linear-gradient(180deg, rgba(245, 247, 250, .94), rgba(245, 247, 250, .74) 38%, rgba(245, 247, 250, .08) 74%);
    }

    .hero-slide.light-copy .hero-copy h2,
    .hero-slide.light-copy .hero-copy p {
        color: #111;
    }

    .recommend-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .solution-switcher {
        grid-template-columns: 1fr;
    }

    .solution-tab-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .solution-panel-wrap {
        min-height: 460px;
    }

    .feature-ribbon,
    .feature-showcase-grid,
    .partner-section .container-xl {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .global-hero {
        height: auto;
        min-height: 620px;
    }

    .hero-copy h1,
    .hero-copy h2 {
        max-width: 330px;
        font-size: clamp(1.9rem, 8vw, 2.65rem);
    }

    .hero-copy p {
        max-width: 330px;
    }

    .hero-controls {
        width: calc(100% - 2rem);
        justify-content: center;
    }

    .hero-arrow {
        width: 34px;
        height: 34px;
    }

    .hero-pagination button {
        width: 28px;
    }

    .home-section-head {
        display: block;
    }

    .home-section-head a {
        display: inline-flex;
        margin-top: .7rem;
    }

    .recommend-grid,
    .mega-product-list,
    .mega-product-list.is-single,
    .visual-menu-grid,
    .visual-menu-grid.four-up,
    .visual-menu-grid.three-up,
    .solution-tab-list,
    .feature-ribbon,
    .feature-showcase-grid,
    .partner-stats,
    .partner-section .container-xl,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .mega-product-card {
        grid-template-columns: 96px minmax(0, 1fr);
        min-height: 118px;
    }

    .mega-product-card img {
        height: 84px;
    }

    .recommend-card {
        min-height: 315px;
    }

    .showcase-panel {
        min-height: 450px;
        align-items: flex-start;
        padding-top: 2rem;
    }

    .showcase-panel::after,
    .showcase-panel:nth-child(even)::after {
        background: linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .46), rgba(255, 255, 255, .05));
    }

    .showcase-panel:nth-child(even) {
        justify-content: flex-start;
    }

    .showcase-panel:nth-child(even) > div {
        margin-left: 1.4rem;
        color: #111;
    }

    .showcase-panel:nth-child(even) span,
    .showcase-panel:nth-child(even) .learn-link {
        color: var(--global-blue);
    }

    .showcase-panel:nth-child(even) p {
        color: #333;
    }

    .solution-panel-wrap {
        min-height: 390px;
    }

    .footer-bottom {
        display: grid;
    }
}
