:root {
  --hm-navy: #072448;
  --hm-navy-2: #0b1f42;
  --hm-navy-3: #113a67;
  --hm-blue: #399efd;
  --hm-blue-2: #58adff;
  --hm-ice: #f2f8fe;
  --hm-ice-2: #f8fcff;
  --hm-line: #dceaf8;
  --hm-muted: #657487;
  --hm-text: #09213f;
  --hm-white: #ffffff;
  --hm-green: #2e8b57;
  --hm-shadow: 0 24px 80px rgba(7, 36, 72, 0.14);
  --hm-soft-shadow: 0 18px 48px rgba(7, 36, 72, 0.08);
  --hm-radius-xl: 42px;
  --hm-radius-lg: 30px;
  --hm-radius-md: 22px;
  --hm-container: min(1440px, calc(100vw - 64px));
  --hm-content: var(--hm-container);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(57, 158, 253, 0.08), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f8fcff 48%, #ffffff 100%);
  color: var(--hm-text);
  font-family: Manrope, "SF Pro Display", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(7, 36, 72, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 36, 72, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 60%);
}

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

img,
svg {
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

.hm-sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hm-skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 30;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--hm-navy);
  color: var(--hm-white);
  padding: 12px 18px;
  transition-property: transform;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hm-skip-link:focus {
  transform: translateY(0);
}

.hm-site-header {
  position: sticky;
  top: 18px;
  z-index: 15;
  width: var(--hm-container);
  max-width: calc(100vw - 24px);
  margin: 18px auto 0;
  border: 1px solid rgba(220, 234, 248, 0.9);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 60px rgba(7, 36, 72, 0.08);
  backdrop-filter: blur(18px);
  transition-property: width, margin, border-radius, box-shadow, background-color;
  transition-duration: 320ms;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  overflow: visible;
}

.hm-site-header.is-compact {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 52px rgba(7, 36, 72, 0.12);
}

.hm-topbar {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 44px;
  padding: 0 26px;
  color: var(--hm-muted);
  font-size: 13px;
  border-bottom: 1px solid rgba(220, 234, 248, 0.82);
}

.hm-topbar a {
  color: var(--hm-navy);
  font-weight: 700;
}

.hm-topbar span {
  margin-left: auto;
}

.hm-header-primary {
  display: grid;
  grid-template-columns: auto minmax(24px, 1fr);
  align-items: center;
  gap: 24px;
  max-height: 96px;
  min-height: 78px;
  overflow: hidden;
  padding: 0 26px;
  border-bottom: 1px solid rgba(220, 234, 248, 0.82);
  opacity: 1;
  transform: translateY(0);
  transition-property: max-height, min-height, padding, border-color, opacity, transform;
  transition-duration: 320ms;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.hm-site-header.is-compact .hm-header-primary {
  max-height: 0;
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom-color: transparent;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.hm-header-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  justify-self: end;
  color: var(--hm-navy);
  font-size: 13px;
  font-weight: 800;
}

.hm-header-contact > a:not(.hm-header-quote) {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.hm-header-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(57, 158, 253, 0.34);
  background: rgba(242, 248, 254, 0.78);
  color: var(--hm-navy);
  padding: 8px 14px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(7, 36, 72, 0.06);
  transition-property: transform, background-color, border-color, color, box-shadow;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hm-header-quote:hover {
  border-color: rgba(57, 158, 253, 0.58);
  background: var(--hm-white);
  color: var(--hm-blue);
  box-shadow: 0 12px 28px rgba(7, 36, 72, 0.09);
  transform: translateY(-1px);
}

.hm-header-quote:active {
  transform: scale(0.96);
}

.hm-nav-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 68px;
  padding: 0 18px 0 26px;
  gap: 22px;
  transition-property: grid-template-columns, min-height, padding, gap;
  transition-duration: 320ms;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.hm-site-header.is-compact .hm-nav-shell {
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 58px;
  padding-left: 18px;
}

.hm-logo.hm-nav-logo {
  display: none;
  opacity: 0;
  transform: translateX(-6px);
  transition-property: opacity, transform;
  transition-duration: 260ms;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.hm-site-header.is-compact .hm-logo.hm-nav-logo {
  display: inline-flex;
  opacity: 1;
  transform: translateX(0);
}

.hm-site-header.is-compact .hm-nav-logo .hm-logo__brand {
  width: clamp(118px, 10vw, 152px);
}

.hm-site-header.is-compact .hm-nav-logo .hm-logo__divider,
.hm-site-header.is-compact .hm-nav-logo .hm-logo__context {
  display: none;
}

.hm-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  min-width: 0;
  padding: 8px 10px 8px 0;
  color: var(--hm-navy);
  line-height: 1;
}

.hm-logo__brand {
  display: inline-flex;
  width: clamp(142px, 13vw, 192px);
  min-width: 118px;
}

.hm-logo__brand img {
  width: 100%;
  height: auto;
}

.hm-logo__divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, rgba(57, 158, 253, 0.62), transparent);
}

.hm-logo__context {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 7px 11px 7px 13px;
  border: 1px solid rgba(57, 158, 253, 0.22);
  border-radius: 15px 24px 24px 15px;
  background: linear-gradient(135deg, rgba(242, 248, 254, 0.92), rgba(255, 255, 255, 0.64));
  box-shadow: 0 12px 28px rgba(7, 36, 72, 0.06);
  overflow: hidden;
}

.hm-logo__context::after {
  content: "";
  position: absolute;
  right: -12px;
  top: -10px;
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: rgba(57, 158, 253, 0.14);
  transform: rotate(45deg);
}

.hm-logo__context strong {
  position: relative;
  z-index: 1;
  color: var(--hm-navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hm-logo__context small {
  position: relative;
  z-index: 1;
  color: var(--hm-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hm-nav {
  display: flex;
  justify-content: flex-start;
  gap: 4px;
}

.hm-nav a,
.hm-nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 9px 15px;
  color: var(--hm-navy);
  font-size: 14px;
  font-weight: 750;
  transition-property: background-color, color, transform;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hm-nav a:hover,
.hm-nav-item:hover > a,
.hm-nav-item:focus-within > a {
  background: var(--hm-ice);
  color: var(--hm-blue);
  transform: translateY(-1px);
}

.hm-nav a:active,
.hm-nav-item > a:active,
.hm-icon-link:active,
.hm-menu-toggle:active {
  transform: scale(0.96);
}

.hm-nav-item {
  position: relative;
}

.hm-nav-item::after,
.hm-cart-menu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}

.hm-dropdown,
.hm-mini-cart {
  position: absolute;
  top: calc(100% + 12px);
  z-index: 25;
  min-width: 230px;
  border: 1px solid rgba(220, 234, 248, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(7, 36, 72, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition-property: opacity, transform;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hm-dropdown {
  left: 0;
  display: grid;
  gap: 4px;
  padding: 10px;
}

.hm-dropdown > a {
  justify-content: flex-start;
  border-radius: 16px;
  padding: 12px 14px;
}

.hm-mega-menu {
  width: min(900px, calc(100vw - 48px));
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.45fr);
  gap: 16px;
  padding: 18px;
}

.hm-mega-menu--applications,
.hm-mega-menu--knowledge {
  width: min(700px, calc(100vw - 48px));
}

.hm-mega-lead {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 8%, rgba(57, 158, 253, 0.22), transparent 10rem),
    linear-gradient(135deg, var(--hm-navy), var(--hm-navy-2));
  color: var(--hm-white);
  padding: 22px;
}

.hm-mega-lead::before {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -76px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 56px;
  transform: rotate(35deg);
}

.hm-mega-lead span {
  display: block;
  margin-bottom: 12px;
  color: rgba(179, 219, 255, 0.9);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hm-mega-lead strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 290px;
  font-size: 24px;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.hm-mega-lead p {
  position: relative;
  z-index: 1;
  margin: 16px 0 22px;
  color: rgba(235, 247, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.hm-mega-lead a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 40px;
  background: var(--hm-blue);
  color: var(--hm-white);
  padding: 11px 16px;
}

.hm-mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hm-mega-grid--single {
  grid-template-columns: 1fr;
}

.hm-dropdown .hm-mega-card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 118px;
  border: 1px solid rgba(220, 234, 248, 0.9);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 254, 0.9)),
    var(--hm-white);
  padding: 16px;
  transition-property: transform, background-color, border-color;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hm-dropdown .hm-mega-card strong {
  color: var(--hm-navy);
  font-size: 16px;
  line-height: 1.1;
}

.hm-dropdown .hm-mega-card span {
  color: var(--hm-muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.42;
}

.hm-dropdown .hm-mega-card em {
  color: var(--hm-blue);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hm-dropdown .hm-mega-card:hover {
  border-color: rgba(57, 158, 253, 0.28);
  background: var(--hm-ice);
  transform: translateY(-2px);
}

.hm-nav-item:hover .hm-dropdown,
.hm-nav-item:focus-within .hm-dropdown,
.hm-cart-menu:hover .hm-mini-cart,
.hm-cart-menu:focus-within .hm-mini-cart {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hm-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hm-header-search {
  display: flex;
  align-items: center;
  width: clamp(180px, 18vw, 280px);
  min-height: 44px;
  border: 1px solid rgba(220, 234, 248, 0.95);
  border-radius: 999px;
  background: var(--hm-white);
  padding: 0 4px 0 14px;
  color: var(--hm-muted);
}

.hm-header-search label {
  flex: 1;
  min-width: 0;
}

.hm-header-search svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hm-header-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--hm-navy);
  padding: 0;
  outline: 0;
}

.hm-header-search button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--hm-navy);
  cursor: pointer;
  transition-property: background-color, color, transform;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hm-header-search button:hover {
  background: var(--hm-blue);
  color: var(--hm-white);
}

.hm-header-search button:active {
  transform: scale(0.96);
}

.hm-header-actions > .hm-icon-link:first-of-type {
  display: none;
}

.hm-icon-link,
.hm-menu-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(220, 234, 248, 0.95);
  border-radius: 999px;
  background: var(--hm-white);
  color: var(--hm-navy);
  padding: 0;
  cursor: pointer;
  transition-property: transform, background-color, color;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hm-icon-link:hover,
.hm-menu-toggle:hover {
  background: var(--hm-blue);
  color: var(--hm-white);
  transform: translateY(-1px);
}

.hm-cart-menu {
  position: relative;
}

.hm-cart-count {
  position: absolute;
  top: -3px;
  right: -3px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  border: 2px solid var(--hm-white);
  border-radius: 999px;
  background: var(--hm-blue);
  color: var(--hm-white);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.hm-mini-cart {
  right: 0;
  width: 260px;
  padding: 18px;
}

.hm-mini-cart strong {
  display: block;
  color: var(--hm-navy);
  font-size: 18px;
}

.hm-mini-cart p {
  margin: 8px 0 14px;
  color: var(--hm-muted);
  font-size: 14px;
}

.hm-mini-cart a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  font-weight: 900;
}

.hm-mini-cart a {
  width: 100%;
  background: var(--hm-blue);
  color: var(--hm-white);
}

.hm-icon-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hm-menu-toggle {
  display: none;
  border: 0;
  cursor: pointer;
  align-content: center;
  justify-content: center;
  gap: 4px;
}

.hm-menu-toggle span:not(.hm-sr-only) {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  margin: 0;
  transition-property: transform, opacity;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hm-menu-toggle span:not(.hm-sr-only) + span:not(.hm-sr-only) {
  margin-top: 0;
}

.hm-menu-toggle[aria-expanded="true"] span:not(.hm-sr-only):nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hm-menu-toggle[aria-expanded="true"] span:not(.hm-sr-only):nth-child(2) {
  opacity: 0;
}

.hm-menu-toggle[aria-expanded="true"] span:not(.hm-sr-only):nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hm-mobile-menu {
  display: none;
  max-width: 100%;
  overflow-x: clip;
}

.hm-button,
.woocommerce .hm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 13px 24px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition-property: transform, box-shadow, background-color, color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hm-button:hover,
.woocommerce .hm-button:hover {
  transform: translateY(-2px);
}

.hm-button:active,
.woocommerce .hm-button:active {
  transform: scale(0.96);
}

.hm-button:focus-visible,
.hm-icon-link:focus-visible,
.hm-menu-toggle:focus-visible,
.hm-nav a:focus-visible,
.hm-mobile-menu a:focus-visible,
.hm-logo:focus-visible,
.hm-footer a:focus-visible,
.hm-catalog-card a:focus-visible,
.hm-product-card a:focus-visible,
.hm-knowledge-item:focus-visible,
.hm-download:focus-visible,
.hm-article-card:focus-visible,
.hm-filter-panel input:focus-visible,
.hm-qty button:focus-visible,
.hm-product-gallery__rail button:focus-visible,
.hm-header-search button:focus-visible,
.hm-mini-form input:focus-visible,
.hm-mini-form textarea:focus-visible,
.hm-form input:focus-visible {
  outline: 3px solid rgba(57, 158, 253, 0.34);
  outline-offset: 3px;
}

.hm-button--primary,
.woocommerce .hm-button--primary {
  background: var(--hm-blue);
  color: var(--hm-white);
  box-shadow: 0 16px 40px rgba(57, 158, 253, 0.25);
}

.hm-button--primary:hover,
.woocommerce .hm-button--primary:hover {
  background: #238ff6;
}

.hm-button--secondary {
  border: 1px solid rgba(57, 158, 253, 0.35);
  background: rgba(255, 255, 255, 0.78);
  color: var(--hm-navy);
}

.hm-button--light {
  background: var(--hm-white);
  color: var(--hm-navy);
}

.hm-button--ghost-dark {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--hm-white);
}

.hm-page {
  overflow: hidden;
}

.hm-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 46px;
  width: var(--hm-container);
  min-height: calc(100dvh - 118px);
  margin: -38px auto 0;
  padding: 150px 0 78px;
}

.hm-hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-left: 0;
}

.hm-eyebrow {
  margin: 0 0 16px;
  color: var(--hm-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hm-hero h1,
.hm-section h2,
.hm-brand-moment h2,
.hm-contact-cta h2,
.hm-fallback h1 {
  margin: 0;
  color: var(--hm-navy);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.hm-hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 5.4vw, 82px);
  overflow-wrap: break-word;
}

.hm-lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: #46586b;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.42;
  text-wrap: pretty;
}

.hm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hm-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin: 48px 0 0;
}

.hm-proof-strip div {
  position: relative;
  padding: 18px 18px 18px 20px;
  border-top: 1px solid var(--hm-line);
}

.hm-proof-strip div::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 34px;
  height: 2px;
  background: var(--hm-blue);
}

