:root {
  --ink: #071a31;
  --navy: #06213d;
  --muted: #5f7083;
  --quiet: #8795a4;
  --blue: #0057a8;
  --blue-dark: #003f7e;
  --red: #e21b2d;
  --blue-soft: #f2f8fd;
  --blue-wash: #f7fbff;
  --surface: #ffffff;
  --paper: #fbfcfd;
  --line: #dbe4ec;
  --line-strong: #b8c7d4;
  --shadow: 0 18px 48px rgba(7, 26, 49, 0.08);
  --container: 1240px;
  --header-height: 63px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Figtree", "Aptos", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

main {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.utility-bar {
  display: none;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 9px 22px 0;
  color: var(--quiet);
  font-size: 13px;
}

.utility-bar span {
  color: var(--ink);
  font-weight: 650;
}

.utility-bar a:hover,
.utility-bar a:focus-visible {
  color: var(--blue);
}

.main-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px 22px 9px;
}

.brand img {
  width: 126px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 23px;
}

.nav-links > a,
.nav-item > button {
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 650;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links > a:hover,
.nav-links > a:focus-visible,
.nav-item > button:hover,
.nav-item > button:focus-visible,
.store-link,
.store-link.active {
  color: var(--blue);
}

.nav-links > a:hover,
.nav-links > a:focus-visible,
.nav-item > button:hover,
.nav-item > button:focus-visible {
  transform: translateY(-1px);
}

.nav-item {
  position: relative;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  display: grid;
  width: min(520px, calc(100vw - 48px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu a {
  min-height: 96px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.mega-menu a:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.mega-menu a:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.mega-menu strong,
.mega-menu span {
  display: block;
}

.mega-menu strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 15px;
}

.mega-menu span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.icon-button,
.cart-button,
.menu-toggle {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0 14px;
  font-size: 13px;
  font-weight: 650;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.icon-button {
  width: 40px;
  border-color: transparent;
  background: transparent;
  padding: 0;
}

.icon-button svg,
.cart-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-button {
  gap: 8px;
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  padding-left: 13px;
  padding-right: 12px;
}

.cart-button span {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  margin-left: 0;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: transparent;
  background: transparent;
  color: var(--red);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: var(--red);
  background: rgba(226, 27, 45, 0.04);
  color: var(--red);
}

.cart-button:hover,
.cart-button:focus-visible {
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-1px);
}

.icon-button:active,
.cart-button:active,
.menu-toggle:active,
.button:active,
.product-actions a:active,
.product-actions button:active,
.category-chip:active {
  transform: scale(0.96);
}

.menu-toggle {
  display: none;
}

.catalog-toolbar span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.hero,
.section,
.trust-band,
.consult-cta,
.store-hero,
.category-strip,
.store-layout,
.store-assistance,
.site-footer {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(32px, 4.4vw, 54px);
  align-items: center;
  align-content: center;
  min-height: calc(100svh - var(--header-height));
  padding-top: clamp(62px, 8vw, 96px);
  padding-bottom: clamp(66px, 8vw, 108px);
}

.hero-content {
  display: grid;
  gap: 22px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 670px;
  margin-bottom: 0;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 780;
  line-height: 1.01;
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(46px, 4.8vw, 64px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4.6vw, 58px);
  font-weight: 760;
  line-height: 1.05;
}

h3 {
  margin-bottom: 0;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
}

.hero-content > p,
.section-heading p,
.shop-preview-copy p,
.store-hero p,
.store-assistance p,
.consult-cta p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
  text-wrap: pretty;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-top: 4px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0 20px;
  font-size: 14px;
  font-weight: 760;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  box-shadow: none;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--red);
  background: rgba(226, 27, 45, 0.04);
  color: var(--red);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

.button.light {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button.primary.light:hover,
.button.primary.light:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--red);
}

.consult-cta .button.primary,
.store-assistance .button.primary {
  border-color: #fff;
  background: #fff;
  color: var(--blue-dark);
}

.consult-cta .button.primary:hover,
.consult-cta .button.primary:focus-visible,
.store-assistance .button.primary:hover,
.store-assistance .button.primary:focus-visible {
  color: var(--red);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  margin: 0;
  padding: 0;
}

.hero-lab-image {
  width: min(100%, 360px);
  margin-left: auto;
  object-fit: contain;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
}

.platform-card span,
.product-meta span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 780;
}

.platform-card span {
  display: none;
}

.trust-band {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: clamp(24px, 4vw, 58px);
  position: relative;
  background: var(--blue-wash);
  box-shadow: 0 0 0 100vmax var(--blue-wash);
  clip-path: inset(0 -100vmax);
  border-top: 1px solid rgba(0, 87, 168, 0.12);
  border-bottom: 1px solid rgba(0, 87, 168, 0.12);
  padding-top: clamp(34px, 4vw, 46px);
  padding-bottom: clamp(34px, 4vw, 46px);
}

.trust-band div {
  position: relative;
  padding: 4px clamp(28px, 3.6vw, 44px) 2px 0;
}

.trust-band div + div::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: calc(clamp(24px, 4vw, 58px) * -0.5);
  width: 1px;
  background: rgba(0, 87, 168, 0.16);
}

.trust-band strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.15;
}

