:root {
    --ink: #13201c;
    --muted: #64716c;
    --line: #dde4e0;
    --soft: #f4f7f5;
    --white: #ffffff;
    --green: #087c5b;
    --green-dark: #07533e;
    --teal: #187b83;
    --navy: #173840;
    --yellow: #e0b23e;
    --container: 1376px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--white);
    font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
}

body.menu-open {
    overflow: hidden;
}

button,
input,
textarea,
select {
    font: inherit;
    letter-spacing: 0;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

i[data-lucide] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
}

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(226, 179, 61, 0.9);
    outline-offset: 3px;
}

img {
    max-width: 100%;
}

.container {
    width: min(calc(100% - 80px), var(--container));
    margin: 0 auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    padding: 9px 14px;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.topbar {
    position: relative;
    z-index: 101;
    height: 36px;
    color: #dceae5;
    background: #102a23;
    font-size: 12px;
}

.topbar-inner,
.topbar-contact,
.header-inner,
.hero-controls,
.hero-arrows,
.section-heading,
.text-link,
.contact-layout,
.contact-actions,
.footer-bottom {
    display: flex;
    align-items: center;
}

.topbar-inner {
    height: 100%;
    justify-content: space-between;
}

.topbar-contact {
    gap: 24px;
}

.topbar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #dceae5;
}

.topbar-contact svg {
    width: 14px;
    height: 14px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 92px;
    background: rgba(255, 255, 255, 0.985);
    border-bottom: 1px solid rgba(23, 35, 31, 0.08);
    transition: box-shadow 0.25s ease, height 0.25s ease;
}

.site-header.is-scrolled {
    height: 78px;
    box-shadow: 0 10px 30px rgba(23, 35, 31, 0.09);
}

.header-inner {
    position: relative;
    height: 100%;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.brand-logo {
    display: block;
    width: 322px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: stretch;
    align-self: stretch;
    gap: 40px;
    margin-left: auto;
}

.nav-item {
    display: flex;
    align-items: stretch;
}

.main-nav > .nav-item > .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    color: #38453f;
    font-size: 17px;
    font-weight: 500;
    white-space: nowrap;
}

.main-nav > .nav-item > .nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.main-nav > .nav-item > .nav-link:hover,
.main-nav > .nav-item > .nav-link.is-active,
.nav-item:focus-within > .nav-link {
    color: var(--green);
}

.main-nav > .nav-item > .nav-link:hover::after,
.main-nav > .nav-item > .nav-link.is-active::after,
.nav-item:focus-within > .nav-link::after {
    transform: scaleX(1);
}

.subnav-toggle {
    display: none;
}

.subnav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    color: #29434b;
    background: rgba(246, 249, 248, 0.99);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(23, 35, 31, 0.1);
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-item:hover > .subnav,
.nav-item:focus-within > .subnav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.subnav-inner {
    display: flex;
    min-height: 74px;
    align-items: stretch;
    justify-content: center;
    gap: 4px;
}

.subnav-inner a {
    display: inline-flex;
    min-width: 132px;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    color: #29434b;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease;
}

.subnav-inner a:hover,
.subnav-inner a:focus-visible {
    color: var(--white);
    background: var(--green);
}

.button svg,
.text-link svg,
.solution-summary svg,
.news-list svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-toggle svg {
    width: 26px;
    height: 26px;
}

.hero {
    position: relative;
    height: clamp(560px, calc(100svh - 280px), 630px);
    overflow: hidden;
    color: var(--white);
    background: var(--navy);
}

/* A valid, but empty, managed carousel should not fall back to stale markup. */
.hero.is-managed-empty {
    display: none;
}

.hero-slides,
.hero-slide,
.hero-image {
    position: absolute;
    inset: 0;
}

.hero-slide {
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

.hero-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.015);
    transition: transform 7s ease;
}

.hero-slide.is-active .hero-image {
    transform: scale(1);
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 26, 23, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 178px;
    padding-bottom: 0;
}

.hero-eyebrow,
.section-kicker,
.panel-index,
.solution-summary > p,
.solution-overlay > p,
.contact-layout > div > p {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: #eff8f5;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}

.hero-eyebrow::before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--yellow);
}