.hm-proof-strip dt {
  color: var(--hm-navy);
  font-weight: 900;
}

.hm-proof-strip dd {
  margin: 4px 0 0;
  color: var(--hm-muted);
  font-size: 13px;
}

.hm-hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 650px;
}

.hm-photo {
  background-color: var(--hm-navy-2);
  background-position: center;
  background-size: cover;
  outline: 1px solid rgba(0, 0, 0, 0.1);
}

.hm-photo--hero {
  position: absolute;
  inset: 56px 0 0 0;
  border-radius: 0 0 0 160px;
  clip-path: polygon(14% 0, 100% 0, 100% 78%, 82% 100%, 0 100%, 0 18%);
  background-image:
    linear-gradient(135deg, rgba(7, 36, 72, 0.55), rgba(7, 36, 72, 0.08) 48%, rgba(57, 158, 253, 0.2)),
    url("../images/hm-installation.png");
  box-shadow: var(--hm-shadow);
}

.hm-photo--hero::after,
.hm-brand-moment__media::after,
.hm-contact-cta__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.16) 42.2% 42.5%, transparent 42.7%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 34px 34px;
}

.hm-blue-chip {
  position: absolute;
  left: -2px;
  bottom: 17%;
  width: 120px;
  height: 120px;
  border-radius: 36px;
  background: var(--hm-blue);
  transform: rotate(45deg);
  box-shadow: 0 18px 48px rgba(57, 158, 253, 0.32);
}

.hm-hero__line {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(57, 158, 253, 0.18);
  border-radius: 999px;
  transform: rotate(-38deg);
}

.hm-hero__line--one {
  right: 17%;
  top: 16%;
  width: 560px;
  height: 220px;
}

.hm-hero__line--two {
  left: -24%;
  bottom: 12%;
  width: 620px;
  height: 180px;
}

.hm-section {
  width: var(--hm-content);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 138px) 0;
}

.hm-section__header {
  max-width: 820px;
  margin-bottom: 44px;
}

.hm-section__header--split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.6fr);
  gap: 48px;
  max-width: none;
  align-items: end;
}

.hm-section h2,
.hm-brand-moment h2,
.hm-contact-cta h2 {
  font-size: clamp(36px, 4vw, 62px);
}

.hm-section__header p:not(.hm-eyebrow),
.hm-competence__content > p,
.hm-brand-moment p,
.hm-contact-cta p {
  color: #4d6074;
  font-size: 18px;
  line-height: 1.65;
  text-wrap: pretty;
}

.hm-product-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  grid-auto-rows: minmax(250px, auto);
  gap: 18px;
}

.hm-product-tile {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(220, 234, 248, 0.9);
  border-radius: var(--hm-radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(242, 248, 254, 0.86)),
    var(--hm-ice);
  padding: 30px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition-property: transform, box-shadow;
  transition-duration: 260ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hm-product-tile:nth-child(1) {
  grid-row: span 2;
}

.hm-product-tile:nth-child(2) {
  border-radius: 70px var(--hm-radius-lg) var(--hm-radius-lg) var(--hm-radius-lg);
}

.hm-product-tile:nth-child(4) {
  grid-column: span 2;
}

.hm-product-tile:nth-child(5) {
  grid-column: 1 / -1;
  min-height: 220px;
}

.hm-product-tile--dark {
  color: var(--hm-white);
  background:
    radial-gradient(circle at 92% 18%, rgba(57, 158, 253, 0.36), transparent 16rem),
    linear-gradient(135deg, var(--hm-navy-2), var(--hm-navy));
}

.hm-product-tile::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(57, 158, 253, 0.16);
  border-radius: inherit;
  pointer-events: none;
}

.hm-product-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--hm-soft-shadow);
}

.hm-tile-number {
  position: absolute;
  right: 28px;
  top: 24px;
  color: rgba(57, 158, 253, 0.22);
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.hm-line-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  color: var(--hm-blue);
}

.hm-line-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hm-product-tile h3,
.hm-application-card h3,
.hm-product-card h3 {
  margin: 0;
  color: inherit;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hm-product-tile p,
.hm-application-card p,
.hm-product-card p {
  color: inherit;
  opacity: 0.72;
}

.hm-product-tile a,
.hm-application-card a,
.hm-product-card a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 12px;
  color: var(--hm-blue);
  font-weight: 900;
}

.hm-product-tile--dark a {
  color: var(--hm-white);
}

.hm-product-tile:nth-child(5) p {
  max-width: 620px;
}

.hm-product-tile:nth-child(5) .hm-tile-number {
  font-size: 88px;
}

.hm-product-tile:nth-child(5) h3 {
  max-width: 560px;
  font-size: clamp(30px, 3.4vw, 48px);
}

.hm-applications {
  width: var(--hm-container);
}

.hm-application-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr;
  gap: 18px;
  align-items: stretch;
}

.hm-application-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: var(--hm-radius-xl);
  background: var(--hm-ice);
  padding: 36px;
}

.hm-application-card--wide {
  display: grid;
  grid-row: span 2;
  grid-template-columns: 0.95fr 1fr;
  gap: 32px;
  align-items: end;
  min-height: 560px;
}

.hm-application-card--dark {
  color: var(--hm-white);
  background:
    linear-gradient(135deg, rgba(7, 36, 72, 0.92), rgba(17, 58, 103, 0.92)),
    var(--hm-navy);
}

.hm-application-card > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--hm-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hm-photo--water {
  min-height: 480px;
  border-radius: 110px 34px 34px 34px;
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 14% 100%, 0 84%);
  background-image:
    linear-gradient(180deg, rgba(7, 36, 72, 0.12), rgba(7, 36, 72, 0.42)),
    url("../images/hm-building.png");
}

