:root {
  --hx-navy: #071722;
  --hx-navy-soft: #0c2230;
  --hx-ink: #101820;
  --hx-blue: #01439f;
  --hx-blue-bright: #0873dc;
  --hx-green: #75c94a;
  --hx-paper: #f4f2ec;
  --hx-white: #fff;
  --hx-muted: #6e7880;
  --hx-line: rgba(16, 24, 32, .14);
  --hx-radius: 3px;
  --hx-shadow: 0 24px 70px rgba(7, 23, 34, .12);
  --hx-ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--hx-ink);
  background: var(--hx-paper);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.hx-menu-open, body.hx-cookie-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.hx-skip { position: fixed; z-index: 2000; top: 8px; left: 8px; padding: 10px 14px; background: #fff; color: var(--hx-navy); transform: translateY(-160%); transition: transform .2s; }
.hx-skip:focus { transform: none; }

.hx-shell {
  width: min(100% - 128px, 1440px);
  margin-inline: auto;
}
.hx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--hx-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}
.hx-eyebrow::before { width: 34px; height: 2px; background: var(--hx-green); content: ""; }
.hx-title {
  max-width: 930px;
  margin: 0;
  font-size: clamp(38px, 4.3vw, 62px);
  font-weight: 650;
  letter-spacing: -.055em;
  line-height: 1.05;
}
.hx-title em { color: var(--hx-blue); font-style: normal; }
.hx-lead { color: var(--hx-muted); font-size: 18px; line-height: 1.8; }
.hx-section { padding: 104px 0; }
.hx-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; margin-bottom: 52px; }
.hx-section-head .hx-lead { max-width: 460px; margin: 0; }
.hx-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--hx-radius);
  background: var(--hx-green);
  color: var(--hx-navy);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .35s var(--hx-ease), background .35s, color .35s, border-color .35s;
}
.hx-button:hover { transform: translateY(-3px); background: #8adb5f; }
.hx-button--outline { border-color: rgba(255,255,255,.45); background: transparent; color: #fff; }
.hx-button--outline:hover { border-color: #fff; background: #fff; color: var(--hx-navy); }
.hx-arrow { font-size: 18px; line-height: 1; }

/* Header */
.hx-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(255,255,255,.98);
  box-shadow: 0 1px 0 rgba(7,23,34,.1);
  color: var(--hx-navy);
  backdrop-filter: blur(12px);
  transition: color .3s, background .3s, box-shadow .3s;
}
.hx-header.is-scrolled, .hx-header.hx-header--solid, .hx-body:not(.hx-home) .hx-header { background: rgba(255,255,255,.98); box-shadow: 0 1px 0 rgba(7,23,34,.1); color: var(--hx-navy); }
.hx-header__inner { display: flex; height: 88px; align-items: center; justify-content: space-between; gap: 36px; }
.hx-brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.hx-brand img { width: auto; height: 48px; object-fit: contain; }
.hx-logo { display: inline-flex; flex: 0 0 auto; align-items: center; }
.hx-logo img { width: auto; height: 48px; object-fit: contain; }
.hx-brand__dark { display: block; }
.hx-logo__dark { display: block; }
.hx-header.is-scrolled .hx-brand__light, .hx-header.hx-header--solid .hx-brand__light { display: none; }
.hx-header.is-scrolled .hx-brand__dark, .hx-header.hx-header--solid .hx-brand__dark { display: block; }
.hx-header.is-scrolled .hx-logo__light, .hx-header.hx-header--solid .hx-logo__light, .hx-body:not(.hx-home) .hx-logo__light { display: none; }
.hx-header.is-scrolled .hx-logo__dark, .hx-header.hx-header--solid .hx-logo__dark, .hx-body:not(.hx-home) .hx-logo__dark { display: block; }
.hx-nav { display: flex; align-items: center; gap: clamp(24px, 2.7vw, 46px); }
.hx-nav > a, .hx-nav-item > a {
  position: relative;
  display: flex;
  height: 88px;
  align-items: center;
  padding: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.hx-nav > a::after, .hx-nav-item > a::after { position: absolute; bottom: 21px; left: 0; width: 0; height: 2px; background: var(--hx-green); content: ""; transition: width .3s var(--hx-ease); }
.hx-nav > a:hover::after, .hx-nav > a.is-active::after, .hx-nav-item:hover > a::after { width: 100%; }
.hx-nav-item { position: relative; display: flex; align-items: center; }
.hx-nav-caret { width: 20px; margin: 0 -18px 0 -2px; padding: 0; border: 0; background: transparent; color: currentColor; font-size: 16px; cursor: pointer; opacity: .64; }
.hx-nav-dropdown { position: absolute; top: calc(100% - 9px); left: -24px; visibility: hidden; width: 280px; padding: 14px; border-top: 3px solid var(--hx-green); background: #fff; box-shadow: 0 26px 60px rgba(7,23,34,.18); color: var(--hx-navy); opacity: 0; transform: translateY(12px); transition: opacity .25s, transform .25s, visibility .25s; }
.hx-nav-item:hover .hx-nav-dropdown, .hx-nav-item:focus-within .hx-nav-dropdown { visibility: visible; opacity: 1; transform: none; }
.hx-nav-dropdown a { display: flex; min-height: 50px; align-items: center; justify-content: space-between; gap: 20px; padding: 0 13px; border-bottom: 1px solid var(--hx-line); font-size: 14px; font-weight: 650; letter-spacing: 0; text-transform: none; transition: color .25s, background .25s, padding .25s; }
.hx-nav-dropdown a:last-child { border-bottom: 0; }
.hx-nav-dropdown a:hover { padding-left: 18px; background: var(--hx-paper); color: var(--hx-blue); }
.hx-nav-dropdown i { color: var(--hx-green); font-style: normal; }
.hx-header__actions { display: flex; align-items: center; gap: 18px; }
.hx-language { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 750; letter-spacing: .08em; }
.hx-language span { opacity: .38; }
.hx-language a { opacity: .55; transition: opacity .25s, color .25s; }
.hx-language a:hover, .hx-language a.is-active { color: var(--hx-green); opacity: 1; }
.hx-header__contact { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.hx-lang { font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.hx-menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid currentColor; background: none; }
.hx-menu-toggle span { display: block; width: 20px; height: 1px; margin: 5px auto; background: currentColor; transition: transform .3s, opacity .3s; }
.hx-menu-open .hx-menu-toggle span:first-child { transform: translateY(6px) rotate(45deg); }
.hx-menu-open .hx-menu-toggle span:nth-child(2) { opacity: 0; }
.hx-menu-open .hx-menu-toggle span:last-child { transform: translateY(-6px) rotate(-45deg); }
.hx-menu { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid currentColor; background: none; }
.hx-menu span { display: block; width: 20px; height: 1px; margin: 6px auto; background: currentColor; transition: transform .3s; }
.hx-menu-open .hx-menu span:first-child { transform: translateY(3.5px) rotate(45deg); }
.hx-menu-open .hx-menu span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* Hero */
.hx-hero { position: relative; min-height: 900px; overflow: hidden; background: var(--hx-blue); color: #fff; }
.hx-home .hx-hero { margin-top: 88px; }
.hx-hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.03); }
.hx-hero__veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(1,67,159,.94) 0%, rgba(1,67,159,.72) 42%, rgba(1,67,159,.14) 72%, rgba(1,67,159,.04) 100%), linear-gradient(0deg, rgba(1,67,159,.45), transparent 52%); }
.hx-hero__grid { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.32) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.32) 1px, transparent 1px); background-size: 96px 96px; mask-image: linear-gradient(90deg, #000, transparent 74%); }
.hx-hero__content { position: relative; z-index: 2; display: flex; min-height: 820px; flex-direction: column; justify-content: center; padding: 140px 0 175px; }
.hx-hero .hx-eyebrow { color: rgba(255,255,255,.72); }
.hx-hero h1 { max-width: 900px; margin: 0 0 30px; font-size: clamp(50px, 5.8vw, 84px); font-weight: 600; letter-spacing: -.055em; line-height: .95; }
.hx-hero h1 span { color: var(--hx-green); }
.hx-hero__eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 27px; color: rgba(255,255,255,.66); font-size: 11px; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.hx-hero__eyebrow span { width: 34px; height: 2px; background: var(--hx-green); }
.hx-hero__copy { max-width: 650px; margin: 0 0 40px; color: rgba(255,255,255,.72); font-size: 18px; }
.hx-hero__lead { max-width: 650px; margin: 0 0 40px; color: rgba(255,255,255,.72); font-size: 18px; }
.hx-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hx-button--light { background: #fff; color: var(--hx-navy); }
.hx-link-light { display: inline-flex; align-items: center; gap: 13px; padding: 13px 0 8px; border-bottom: 1px solid rgba(255,255,255,.5); color: #fff; font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.hx-hero__rail { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; border-top: 1px solid rgba(255,255,255,.18); }
.hx-hero__rail-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; }
.hx-hero__fact { min-height: 126px; padding: 30px 34px; border-right: 1px solid rgba(255,255,255,.18); }
.hx-hero__fact:first-child { padding-left: 0; }
.hx-hero__fact span { display: block; margin-bottom: 6px; color: rgba(255,255,255,.5); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.hx-hero__fact strong { font-size: 16px; font-weight: 550; }
.hx-hero > .hx-hero__rail { display: grid; grid-template-columns: repeat(3, 1fr); }
.hx-hero > .hx-hero__rail > div { min-height: 126px; padding: 30px 34px; border-right: 1px solid rgba(255,255,255,.18); }
.hx-hero > .hx-hero__rail > div:first-child { padding-left: 0; }
.hx-hero > .hx-hero__rail strong { display: block; margin-bottom: 7px; color: var(--hx-green); font-size: 11px; letter-spacing: .14em; }
.hx-hero > .hx-hero__rail span { font-size: 15px; }
.hx-carousel__slides { position: absolute; inset: 0; }
.hx-carousel__slide { position: absolute; inset: 0; visibility: hidden; opacity: 0; transition: opacity .8s var(--hx-ease), visibility .8s; }
.hx-carousel__slide.is-active { z-index: 1; visibility: visible; opacity: 1; }
.hx-carousel__slide .hx-hero__content { opacity: 0; transform: translateY(24px); transition: opacity .65s .18s var(--hx-ease), transform .65s .18s var(--hx-ease); }
.hx-carousel__slide.is-active .hx-hero__content { opacity: 1; transform: none; }
.hx-carousel__controls { position: absolute; z-index: 5; right: 0; bottom: 136px; left: 0; display: flex; align-items: center; justify-content: flex-end; gap: 16px; pointer-events: none; }
.hx-carousel__controls button { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; background: rgba(7,23,34,.28); color: #fff; cursor: pointer; pointer-events: auto; transition: background .3s, border-color .3s, color .3s, transform .3s; backdrop-filter: blur(8px); }
.hx-carousel__controls button:hover { border-color: var(--hx-green); background: var(--hx-green); color: var(--hx-navy); transform: translateY(-2px); }
.hx-carousel__status { display: flex; align-items: center; gap: 9px; color: #fff; font-size: 11px; font-weight: 750; letter-spacing: .1em; }
.hx-carousel__status i { display: block; width: 38px; height: 1px; background: rgba(255,255,255,.45); }

/* Introduction */
.hx-intro { background: var(--hx-paper); }
.hx-intro__layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 10vw; align-items: start; }
.hx-intro__grid { display: grid; grid-template-columns: .62fr 1.38fr; gap: 8vw; align-items: start; }
.hx-company-overview { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(48px, 6vw, 96px); align-items: center; }
.hx-company-overview--page { align-items: start; }
.hx-company-overview__media { position: relative; overflow: hidden; aspect-ratio: 1134 / 784; margin: 0; background: #dfe5e7; box-shadow: var(--hx-shadow); }
.hx-company-overview__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--hx-ease); }
.hx-company-overview__media:hover img { transform: scale(1.025); }
.hx-company-overview__media figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 18px 22px; background: linear-gradient(0deg, rgba(7,23,34,.9), rgba(7,23,34,0)); color: rgba(255,255,255,.78); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hx-company-overview--page .hx-company-overview__media { position: sticky; top: 120px; aspect-ratio: 1134 / 784; }
.hx-company-overview .hx-kicker { margin-bottom: 25px; }
.hx-company-overview .hx-prose { max-width: none; margin: 30px 0 0; }
.hx-company-copy-scroll { max-height: 288px; overflow-y: auto; padding-right: 20px; scrollbar-color: var(--hx-blue) rgba(14,95,156,.1); scrollbar-width: thin; }
.hx-company-copy-scroll--about { max-height: 420px; }
.hx-company-copy-scroll::-webkit-scrollbar { width: 6px; }
.hx-company-copy-scroll::-webkit-scrollbar-track { background: rgba(14,95,156,.08); }
.hx-company-copy-scroll::-webkit-scrollbar-thumb { border-radius: 999px; background: var(--hx-blue); }
.hx-kicker { display: flex; align-items: center; gap: 10px; color: var(--hx-blue); font-size: 11px; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.hx-kicker::before { width: 30px; height: 2px; background: var(--hx-green); content: ""; }
.hx-kicker--light { color: rgba(255,255,255,.58); }
.hx-intro__copy h2, .hx-section-head h2, .hx-process__sticky h2, .hx-partners__head h2, .hx-cta h2 { margin: 0; font-size: clamp(38px, 4.3vw, 62px); font-weight: 620; letter-spacing: -.045em; line-height: 1.05; }
.hx-richtext { max-width: 720px; margin: 32px 0 34px; color: var(--hx-muted); font-size: 18px; }
.hx-richtext p { margin: 0 0 18px; }
.hx-text-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.hx-intro__side { padding-top: 54px; }
.hx-intro__side .hx-lead { margin: 0 0 36px; }
.hx-link { display: inline-flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--hx-ink); font-size: 12px; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.hx-metrics { display: grid; margin-top: 106px; border-top: 1px solid var(--hx-line); border-left: 1px solid var(--hx-line); grid-template-columns: repeat(4, 1fr); }
.hx-metric { min-height: 180px; padding: 34px; border-right: 1px solid var(--hx-line); border-bottom: 1px solid var(--hx-line); }
.hx-metric strong { display: block; margin-bottom: 14px; color: var(--hx-blue); font-size: clamp(38px, 4vw, 60px); font-weight: 600; letter-spacing: -.05em; line-height: 1; }
.hx-metric span { color: var(--hx-muted); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hx-metrics > div { min-height: 180px; padding: 34px; border-right: 1px solid var(--hx-line); border-bottom: 1px solid var(--hx-line); }
.hx-metrics > div strong { display: block; margin-bottom: 14px; color: var(--hx-blue); font-size: clamp(38px, 4vw, 60px); font-weight: 600; letter-spacing: -.05em; line-height: 1; }
.hx-metrics > div sup { font-size: .45em; vertical-align: super; }
.hx-metrics > div span { color: var(--hx-muted); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

/* Product system */
.hx-products { overflow: hidden; background: var(--hx-navy); color: #fff; }
.hx-products .hx-eyebrow { color: rgba(255,255,255,.6); }
.hx-products .hx-lead { color: rgba(255,255,255,.58); }
.hx-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.hx-product-card { position: relative; min-width: 0; border-top: 1px solid rgba(255,255,255,.14); border-right: 1px solid rgba(255,255,255,.14); }
.hx-product-card:first-child { border-left: 1px solid rgba(255,255,255,.14); }
.hx-product-card__image { position: relative; overflow: hidden; aspect-ratio: 1 / .9; background: #e9e9e3; }
.hx-product-card__image::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(7,23,34,.18)); content: ""; }
.hx-product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--hx-ease); }
.hx-product-card:hover .hx-product-card__image img { transform: scale(1.055); }
.hx-product-card__body { min-height: 170px; padding: 28px 28px 36px; }
.hx-product-card__index { display: block; margin-bottom: 28px; color: var(--hx-green); font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.hx-product-card h3 { margin: 0; font-size: 20px; font-weight: 550; letter-spacing: -.02em; line-height: 1.3; }
.hx-product-card__arrow { position: absolute; right: 26px; bottom: 31px; color: rgba(255,255,255,.4); font-size: 20px; transition: color .3s, transform .3s; }
.hx-product-card:hover .hx-product-card__arrow { color: var(--hx-green); transform: translateX(5px); }
.hx-product-card__top { display: flex; justify-content: space-between; padding: 26px 26px 18px; color: var(--hx-green); font-size: 11px; font-weight: 750; letter-spacing: .12em; }
.hx-product-card > a > h3 { min-height: 92px; margin: 0; padding: 27px 26px; font-size: 20px; font-weight: 550; letter-spacing: -.02em; line-height: 1.25; }
.hx-card-arrow { color: rgba(255,255,255,.4); font-size: 18px; }

/* Process */
.hx-process { background: #fff; }
.hx-process__layout { display: grid; grid-template-columns: .84fr 1.16fr; gap: 9vw; }
.hx-process__grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 9vw; }
.hx-process__sticky { position: sticky; top: 150px; align-self: start; }
.hx-process__sticky .hx-lead { max-width: 520px; margin: 34px 0 0; }
.hx-process__steps { border-top: 1px solid var(--hx-line); }
.hx-process__step { display: grid; min-height: 175px; grid-template-columns: 80px 1fr; padding: 34px 0; border-bottom: 1px solid var(--hx-line); }
.hx-process__number { color: var(--hx-green); font-size: 12px; font-weight: 750; letter-spacing: .1em; }
.hx-process__step h3 { margin: 0 0 12px; font-size: 25px; font-weight: 600; letter-spacing: -.03em; }
.hx-process__step p { max-width: 590px; margin: 0; color: var(--hx-muted); }
.hx-process__sticky > p { max-width: 520px; margin: 30px 0; color: var(--hx-muted); font-size: 18px; }
.hx-process__steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--hx-line); }
.hx-process__steps li { display: grid; min-height: 175px; grid-template-columns: 80px 1fr; padding: 34px 0; border-bottom: 1px solid var(--hx-line); }
.hx-process__steps li > span { color: var(--hx-green); font-size: 12px; font-weight: 750; }
.hx-process__steps h3 { margin: 0 0 12px; font-size: 25px; letter-spacing: -.03em; }
.hx-process__steps p { margin: 0; color: var(--hx-muted); }

/* News / partners */
.hx-news { background: var(--hx-paper); }
.hx-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hx-line); border: 1px solid var(--hx-line); }
.hx-news-card { min-height: 390px; padding: 42px; background: var(--hx-paper); transition: background .35s, color .35s; }
.hx-news-card:hover { background: var(--hx-blue); color: #fff; }
.hx-news-card__meta { display: flex; justify-content: space-between; margin-bottom: 86px; color: var(--hx-muted); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hx-news-card:hover .hx-news-card__meta, .hx-news-card:hover p { color: rgba(255,255,255,.65); }
.hx-news-card h3 { margin: 0 0 22px; font-size: 26px; font-weight: 550; letter-spacing: -.035em; line-height: 1.28; }
.hx-news-card p { margin: 0; color: var(--hx-muted); }
.hx-news-card__go { display: block; margin-top: 38px; font-size: 20px; }
.hx-news-card__image { display: flex; overflow: hidden; aspect-ratio: 1 / 1; align-items: center; justify-content: center; margin: -42px -42px 30px; padding: 18px; background: #fff; }
.hx-news-card__image img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform .6s var(--hx-ease); }
.hx-news-card:hover .hx-news-card__image img { transform: scale(1.025); }
.hx-news-card__link { display: block; margin-top: 30px; font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.hx-partners { padding: 92px 0; background: #fff; }
.hx-partners__label { margin-bottom: 34px; color: var(--hx-muted); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.hx-partners__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--hx-line); border-left: 1px solid var(--hx-line); }
.hx-partners__item { display: flex; height: 170px; align-items: center; justify-content: center; padding: 26px; border-right: 1px solid var(--hx-line); border-bottom: 1px solid var(--hx-line); background: #fff; }
.hx-partners__item img { max-width: 190px; max-height: 84px; filter: grayscale(.35); opacity: .78; transition: filter .3s, opacity .3s, transform .3s; }
.hx-partners__item:hover img { filter: none; opacity: 1; }
.hx-partners__head { display: grid; grid-template-columns: .62fr 1.38fr; gap: 8vw; margin-bottom: 60px; }
.hx-logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--hx-line); border-left: 1px solid var(--hx-line); }
.hx-logo-grid > div { display: flex; height: 170px; align-items: center; justify-content: center; padding: 26px; border-right: 1px solid var(--hx-line); border-bottom: 1px solid var(--hx-line); background: #fff; }
.hx-logo-grid img { max-width: 190px; max-height: 84px; filter: grayscale(.35); opacity: .78; transition: filter .3s, opacity .3s, transform .3s; }
.hx-logo-grid > div:hover img { filter: none; opacity: 1; transform: scale(1.035); }

/* Enquiry */
.hx-enquiry { position: relative; overflow: hidden; background: var(--hx-blue); color: #fff; }
.hx-enquiry::before { position: absolute; top: -220px; right: -180px; width: 620px; height: 620px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; content: ""; }
.hx-enquiry__layout { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; }
.hx-enquiry .hx-eyebrow { color: rgba(255,255,255,.7); }
.hx-enquiry .hx-title { font-size: clamp(38px, 4.2vw, 60px); }
.hx-enquiry__copy { margin-top: 34px; color: rgba(255,255,255,.67); }
.hx-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hx-field { position: relative; }
.hx-field--wide { grid-column: 1 / -1; }
.hx-field input, .hx-field textarea { width: 100%; min-height: 58px; padding: 15px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.35); border-radius: 0; outline: none; background: transparent; color: #fff; }
.hx-field textarea { min-height: 120px; resize: vertical; }
.hx-field input::placeholder, .hx-field textarea::placeholder { color: rgba(255,255,255,.65); }
.hx-field input:focus, .hx-field textarea:focus { border-bottom-color: var(--hx-green); }
.hx-form__submit { grid-column: 1 / -1; margin-top: 14px; justify-self: start; border: 0; cursor: pointer; }
.hx-cta { overflow: hidden; background: var(--hx-blue); color: #fff; }
.hx-cta__grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 9vw; }
.hx-cta h2 { margin-top: 20px; }
.hx-cta__grid > div > p { max-width: 560px; color: rgba(255,255,255,.65); font-size: 18px; }
.hx-cta .hx-enquiry { display: block; min-height: 0; padding: 0; background: transparent; }
.hx-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.hx-enquiry label { display: block; margin-bottom: 18px; color: rgba(255,255,255,.6); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hx-enquiry input, .hx-enquiry textarea { display: block; width: 100%; min-height: 50px; padding: 10px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.35); outline: 0; background: transparent; color: #fff; font-size: 15px; letter-spacing: 0; text-transform: none; }
.hx-enquiry textarea { min-height: 110px; resize: vertical; }
.hx-enquiry input::placeholder, .hx-enquiry textarea::placeholder { color: rgba(255,255,255,.5); }
.hx-enquiry__footer { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 24px; }
.hx-enquiry__footer p { margin: 0; color: rgba(255,255,255,.65); }
.hx-button--green { border: 0; background: var(--hx-green); cursor: pointer; }

/* Inner pages */
.hx-inner-hero { position: relative; overflow: hidden; margin-top: 88px; padding: 100px 0 90px; background: linear-gradient(125deg, #01439f 0%, #086ed0 68%, #0794e7 100%); color: #fff; }
.hx-inner-hero::after { position: absolute; right: -8vw; bottom: -24vw; width: 46vw; height: 46vw; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; }
.hx-inner-hero h1 { position: relative; z-index: 1; max-width: 1050px; margin: 0; font-size: clamp(46px, 5.8vw, 76px); font-weight: 600; letter-spacing: -.055em; line-height: .98; }
.hx-inner-hero__meta { position: relative; z-index: 1; margin-top: 35px; color: rgba(255,255,255,.55); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hx-page { padding: 110px 0 130px; background: var(--hx-paper); }
.hx-category-nav { display: flex; flex-wrap: wrap; gap: 8px; margin: -36px 0 78px; padding: 10px; border: 1px solid var(--hx-line); background: #fff; }
.hx-category-nav a { display: inline-flex; min-height: 44px; align-items: center; padding: 0 18px; border-radius: 2px; color: var(--hx-muted); font-size: 12px; font-weight: 750; letter-spacing: .06em; transition: background .25s, color .25s; }
.hx-category-nav a:hover, .hx-category-nav a.is-active { background: var(--hx-blue); color: #fff; }
.hx-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.hx-page-card { overflow: hidden; background: #fff; box-shadow: 0 0 0 1px var(--hx-line); transition: transform .4s var(--hx-ease), box-shadow .4s; }
.hx-page-card:hover { transform: translateY(-8px); box-shadow: var(--hx-shadow); }
.hx-page-card__media { overflow: hidden; aspect-ratio: 1.2 / 1; background: #e8e8e1; }
.hx-page-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--hx-ease); }
.hx-page-card:hover img { transform: scale(1.05); }
.hx-page-card--product .hx-page-card__media { display: flex; aspect-ratio: 1 / 1; align-items: center; justify-content: center; padding: 26px; background: #fff; }
.hx-page-card--product .hx-page-card__media img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.hx-page-card--product:hover .hx-page-card__media img { transform: scale(1.025); }
.hx-page-card--news .hx-page-card__media { display: flex; aspect-ratio: 1 / 1; align-items: center; justify-content: center; padding: 24px; background: #fff; }
.hx-page-card--news .hx-page-card__media img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.hx-page-card--news:hover .hx-page-card__media img { transform: scale(1.025); }
.hx-page-card__body { padding: 30px; }
.hx-page-card__body h2, .hx-page-card__body h3 { margin: 0 0 14px; font-size: 23px; font-weight: 600; letter-spacing: -.03em; line-height: 1.25; }
.hx-page-card__body p { margin: 0; color: var(--hx-muted); }
.hx-page-card__meta { display: block; margin-bottom: 18px; color: var(--hx-blue); font-size: 11px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.hx-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 64px; }
.hx-pagination a, .hx-pagination span { display: inline-flex; min-width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--hx-line); background: #fff; }
.hx-pagination .page-num-current, .hx-pagination a:hover { border-color: var(--hx-blue); background: var(--hx-blue); color: #fff; }
.hx-detail { padding: 112px 0 130px; background: #fff; }
.hx-detail__layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 8vw; align-items: start; }
.hx-detail__image { position: sticky; top: 125px; display: flex; overflow: hidden; aspect-ratio: 1 / 1; align-items: center; justify-content: center; padding: 30px; border: 1px solid var(--hx-line); background: #fff; }
.hx-detail__image img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.hx-detail__content { color: #3f4a52; font-size: 17px; }
.hx-detail__content h2, .hx-detail__content h3 { margin: 52px 0 18px; color: var(--hx-ink); letter-spacing: -.03em; }
.hx-detail__content p { margin: 0 0 24px; }
.hx-detail__content img { height: auto !important; }
.hx-prose { max-width: 980px; margin: 0 auto; color: #3f4a52; font-size: 17px; }
.hx-prose h2, .hx-prose h3 { color: var(--hx-ink); }
.hx-prose img { height: auto !important; margin: 36px auto; }
.hx-product-description { max-width: none; margin: 30px 0 38px; }
.hx-product-description:empty { display: none; }
.hx-article-hero { padding-bottom: 92px; }
.hx-article-section { padding: 96px 0 128px; background: #fff; }
.hx-article-grid { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 8vw; align-items: start; }
.hx-article-main { min-width: 0; }
.hx-article-heading { margin-bottom: 52px; padding-bottom: 32px; border-bottom: 1px solid var(--hx-line); }
.hx-article-heading > span, .hx-article-aside__head > span { display: block; margin-bottom: 14px; color: var(--hx-blue); font-size: 11px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.hx-article-heading h2 { margin: 0 0 18px; font-size: clamp(32px, 3.4vw, 48px); font-weight: 620; letter-spacing: -.04em; line-height: 1.08; }
.hx-article-heading time { color: var(--hx-muted); font-size: 13px; }
.hx-article-aside { position: sticky; top: 125px; padding-left: 34px; border-left: 1px solid var(--hx-line); }
.hx-article-aside__head { margin-bottom: 28px; }
.hx-article-aside__head h2 { margin: 0; font-size: 30px; letter-spacing: -.035em; }
.hx-hot-list { border-top: 1px solid var(--hx-line); }
.hx-hot-item { display: grid; grid-template-columns: 105px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--hx-line); }
.hx-hot-item__image { display: flex; overflow: hidden; aspect-ratio: 1 / 1; align-items: center; justify-content: center; padding: 7px; background: #fff; }
.hx-hot-item__image img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform .5s var(--hx-ease); }
.hx-hot-item:hover img { transform: scale(1.035); }
.hx-hot-item time { color: var(--hx-muted); font-size: 10px; letter-spacing: .08em; }
.hx-hot-item h3 { margin: 7px 0 10px; font-size: 16px; font-weight: 600; line-height: 1.25; }
.hx-hot-item span { color: var(--hx-blue); font-size: 10px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.hx-contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.hx-contact-overview { background: #fff; }
.hx-contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--hx-line); border-left: 1px solid var(--hx-line); }
.hx-contact-method { position: relative; display: block; min-height: 330px; padding: 38px; border-right: 1px solid var(--hx-line); border-bottom: 1px solid var(--hx-line); background: #fff; transition: background .35s, color .35s, transform .35s var(--hx-ease); }
.hx-contact-method:hover { z-index: 1; background: var(--hx-blue); color: #fff; transform: translateY(-6px); }
.hx-contact-method > span { display: block; margin-bottom: 72px; color: var(--hx-blue); font-size: 11px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.hx-contact-method:hover > span { color: var(--hx-green); }
.hx-contact-method > strong { display: block; margin-bottom: 18px; font-size: 27px; font-weight: 600; letter-spacing: -.035em; }
.hx-contact-method > p { max-width: 340px; margin: 0; color: var(--hx-muted); }
.hx-contact-method:hover > p { color: rgba(255,255,255,.66); }
.hx-contact-method > i { position: absolute; right: 32px; bottom: 30px; font-size: 22px; font-style: normal; }
.hx-contact-method--social:hover { background: var(--hx-navy); }
.hx-contact-socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 27px; }
.hx-contact-socials button { padding: 8px 12px; border: 1px solid var(--hx-line); border-radius: 999px; background: transparent; color: inherit; font-size: 11px; font-weight: 750; letter-spacing: .06em; cursor: pointer; }
.hx-contact-method:hover .hx-contact-socials button { border-color: rgba(255,255,255,.28); }
.hx-contact-socials button:hover { border-color: var(--hx-green) !important; background: var(--hx-green); color: var(--hx-navy); }
.hx-contact-list { border-top: 1px solid var(--hx-line); }
.hx-contact-item { padding: 26px 0; border-bottom: 1px solid var(--hx-line); }
.hx-contact-item span { display: block; margin-bottom: 6px; color: var(--hx-blue); font-size: 11px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.hx-contact-form .hx-field input, .hx-contact-form .hx-field textarea { border-bottom-color: var(--hx-line); color: var(--hx-ink); }
.hx-contact-form .hx-field input::placeholder, .hx-contact-form .hx-field textarea::placeholder { color: var(--hx-muted); }

/* Footer */
.hx-footer { background: linear-gradient(135deg, #01439f 0%, #075fc6 68%, #0873dc 100%); color: #fff; }
.hx-footer__top { display: grid; grid-template-columns: 1.15fr .85fr; gap: 10vw; padding: 94px 0 75px; }
.hx-footer__brand > a:first-child { display: inline-flex; margin-bottom: 32px; padding: 12px 16px; border-radius: 4px; background: #fff; }
.hx-footer__brand img { width: auto; height: 54px; margin-bottom: 32px; }
.hx-footer__brand > a:first-child img { margin-bottom: 0; }
.hx-footer__brand p { max-width: 520px; margin: 0; color: rgba(255,255,255,.54); font-size: 17px; }
.hx-footer__details { display: grid; gap: 10px; max-width: 560px; margin: 26px 0 0; }
.hx-footer__details > div { display: grid; grid-template-columns: 118px minmax(0,1fr); gap: 18px; align-items: baseline; }
.hx-footer__details dt { color: rgba(255,255,255,.48); font-size: 11px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.hx-footer__details dd { margin: 0; color: rgba(255,255,255,.86); font-size: 15px; }
.hx-footer__details a { transition: color .25s; }
.hx-footer__details a:hover { color: var(--hx-green); }
.hx-footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; }
.hx-footer__column h3 { margin: 0 0 24px; color: rgba(255,255,255,.42); font-size: 10px; font-weight: 750; letter-spacing: .18em; text-transform: uppercase; }
.hx-footer__column a { display: block; width: fit-content; margin: 11px 0; font-size: 15px; transition: color .25s; }
.hx-footer__column a:hover { color: var(--hx-green); }
.hx-socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hx-social { display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: transparent; color: #fff; cursor: pointer; transition: transform .3s, border-color .3s, background .3s, color .3s; }
.hx-social svg { width: 18px; height: 18px; fill: currentColor; }
.hx-social:hover { transform: translateY(-3px); border-color: var(--hx-green); background: var(--hx-green); color: var(--hx-navy); }
.hx-footer__bottom { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.38); font-size: 12px; }
.hx-footer__bottom a:hover { color: #fff; }

/* Cookie consent */
.hx-cookie-consent[hidden] { display: none; }
.hx-cookie-consent { position: fixed; z-index: 3000; inset: 0; display: grid; align-items: end; padding: 28px; background: rgba(4,17,25,.56); backdrop-filter: blur(7px); }
.hx-cookie-consent__panel { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 48px; width: min(100%, 1180px); margin: 0 auto; padding: 30px 34px; border: 1px solid rgba(1,67,159,.16); border-radius: 8px; background: #fff; box-shadow: 0 28px 90px rgba(4,17,25,.28); color: var(--hx-ink); }
.hx-cookie-consent__eyebrow { margin: 0 0 8px; color: var(--hx-blue); font-size: 11px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.hx-cookie-consent h2 { margin: 0 0 8px; font-size: clamp(24px,2.4vw,34px); line-height: 1.15; }
.hx-cookie-consent p:last-child { max-width: 740px; margin: 0; color: var(--hx-muted); }
.hx-cookie-consent__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.hx-button--cookie-secondary { border-color: rgba(1,67,159,.24); background: #fff; color: var(--hx-blue); }
.hx-button--cookie-secondary:hover { background: #eef5ff; }

.is-reveal-ready [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--hx-ease), transform .75s var(--hx-ease); }
.is-reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .hx-shell { width: min(100% - 64px, 1440px); }
  .hx-nav { gap: 22px; }
  .hx-header__actions .hx-button { display: none; }
  .hx-product-grid { grid-template-columns: repeat(2, 1fr); }
  .hx-product-card:nth-child(odd) { border-left: 1px solid rgba(255,255,255,.14); }
  .hx-partners__grid { grid-template-columns: repeat(4, 1fr); }
  .hx-logo-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .hx-section { padding: 80px 0; }
  .hx-header__inner { height: 76px; }
  .hx-home .hx-hero { margin-top: 76px; }
  .hx-inner-hero { margin-top: 76px; }
  .hx-brand img, .hx-logo img { height: 42px; }
  .hx-menu-toggle, .hx-menu { display: block; }
  .hx-nav { position: fixed; z-index: -1; inset: 0; display: flex; visibility: hidden; flex-direction: column; align-items: flex-start; justify-content: center; gap: 0; padding: 110px 32px 50px; background: var(--hx-navy); color: #fff; opacity: 0; transition: opacity .3s, visibility .3s; }
  .hx-menu-open .hx-nav { z-index: 999; visibility: visible; opacity: 1; }
  .hx-nav > a, .hx-nav-item > a { width: 100%; height: auto; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 22px; letter-spacing: -.02em; text-transform: none; }
  .hx-nav > a::after, .hx-nav-item > a::after { display: none; }
  .hx-nav-item { display: grid; width: 100%; grid-template-columns: 1fr 46px; }
  .hx-nav-caret { width: 46px; height: 52px; margin: 0; color: #fff; font-size: 22px; transition: transform .25s; }
  .hx-nav-item.is-open .hx-nav-caret { transform: rotate(180deg); }
  .hx-nav-dropdown { position: static; display: none; visibility: visible; width: auto; grid-column: 1 / -1; padding: 5px 0 12px 18px; border-top: 0; background: transparent; box-shadow: none; color: #fff; opacity: 1; transform: none; }
  .hx-nav-item.is-open .hx-nav-dropdown { display: block; }
  .hx-nav-dropdown a { min-height: 42px; padding: 0 10px; border-bottom-color: rgba(255,255,255,.1); color: rgba(255,255,255,.7); font-size: 14px; }
  .hx-nav-dropdown a:hover { padding-left: 15px; background: transparent; color: var(--hx-green); }
  .hx-header__actions { position: relative; z-index: 1001; }
  .hx-header__contact { display: none; }
  .hx-hero, .hx-hero__content { min-height: 720px; }
  .hx-hero h1 { font-size: clamp(46px, 9vw, 66px); }
  .hx-hero__rail-inner { grid-template-columns: repeat(3, 1fr); }
  .hx-hero__fact { min-height: 110px; padding: 22px 18px; }
  .hx-intro__layout, .hx-intro__grid, .hx-company-overview, .hx-process__layout, .hx-process__grid, .hx-enquiry__layout, .hx-cta__grid, .hx-footer__top, .hx-detail__layout, .hx-contact-grid { grid-template-columns: 1fr; gap: 58px; }
  .hx-company-overview__media, .hx-company-overview--page .hx-company-overview__media { position: relative; top: auto; aspect-ratio: 1134 / 784; }
  .hx-intro__side { padding-top: 0; }
  .hx-metrics { grid-template-columns: repeat(2, 1fr); }
  .hx-process__sticky, .hx-detail__image { position: static; }
  .hx-news-grid, .hx-page-grid { grid-template-columns: 1fr 1fr; }
  .hx-article-grid { grid-template-columns: 1fr; gap: 76px; }
  .hx-article-aside { position: static; padding-left: 0; border-left: 0; }
  .hx-hot-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 28px; }
  .hx-contact-methods { grid-template-columns: 1fr; }
  .hx-contact-method { min-height: 250px; }
  .hx-contact-method > span { margin-bottom: 42px; }
  .hx-news-card { min-height: 340px; }
  .hx-news-card__meta { margin-bottom: 60px; }
  .hx-partners__grid { grid-template-columns: repeat(3, 1fr); }
  .hx-partners__head { grid-template-columns: 1fr; gap: 28px; }
  .hx-logo-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .hx-shell { width: calc(100% - 40px); }
  .hx-section { padding: 68px 0; }
  .hx-title { font-size: 36px; }
  .hx-section-head { display: block; margin-bottom: 42px; }
  .hx-section-head .hx-lead { margin-top: 26px; }
  .hx-header__inner { height: 70px; }
  .hx-home .hx-hero { margin-top: 70px; }
  .hx-inner-hero { margin-top: 70px; }
  .hx-brand img, .hx-logo img { height: 37px; max-width: 160px; }
  .hx-lang { display: none; }
  .hx-language { font-size: 10px; }
  .hx-menu-toggle, .hx-menu { width: 42px; height: 42px; }
  .hx-hero, .hx-hero__content { min-height: 680px; }
  .hx-hero__content { justify-content: flex-start; padding: 140px 0 190px; }
  .hx-hero__media::after { background: linear-gradient(90deg, rgba(4,17,25,.93), rgba(4,17,25,.55)), linear-gradient(0deg, rgba(4,17,25,.8), transparent 50%); }
  .hx-hero h1 { margin-bottom: 24px; font-size: 44px; line-height: .98; }
  .hx-hero__copy { font-size: 16px; }
  .hx-hero__actions { flex-direction: column; align-items: stretch; }
  .hx-carousel__controls { bottom: 110px; gap: 10px; }
  .hx-carousel__controls button { width: 42px; height: 42px; }
  .hx-hero > .hx-hero__rail { grid-template-columns: 1fr; }
  .hx-hero > .hx-hero__rail > div { display: none; }
  .hx-hero > .hx-hero__rail > div:first-child { display: block; min-height: 92px; padding: 20px 0; border: 0; }
  .hx-hero__rail-inner { grid-template-columns: 1fr; }
  .hx-hero__fact { display: none; }
  .hx-hero__fact:first-child { display: block; min-height: 92px; padding: 20px 0; border: 0; }
  .hx-intro__layout { gap: 36px; }
  .hx-company-overview { gap: 36px; }
  .hx-company-overview__media, .hx-company-overview--page .hx-company-overview__media { aspect-ratio: 1134 / 784; }
  .hx-company-copy-scroll { max-height: 260px; padding-right: 14px; }
  .hx-intro__side .hx-lead { font-size: 16px; }
  .hx-metrics { margin-top: 65px; grid-template-columns: 1fr 1fr; }
  .hx-metric { min-height: 130px; padding: 22px 18px; }
  .hx-product-grid, .hx-news-grid, .hx-page-grid { grid-template-columns: 1fr; }
  .hx-product-card, .hx-product-card:nth-child(odd) { border-left: 1px solid rgba(255,255,255,.14); }
  .hx-product-card__body { min-height: 150px; }
  .hx-process__step { grid-template-columns: 48px 1fr; }
  .hx-process__steps li { grid-template-columns: 48px 1fr; }
  .hx-news-card { min-height: auto; padding: 30px; }
  .hx-news-card__image { margin: -30px -30px 26px; padding: 14px; }
  .hx-news-card__meta { margin-bottom: 45px; }
  .hx-partners { padding: 70px 0; }
  .hx-partners__grid { grid-template-columns: repeat(2, 1fr); }
  .hx-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .hx-partners__item, .hx-logo-grid > div { height: 126px; padding: 18px; }
  .hx-partners__item img, .hx-logo-grid img { max-width: 138px; max-height: 66px; }
  .hx-page-card--product .hx-page-card__media { padding: 20px; }
  .hx-page-card--news .hx-page-card__media { padding: 20px; }
  .hx-detail__image { padding: 20px; }
  .hx-form { grid-template-columns: 1fr; }
  .hx-field-row { grid-template-columns: 1fr; gap: 0; }
  .hx-field, .hx-field--wide, .hx-form__submit { grid-column: 1; }
  .hx-inner-hero { padding: 74px 0 64px; }
  .hx-inner-hero h1 { font-size: 42px; }
  .hx-article-section { padding: 70px 0 90px; }
  .hx-article-heading h2 { font-size: 32px; }
  .hx-hot-list { grid-template-columns: 1fr; }
  .hx-page, .hx-detail { padding: 76px 0 90px; }
  .hx-footer__top { padding: 70px 0 56px; }
  .hx-footer__nav { gap: 28px; }
  .hx-footer__bottom { min-height: 100px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 4px; }
  .hx-footer__details > div { grid-template-columns: 1fr; gap: 2px; }
  .hx-cookie-consent { padding: 14px; }
  .hx-cookie-consent__panel { grid-template-columns: 1fr; gap: 24px; padding: 24px 20px; }
  .hx-cookie-consent__actions { display: grid; grid-template-columns: 1fr; }
  .hx-cookie-consent__actions .hx-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