.hero h1,
.hero h2 {
    max-width: 840px;
    color: var(--white);
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.35);
}

.hero-description {
    max-width: 590px;
    margin-top: 22px;
    color: #f0f6f4;
    font-size: 18px;
    line-height: 1.85;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: var(--green);
}

.button-primary:hover {
    color: var(--white);
    background: #0a926c;
}

.button-ghost {
    color: var(--white);
    background: rgba(8, 28, 25, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
}

.button-ghost:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
}

.hero-controls {
    position: absolute;
    right: 0;
    bottom: 28px;
    left: 0;
    z-index: 4;
    justify-content: space-between;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-dots button {
    width: 34px;
    height: 3px;
    padding: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.45);
    border: 0;
    border-radius: 0;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
    width: 62px;
    background: var(--yellow);
}

.hero-arrows {
    gap: 8px;
}

.hero-arrows button {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(17, 40, 35, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.54);
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.hero-arrows button:hover {
    background: var(--green);
}

.hero-arrows svg {
    width: 20px;
    height: 20px;
}

.capability-strip {
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capability-item {
    display: flex;
    min-height: 102px;
    align-items: center;
    gap: 18px;
    padding: 20px 28px;
    border-right: 1px solid var(--line);
}

.capability-item:first-child {
    border-left: 1px solid var(--line);
}

.capability-item > span {
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
}

.capability-item strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

.capability-item p {
    margin-top: 3px;
    color: var(--muted);
    font-size: 13px;
}

.section {
    padding: 96px 0;
}

.section-heading {
    justify-content: space-between;
    gap: 64px;
    margin-bottom: 42px;
}

.section-heading > div {
    max-width: 680px;
}

.section-heading > p {
    max-width: 470px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
}

.section-kicker {
    margin-bottom: 10px;
    color: var(--green);
}

.section-heading h2,
.about-copy h2,
.contact-layout h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
}

.text-link {
    flex: 0 0 auto;
    display: inline-flex;
    gap: 10px;
    color: var(--green);
    font-size: 15px;
    font-weight: 700;
}

.text-link:hover {
    color: var(--green-dark);
}

.products-section {
    background: var(--white);
    padding-top: 42px;
}

.products-section .section-heading {
    margin-bottom: 32px;
}

.product-browser {
    display: grid;
    overflow: hidden;
    grid-template-columns: 330px minmax(0, 1fr);
    min-height: 720px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0;
    box-shadow: 0 18px 50px rgba(23, 35, 31, 0.06);
}

.product-tabs {
    display: grid;
    grid-auto-rows: minmax(68px, auto);
    align-content: start;
    background: #103b31;
}

.product-tab {
    display: grid;
    width: 100%;
    min-height: 68px;
    grid-template-columns: 34px 1fr 22px;
    align-items: center;
    gap: 14px;
    padding: 10px 22px;
    color: #dce9e4;
    text-align: left;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.55;
    transition: color 0.2s ease, background 0.2s ease;
}

.product-tab:hover,
.product-tab.is-active {
    color: var(--white);
    background: var(--green);
}

.product-tab > span {
    color: #9dbab0;
    font-size: 12px;
    font-weight: 700;
}

.product-tab.is-active > span {
    color: #dff5ec;
}

.product-tab svg {
    width: 18px;
    height: 18px;
}

.product-panels {
    min-width: 0;
}

.product-panel {
    display: grid;
    min-height: 720px;
    grid-template-columns: minmax(0, 1.3fr) minmax(380px, 0.7fr);
}

.product-panel[hidden] {
    display: none;
}

.product-panel-copy {
    align-self: start;
    padding: 40px 48px;
}

.panel-index {
    margin-bottom: 12px;
    color: var(--teal);
}

.product-panel h3 {
    margin-bottom: 14px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
}

.product-panel-copy > p:not(.panel-index) {
    color: var(--muted);
    line-height: 1.85;
}

.product-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
    margin: 20px 0 24px;
    border-top: 1px solid var(--line);
}

.product-links li {
    border-bottom: 1px solid var(--line);
}

.product-links li:nth-child(n + 11) {
    display: none;
}