.hm-competence {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.hm-competence__visual {
  position: relative;
  min-height: 640px;
}

.hm-photo--workshop {
  position: absolute;
  inset: 0 10% 0 0;
  border-radius: 34px 130px 34px 34px;
  clip-path: polygon(0 0, 86% 0, 100% 18%, 100% 100%, 8% 100%, 0 88%);
  background-image:
    linear-gradient(135deg, rgba(7, 36, 72, 0.18), rgba(57, 158, 253, 0.18)),
    url("../images/hm-workshop.png");
  box-shadow: var(--hm-shadow);
}

.hm-metric-card {
  position: absolute;
  right: 0;
  bottom: 42px;
  width: 210px;
  padding: 24px;
  border-radius: 30px;
  background: var(--hm-white);
  box-shadow: var(--hm-shadow);
}

.hm-metric-card strong {
  display: block;
  color: var(--hm-blue);
  font-size: 66px;
  line-height: 0.9;
  letter-spacing: -0.075em;
  font-variant-numeric: tabular-nums;
}

.hm-metric-card span {
  color: var(--hm-navy);
  font-weight: 900;
}

.hm-capability-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.hm-capability-list div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--hm-line);
}

.hm-capability-list b {
  color: var(--hm-navy);
}

.hm-capability-list span {
  color: var(--hm-muted);
}

.hm-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.hm-featured-grid > div {
  display: flex;
  min-width: 0;
}

.hm-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(220, 234, 248, 0.92);
  border-radius: 30px;
  background: var(--hm-white);
  transition-property: transform, box-shadow;
  transition-duration: 260ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hm-product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--hm-soft-shadow);
}

.hm-product-photo {
  display: block;
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.hm-product-photo--hatch {
  background-image: linear-gradient(rgba(7, 36, 72, 0.16), rgba(7, 36, 72, 0.36)), url("../images/hm-installation.png");
}

.hm-product-photo--ladder {
  background-image: linear-gradient(rgba(7, 36, 72, 0.16), rgba(7, 36, 72, 0.36)), url("../images/hm-building.png");
}

.hm-product-photo--crane {
  background-image: linear-gradient(rgba(7, 36, 72, 0.16), rgba(7, 36, 72, 0.36)), url("../images/hm-workshop.png");
}

.hm-product-photo--grid {
  background-image: linear-gradient(rgba(7, 36, 72, 0.16), rgba(7, 36, 72, 0.36)), url("../images/hm-contact.png");
}

.hm-product-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: var(--hm-white);
  padding: 24px;
}

.hm-product-card__body h3,
.hm-catalog-card h3,
.hm-info-tile h3 {
  text-wrap: balance;
}

.hm-product-card__body > span {
  align-self: flex-start;
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #eaf7f0;
  color: var(--hm-green);
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
}

.hm-product-card__body p {
  display: -webkit-box;
  min-height: 4.5em;
  margin-bottom: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.hm-product-card__body > a {
  margin-top: auto;
  padding-top: 18px;
}

.hm-brand-moment {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 88px 0 0;
  color: var(--hm-white);
}

.hm-brand-moment__media {
  position: absolute;
  inset: 0;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
  background-image:
    linear-gradient(90deg, rgba(7, 36, 72, 0.92), rgba(7, 36, 72, 0.52), rgba(7, 36, 72, 0.28)),
    url("../images/hm-workshop.png");
  background-position: center;
  background-size: cover;
}

.hm-brand-moment__content {
  position: relative;
  width: var(--hm-content);
  margin: 0 auto;
}

.hm-brand-moment h2,
.hm-contact-cta h2 {
  max-width: 760px;
  color: var(--hm-white);
}

.hm-brand-moment p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

.hm-knowledge-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--hm-line);
  border-radius: 34px;
  background: var(--hm-line);
}

.hm-knowledge-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  min-height: 116px;
  background: rgba(255, 255, 255, 0.92);
  padding: 28px 34px;
  transition-property: background-color, transform;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hm-knowledge-item:hover {
  background: var(--hm-ice);
}

.hm-knowledge-item span {
  color: var(--hm-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hm-knowledge-item strong {
  color: var(--hm-navy);
  font-size: clamp(20px, 2.3vw, 32px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.hm-contact-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: 24px;
  width: var(--hm-content);
  margin: 56px auto 120px;
  overflow: hidden;
  border-radius: 48px;
  background:
    radial-gradient(circle at 84% 18%, rgba(57, 158, 253, 0.42), transparent 18rem),
    linear-gradient(135deg, var(--hm-navy), var(--hm-navy-2));
  padding: clamp(34px, 5vw, 72px);
  color: var(--hm-white);
}

.hm-contact-cta::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  pointer-events: none;
}

.hm-contact-cta__content {
  position: relative;
  z-index: 1;
}

.hm-contact-cta__content p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.72);
}

.hm-contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hm-contact-cta__visual {
  position: relative;
  min-height: 380px;
  border-radius: 120px 26px 26px 26px;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 22%);
  background-image:
    linear-gradient(135deg, rgba(7, 36, 72, 0.08), rgba(7, 36, 72, 0.38)),
    url("../images/hm-contact.png");
  background-position: center;
  background-size: cover;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
}

.hm-footer {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.65fr);
  gap: 52px;
  width: var(--hm-content);
  margin: 0 auto;
  padding: 64px 0 34px;
  border-top: 1px solid var(--hm-line);
}

.hm-footer__brand p {
  max-width: 420px;
  color: var(--hm-muted);
}

.hm-footer h2 {
  margin: 0 0 18px;
  color: var(--hm-navy);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hm-footer nav a {
  display: block;
  margin: 10px 0;
  color: var(--hm-muted);
}

.hm-footer nav a:hover {
  color: var(--hm-blue);
}

.hm-footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--hm-line);
  color: var(--hm-muted);
  font-size: 13px;
}

.hm-fallback {
  width: min(780px, calc(100vw - 40px));
  margin: 120px auto;
}

.hm-fallback h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.hm-reveal {
  opacity: 1;
  transform: none;
  transition-property: opacity, transform;
  transition-duration: 720ms;
  transition-delay: var(--delay, 0ms);
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.hm-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --hm-container: min(100vw - 36px, 1000px);
    --hm-content: var(--hm-container);
  }

  .hm-header-search {
    display: none;
  }

  .hm-header-actions > .hm-icon-link:first-of-type {
    display: grid;
  }

  .hm-nav-shell {
    gap: 14px;
  }

  .hm-mega-menu {
    width: min(740px, calc(100vw - 36px));
  }

  .hm-nav a {
    padding-inline: 11px;
  }

  .hm-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr);
    gap: 28px;
    min-height: 760px;
  }

  .hm-hero h1 {
    font-size: clamp(42px, 5vw, 62px);
  }

  .hm-hero__visual {
    min-height: 600px;
  }

  .hm-competence,
  .hm-contact-cta {
    grid-template-columns: 1fr;
  }

  .hm-section__header--split,
  .hm-application-grid {
    grid-template-columns: 1fr;
  }

  .hm-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hm-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .hm-header-primary {
    display: none;
  }

  .hm-nav {
    display: none;
  }

  .hm-site-header .hm-logo.hm-nav-logo {
    display: inline-flex;
    opacity: 1;
    transform: none;
  }

  .hm-site-header .hm-nav-logo .hm-logo__brand {
    width: clamp(124px, 18vw, 164px);
  }

  .hm-site-header .hm-nav-logo .hm-logo__divider,
  .hm-site-header .hm-nav-logo .hm-logo__context {
    display: none;
  }

  .hm-menu-toggle {
    display: grid;
  }

  .hm-nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
    min-height: 62px;
    padding: 0 14px 0 18px;
  }

  .hm-mobile-menu.is-open {
    display: grid;
    position: relative;
    grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
    gap: 18px;
    max-height: min(680px, calc(100dvh - 112px));
    overflow-x: clip;
    overflow-y: auto;
    padding: 22px 24px 24px;
    border-top: 1px solid rgba(220, 234, 248, 0.74);
    background:
      linear-gradient(112deg, rgba(248, 252, 255, 0.98), rgba(255, 255, 255, 0.88) 56%, rgba(242, 248, 254, 0.96)),
      var(--hm-white);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.82),
      inset 0 28px 44px rgba(57, 158, 253, 0.045);
    isolation: isolate;
  }

  .hm-mobile-menu__search {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-width: 0;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    padding: 8px 8px 8px 18px;
    box-shadow:
      inset 0 0 0 1px rgba(220, 234, 248, 0.92),
      0 16px 36px rgba(7, 36, 72, 0.06);
  }

  .hm-mobile-menu__search label {
    min-width: 0;
  }

  .hm-mobile-menu__search input {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--hm-navy);
    outline: 0;
    padding: 0;
    font-weight: 800;
  }

  .hm-mobile-menu__search input::placeholder {
    color: rgba(101, 116, 135, 0.82);
  }

  .hm-mobile-menu__search button {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: var(--hm-blue);
    color: var(--hm-white);
    cursor: pointer;
    transition-property: transform, background-color;
    transition-duration: 180ms;
    transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
  }

  .hm-mobile-menu__search button:active {
    transform: scale(0.96);
  }

  .hm-mobile-menu__search svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .hm-mobile-menu.is-open::before,
  .hm-mobile-menu.is-open::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: -1;
  }

  .hm-mobile-menu.is-open::before {
    right: 64px;
    top: 34px;
    width: min(180px, 38%);
    height: min(180px, 38vw);
    border: 1px solid rgba(57, 158, 253, 0.16);
    border-radius: 46px;
    transform: rotate(34deg);
  }

  .hm-mobile-menu.is-open::after {
    left: 42%;
    bottom: 18px;
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: rgba(57, 158, 253, 0.12);
    transform: rotate(45deg);
  }

  .hm-mobile-menu__group,
  .hm-mobile-menu__support {
    min-width: 0;
    opacity: 0;
    transform: translateY(8px);
    transition-property: opacity, transform;
    transition-duration: 280ms;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }

  .hm-mobile-menu.is-open .hm-mobile-menu__group,
  .hm-mobile-menu.is-open .hm-mobile-menu__support {
    opacity: 1;
    transform: translateY(0);
  }

  .hm-mobile-menu.is-open .hm-mobile-menu__group--products {
    transition-delay: 45ms;
  }

  .hm-mobile-menu.is-open .hm-mobile-menu__group--browse {
    transition-delay: 90ms;
  }

  .hm-mobile-menu.is-open .hm-mobile-menu__support {
    transition-delay: 135ms;
  }

  .hm-mobile-menu__group {
    display: grid;
    align-content: start;
    gap: 18px;
    min-width: 0;
    border-radius: 28px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(242, 248, 254, 0.92)),
      var(--hm-ice-2);
    padding: 22px;
    box-shadow:
      inset 0 0 0 1px rgba(220, 234, 248, 0.86),
      0 22px 48px rgba(7, 36, 72, 0.075);
  }

  .hm-mobile-menu__group--products {
    grid-row: span 2;
  }

  .hm-mobile-menu__section {
    display: grid;
    align-content: start;
    gap: 10px;
    min-width: 0;
    padding: 0;
  }

  .hm-mobile-menu__eyebrow {
    color: var(--hm-blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
  }

  .hm-mobile-menu strong {
    color: var(--hm-navy);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1;
    text-wrap: balance;
  }

  .hm-mobile-menu p {
    max-width: 34ch;
    margin: 0 0 6px;
    color: var(--hm-muted);
    font-size: 14px;
    line-height: 1.45;
    text-wrap: pretty;
  }

  .hm-mobile-menu__links {
    display: grid;
    max-width: 100%;
    min-width: 0;
    border-top: 1px solid rgba(220, 234, 248, 0.92);
  }

  .hm-mobile-menu__links--products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }

  .hm-mobile-menu a {
    position: relative;
    display: grid;
    min-width: 0;
    max-width: 100%;
    min-height: 48px;
    align-content: center;
    gap: 3px;
    padding: 13px 26px 13px 0;
    color: var(--hm-navy);
    font-weight: 850;
    line-height: 1.15;
    border-bottom: 1px solid rgba(220, 234, 248, 0.82);
    transition-property: color, transform, border-color;
    transition-duration: 180ms;
    transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
  }

  .hm-mobile-menu a::after {
    content: "";
    position: absolute;
    right: 2px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    opacity: 0.42;
    transform: translateY(-50%) rotate(45deg);
    transition-property: opacity, transform;
    transition-duration: 180ms;
    transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
  }

  .hm-mobile-menu a:hover {
    color: var(--hm-blue);
    border-bottom-color: rgba(57, 158, 253, 0.28);
    transform: translateX(1px);
  }

  .hm-mobile-menu a:hover::after {
    opacity: 0.84;
    transform: translate(1px, -50%) rotate(45deg);
  }

  .hm-mobile-menu a:active {
    transform: scale(0.96);
  }

  .hm-mobile-menu small {
    color: var(--hm-muted);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.35;
    text-wrap: pretty;
  }

  .hm-mobile-menu__support {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 18px;
    margin-top: 2px;
    padding: 22px;
  }

  .hm-mobile-menu__contact {
    position: relative;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--hm-navy), var(--hm-navy-2));
    color: var(--hm-white);
    padding: 18px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 18px 42px rgba(7, 36, 72, 0.16);
    overflow: hidden;
  }

  .hm-mobile-menu__contact::before {
    content: "";
    position: absolute;
    right: 44px;
    bottom: -32px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 34px;
    transform: rotate(34deg);
  }

  .hm-mobile-menu__contact .hm-mobile-menu__eyebrow {
    color: rgba(179, 219, 255, 0.92);
  }

  .hm-mobile-menu__contact strong,
  .hm-mobile-menu__contact a,
  .hm-mobile-menu__contact small {
    color: var(--hm-white);
  }

  .hm-mobile-menu__contact .hm-mobile-menu__links {
    border-top-color: rgba(255, 255, 255, 0.14);
  }

  .hm-mobile-menu__contact a {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .hm-mobile-menu__quote {
    min-height: 46px !important;
    justify-content: center;
    margin-top: 6px;
    border: 0 !important;
    border-radius: 999px;
    background: var(--hm-blue);
    color: var(--hm-white) !important;
    padding: 14px 18px !important;
    text-align: center;
    box-shadow: 0 14px 32px rgba(57, 158, 253, 0.25);
  }

  .hm-mobile-menu__quote::after {
    display: none;
  }
}