.trust-band span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  text-wrap: pretty;
}

.section {
  padding-top: clamp(74px, 9vw, 122px);
  padding-bottom: clamp(74px, 9vw, 122px);
}

.section-heading {
  display: grid;
  gap: 20px;
  max-width: 920px;
  margin-bottom: 52px;
}

.section-heading.compact {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading p {
  margin-bottom: 0;
}

.discovery .section-heading {
  max-width: none;
  margin-bottom: clamp(58px, 6vw, 76px);
}

.path-grid {
  display: grid;
}

.path-card {
  display: grid;
  grid-template-columns: 48px minmax(300px, 0.78fr) minmax(330px, 1fr) 136px;
  column-gap: clamp(24px, 3.6vw, 48px);
  row-gap: 12px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding: 28px 0 28px clamp(24px, 3.2vw, 44px);
  transition: background-color 180ms ease, transform 180ms ease;
}

.path-card:nth-child(even) {
  padding-left: clamp(24px, 3.2vw, 44px);
}

.path-card:last-child {
  border-bottom: 0;
}

.path-card:hover {
  background: linear-gradient(90deg, rgba(0, 87, 168, 0.035), transparent 42%);
  transform: translateX(4px);
}

.path-index {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.path-card h3 {
  font-size: clamp(21px, 2vw, 28px);
}

.path-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.path-card a,
.platform-card a,
.service-grid a,
.text-link,
.filter-assist a {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-size: 14px;
  font-weight: 780;
  transition: color 180ms ease, transform 180ms ease;
}

.path-card a:hover,
.platform-card a:hover,
.service-grid a:hover,
.text-link:hover,
.filter-assist a:hover {
  color: var(--blue-dark);
  transform: translateX(3px);
}

.platforms {
  padding-top: 36px;
}

.platform-carousel {
  display: grid;
  gap: 28px;
}

.platform-layout {
  display: grid;
  min-height: 440px;
}

.platform-card {
  display: none;
  grid-area: 1 / 1;
  grid-template-columns: minmax(260px, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.platform-card.is-active {
  display: grid;
}

.platform-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: contain;
  background: var(--blue);
  border-radius: 6px;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
  transition: transform 240ms cubic-bezier(0.2, 0, 0, 1);
}

.platform-card:hover img {
  transform: translateY(-4px);
}

.platform-card div {
  display: grid;
  gap: 14px;
}

.platform-card p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.platform-controls {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.platform-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.platform-tabs button,
.platform-arrow {
  min-height: 42px;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 13px 0 0;
  font-size: 13px;
  font-weight: 780;
  font-variant-numeric: tabular-nums;
  transition: transform 150ms ease;
}

.platform-tabs button {
  text-align: left;
}

.platform-tabs button.is-active {
  border-color: var(--blue);
  color: var(--blue);
}

.platform-tabs button:hover,
.platform-tabs button:focus-visible,
.platform-arrow:hover,
.platform-arrow:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

.platform-tabs button:active,
.platform-arrow:active {
  transform: scale(0.96);
}

.journey {
  max-width: none;
  margin: 20px 0 0;
  padding-left: 0;
  padding-right: 0;
  background: var(--navy);
  color: #fff;
}

.journey-shell {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(76px, 8vw, 104px) 22px;
}

.journey h2,
.journey .section-heading p {
  color: #fff;
}

.journey .section-heading p {
  opacity: 0.72;
}

.journey .section-heading {
  max-width: none;
}

.journey h2 {
  max-width: none;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: journey-step;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  gap: clamp(18px, 2.4vw, 34px);
}

.journey-steps li {
  position: relative;
  counter-increment: journey-step;
  min-height: 168px;
  padding: 42px 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  transition: border-color 180ms ease, transform 180ms ease;
}

.journey-steps li::before {
  content: none;
}

.journey-steps li:hover {
  border-color: rgba(226, 27, 45, 0.84);
  transform: translateY(-2px);
}

.journey-steps span {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-weight: 760;
}

.journey-steps span::before {
  content: counter(journey-step, decimal-leading-zero);
  position: absolute;
  top: -12px;
  left: 0;
  display: grid;
  width: 34px;
  height: 26px;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 820;
  font-variant-numeric: tabular-nums;
}

.journey-steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.58;
}

.services {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(620px, 1.32fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: start;
}

.services .section-heading {
  position: sticky;
  top: 130px;
  margin-bottom: 0;
}

.services .section-heading h2 {
  max-width: 390px;
  font-size: clamp(36px, 3.7vw, 48px);
  line-height: 1.04;
}

.services .section-heading::after {
  content: "";
  display: block;
  width: min(100%, 330px);
  aspect-ratio: 1.25 / 1;
  margin-top: 32px;
  background: url("assets/bionex.jpg") center / contain no-repeat var(--blue-soft);
  border-radius: 4px;
}

.service-grid {
  display: grid;
  border-top: 0;
}

.service-grid article {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding: 30px clamp(24px, 3vw, 46px) 30px clamp(18px, 2.2vw, 32px);
  transition: background-color 180ms ease, transform 180ms ease;
}

.service-grid article:last-child {
  border-bottom: 0;
}

.service-grid article:hover {
  background: linear-gradient(90deg, rgba(0, 87, 168, 0.03), transparent 48%);
  transform: translateX(4px);
}

.service-grid h3 {
  font-size: clamp(22px, 2vw, 29px);
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.64;
}

.shop-preview {
  display: block;
  text-align: center;
}

.shop-preview-copy {
  position: static;
  max-width: 760px;
  margin: 0 auto;
  border-top: 0;
  padding-top: 0;
}

.shop-preview-copy h2 {
  font-size: clamp(36px, 4.8vw, 62px);
}

.shop-preview-copy p {
  margin-left: auto;
  margin-right: auto;
}

.shop-preview-copy .text-link,
.shop-preview-copy .button {
  justify-content: center;
}

.shop-preview-copy .button {
  width: fit-content;
  margin: 8px auto 0;
}

.mini-product-grid,
.product-grid {
  display: grid;
  gap: 16px;
}

.mini-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
  align-items: stretch;
  margin-top: 48px;
  text-align: left;
}

.product-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 14px 34px rgba(7, 26, 49, 0.06);
  transform: translateY(-1px);
}

.mini-product-grid .product-card {
  grid-template-rows: auto minmax(120px, 1fr) auto;
  grid-template-columns: 1fr;
  gap: 13px;
  align-items: start;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.mini-product-grid .product-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: translateY(-6px);
}

.product-card img {
  width: 118px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--blue-soft);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.mini-product-grid .product-card img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  background: var(--blue-soft);
  transition: transform 220ms cubic-bezier(0.2, 0, 0, 1);
}

.mini-product-grid .product-card:hover img {
  transform: translateY(-4px);
}

.product-body {
  min-width: 0;
}

.mini-product-grid .product-body {
  display: grid;
  align-content: start;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.mini-product-grid .product-meta {
  display: none;
}

.product-meta span {
  display: inline-flex;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
}

.product-card h3 {
  margin-bottom: 6px;
  font-size: 19px;
  line-height: 1.24;
}

.product-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.product-buy {
  display: grid;
  gap: 14px;
  justify-items: end;
  min-width: 176px;
}

.mini-product-grid .product-buy {
  align-self: end;
  min-width: 0;
  justify-items: stretch;
  gap: 10px;
}

.product-price {
  color: var(--ink);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.product-actions {
  display: flex;
  gap: 8px;
}

.mini-product-grid .product-actions {
  display: grid;
  grid-template-columns: 1fr;
}

.product-actions a,
.product-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  min-width: 62px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0 13px;
  font-size: 13px;
  font-weight: 760;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.mini-product-grid .product-actions a {
  min-height: auto;
  border: 0;
  padding: 0;
  color: var(--blue);
  background: transparent;
}

.mini-product-grid .product-actions button {
  width: 100%;
  min-height: 40px;
  border-color: var(--blue);
  background: var(--blue);
}

.product-actions button {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.product-actions a:hover,
.product-actions a:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.product-actions button:hover,
.product-actions button:focus-visible {
  background: var(--red);
  border-color: var(--red);
}

.consult-cta,
.store-assistance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-top: 42px;
  margin-bottom: 0;
  background: var(--blue);
  color: #fff;
  padding-left: max(22px, calc((100vw - var(--container)) / 2 + 22px));
  padding-right: max(22px, calc((100vw - var(--container)) / 2 + 22px));
  padding-top: 58px;
  padding-bottom: 62px;
}

.consult-cta h2,
.consult-cta p,
.store-assistance h2,
.store-assistance p {
  color: #fff;
}

.consult-cta h2,
.store-assistance h2 {
  max-width: 760px;
  font-size: clamp(36px, 5vw, 62px);
}

.consult-cta p,
.store-assistance p {
  opacity: 0.82;
}

.store-assistance {
  margin-top: 18px;
  padding-top: 50px;
  padding-bottom: 54px;
}

.store-assistance h2 {
  max-width: 680px;
  font-size: clamp(34px, 4.2vw, 54px);
}

.store-assistance p {
  max-width: 680px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 42px;
  border-top: 1px solid var(--line);
  padding-top: 54px;
  padding-bottom: 42px;
}

.footer-brand img {
  width: 174px;
  margin-bottom: 20px;
}

.site-footer h2 {
  margin-bottom: 18px;
  font-size: 15px;
}

.site-footer a,
.site-footer span,
.site-footer p {
  display: block;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--blue);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.footer-bottom span,
.footer-bottom a {
  margin-bottom: 0;
}

.store-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(380px, 0.72fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: end;
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: 40px;
}

.store-hero > div:first-child {
  max-width: 760px;
}

.store-hero h1 {
  max-width: 640px;
  margin-bottom: 12px;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1;
}

.store-search-card {
  position: relative;
  display: grid;
  align-self: end;
  width: 100%;
  border: 1px solid var(--line-strong);
  background: #fff;
  margin-bottom: 18px;
  padding-top: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.store-search-card::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  pointer-events: none;
  background: var(--muted);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' d='m21 21-4.35-4.35M10.5 18a7.5 7.5 0 1 1 0-15 7.5 7.5 0 0 1 0 15Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' d='m21 21-4.35-4.35M10.5 18a7.5 7.5 0 1 1 0-15 7.5 7.5 0 0 1 0 15Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.store-search-card input {
  width: 100%;
  min-height: 58px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 18px 0 48px;
  font-size: 17px;
}

.store-search-card:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 168, 0.12);
}

.catalog-toolbar select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  padding: 0 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.catalog-toolbar select:focus {
  outline: 0;
  border-color: var(--blue);
}

.store-search-card input:focus {
  outline: 0;
}

.catalog-toolbar select:focus {
  box-shadow: 0 0 0 3px rgba(0, 87, 168, 0.12);
}

.category-strip {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(22px, 4vw, 44px);
  overflow-x: auto;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  scrollbar-width: thin;
}

.category-chip {
  position: relative;
  min-height: 52px;
  flex: 0 0 auto;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 0 0 14px;
  font-size: 13px;
  font-weight: 760;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.category-chip.active,
.category-chip:hover,
.category-chip:focus-visible {
  border-color: var(--blue);
  background: transparent;
  color: var(--blue);
}

.store-layout {
  display: grid;
  grid-template-columns: 288px minmax(0, 1fr);
  gap: clamp(52px, 6vw, 82px);
  padding-top: 46px;
  padding-bottom: 104px;
}

.filter-panel {
  position: sticky;
  top: 96px;
  align-self: start;
  padding-top: 0;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
}

.filter-header h2 {
  font-size: 20px;
}

.filter-header button {
  border: 0;
  background: transparent;
  color: var(--blue);
  font-weight: 750;
  min-height: 40px;
  padding: 0;
  transition: color 180ms ease, transform 180ms ease;
}

.filter-header button:hover,
.filter-header button:focus-visible {
  color: var(--red);
}

fieldset {
  margin: 0;
  padding: 18px 0 14px;
  border: 0;
}

fieldset + fieldset {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 0;
}

legend {
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 760;
}

fieldset label {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  min-height: 32px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  transition: color 180ms ease;
}

fieldset label:hover {
  color: var(--ink);
}

input[type="checkbox"] {
  accent-color: var(--blue);
  margin-top: 2px;
}

.filter-assist {
  margin-top: 26px;
  background: var(--blue-wash);
  border: 1px solid #d5ebfb;
  padding: 18px;
}

.filter-assist h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.filter-assist p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 18px;
  margin-bottom: 0;
}

.catalog-toolbar p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.catalog-toolbar label {
  min-width: min(230px, 44vw);
}

.catalog .product-card {
  grid-template-columns: 140px minmax(0, 1fr) minmax(178px, auto);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 30px 0;
  box-shadow: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.catalog .product-card:hover {
  border-color: var(--line);
  background: linear-gradient(90deg, rgba(0, 87, 168, 0.035), rgba(0, 87, 168, 0));
  box-shadow: none;
  transform: translateX(4px);
}

.catalog .product-card img {
  width: 140px;
  aspect-ratio: 1.16 / 1;
}

.catalog .product-meta {
  margin-bottom: 9px;
}

.catalog .product-meta span {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0;
}

.catalog .product-meta span:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: var(--line-strong);
}

.catalog .product-card h3 {
  max-width: 470px;
  font-size: clamp(18px, 1.9vw, 21px);
}

.catalog .product-card p {
  max-width: 520px;
}

.catalog .product-buy {
  align-self: center;
  gap: 18px;
}

.catalog .product-actions {
  align-items: center;
}

.catalog .product-actions a {
  min-height: 44px;
  min-width: 68px;
  border-color: var(--line-strong);
  color: var(--blue-dark);
}

.catalog .product-actions button {
  min-height: 44px;
}

.no-results {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 26px 0;
}

.no-results h2 {
  margin-bottom: 10px;
  font-size: 26px;
}

.no-results p {
  margin-bottom: 0;
  color: var(--muted);
}

.hero-content > *,
.hero-visual,
.trust-band,
.section-heading,
.path-card,
.journey-steps li,
.service-grid article,
.product-card,
.consult-cta,
.store-hero,
.store-layout,
.store-assistance {
  animation: enterSoft 650ms cubic-bezier(0.2, 0, 0, 1) both;
}

.hero-content > :nth-child(2) {
  animation-delay: 70ms;
}

.hero-content > :nth-child(3) {
  animation-delay: 130ms;
}

.hero-content > :nth-child(4) {
  animation-delay: 190ms;
}

.hero-content > :nth-child(5),
.hero-visual {
  animation-delay: 250ms;
}

@keyframes enterSoft {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

@media (min-width: 1061px) {
  .discovery .section-heading h2,
  .discovery .section-heading p {
    max-width: none;
    white-space: nowrap;
  }

  .discovery .section-heading h2 {
    font-size: clamp(40px, 4vw, 52px);
  }

  .journey h2,
  .journey .section-heading p {
    max-width: none;
    white-space: nowrap;
  }

  .journey h2 {
    font-size: clamp(38px, 4.05vw, 54px);
  }

  .journey .section-heading p {
    font-size: 17px;
  }
}

@media (max-width: 1060px) {
  .utility-bar {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .main-nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  body.menu-open .nav-links {
    position: fixed;
    inset: 96px 16px auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 10px 18px 18px;
  }

  body.menu-open .nav-links > a,
  body.menu-open .nav-item > button {
    width: 100%;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .nav-item.has-mega .mega-menu {
    position: static;
    display: none;
    width: auto;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    grid-template-columns: 1fr;
  }

  .nav-item:hover .mega-menu,
  .nav-item:focus-within .mega-menu {
    display: grid;
  }

  .mega-menu a,
  .mega-menu a:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero,
  .store-hero,
  .store-layout,
  .shop-preview,
  .services,
  .consult-cta,
  .store-assistance {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .store-search-card {
    margin-bottom: 0;
  }

  .hero-visual {
    max-width: 720px;
    padding-left: 28px;
  }

  .trust-band {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .trust-band div {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 87, 168, 0.13);
  }

  .trust-band div:first-child {
    padding-top: 0;
  }

  .trust-band div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .trust-band div + div::before {
    display: none;
  }

  .path-card,
  .path-card:nth-child(even) {
    grid-template-columns: 52px minmax(0, 1fr);
    padding-left: 0;
  }

  .path-card p,
  .path-card a {
    grid-column: 2;
  }

  .platform-layout {
    min-height: 0;
  }

  .platform-card,
  .platform-card.is-active {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .platform-controls {
    grid-template-columns: 1fr;
  }

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

  .platform-arrow {
    display: none;
  }

  .journey-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .journey-steps li {
    min-height: 0;
    padding: 42px 0 28px;
  }

  .services .section-heading,
  .shop-preview-copy,
  .filter-panel {
    position: static;
  }

  .service-grid article {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 0;
    padding-right: 0;
  }

  .catalog .product-card,
  .product-card {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .catalog .product-card {
    gap: 22px;
  }

  .catalog .product-card img {
    width: 112px;
  }

  .product-buy {
    grid-column: 2;
    justify-items: start;
  }

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

  .mini-product-grid .product-card {
    grid-template-columns: 1fr;
  }

  .mini-product-grid .product-buy {
    grid-column: auto;
    justify-items: stretch;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 53px;
  }

  .utility-bar {
    display: none;
  }

  .main-nav {
    padding: 12px 16px;
  }

  .brand img {
    width: 118px;
  }

  body.menu-open .nav-links {
    inset: 68px 16px auto;
  }

  .hero,
  .section,
  .trust-band,
  .consult-cta,
  .store-hero,
  .category-strip,
  .store-layout,
  .store-assistance,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    gap: 34px;
    padding-top: 42px;
    padding-bottom: 56px;
  }

  h1 {
    font-size: clamp(38px, 11.6vw, 54px);
  }

  h2,
  .shop-preview-copy h2,
  .consult-cta h2,
  .store-assistance h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .hero-content > p,
  .section-heading p,
  .shop-preview-copy p,
  .store-hero p,
  .store-assistance p,
  .consult-cta p {
    font-size: 16px;
  }

  .hero-visual {
    padding: 0;
  }

  .hero-lab-image {
    width: min(100%, 330px);
    margin-right: auto;
  }

  .trust-band {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .discovery .section-heading {
    margin-bottom: 42px;
  }

  .path-card,
  .path-card:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .path-card p,
  .path-card a {
    grid-column: auto;
  }

  .platform-layout {
    gap: 0;
  }

  .platform-tabs {
    grid-template-columns: 1fr;
  }

  .platform-tabs button {
    min-height: 40px;
  }

  .journey-shell {
    padding: 62px 16px;
  }

  .services .section-heading::after {
    width: 100%;
  }

  .shop-preview {
    gap: 30px;
  }

  .catalog .product-card,
  .product-card {
    grid-template-columns: 1fr;
  }

  .catalog .product-card {
    gap: 18px;
    padding: 28px 0;
    transform: none;
  }

  .catalog .product-card:hover {
    transform: none;
  }

  .mini-product-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .catalog .product-card img,
  .product-card img {
    width: 100%;
    max-height: 220px;
  }

  .filter-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 18px;
    padding-top: 20px;
  }

  .filter-header,
  .filter-assist {
    grid-column: 1 / -1;
  }

  fieldset {
    border-top: 0;
    border-bottom: 0;
    padding: 0 0 10px;
  }

  fieldset + fieldset {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  legend {
    margin-bottom: 12px;
    font-size: 14px;
  }

  fieldset label {
    min-height: 28px;
    margin-bottom: 4px;
    font-size: 13px;
  }

  .catalog-toolbar {
    align-items: center;
    margin-top: 4px;
  }

  .catalog-toolbar label {
    min-width: 0;
    width: min(168px, 52vw);
  }

  .product-buy {
    grid-column: auto;
    min-width: 0;
  }

  .product-actions {
    width: 100%;
  }

  .product-actions a,
  .product-actions button {
    flex: 1;
  }

  .consult-cta,
  .store-assistance {
    margin-bottom: 0;
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    display: grid;
    gap: 10px;
  }
}

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