.product-links a {
    position: relative;
    display: grid;
    min-height: 43px;
    grid-template-columns: minmax(0, 1fr) 18px;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    overflow-wrap: anywhere;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.45;
    transition: color 0.2s ease, font-weight 0.2s ease;
}

.product-links a svg {
    width: 16px;
    height: 16px;
    opacity: 0.46;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-links a:hover,
.product-links a:focus-visible,
.product-links a.is-active {
    color: var(--green);
}

.product-links a.is-active {
    font-weight: 700;
}

.product-links a:hover svg,
.product-links a:focus-visible svg,
.product-links a.is-active svg {
    opacity: 1;
    transform: translateX(2px);
}

.product-detail {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 100%;
    scroll-margin-top: 82px;
    flex-direction: column;
    justify-content: flex-start;
    padding: 48px 40px;
    overflow: hidden;
    background: #f4f7f5;
    border-left: 1px solid var(--line);
}

.product-detail::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    content: "";
    background: var(--green);
}

.product-detail-code {
    color: var(--teal);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
}

.product-detail-code {
    align-self: flex-end;
    padding: 4px 8px;
    margin-bottom: 20px;
    color: var(--green-dark);
    background: #e4f0eb;
    border: 1px solid #c8ddd4;
}

.product-detail h4 {
    margin: 0;
    overflow-wrap: anywhere;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.4;
}

.product-detail-facts {
    margin-top: 20px;
}

.product-detail-facts > div {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.product-detail-facts dt {
    color: var(--muted);
    font-size: 12px;
}

.product-detail-facts dd {
    min-width: 0;
    overflow-wrap: anywhere;
    color: #34433d;
    font-size: 13px;
    line-height: 1.7;
}

.product-detail-contact {
    display: grid;
    gap: 7px;
    margin-top: 24px;
    padding-top: 20px;
    color: var(--green-dark);
    border-top: 1px solid var(--line);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.55;
}

.product-detail-contact a:hover,
.product-detail-contact a:focus-visible {
    color: var(--green);
}

.product-download {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    padding: 16px 18px;
    color: var(--green-dark);
    background: var(--white);
    border: 1px solid #cdded7;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.product-download > svg {
    width: 36px;
    height: 36px;
    color: var(--green);
}

.product-download span {
    display: grid;
    gap: 3px;
}

.product-download strong {
    font-size: 15px;
}

.product-download small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 400;
}

.product-download:hover,
.product-download:focus-visible {
    color: var(--green);
    background: #f9fcfb;
    border-color: var(--green);
    transform: translateY(-2px);
}

.solutions-section {
    scroll-margin-top: 96px;
    background: var(--white);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.solution-card {
    position: relative;
    height: 400px;
    min-width: 0;
    overflow: hidden;
    color: var(--white);
    background: var(--navy);
    outline: 0;
}

.solution-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(8, 30, 26, 0.44);
    pointer-events: none;
    transition: background 0.3s ease;
}

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-card:hover img,
.solution-card:focus-within img,
.solution-card.is-expanded img {
    transform: scale(1.035);
}

.solution-card:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
}