@media (max-width: 960px) {
  .hm-nav {
    display: none;
  }

  .hm-site-header .hm-logo.hm-nav-logo {
    display: inline-flex;
    opacity: 1;
    transform: none;
  }

  .hm-site-header .hm-nav-logo .hm-logo__brand {
    width: clamp(118px, 26vw, 154px);
  }

  .hm-site-header .hm-nav-logo .hm-logo__divider,
  .hm-site-header .hm-nav-logo .hm-logo__context {
    display: none;
  }

  .hm-page-intro,
  .hm-product-intro,
  .hm-application-intro {
    grid-template-columns: 1fr;
    border-radius: 30px;
    padding: 32px;
  }

  .hm-product-intro__meta {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hm-product-intro__meta span {
    flex: 0 0 auto;
  }

  .hm-menu-toggle {
    display: grid;
  }

  .hm-nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
  }

  .hm-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 142px;
  }

  .hm-hero__visual {
    min-height: 520px;
  }

  .hm-subhero {
    margin-top: 22px;
    padding-top: 64px;
  }
}

@media (max-width: 760px) {
  :root {
    --hm-container: calc(100vw - 24px);
    --hm-content: calc(100vw - 24px);
  }

  .hm-site-header {
    top: 12px;
    margin-top: 12px;
    border-radius: 24px;
  }

  .hm-topbar {
    display: none;
  }

  .hm-header-primary {
    display: none;
  }

  .hm-header-contact {
    justify-content: flex-end;
    justify-self: stretch;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
  }

  .hm-header-contact a[href^="mailto"] {
    display: none;
  }

  .hm-nav-shell {
    min-height: 58px;
    padding: 0 12px;
    gap: 8px;
  }

  .hm-logo {
    gap: 0;
    min-height: 42px;
    padding: 6px 0;
  }

  .hm-logo__brand {
    width: clamp(104px, 32vw, 138px);
    min-width: 0;
  }

  .hm-logo__divider {
    height: 28px;
  }

  .hm-logo__context {
    padding: 6px 9px 6px 10px;
    border-radius: 11px 18px 18px 11px;
  }

  .hm-logo__context strong {
    font-size: 11px;
  }

  .hm-logo__context small {
    font-size: 8px;
  }

  .hm-header-actions {
    gap: 6px;
  }

  .hm-icon-link,
  .hm-menu-toggle {
    width: 39px;
    height: 39px;
  }

  .hm-icon-link svg {
    width: 18px;
    height: 18px;
  }

  .hm-mini-cart {
    display: none;
  }

  .hm-mobile-menu.is-open {
    grid-template-columns: 1fr;
    max-height: calc(100dvh - 82px);
    gap: 16px;
    padding: 18px 18px 20px;
  }

  .hm-mobile-menu.is-open::before {
    right: 44px;
    top: 54px;
  }

  .hm-mobile-menu__group {
    padding: 18px;
  }

  .hm-mobile-menu__group--products {
    grid-row: auto;
  }

  .hm-mobile-menu__links--products {
    grid-template-columns: 1fr;
  }

  .hm-mobile-menu__support {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .hm-mobile-menu strong {
    font-size: 22px;
  }

  .hm-mobile-menu p {
    max-width: 100%;
  }

  .hm-page-intro,
  .hm-product-intro,
  .hm-application-intro {
    margin-top: 18px;
    padding: 28px 22px;
  }

  .hm-page-intro h1,
  .hm-product-intro h1,
  .hm-application-intro h1 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .hm-page-intro p:not(.hm-eyebrow),
  .hm-product-intro p:not(.hm-eyebrow),
  .hm-application-intro p:not(.hm-eyebrow) {
    font-size: 16px;
  }

  .hm-simple-intro {
    margin-top: 18px;
    padding: 36px 0 28px;
  }

  .hm-simple-intro h1 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .hm-hero {
    width: 100%;
    gap: 28px;
    margin-top: -28px;
    padding: 112px 18px 52px;
  }

  .hm-hero__content {
    padding-left: 0;
    min-width: 0;
    width: min(100%, 330px);
    max-width: calc(100vw - 48px);
  }

  .hm-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(28px, 7.5vw, 36px);
    line-height: 1.04;
    hyphens: auto;
    overflow-wrap: anywhere;
    text-wrap: auto;
    word-break: break-word;
    white-space: normal;
  }

  .hm-lead,
  .hm-section__header p:not(.hm-eyebrow),
  .hm-competence__content > p,
  .hm-brand-moment p,
  .hm-contact-cta p {
    font-size: 16px;
  }

  .hm-hero__actions,
  .hm-contact-cta__actions {
    flex-direction: column;
  }

  .hm-button {
    width: 100%;
  }

  .hm-proof-strip {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .hm-hero__visual {
    min-height: 420px;
  }

  .hm-photo--hero {
    inset: 0;
    border-radius: 34px 34px 34px 90px;
    clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 92%);
  }

  .hm-blue-chip {
    width: 78px;
    height: 78px;
    left: 16px;
    bottom: auto;
    top: -18px;
  }

  .hm-section {
    padding: 72px 0;
  }

  .hm-section h2,
  .hm-brand-moment h2,
  .hm-contact-cta h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hm-product-grid,
  .hm-featured-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 0 12px 12px;
    margin-inline: -12px;
    scroll-snap-type: x mandatory;
  }

  .hm-product-tile,
  .hm-featured-grid > div,
  .hm-featured-grid > .hm-product-card {
    flex: 0 0 84%;
    scroll-snap-align: start;
  }

  .hm-product-tile:nth-child(1),
  .hm-product-tile:nth-child(4) {
    grid-row: auto;
    grid-column: auto;
  }

  .hm-application-card,
  .hm-application-card--wide {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 32px;
    padding: 24px;
  }

  .hm-photo--water {
    min-height: 300px;
    border-radius: 70px 24px 24px 24px;
  }

  .hm-competence__visual {
    min-height: 470px;
  }

  .hm-photo--workshop {
    inset: 0;
  }

  .hm-metric-card {
    right: 16px;
    bottom: 16px;
    width: 175px;
  }

  .hm-capability-list div,
  .hm-knowledge-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hm-brand-moment {
    min-height: 560px;
    margin-top: 42px;
  }

  .hm-contact-cta {
    margin-bottom: 76px;
    border-radius: 34px;
    padding: 30px;
  }

  .hm-contact-cta__visual {
    min-height: 270px;
    border-radius: 80px 22px 22px 22px;
  }

  .hm-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hm-footer__bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .hm-reveal {
    opacity: 1;
    transform: none;
  }
}

.hm-static-page {
  padding-top: 34px;
}

.hm-subhero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.62fr);
  gap: 56px;
  width: var(--hm-container);
  margin: 34px auto 0;
  padding: clamp(74px, 8vw, 128px) 0 clamp(54px, 7vw, 96px);
}

.hm-subhero::before {
  content: "";
  position: absolute;
  right: 14%;
  top: 14%;
  width: 470px;
  height: 170px;
  border: 1px solid rgba(57, 158, 253, 0.16);
  border-radius: 999px;
  transform: rotate(-34deg);
  pointer-events: none;
}

.hm-subhero__content {
  align-self: center;
  padding-left: clamp(0px, 4vw, 60px);
}

.hm-subhero h1 {
  max-width: 840px;
  margin: 0;
  color: var(--hm-navy);
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.hm-subhero p:not(.hm-eyebrow) {
  max-width: 670px;
  margin: 24px 0 0;
  color: #4d6074;
  font-size: 19px;
  line-height: 1.62;
  overflow-wrap: break-word;
}

.hm-subhero__visual {
  position: relative;
  min-height: 430px;
}

.hm-subhero__photo {
  position: absolute;
  inset: 0;
  border-radius: 34px 110px 34px 34px;
  clip-path: polygon(0 0, 84% 0, 100% 18%, 100% 100%, 12% 100%, 0 82%);
  background-image:
    linear-gradient(135deg, rgba(7, 36, 72, 0.26), rgba(7, 36, 72, 0.04)),
    url("../images/hm-installation.png");
  background-position: center;
  background-size: cover;
  box-shadow: var(--hm-soft-shadow);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.hm-view {
  width: var(--hm-content);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 104px) 0;
}

.hm-catalog-page {
  padding-top: clamp(30px, 4vw, 52px);
}

.hm-simple-intro {
  width: var(--hm-container);
  margin: 34px auto 0;
  border-bottom: 1px solid rgba(220, 234, 248, 0.95);
  padding: clamp(42px, 6vw, 76px) 0 clamp(28px, 4vw, 48px);
}

.hm-simple-intro h1 {
  max-width: 860px;
  margin: 0;
  color: var(--hm-navy);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hm-simple-intro p:not(.hm-eyebrow) {
  max-width: 700px;
  margin: 20px 0 0;
  color: #4d6074;
  font-size: 18px;
  line-height: 1.62;
}

.hm-page-intro,
.hm-product-intro,
.hm-application-intro {
  position: relative;
  width: var(--hm-container);
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(220, 234, 248, 0.92);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 254, 0.9)),
    var(--hm-white);
  box-shadow: 0 18px 70px rgba(7, 36, 72, 0.07);
}

.hm-page-intro::before,
.hm-product-intro::before,
.hm-application-intro::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 150px;
  border: 1px solid rgba(57, 158, 253, 0.14);
  border-radius: 999px;
  pointer-events: none;
}

.hm-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 36px;
  align-items: end;
  border-radius: 34px 92px 34px 34px;
  padding: clamp(42px, 6vw, 76px);
}

.hm-page-intro::before {
  right: -70px;
  top: 28px;
  transform: rotate(-28deg);
}

.hm-page-intro__copy,
.hm-product-intro__copy,
.hm-application-intro__copy {
  position: relative;
  z-index: 1;
}

.hm-page-intro h1,
.hm-product-intro h1,
.hm-application-intro h1 {
  max-width: 840px;
  margin: 0;
  color: var(--hm-navy);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hm-page-intro p:not(.hm-eyebrow),
.hm-product-intro p:not(.hm-eyebrow),
.hm-application-intro p:not(.hm-eyebrow) {
  max-width: 690px;
  margin: 20px 0 0;
  color: #4d6074;
  font-size: 18px;
  line-height: 1.6;
}

.hm-product-intro__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(57, 158, 253, 0.18);
  border-radius: 999px;
  background: var(--hm-white);
  color: var(--hm-navy);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 900;
}

.hm-product-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: 34px;
  align-items: center;
  border-radius: 34px;
  padding: clamp(42px, 6vw, 82px);
}

.hm-product-intro::before {
  right: -110px;
  bottom: -42px;
  transform: rotate(34deg);
}

.hm-product-intro__meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 8%, rgba(57, 158, 253, 0.24), transparent 9rem),
    linear-gradient(135deg, var(--hm-navy), var(--hm-navy-2));
  padding: 22px;
}

.hm-product-intro__meta span {
  background: rgba(255, 255, 255, 0.08);
  color: var(--hm-white);
  border-color: rgba(255, 255, 255, 0.18);
}

.hm-application-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.7fr);
  gap: 34px;
  align-items: center;
  border-radius: 34px 96px 34px 34px;
  padding: clamp(42px, 6vw, 74px);
}

.hm-application-intro::before {
  left: -120px;
  bottom: 22px;
  transform: rotate(-24deg);
}

.hm-application-intro__visual {
  position: relative;
  z-index: 1;
  min-height: 320px;
  overflow: hidden;
  border-radius: 32px 88px 32px 32px;
  clip-path: polygon(0 0, 88% 0, 100% 18%, 100% 100%, 12% 100%, 0 82%);
  background-image:
    linear-gradient(135deg, rgba(7, 36, 72, 0.18), rgba(57, 158, 253, 0.1)),
    url("../images/hm-installation.png");
  background-position: center;
  background-size: cover;
  box-shadow: var(--hm-soft-shadow);
}

.hm-category-head h1,
.hm-contact-lead h1 {
  margin: 0;
  color: var(--hm-navy);
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hm-shop-head h1 {
  margin: 0;
  color: var(--hm-navy);
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hm-shop-head p:not(.hm-eyebrow),
.hm-category-head p,
.hm-contact-lead > p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #4d6074;
  font-size: 18px;
  line-height: 1.62;
}

.hm-catalog-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  margin-top: 34px;
  align-items: start;
}

.hm-filter-panel,
.hm-summary,
.hm-buybox,
.hm-process-panel,
.hm-empty-state {
  border: 1px solid rgba(220, 234, 248, 0.95);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--hm-soft-shadow);
}

.hm-filter-panel {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 28px;
}

.hm-filter-panel__head {
  display: grid;
  gap: 7px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(242, 248, 254, 0.92), rgba(255, 255, 255, 0.68));
  box-shadow: inset 0 0 0 1px rgba(220, 234, 248, 0.72);
  padding: 16px;
}

.hm-filter-panel p {
  margin: 0;
  color: var(--hm-muted);
  font-size: 13px;
  line-height: 1.45;
  text-wrap: pretty;
}

.hm-filter-panel h2 {
  margin: 0;
  color: var(--hm-navy);
  font-size: 22px;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.hm-summary h2,
.hm-buybox h2,
.hm-product-details h2,
.hm-faq-block h2,
.hm-process-panel h2,
.hm-empty-state h2 {
  margin: 0 0 12px;
  color: var(--hm-navy);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hm-filter-panel fieldset {
  display: grid;
  gap: 11px;
  margin: 0;
  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 0 0 1px rgba(220, 234, 248, 0.68);
  padding: 14px;
}

.hm-filter-panel legend {
  width: 100%;
  margin-bottom: 13px;
  color: var(--hm-navy);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  padding: 0 6px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(2px);
}

.hm-filter-options {
  display: grid;
  gap: 6px;
}

.hm-filter-panel label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  border-radius: 14px;
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(220, 234, 248, 0);
  color: var(--hm-navy);
  cursor: pointer;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.25;
  padding: 9px 10px 9px 12px;
  text-wrap: pretty;
  transition-property: transform, background-color, box-shadow, color;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hm-filter-panel label:hover {
  background: rgba(242, 248, 254, 0.9);
  color: var(--hm-blue);
  box-shadow:
    inset 0 0 0 1px rgba(57, 158, 253, 0.18),
    0 8px 20px rgba(7, 36, 72, 0.05);
  transform: translateY(-1px);
}

.hm-filter-panel label:active {
  transform: scale(0.96);
}

.hm-filter-panel label:has(input:checked) {
  background: linear-gradient(135deg, rgba(242, 248, 254, 0.98), rgba(255, 255, 255, 0.96));
  color: var(--hm-navy);
  box-shadow:
    inset 0 0 0 1px rgba(57, 158, 253, 0.42),
    0 12px 26px rgba(57, 158, 253, 0.12);
}

.hm-filter-panel input {
  order: 2;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin: 0;
  border: 1px solid rgba(57, 158, 253, 0.36);
  border-radius: 7px;
  appearance: none;
  background: var(--hm-white);
  box-shadow: inset 0 1px 1px rgba(7, 36, 72, 0.06);
  transition-property: background-color, border-color, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hm-filter-panel input::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 4px;
  background: var(--hm-white);
  opacity: 0;
  transform: scale(0.25);
  filter: blur(4px);
  transition-property: opacity, transform, filter;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hm-filter-panel input:checked {
  border-color: var(--hm-blue);
  background: var(--hm-blue);
  box-shadow: 0 8px 18px rgba(57, 158, 253, 0.18);
}

.hm-filter-panel input:checked::before {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.hm-shop-list {
  min-width: 0;
}

.hm-shop-head {
  width: var(--hm-content);
  margin: 0 auto;
  padding: 0 0 clamp(18px, 2.4vw, 28px);
}

.hm-woo-page .hm-view {
  padding-top: clamp(6px, 1.4vw, 18px);
}

.hm-toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--hm-muted);
  font-weight: 800;
}

.hm-toolbar span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: 999px;
  background: rgba(242, 248, 254, 0.84);
  box-shadow: inset 0 0 0 1px rgba(220, 234, 248, 0.88);
  padding: 8px 14px;
  font-variant-numeric: tabular-nums;
}

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

.hm-catalog-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hm-catalog-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(220, 234, 248, 0.95);
  border-radius: 30px;
  background: var(--hm-white);
  transition-property: transform, box-shadow;
  transition-duration: 260ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hm-catalog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--hm-soft-shadow);
}