.solution-summary {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.solution-summary > p,
.solution-overlay > p {
    margin-bottom: 5px;
    color: #d7efe6;
}

.solution-summary h3,
.solution-overlay h3 {
    font-size: 26px;
    font-weight: 700;
}

.solution-summary svg {
    position: absolute;
    right: 0;
    bottom: 5px;
}

.solution-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    padding: 28px 26px;
    opacity: 0;
    visibility: hidden;
    background: rgba(5, 86, 64, 0.9);
    transform: translateY(12px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.solution-overlay h3 {
    margin-bottom: 13px;
}

.solution-overlay ul {
    display: grid;
    gap: 3px;
}

.solution-overlay a {
    display: flex;
    min-height: 25px;
    align-items: center;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.2s ease, transform 0.2s ease;
}

.solution-overlay a::before {
    content: "";
    width: 10px;
    height: 1px;
    margin-right: 9px;
    background: rgba(255, 255, 255, 0.62);
    transition: width 0.2s ease, background 0.2s ease;
}

.solution-overlay a:hover,
.solution-overlay a:focus-visible {
    color: #ffe39b;
    transform: translateX(3px);
}

.solution-overlay a:hover::before,
.solution-overlay a:focus-visible::before {
    width: 18px;
    background: var(--yellow);
}

.solution-card:hover::after,
.solution-card:focus-within::after,
.solution-card.is-expanded::after {
    background: rgba(10, 30, 35, 0.18);
}

.solution-card:hover .solution-summary,
.solution-card:focus-within .solution-summary,
.solution-card.is-expanded .solution-summary {
    opacity: 0;
    transform: translateY(8px);
}

.solution-card:hover .solution-overlay,
.solution-card:focus-within .solution-overlay,
.solution-card.is-expanded .solution-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.about-band {
    padding: 110px 0;
    color: var(--white);
    background: #113d35;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    align-items: center;
    gap: 80px;
}

.about-image {
    position: relative;
}

.about-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1.42;
    object-fit: cover;
}

.about-image-label {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    min-width: 178px;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    color: var(--ink);
    background: var(--yellow);
    font-size: 13px;
    font-weight: 700;
}

.about-image-label span {
    font-size: 23px;
}

.about-copy .section-kicker {
    color: #90d7bf;
}

.about-copy h2 {
    margin-bottom: 26px;
}

.about-copy > p:not(.section-kicker) {
    margin-bottom: 15px;
    color: #d6e5df;
    font-size: 15px;
    line-height: 1.9;
}

.about-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 34px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.about-facts > div {
    padding: 17px 18px 18px 0;
}

.about-facts dt {
    font-size: 21px;
    font-weight: 700;
}

.about-facts dd {
    color: #aec4bc;
    font-size: 12px;
}

.button-dark {
    color: var(--ink);
    background: var(--white);
}

.button-dark:hover {
    color: var(--ink);
    background: #e9f1ee;
}

.service-section {
    background: #f7f8f7;
}

.service-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.service-flow li {
    position: relative;
    min-height: 230px;
    padding: 36px 30px;
    border-right: 1px solid var(--line);
}

.service-flow li:first-child {
    border-left: 1px solid var(--line);
}

.service-flow li > svg {
    width: 34px;
    height: 34px;
    margin-bottom: 42px;
    color: var(--green);
}

.service-flow li > span {
    position: absolute;
    top: 36px;
    right: 28px;
    color: #a8b2ad;
    font-size: 12px;
    font-weight: 700;
}

.service-flow h3 {
    font-size: 20px;
    font-weight: 700;
}

.service-flow p {
    margin-top: 7px;
    color: var(--muted);
    font-size: 14px;
}

.news-section {
    background: var(--white);
}

.news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 62px;
}

.news-feature {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
    min-height: 330px;
    border: 1px solid var(--line);
}

.news-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-feature > div {
    align-self: center;
    padding: 36px;
}

.news-feature time,
.news-list span {
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
}

.news-feature h3 {
    margin: 14px 0 15px;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.5;
}

.news-feature p {
    color: var(--muted);
    font-size: 14px;
}

.news-feature:hover h3,
.news-list a:hover h3 {
    color: var(--green);
}

.news-list {
    border-top: 1px solid var(--line);
}

.news-list a {
    display: grid;
    min-height: 110px;
    grid-template-columns: 90px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid var(--line);
}

.news-list h3 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.55;
    transition: color 0.2s ease;
}

.contact-band {
    padding: 72px 0;
    color: var(--white);
    background: #0b624b;
}

.contact-layout {
    justify-content: space-between;
    gap: 50px;
}

.contact-layout > div > p {
    margin-bottom: 8px;
    color: #d7eee6;
}

.contact-actions {
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.button-light {
    color: var(--ink);
    background: var(--white);
}

.button-light:hover {
    color: var(--ink);
    background: #eef6f4;
}

.site-footer {
    color: #c8d4d0;
    background: #11231e;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.7fr 0.7fr 1fr;
    gap: 70px;
    padding-top: 70px;
    padding-bottom: 60px;
}

.footer-logo .brand-logo {
    width: 292px;
}

.footer-brand p {
    margin-top: 22px;
    color: #aebeb8;
    font-size: 14px;
    line-height: 1.9;
}

.footer-column h2 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
}

.footer-column a,
.footer-column p {
    display: block;
    margin-bottom: 9px;
    color: #aebeb8;
    font-size: 13px;
    line-height: 1.75;
}