.hm-catalog-card__link {
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
}

.hm-catalog-card__media {
  position: relative;
  z-index: 2;
  min-height: 190px;
  background-image:
    linear-gradient(rgba(7, 36, 72, 0.12), rgba(7, 36, 72, 0.34)),
    url("../images/hm-installation.png");
  background-position: center;
  background-size: cover;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.hm-catalog-card__body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: minmax(56px, auto) minmax(108px, auto) auto auto;
  padding: 22px;
  pointer-events: none;
}

.hm-catalog-card span,
.hm-buybox > span {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #eaf7f0;
  color: var(--hm-green);
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
}

.hm-catalog-card h3 {
  min-height: 56px;
  margin: 0;
  color: var(--hm-navy);
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hm-catalog-card p,
.hm-summary p,
.hm-buybox p,
.hm-process-panel p,
.hm-empty-state p {
  color: var(--hm-muted);
}

.hm-catalog-card__price,
.hm-product-price {
  color: var(--hm-navy);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.hm-catalog-card__price {
  align-self: end;
  margin-top: 16px;
}

.hm-catalog-card__price span,
.hm-product-price span {
  display: inline;
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.hm-product-price {
  font-size: clamp(28px, 3vw, 42px);
}

.hm-catalog-card a,
.hm-download,
.hm-article-card,
.hm-knowledge-item {
  font-weight: 900;
}

.hm-catalog-card a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.hm-catalog-card .hm-button {
  position: relative;
  z-index: 5;
  pointer-events: auto;
}

.hm-spec-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: center;
  margin-bottom: 34px;
  border-radius: 34px;
  background: var(--hm-ice);
  padding: 34px;
}

.hm-spec-band p {
  margin: 0;
  color: var(--hm-navy);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.hm-spec-band div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hm-spec-band span {
  border: 1px solid rgba(57, 158, 253, 0.24);
  border-radius: 999px;
  background: var(--hm-white);
  color: var(--hm-navy);
  padding: 9px 13px;
  font-weight: 850;
}

.hm-category-page {
  padding-top: clamp(46px, 6vw, 86px);
}

.hm-category-head {
  display: grid;
  max-width: 900px;
  margin-bottom: 38px;
}

.hm-category-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.hm-category-aside {
  position: sticky;
  top: 150px;
  overflow: hidden;
  border: 1px solid rgba(220, 234, 248, 0.95);
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 8%, rgba(57, 158, 253, 0.16), transparent 11rem),
    rgba(255, 255, 255, 0.92);
  padding: 26px;
  box-shadow: var(--hm-soft-shadow);
}

.hm-category-aside h2,
.hm-category-toolbar span,
.hm-contact-form h2,
.hm-contact-prep h2 {
  margin: 0;
  color: var(--hm-navy);
  letter-spacing: -0.035em;
}

.hm-category-aside h2,
.hm-contact-form h2,
.hm-contact-prep h2 {
  font-size: 24px;
  line-height: 1.08;
}

.hm-category-aside p {
  margin: 12px 0 22px;
  color: var(--hm-muted);
}

.hm-category-aside dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.hm-category-aside div {
  border-top: 1px solid var(--hm-line);
  padding: 14px 0;
}

.hm-category-aside div:first-child {
  border-top: 0;
}

.hm-category-aside dt {
  color: var(--hm-navy);
  font-weight: 900;
}

.hm-category-aside dd {
  margin: 3px 0 0;
  color: var(--hm-muted);
  font-size: 13px;
}

.hm-category-aside a,
.hm-category-toolbar a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-radius: 999px;
  color: var(--hm-blue);
  font-weight: 900;
}

.hm-category-aside a {
  margin-top: 18px;
}

.hm-category-main {
  min-width: 0;
}

.hm-category-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--hm-line);
  padding-bottom: 18px;
}

.hm-category-toolbar span {
  font-size: 18px;
}

.hm-product-view {
  display: grid;
  gap: 28px;
  align-items: start;
  padding-top: 8px;
}

.hm-product-page {
  padding-top: 0;
}

.hm-product-commerce {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.72fr);
  gap: 34px;
  align-items: start;
}

.hm-product-gallery {
  position: static;
  margin-top: 0;
}

.hm-product-gallery__main {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(220, 234, 248, 0.95);
  border-radius: 40px 116px 40px 40px;
  clip-path: polygon(0 0, 90% 0, 100% 14%, 100% 100%, 8% 100%, 0 88%);
  background-image:
    linear-gradient(135deg, rgba(7, 36, 72, 0.18), rgba(57, 158, 253, 0.08)),
    url("../images/hm-installation.png");
  background-size: cover;
  background-position: center;
  box-shadow: var(--hm-soft-shadow);
}

.hm-product-gallery__main--image {
  background: var(--hm-ice);
}

.hm-product-gallery__main--image img {
  display: block;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hm-product-gallery__main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 74px 74px;
  pointer-events: none;
}