.footer-column a:hover,
.footer-bottom a:hover {
    color: var(--white);
}

.footer-bottom {
    min-height: 62px;
    justify-content: space-between;
    color: #809089;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1320px) {
    .brand-logo {
        width: 278px;
    }

    .main-nav {
        gap: 24px;
    }

    .main-nav > .nav-item > .nav-link {
        font-size: 15px;
    }
}

@media (max-width: 1180px) {
    .container {
        width: min(calc(100% - 56px), var(--container));
    }

    .brand-logo {
        width: 252px;
    }

    .main-nav {
        gap: 18px;
    }

    .main-nav > .nav-item > .nav-link {
        font-size: 14px;
    }

    .product-browser {
        grid-template-columns: 300px minmax(0, 1fr);
    }

    .product-panel {
        grid-template-columns: minmax(0, 1fr) 330px;
    }

    .product-panel-copy {
        padding: 42px 32px;
    }

    .product-detail {
        padding: 42px 30px;
    }
}

@media (max-width: 1040px) {
    .topbar {
        display: none;
    }

    .site-header,
    .site-header.is-scrolled {
        height: 72px;
    }

    .brand-logo {
        width: 238px;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .main-nav {
        position: absolute;
        top: 72px;
        right: 0;
        left: 0;
        display: none;
        max-height: calc(100svh - 72px);
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 24px 20px;
        background: var(--white);
        border-top: 1px solid var(--line);
        box-shadow: 0 18px 30px rgba(23, 35, 31, 0.12);
    }

    .main-nav.is-open {
        display: flex;
    }

    .nav-item {
        position: relative;
        display: block;
    }

    .main-nav > .nav-item > .nav-link {
        min-height: 50px;
        padding-right: 48px;
        border-bottom: 1px solid var(--line);
    }

    .main-nav > .nav-item > .nav-link::after {
        right: auto;
        width: 30px;
    }

    .subnav-toggle {
        position: absolute;
        top: 3px;
        right: 0;
        z-index: 2;
        display: inline-flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        color: #41504a;
        background: transparent;
        border: 0;
    }

    .subnav-toggle svg {
        width: 18px;
        height: 18px;
        transition: transform 0.2s ease;
    }

    .nav-item.is-subnav-open .subnav-toggle svg {
        transform: rotate(180deg);
    }

    .subnav,
    .nav-item:hover > .subnav,
    .nav-item:focus-within > .subnav {
        position: static;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: hidden;
        background: #f3f8fa;
        border: 0;
        box-shadow: none;
        pointer-events: none;
        transform: none;
        transition: max-height 0.25s ease, visibility 0.25s ease;
    }

    .nav-item.is-subnav-open > .subnav {
        max-height: 420px;
        visibility: visible;
        pointer-events: auto;
    }

    .subnav-inner {
        display: grid;
        width: 100%;
        min-height: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 10px;
        padding: 5px 0 12px;
    }

    .subnav-inner a {
        min-width: 0;
        min-height: 40px;
        justify-content: flex-start;
        padding: 8px 12px;
        color: #46616a;
        border-bottom: 1px solid #deeaee;
        font-size: 13px;
        white-space: normal;
    }

    .subnav-inner a:hover,
    .subnav-inner a:focus-visible {
        color: var(--green);
        background: #e5f0f3;
    }

    .hero {
        height: clamp(540px, calc(100svh - 180px), 610px);
    }

    .hero h1,
    .hero h2 {
        max-width: 780px;
        font-size: 58px;
    }

    .solutions-section {
        scroll-margin-top: 78px;
    }

    .capability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .capability-item:nth-child(3) {
        border-left: 1px solid var(--line);
    }

    .capability-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .section {
        padding: 84px 0;
    }

    .section-heading {
        align-items: flex-end;
        gap: 34px;
    }

    .product-browser {
        grid-template-columns: 1fr;
    }

    .product-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
    }

    .product-tab {
        min-height: 68px;
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .product-panel {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    }

    .product-detail {
        padding: 38px 30px;
    }

    .solution-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
    }

    .solution-card {
        height: 410px;
    }

    .about-layout {
        gap: 45px;
    }

    .service-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-flow li:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .service-flow li:nth-child(3) {
        border-left: 1px solid var(--line);
    }

    .news-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .hero {
        height: clamp(560px, calc(100svh - 120px), 600px);
    }

    .hero-slide::after {
        background: rgba(7, 27, 24, 0.56);
    }

    .hero-content {
        justify-content: center;
        padding-top: 8px;
        padding-bottom: 52px;
    }

    .hero h1,
    .hero h2 {
        font-size: 38px;
        line-height: 1.23;
    }

    .hero-description {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.75;
    }

    .hero-actions {
        width: 100%;
        gap: 10px;
        margin-top: 24px;
    }

    .hero-actions .button {
        min-width: 0;
        flex: 1 1 0;
        padding-right: 12px;
        padding-left: 12px;
    }

    .button {
        min-height: 46px;
        padding: 11px 17px;
        font-size: 14px;
    }

    .hero-controls {
        bottom: 20px;
    }

    .hero-arrows #heroPrev,
    .hero-arrows #heroNext {
        display: none;
    }

    .capability-item {
        min-height: 100px;
        gap: 12px;
        padding: 18px 14px;
    }

    .capability-item strong {
        font-size: 16px;
    }

    .capability-item p {
        font-size: 12px;
        line-height: 1.5;
    }

    .section {
        padding: 70px 0;
    }

    .section-heading {
        display: block;
        margin-bottom: 32px;
    }

    .section-heading > p,
    .section-heading > .text-link {
        margin-top: 18px;
    }

    .section-heading h2,
    .about-copy h2,
    .contact-layout h2 {
        font-size: 30px;
    }

    .product-browser {
        min-height: 0;
    }

    .product-tabs {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .product-tabs::-webkit-scrollbar {
        display: none;
    }

    .product-tab {
        min-height: 64px;
        flex: 0 0 min(78vw, 290px);
        scroll-snap-align: start;
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .product-panel {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .product-panel-copy {
        padding: 34px 24px;
    }

    .product-panel h3 {
        font-size: 25px;
    }

    .product-links {
        grid-template-columns: 1fr;
    }

    .product-detail {
        min-height: 0;
        padding: 36px 24px 40px;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .product-detail h4 {
        font-size: 24px;
    }

    .product-detail-facts > div {
        grid-template-columns: 68px minmax(0, 1fr);
    }

    .solution-grid {
        display: flex;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .solution-grid::-webkit-scrollbar {
        display: none;
    }

    .solution-card {
        height: 400px;
        flex: 0 0 min(84vw, 360px);
        scroll-snap-align: start;
    }

    .about-band {
        padding: 70px 0;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-facts {
        gap: 14px;
    }

    .about-facts > div {
        padding-right: 0;
    }

    .service-flow {
        grid-template-columns: 1fr;
    }

    .service-flow li,
    .service-flow li:nth-child(3) {
        min-height: 190px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        border-left: 1px solid var(--line);
    }

    .service-flow li:last-child {
        border-bottom: 0;
    }

    .service-flow li > svg {
        margin-bottom: 30px;
    }

    .news-feature {
        grid-template-columns: 1fr;
    }

    .news-feature img {
        aspect-ratio: 1.65;
    }

    .news-feature > div {
        padding: 28px 24px;
    }

    .news-list a {
        min-height: 112px;
        grid-template-columns: 72px minmax(0, 1fr) 20px;
        gap: 12px;
    }

    .contact-layout {
        display: block;
    }

    .contact-actions {
        align-items: flex-start;
        margin-top: 28px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-top: 56px;
        padding-bottom: 44px;
    }

    .footer-bottom {
        display: block;
        padding: 18px 0;
    }

    .footer-links {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
        margin-top: 6px;
    }
}

@media (max-width: 420px) {
    .brand-logo {
        width: 208px;
    }

    .hero h1,
    .hero h2 {
        font-size: 34px;
    }

    .capability-item {
        padding-right: 12px;
        padding-left: 12px;
    }

    .about-facts dt {
        font-size: 18px;
    }

    .news-list a {
        grid-template-columns: 1fr 20px;
        padding: 18px 0;
    }

    .news-list span {
        grid-column: 1 / -1;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