.hm-product-gallery__main span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  border-radius: 999px;
  background: rgba(7, 36, 72, 0.82);
  color: var(--hm-white);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hm-product-gallery__rail {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.hm-product-gallery__rail button {
  width: 92px;
  height: 72px;
  border: 1px solid rgba(220, 234, 248, 0.95);
  border-radius: 18px;
  background:
    linear-gradient(rgba(7, 36, 72, 0.08), rgba(7, 36, 72, 0.22)),
    url("../images/hm-installation.png");
  background-position: center;
  background-size: cover;
  cursor: pointer;
  transition-property: transform, border-color;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hm-product-gallery__rail button:hover {
  border-color: rgba(57, 158, 253, 0.48);
  transform: translateY(-2px);
}

.hm-product-gallery__rail button:active {
  transform: scale(0.97);
}

.hm-product-summary {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.hm-product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--hm-muted);
  font-size: 13px;
  font-weight: 850;
}

.hm-product-breadcrumb a {
  color: var(--hm-blue);
}

.hm-product-breadcrumb span:last-child {
  min-width: 0;
  color: var(--hm-navy);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hm-product-summary h1 {
  margin: 0;
  color: var(--hm-navy);
  font-size: clamp(42px, 4.8vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hm-product-lead {
  max-width: 680px;
  margin: 0;
  color: #4d6074;
  font-size: 18px;
  line-height: 1.62;
}

.hm-product-lead p {
  margin: 0;
}

.hm-product-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hm-product-flags span {
  border: 1px solid rgba(57, 158, 253, 0.2);
  border-radius: 999px;
  background: var(--hm-ice-2);
  color: var(--hm-navy);
  padding: 10px 13px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hm-product-config {
  overflow: hidden;
  border: 1px solid rgba(220, 234, 248, 0.95);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
}

.hm-product-config h2 {
  margin: 0;
  border-bottom: 1px solid var(--hm-line);
  color: var(--hm-navy);
  padding: 20px 22px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.hm-product-config div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  border-top: 1px solid var(--hm-line);
  padding: 18px 22px;
}

.hm-product-config div:first-of-type {
  border-top: 0;
}

.hm-product-config span {
  color: var(--hm-muted);
  font-size: 13px;
  font-weight: 850;
}

.hm-product-config strong {
  color: var(--hm-navy);
  font-weight: 850;
}

.hm-buybox,
.hm-summary,
.hm-process-panel,
.hm-empty-state {
  padding: 28px;
}

.hm-product-summary .hm-buybox {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 96% 0%, rgba(57, 158, 253, 0.18), transparent 12rem),
    rgba(255, 255, 255, 0.96);
}

.hm-product-summary .hm-buybox::before {
  content: "";
  position: absolute;
  right: -78px;
  bottom: -118px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(57, 158, 253, 0.14);
  border-radius: 70px;
  transform: rotate(32deg);
  pointer-events: none;
}

.hm-product-summary .hm-buybox > * {
  position: relative;
  z-index: 1;
}

.hm-product-cart {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hm-buybox form.cart,
.hm-buybox .variations_form {
  display: grid;
  gap: 16px;
}

.hm-buybox table.variations {
  margin: 0;
  border: 0;
}

.hm-buybox table.variations tr,
.hm-buybox table.variations th,
.hm-buybox table.variations td {
  display: grid;
  width: 100%;
  border: 0;
  padding: 0;
  text-align: left;
}

.hm-buybox table.variations tr {
  gap: 8px;
}

.hm-buybox table.variations label {
  color: var(--hm-navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hm-buybox table.variations select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--hm-line);
  border-radius: 16px;
  background: var(--hm-white);
  color: var(--hm-navy);
  padding: 10px 12px;
  font-weight: 850;
}

.hm-buybox .reset_variations {
  display: none !important;
  margin-top: 8px;
  color: var(--hm-blue);
  font-size: 13px;
  font-weight: 900;
}

.hm-buybox .single_variation_wrap,
.hm-buybox .woocommerce-variation-add-to-cart {
  display: grid;
  gap: 14px;
}

.hm-buybox .woocommerce-variation-price {
  color: var(--hm-navy);
  font-size: 24px;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.hm-buybox .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hm-quantity-control {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.hm-quantity-control .quantity {
  display: contents;
}

.hm-product-cart .quantity {
  display: block;
}

.hm-product-cart .qty,
.hm-buybox .qty {
  width: 72px;
  min-height: 50px;
  border: 1px solid var(--hm-line);
  border-radius: 15px;
  background: var(--hm-white);
  color: var(--hm-navy);
  padding: 10px 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 850;
  appearance: textfield;
  -moz-appearance: textfield;
}

.hm-product-cart .qty::-webkit-inner-spin-button,
.hm-product-cart .qty::-webkit-outer-spin-button,
.hm-buybox .qty::-webkit-inner-spin-button,
.hm-buybox .qty::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

.hm-quantity-control__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 50px;
  border: 1px solid rgba(57, 158, 253, 0.26);
  border-radius: 15px;
  background: rgba(242, 248, 254, 0.9);
  color: var(--hm-navy);
  cursor: pointer;
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
  transition-property: transform, background-color, border-color, color, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hm-quantity-control__button:hover {
  border-color: rgba(57, 158, 253, 0.48);
  background: var(--hm-blue);
  color: var(--hm-white);
  box-shadow: 0 10px 22px rgba(57, 158, 253, 0.18);
  transform: translateY(-1px);
}

.hm-quantity-control__button:active {
  transform: scale(0.96);
}

.hm-buybox .single_add_to_cart_button {
  justify-self: start;
  width: fit-content;
}

.hm-project-quote {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  border-top: 1px solid rgba(220, 234, 248, 0.95);
  padding-top: 18px;
}

.hm-project-quote span {
  color: var(--hm-blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hm-project-quote p {
  margin: 0;
  max-width: 520px;
  font-size: 14px;
}

.hm-project-quote a {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  border: 1px solid rgba(57, 158, 253, 0.28);
  border-radius: 999px;
  background: rgba(242, 248, 254, 0.82);
  color: var(--hm-navy);
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 950;
}

.hm-product-secondary {
  display: inline-flex;
  margin-top: 14px;
  color: var(--hm-blue);
  font-size: 14px;
  font-weight: 900;
}

.hm-qty {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 8px;
  margin: 24px 0;
}

.hm-qty button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--hm-ice);
  color: var(--hm-navy);
  cursor: pointer;
  font-weight: 900;
  transition-property: transform, background-color, color;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hm-qty button:hover {
  background: var(--hm-blue);
  color: var(--hm-white);
}

.hm-qty button:active {
  transform: scale(0.96);
}

.hm-qty strong {
  text-align: center;
  color: var(--hm-navy);
  font-variant-numeric: tabular-nums;
}

.hm-product-details,
.hm-faq-block {
  grid-column: 1 / -1;
}

.hm-product-details {
  overflow: hidden;
  border: 1px solid rgba(220, 234, 248, 0.95);
  border-radius: 30px;
  background:
    radial-gradient(circle at 98% 0%, rgba(57, 158, 253, 0.12), transparent 13rem),
    rgba(255, 255, 255, 0.96);
  padding: clamp(24px, 3.5vw, 40px);
  box-shadow: 0 18px 44px rgba(16, 44, 82, 0.07);
}

.hm-product-details h2,
.hm-related-products h2 {
  margin: 0 0 18px;
  color: var(--hm-navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hm-product-description {
  max-width: 980px;
  color: var(--hm-text);
  font-size: 17px;
  line-height: 1.68;
}

.hm-product-description > :first-child {
  margin-top: 0;
}

.hm-product-description > :last-child {
  margin-bottom: 0;
}

.hm-product-description h2,
.hm-product-description h3,
.hm-product-description h4 {
  margin: 28px 0 12px;
  color: var(--hm-navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hm-product-description ul,
.hm-product-description ol {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.hm-related-products {
  display: grid;
  gap: 20px;
  padding-top: 10px;
}

.hm-related-products .hm-catalog-card__media {
  min-height: 160px;
}

.hm-related-products .hm-catalog-card__body {
  grid-template-rows: auto minmax(72px, auto) auto auto;
  padding: 18px;
}

.hm-related-products .hm-catalog-card h3 {
  min-height: 46px;
  font-size: 21px;
}

.hm-related-products .hm-catalog-card p {
  margin: 10px 0 0;
}

.hm-related-products .hm-catalog-card__price {
  margin-top: 12px;
  font-size: 18px;
}

.hm-related-products .hm-catalog-card__actions {
  margin-top: 14px;
}

.hm-spec-table {
  overflow: hidden;
  border: 1px solid var(--hm-line);
  border-radius: 24px;
  background: var(--hm-white);
}

.hm-spec-table div {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  padding: 18px 22px;
  border-top: 1px solid var(--hm-line);
}

.hm-spec-table div:first-child {
  border-top: 0;
}

.hm-spec-table dt {
  color: var(--hm-muted);
  font-weight: 800;
}

.hm-spec-table dd {
  margin: 0;
  color: var(--hm-navy);
  font-weight: 800;
}

.hm-download {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  border: 1px solid var(--hm-line);
  border-radius: 22px;
  background: var(--hm-ice-2);
  color: var(--hm-navy);
  padding: 20px;
}

.hm-mini-form,
.hm-form {
  display: grid;
  gap: 14px;
}

.hm-mini-form label,
.hm-form label {
  display: grid;
  gap: 8px;
  color: var(--hm-navy);
  font-weight: 850;
}

.hm-mini-form input,
.hm-mini-form textarea,
.hm-form input {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--hm-line);
  border-radius: 18px;
  background: var(--hm-white);
  color: var(--hm-navy);
  padding: 12px 14px;
}

.hm-mini-form textarea {
  min-height: 110px;
  resize: vertical;
}

.hm-form-error {
  border-radius: 18px;
  background: #fff7e8;
  color: #8a5a00;
  padding: 14px;
}

.hm-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
}

.hm-form {
  border-radius: 36px;
  background: var(--hm-ice);
  padding: 34px;
}

.hm-application-view,
.hm-knowledge-layout {
  display: grid;
  gap: 28px;
}

.hm-application-story {
  max-width: 840px;
}

.hm-application-story h2,
.hm-article h2 {
  margin: 0;
  color: var(--hm-navy);
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hm-asymmetric-list {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 18px;
}

.hm-info-tile {
  min-height: 230px;
  border-radius: 32px;
  background: var(--hm-ice);
  padding: 28px;
}

.hm-info-tile:nth-child(2) {
  transform: translateY(32px);
}

.hm-info-tile span {
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--hm-blue);
}

.hm-article-card {
  display: block;
  border-top: 1px solid var(--hm-line);
  padding: 34px 0;
}

.hm-article-card span {
  color: var(--hm-blue);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hm-article-card h2 {
  max-width: 880px;
  margin: 10px 0;
  color: var(--hm-navy);
  font-size: clamp(28px, 3.8vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hm-article {
  display: grid;
  grid-template-columns: 220px minmax(0, 820px);
  gap: 56px;
  align-items: start;
}

.hm-article aside {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 12px;
}

.hm-article aside a {
  border-radius: 999px;
  background: var(--hm-ice);
  color: var(--hm-navy);
  padding: 12px 16px;
  font-weight: 850;
}

.hm-faq-block {
  margin-top: 42px;
}

.hm-faq-block details {
  border-top: 1px solid var(--hm-line);
  padding: 22px 0;
}

.hm-faq-block summary {
  color: var(--hm-navy);
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hm-downloads {
  display: grid;
  gap: 14px;
}

.hm-contact-page {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.62fr);
  gap: 34px;
  align-items: start;
  padding-top: clamp(54px, 7vw, 98px);
}

.hm-contact-lead {
  position: sticky;
  top: 150px;
  min-width: 0;
}

.hm-contact-methods {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-top: 34px;
}

.hm-contact-methods a,
.hm-contact-methods div {
  display: grid;
  gap: 5px;
  border-top: 1px solid var(--hm-line);
  padding: 18px 0;
}

.hm-contact-methods span {
  color: var(--hm-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hm-contact-methods strong {
  color: var(--hm-navy);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.hm-contact-form {
  border: 1px solid rgba(220, 234, 248, 0.95);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(57, 158, 253, 0.16), transparent 12rem),
    rgba(255, 255, 255, 0.94);
  padding: 30px;
  box-shadow: var(--hm-soft-shadow);
}

.hm-contact-prep {
  grid-column: 2;
  border-radius: 30px;
  background: var(--hm-ice);
  padding: 28px;
}

.hm-contact-prep ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--hm-muted);
}

.hm-process-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.hm-process-panel h2 {
  font-size: clamp(34px, 4vw, 62px);
  letter-spacing: -0.05em;
}

.hm-empty-state {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}

.hm-woo-page .woocommerce {
  color: var(--hm-text);
}

.hm-filter-choice {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  border-radius: 14px;
  color: var(--hm-navy);
  cursor: pointer;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.25;
  padding: 9px 10px 9px 12px;
  transition-property: transform, background-color, box-shadow, color;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hm-filter-choice:hover,
.hm-filter-choice.is-active {
  background: rgba(242, 248, 254, 0.9);
  color: var(--hm-blue);
  box-shadow:
    inset 0 0 0 1px rgba(57, 158, 253, 0.18),
    0 8px 20px rgba(7, 36, 72, 0.05);
}

.hm-filter-choice:hover {
  transform: translateY(-1px);
}

.hm-filter-choice input {
  pointer-events: none;
}

.hm-catalog-card__media img,
.hm-product-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin: 0;
}

.hm-product-photo img {
  height: 100%;
}

.hm-catalog-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  align-self: end;
  margin-top: 18px;
}

.hm-catalog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.hm-catalog-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hm-catalog-pagination a,
.hm-catalog-pagination span {
  display: grid;
  min-width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--hm-line);
  border-radius: 999px;
  background: var(--hm-white);
  color: var(--hm-navy);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.hm-catalog-pagination .current {
  border-color: var(--hm-blue);
  background: var(--hm-blue);
  color: var(--hm-white);
}

.hm-woo-content .button:not(.hm-button),
.hm-woo-content button.button:not(.hm-button),
.hm-woo-content input.button:not(.hm-button),
.hm-woo-content #respond input#submit:not(.hm-button) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  background: var(--hm-blue) !important;
  color: #fff !important;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  min-height: 48px;
  padding: 13px 24px;
  box-shadow:
    0 16px 32px rgba(57, 158, 253, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.28) inset;
  transition-duration: 240ms;
  transition-property: transform, background-color, color, box-shadow;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hm-woo-content .button:not(.hm-button):hover,
.hm-woo-content button.button:not(.hm-button):hover,
.hm-woo-content input.button:not(.hm-button):hover,
.hm-woo-content #respond input#submit:not(.hm-button):hover {
  background: var(--hm-navy) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

.hm-woo-content .button:not(.hm-button):active,
.hm-woo-content button.button:not(.hm-button):active,
.hm-woo-content input.button:not(.hm-button):active,
.hm-woo-content #respond input#submit:not(.hm-button):active {
  transform: scale(0.96);
}

.hm-price-note {
  display: inline-flex;
  color: var(--hm-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hm-woo-content div.product {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.hm-woo-content div.product div.images,
.hm-woo-content div.product div.summary {
  float: none;
  width: auto;
}

.hm-woo-content div.product div.images img {
  border-radius: 30px;
  background: var(--hm-ice);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.hm-woo-content div.product .product_title {
  color: var(--hm-navy);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hm-woo-content div.product .summary {
  border: 1px solid rgba(220, 234, 248, 0.95);
  border-radius: 30px;
  background: #fff;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--hm-soft-shadow);
}

.hm-woo-content div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hm-woo-content div.product .woocommerce-tabs {
  grid-column: 1 / -1;
}

.hm-woo-content table.shop_attributes,
.hm-woo-content table.shop_table {
  width: 100%;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 22px;
  background: var(--hm-white);
  box-shadow:
    inset 0 0 0 1px var(--hm-line),
    0 12px 30px rgba(16, 44, 82, 0.05);
  overflow: hidden;
}

.hm-woo-content table.shop_attributes th,
.hm-woo-content table.shop_attributes td,
.hm-woo-content table.shop_table th,
.hm-woo-content table.shop_table td {
  border: 0;
  border-top: 1px solid var(--hm-line);
  padding: 16px;
  vertical-align: middle;
}

.hm-woo-content table.shop_table thead th {
  border-top: 0;
  background: var(--hm-ice-2);
  color: var(--hm-navy);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hm-woo-content table.shop_table .product-name a,
.hm-woo-content table.shop_table .product-name,
.hm-woo-content table.shop_table .product-price,
.hm-woo-content table.shop_table .product-subtotal {
  color: var(--hm-navy);
  font-weight: 850;
}

.hm-woo-content table.shop_table .product-remove a,
.hm-woo-content table.shop_table .remove {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  background: #fff1f1;
  color: #9f2424 !important;
  font-size: 22px;
  line-height: 1;
}

.hm-woo-content .cart_totals {
  display: grid;
  gap: 16px;
}

.hm-woo-content .cart_totals h2,
.hm-woo-content #order_review_heading,
.hm-woo-content .woocommerce-billing-fields h3,
.hm-woo-content .woocommerce-additional-fields h3 {
  margin: 0 0 16px;
  color: var(--hm-navy);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hm-woo-content .wc-proceed-to-checkout {
  padding-bottom: 0;
}

.hm-woo-content .wc-proceed-to-checkout a.checkout-button {
  width: 100%;
}

.hm-woo-content form.checkout,
.hm-woo-content .woocommerce-cart-form,
.hm-woo-content .cart-collaterals,
.hm-woo-content .woocommerce-MyAccount-content,
.hm-woo-content .woocommerce-MyAccount-navigation {
  border: 1px solid rgba(220, 234, 248, 0.95);
  border-radius: 28px;
  background: #fff;
  padding: clamp(18px, 3vw, 30px);
  box-shadow: 0 18px 44px rgba(16, 44, 82, 0.07);
}

.hm-woo-content .cart-collaterals {
  margin-top: 24px;
}

.hm-woo-content form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
  gap: 28px;
  align-items: start;
}

.hm-woo-content form.checkout #customer_details,
.hm-woo-content form.checkout #order_review_heading,
.hm-woo-content form.checkout #order_review {
  min-width: 0;
}

.hm-woo-content form.checkout #order_review_heading,
.hm-woo-content form.checkout #order_review {
  grid-column: 2;
}

.hm-woo-content form.checkout #order_review {
  display: grid;
  gap: 16px;
}

.hm-woo-content input.input-text,
.hm-woo-content textarea,
.hm-woo-content select,
.hm-woo-content .select2-container--default .select2-selection--single {
  border: 1px solid var(--hm-line) !important;
  border-radius: 14px;
  background: #fff;
  min-height: 44px;
  padding: 12px 14px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition-duration: 180ms;
  transition-property: border-color, box-shadow;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hm-woo-content input.input-text:focus,
.hm-woo-content textarea:focus,
.hm-woo-content select:focus,
.hm-woo-content .select2-container--default.select2-container--focus .select2-selection--single {
  border-color: rgba(57, 158, 253, 0.72) !important;
  box-shadow:
    0 0 0 4px rgba(57, 158, 253, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  outline: 0;
}

.hm-woo-content .select2-container--default .select2-selection--single {
  display: flex;
  align-items: center;
  height: auto;
}

.hm-woo-content .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--hm-navy);
  line-height: 1.3;
  padding: 0;
}

.hm-woo-content .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.hm-woo-content .form-row label {
  display: block;
  margin-bottom: 8px;
  color: var(--hm-navy);
  font-weight: 800;
}

.hm-woo-content .form-row {
  margin-bottom: 18px;
}

.hm-woo-content #order_review_heading {
  margin-top: 28px;
}

.hm-woo-content .woocommerce-info,
.hm-woo-content .woocommerce-message,
.hm-woo-content .woocommerce-error {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top-color: var(--hm-blue);
  border-radius: 22px;
  background: rgba(248, 252, 255, 0.96);
  color: var(--hm-text);
  padding: 18px 20px 18px 52px;
  box-shadow: 0 16px 36px rgba(16, 44, 82, 0.07);
}

.hm-woo-content .woocommerce-message .button,
.hm-woo-content .woocommerce-info .button {
  order: 2;
  margin-left: auto;
  white-space: nowrap;
}

.hm-woo-content .woocommerce-info::before,
.hm-woo-content .woocommerce-message::before {
  color: var(--hm-blue);
}

.hm-woo-content .woocommerce-cart-form .product-thumbnail img {
  width: 86px;
  border-radius: 14px;
}

.hm-woo-content .quantity .qty {
  min-width: 72px;
  font-variant-numeric: tabular-nums;
}

.hm-woo-content nav.woocommerce-pagination {
  margin-top: 30px;
}

.hm-woo-content nav.woocommerce-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  border: 0;
  margin: 0;
  padding: 0;
}

.hm-woo-content nav.woocommerce-pagination ul li {
  border: 0;
}

.hm-woo-content nav.woocommerce-pagination ul li a,
.hm-woo-content nav.woocommerce-pagination ul li span {
  display: grid;
  min-width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(220, 234, 248, 0.95);
  border-radius: 999px;
  background: var(--hm-white);
  color: var(--hm-navy);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  transition-duration: 180ms;
  transition-property: background-color, border-color, color, transform, box-shadow;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.hm-woo-content nav.woocommerce-pagination ul li a:hover,
.hm-woo-content nav.woocommerce-pagination ul li span.current {
  border-color: rgba(57, 158, 253, 0.42);
  background: var(--hm-blue);
  color: var(--hm-white);
  box-shadow: 0 12px 24px rgba(57, 158, 253, 0.18);
}

.hm-woo-content nav.woocommerce-pagination ul li a:hover {
  transform: translateY(-1px);
}

@media (max-width: 1180px) {
  .hm-subhero,
  .hm-catalog-layout,
  .hm-category-layout,
  .hm-contact-page,
  .hm-product-commerce,
  .hm-checkout-grid,
  .hm-process-panel {
    grid-template-columns: 1fr;
  }

  .hm-filter-panel,
  .hm-category-aside,
  .hm-contact-lead,
  .hm-product-gallery,
  .hm-article aside {
    position: static;
  }

  .hm-product-gallery {
    margin-top: 0;
  }

  .hm-contact-prep {
    grid-column: auto;
  }

  .hm-catalog-grid,
  .hm-catalog-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hm-woo-content div.product {
    grid-template-columns: 1fr;
  }

  .hm-woo-content form.checkout {
    grid-template-columns: 1fr;
  }

  .hm-woo-content form.checkout #order_review_heading,
  .hm-woo-content form.checkout #order_review {
    grid-column: auto;
  }

  .hm-article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hm-shop-head h1,
  .hm-category-head h1,
  .hm-contact-lead h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .hm-category-page,
  .hm-contact-page {
    padding-top: 38px;
  }

  .hm-category-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hm-subhero {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 72px;
    overflow: hidden;
  }

  .hm-subhero::before {
    right: -120px;
    width: 360px;
    height: 140px;
  }

  .hm-subhero h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .hm-subhero p:not(.hm-eyebrow) {
    max-width: 100%;
    font-size: 16px;
  }

  .hm-subhero__content {
    padding-left: 0;
  }

  .hm-subhero__visual {
    min-height: 320px;
  }

  .hm-catalog-grid,
  .hm-catalog-grid--compact,
  .hm-asymmetric-list {
    grid-template-columns: 1fr;
  }

  .hm-info-tile:nth-child(2) {
    transform: none;
  }

  .hm-spec-band,
  .hm-spec-table div,
  .hm-knowledge-item {
    grid-template-columns: 1fr;
  }

  .hm-product-gallery,
  .hm-product-gallery__main {
    min-height: 360px;
  }

  .hm-product-summary h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .hm-product-config div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hm-form,
  .hm-buybox,
  .hm-summary,
  .hm-process-panel,
  .hm-empty-state,
  .hm-woo-content form.checkout,
  .hm-woo-content .woocommerce-cart-form,
  .hm-woo-content .cart-collaterals {
    padding: 22px;
  }

  .hm-woo-content .woocommerce-cart-form {
    overflow-x: auto;
  }

  .hm-woo-content table.shop_table th,
  .hm-woo-content table.shop_table td {
    padding: 12px;
  }

  .hm-woo-content .woocommerce-message .button,
  .hm-woo-content .woocommerce-info .button {
    margin-left: 0;
  }
}

@media (min-width: 481px) and (max-width: 1100px) {
  .hm-site-header .hm-nav-logo {
    gap: 12px;
  }

  .hm-site-header .hm-nav-logo .hm-logo__brand {
    width: clamp(138px, 16vw, 174px);
  }

  .hm-site-header .hm-nav-logo .hm-logo__divider {
    display: block;
    height: 30px;
  }

  .hm-site-header .hm-nav-logo .hm-logo__context {
    display: grid;
    padding: 7px 11px 7px 13px;
    border-radius: 15px 24px 24px 15px;
  }
}
