:root {
  --navy: #071c46;
  --navy-deep: #04132f;
  --green: #075c3a;
  --green-soft: #e8f1ec;
  --orange: #cf4218;
  --ink: #15233d;
  --text: #354157;
  --muted: #687386;
  --background: #f7f8f6;
  --surface: #ffffff;
  --border: #d9e2dc;
  --shadow: 0 18px 48px rgba(7, 28, 70, 0.1);
  --radius: 20px;
  --container: 1180px;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

a {
  color: inherit;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.8vw, 5rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
}

h3 {
  font-size: 1.35rem;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid rgba(240, 84, 35, 0.55);
  outline-offset: 3px;
}

.utility-bar {
  color: var(--navy);
  background: #f0f2f1;
  border-bottom: 1px solid rgba(7, 28, 70, 0.06);
}

.utility-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

.utility-bar p,
.locale-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
}

.utility-bar svg,
.locale-link svg {
  width: 15px;
  height: 15px;
}

.locale-link {
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(7, 28, 70, 0.07);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  width: 178px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 61px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.primary-nav > a,
.nav-dropdown__toggle {
  position: relative;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav > a::after,
.nav-dropdown__toggle::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after,
.primary-nav > a[aria-current="page"]::after,
.nav-dropdown:hover .nav-dropdown__toggle::after,
.nav-dropdown.is-open .nav-dropdown__toggle::after,
.nav-dropdown.is-active .nav-dropdown__toggle::after {
  transform: scaleX(1);
}

.primary-nav > a[aria-current="page"],
.nav-dropdown.is-active .nav-dropdown__toggle {
  color: var(--green);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-dropdown__toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown__toggle svg,
.nav-dropdown.is-open .nav-dropdown__toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown__panel {
  position: absolute;
  z-index: 30;
  top: calc(100% + 12px);
  right: auto;
  left: 50%;
  width: min(320px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 20px 46px rgba(7, 28, 70, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown__panel::before {
  position: absolute;
  top: -15px;
  right: 0;
  left: 0;
  height: 16px;
  content: "";
}

.nav-dropdown__panel::after {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  content: "";
  background: #fff;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown.is-open .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown__panel a {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  color: var(--navy);
  background: #f7f9f8;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.83rem;
  font-weight: 720;
  line-height: 1.35;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.nav-dropdown__panel a:hover,
.nav-dropdown__panel a:focus-visible {
  color: var(--green);
  background: var(--green-soft);
  border-color: rgba(7, 92, 58, 0.18);
}

.nav-dropdown__panel .nav-dropdown__all {
  grid-column: auto;
  color: #fff;
  background: var(--navy);
}

.nav-dropdown__panel .nav-dropdown__all:hover,
.nav-dropdown__panel .nav-dropdown__all:focus-visible {
  color: #fff;
  background: var(--green);
}

.nav-dropdown__all svg {
  width: 20px;
  height: 20px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.menu-toggle svg {
  width: 25px;
  height: 25px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--navy);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button:active,
.text-link:active,
.icon-button:active,
.menu-toggle:active {
  transform: scale(0.98);
}

.button:disabled {
  opacity: 0.5;
  cursor: wait;
  transform: none;
}

.button svg,
.text-link svg {
  width: 20px;
  height: 20px;
}

.button--nav,
.button--primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 10px 25px rgba(7, 28, 70, 0.16);
}

.button--nav:hover,
.button--primary:hover {
  background: var(--navy-deep);
  box-shadow: 0 14px 28px rgba(7, 28, 70, 0.23);
}

.button--nav {
  min-height: 46px;
  padding-inline: 18px;
}

.button--outline {
  background: #fff;
  border-color: #91a0b5;
}

.button--outline:hover {
  border-color: var(--navy);
  box-shadow: 0 10px 24px rgba(7, 28, 70, 0.1);
}

.button--accent {
  min-width: 170px;
  color: #fff;
  background: var(--orange);
}

.button--accent:hover {
  background: #b93614;
  box-shadow: 0 14px 28px rgba(207, 66, 24, 0.24);
}

.button--ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
}

.button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 49% 25%, rgba(7, 92, 58, 0.07), transparent 27%),
    linear-gradient(90deg, #f9faf8 0%, #f9faf8 45%, #eef2ef 100%);
}

.hero::after {
  position: absolute;
  bottom: -185px;
  left: -115px;
  width: 310px;
  height: 310px;
  content: "";
  border: 1px solid rgba(7, 92, 58, 0.35);
  border-radius: 50%;
}

.hero__grid {
  position: relative;
  min-height: 645px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}

.hero__copy {
  position: relative;
  z-index: 4;
  max-width: 570px;
  align-self: center;
  padding: 80px 40px 80px 0;
}

.hero__lead {
  max-width: 520px;
  margin-bottom: 34px;
  color: var(--text);
  font-size: 1.14rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__visual {
  position: absolute;
  inset: 0;
  width: auto;
  min-width: 0;
  margin: 0;
}

.hero__visual::before {
  display: none;
}

.hero__visual::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(249, 250, 248, 0.16) 0%,
    rgba(249, 250, 248, 0.1) 34%,
    rgba(249, 250, 248, 0.02) 52%,
    transparent 66%
  );
  pointer-events: none;
}

.hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.01);
}

.hero__curve {
  position: absolute;
  z-index: 3;
  width: 250px;
  height: 470px;
  border: 1px solid rgba(7, 92, 58, 0.55);
  border-radius: 50%;
  pointer-events: none;
}

.hero__curve::after {
  position: absolute;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.hero__curve--one {
  top: -270px;
  right: -50px;
}

.hero__curve--one::after {
  bottom: 65px;
  left: 12px;
}

.hero__curve--two {
  right: 25%;
  bottom: -360px;
}

.hero__curve--two::after {
  top: 52px;
  right: 23px;
}

.metrics {
  position: relative;
  z-index: 4;
  background: #fff;
  box-shadow: 0 -10px 32px rgba(7, 28, 70, 0.04);
}

.metrics__grid {
  min-height: 142px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.metric {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 30px;
  border-right: 1px solid var(--border);
}

.metric:first-child {
  padding-left: 0;
}

.metric:last-child {
  padding-right: 0;
  border-right: 0;
}

.metric__icon {
  width: 50px;
  height: 50px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 50%;
}

.metric__icon svg {
  width: 26px;
  height: 26px;
}

.metric p {
  margin: 0;
  line-height: 1.25;
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  margin-bottom: 5px;
  color: var(--navy);
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  letter-spacing: -0.04em;
}

.metric p span {
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
}

.section {
  padding-block: 108px;
}

.technology {
  position: relative;
  overflow: hidden;
  padding-block: 0;
  background: #fff;
}

.technology::after {
  position: absolute;
  top: -160px;
  right: -155px;
  width: 380px;
  height: 680px;
  content: "";
  border: 1px solid rgba(7, 92, 58, 0.3);
  border-radius: 50%;
}

.technology__grid {
  width: min(100%, 1440px);
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
}

.technology__media {
  min-height: 650px;
}

.technology__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.technology__copy {
  z-index: 1;
  align-self: center;
  max-width: 590px;
  padding: 80px clamp(40px, 7vw, 110px);
}

.section-lead {
  margin-bottom: 30px;
}

.feature-list {
  display: grid;
  gap: 17px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  font-weight: 600;
}

.feature-list li > span {
  width: 33px;
  height: 33px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(7, 92, 58, 0.45);
  border-radius: 50%;
}

.feature-list svg {
  width: 17px;
  height: 17px;
}

.products {
  background: var(--background);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
}

.section-heading h2::after {
  position: absolute;
  right: 25%;
  bottom: -16px;
  left: 25%;
  height: 2px;
  content: "";
  background: var(--green);
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 10px auto 0;
}

.section-heading--left {
  margin: 0;
  text-align: left;
}

.section-heading--left h2::after {
  right: 68%;
  left: 0;
}

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

.product-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(7, 28, 70, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card__link {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

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

.product-card__media {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  display: block;
  align-self: start;
  overflow: hidden;
  background: #fff;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 320ms ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.015);
}

.product-card__copy {
  padding: 28px;
}

.product-card__copy h3,
.product-card__copy h4 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.18;
}

.product-card__copy h3 a,
.product-card__copy h4 a {
  text-decoration: none;
}

.product-card__copy p {
  min-height: 76px;
  color: var(--muted);
}

.product-card__description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card__link:focus-visible {
  outline-offset: -4px;
}

.product-card__link .text-link {
  pointer-events: none;
}

.catalog-explorer {
  position: relative;
  z-index: 2;
  top: auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 28px;
  padding: 24px;
  margin: -10px 0 64px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(7, 28, 70, 0.11);
  border-radius: 16px;
  box-shadow: 0 14px 38px rgba(7, 28, 70, 0.09);
  backdrop-filter: blur(16px);
}

.no-js .catalog-explorer {
  display: none;
}

.catalog-search label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.catalog-search__field {
  position: relative;
}

.catalog-search__field > svg {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 20px;
  height: 20px;
  color: var(--green);
  pointer-events: none;
  transform: translateY(-50%);
}

.catalog-search input {
  width: 100%;
  min-height: 50px;
  padding: 12px 48px 12px 46px;
  color: var(--ink);
  background: #f7f9f7;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.catalog-search input:focus {
  background: #fff;
  border-color: var(--green);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(7, 92, 58, 0.12);
}

.catalog-search input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.catalog-search__field button {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transform: translateY(-50%);
}

.catalog-search__field button:hover {
  color: var(--navy);
  background: var(--green-soft);
}

.catalog-search__field button svg {
  width: 18px;
  height: 18px;
}

.catalog-filter-wrap {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 10px;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-filter {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 9px;
  font-size: 0.78rem;
  font-weight: 750;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.catalog-filter strong {
  min-width: 24px;
  padding: 2px 6px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 0.7rem;
  text-align: center;
}

.catalog-filter:hover {
  color: var(--navy);
  border-color: rgba(7, 92, 58, 0.4);
}

.catalog-filter.is-active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 8px 18px rgba(7, 28, 70, 0.14);
}

.catalog-filter.is-active strong {
  color: var(--navy);
  background: #fff;
}

.catalog-result-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.catalog-empty {
  max-width: 660px;
  padding: 58px 30px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.catalog-empty > span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
}

.catalog-empty svg {
  width: 30px;
  height: 30px;
}

.catalog-empty h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.catalog-empty p {
  max-width: 520px;
  margin: 0 auto 24px;
  color: var(--muted);
}

.catalog-groups {
  display: grid;
  gap: 86px;
}

.catalog-group {
  scroll-margin-top: 130px;
}

.catalog-group__heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1.2fr);
  align-items: end;
  gap: 44px;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.catalog-group__heading > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.catalog-group__heading h3 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.catalog-group__heading p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.catalog-group__number {
  flex: 0 0 auto;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(7, 92, 58, 0.18);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.product-grid--catalog {
  align-items: stretch;
}

.product-card--catalog {
  display: flex;
  flex-direction: column;
}

.product-card--catalog .product-card__link {
  flex: 1;
}

.product-card--catalog .product-card__media {
  height: auto;
}

.product-card--catalog .product-card__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card--catalog .product-card__copy > p {
  min-height: 0;
}

.product-card--catalog .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.product-card__meta span {
  padding: 6px 9px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.product-card__structures {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 4px 0 22px;
  padding: 0;
  list-style: none;
}

.product-card__structures li {
  padding: 7px 9px;
  color: var(--navy);
  background: #f3f5f4;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 700;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  font-weight: 750;
  cursor: pointer;
}

.sectors {
  color: #fff;
  background: var(--green);
}

.sectors__layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.sectors .eyebrow {
  color: #b9dec9;
}

.sectors h2 {
  color: #fff;
}

.sector-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sector-list li {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  font-weight: 650;
}

.sector-list span {
  color: #a9d6bd;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.quality {
  position: relative;
  overflow: hidden;
  background: #f2f4f1;
}

.quality::before,
.quality::after {
  position: absolute;
  width: 300px;
  height: 300px;
  content: "";
  border: 1px solid rgba(7, 92, 58, 0.35);
  border-radius: 50%;
}

.quality::before {
  top: -210px;
  left: -100px;
}

.quality::after {
  right: -110px;
  bottom: -210px;
}

.quality__inner {
  position: relative;
  z-index: 1;
}

.quality__certificates {
  max-width: 800px;
  margin-inline: auto;
  padding: 25px 36px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(7, 28, 70, 0.08);
}

.quality__certificates img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.quality-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: clamp(34px, 6vw, 78px);
}

.quality-showcase__media {
  position: sticky;
  top: 132px;
  min-width: 0;
}

.quality-showcase__media > img {
  width: 100%;
  aspect-ratio: 3 / 2;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.quality-showcase__media-note {
  width: min(280px, calc(100% - 36px));
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  margin: -34px auto 0;
  position: relative;
  color: #fff;
  background: var(--navy);
  border-radius: 13px;
  box-shadow: 0 14px 35px rgba(7, 28, 70, 0.18);
}

.quality-showcase__media-note strong {
  color: #fff;
  font-size: 2rem;
}

.quality-showcase__media-note span {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.quality-showcase__lead {
  max-width: 700px;
  margin-bottom: 28px;
  color: var(--muted);
}

.quality-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quality-detail-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.quality-detail-grid h3 {
  margin-bottom: 16px;
  font-size: 1.06rem;
}

.quality-detail-grid ul,
.quality-certification-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quality-detail-grid li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.quality-detail-grid li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.quality-certification-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 34px;
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 14px 38px rgba(7, 28, 70, 0.07);
}

.quality-certification-panel .quality__certificates {
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.quality-certification-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quality-certification-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.quality-certification-list span {
  color: var(--green);
}

.cta-band {
  color: #fff;
  background: linear-gradient(110deg, var(--navy-deep), var(--navy));
}

.cta-band__inner {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band h2 {
  margin-bottom: 9px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.cta-band p {
  margin-bottom: 0;
  color: #dce4f2;
}

.site-footer {
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(35px, 6vw, 90px);
  padding-block: 70px 55px;
}

.footer-grid h3 {
  margin-bottom: 18px;
  font-size: 0.92rem;
  letter-spacing: 0;
}

.footer-grid > div > a:not(.brand),
.footer-grid > div > p {
  display: block;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-grid > div > a:hover {
  color: var(--navy);
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-location {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.footer-location svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.quote-dialog {
  width: min(calc(100% - 32px), 760px);
  max-height: min(90vh, 850px);
  padding: 0;
  color: var(--text);
  background: #fff;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(4, 19, 47, 0.35);
}

.quote-dialog::backdrop {
  background: rgba(4, 19, 47, 0.7);
  backdrop-filter: blur(5px);
}

.quote-dialog__header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 34px 24px;
  background: linear-gradient(145deg, #f8faf8, #eef3f0);
}

.quote-dialog__header h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.quote-dialog__header p:last-child {
  max-width: 590px;
  margin-bottom: 0;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  margin-left: auto;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
}

.icon-button svg {
  width: 22px;
  height: 22px;
}

.quote-form {
  padding: 28px 34px 34px;
}

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

.form-field {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field--honeypot {
  position: absolute;
  left: -10000px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #bfc9c2;
  border-radius: 9px;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(7, 92, 58, 0.13);
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.8rem;
  cursor: pointer;
}

.consent-field input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--green);
}

.quote-form__footer {
  min-height: 58px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
}

.form-feedback {
  margin: 0;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 650;
}

.form-feedback[data-state="error"] {
  color: #a52a20;
}

/* Interior pages */
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 86% 10%, rgba(7, 92, 58, 0.85), transparent 31%),
    linear-gradient(115deg, var(--navy-deep), var(--navy));
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.page-hero::before {
  top: -270px;
  right: -70px;
  width: 520px;
  height: 520px;
}

.page-hero::after {
  right: 27%;
  bottom: -190px;
  width: 280px;
  height: 280px;
}

.page-hero--products,
.page-hero--about {
  background:
    radial-gradient(circle at 88% 10%, rgba(7, 92, 58, 0.9), transparent 33%),
    linear-gradient(115deg, var(--navy-deep), var(--navy));
}

.page-hero--technology {
  background:
    radial-gradient(circle at 87% 18%, rgba(30, 113, 133, 0.7), transparent 32%),
    linear-gradient(115deg, var(--navy-deep), var(--navy));
}

.page-hero--industries {
  background:
    radial-gradient(circle at 86% 15%, rgba(4, 19, 47, 0.52), transparent 30%),
    linear-gradient(115deg, #064a31, var(--green));
}

.page-hero--contact {
  background:
    radial-gradient(circle at 86% 18%, rgba(207, 66, 24, 0.62), transparent 28%),
    linear-gradient(115deg, var(--navy-deep), var(--navy));
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: 80px;
}

.page-hero .eyebrow {
  color: #b9dec9;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(3rem, 5.3vw, 4.6rem);
}

.page-hero__inner > p:last-of-type {
  max-width: 760px;
  margin-bottom: 0;
  color: #dce5f2;
  font-size: 1.15rem;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.page-hero__actions svg {
  width: 20px;
  height: 20px;
}

.page-section {
  background: var(--background);
}

.process-section,
.applications-section {
  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-card,
.capability-card,
.industry-card,
.value-card {
  position: relative;
  min-width: 0;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.process-card > span,
.industry-card > span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.process-card h3,
.capability-card h3,
.industry-card h3,
.value-card h3 {
  margin-bottom: 12px;
}

.process-card p,
.capability-card p,
.industry-card p,
.value-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.page-media-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
  gap: clamp(42px, 7vw, 90px);
}

.page-media-split--reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.page-media-split__media {
  min-height: 520px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.page-media-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-media-split__copy {
  align-self: center;
}

.page-media-split__copy > p:not(.eyebrow) {
  margin-bottom: 22px;
}

.metric-inline {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-block: 17px;
  border-bottom: 1px solid var(--border);
}

.metric-inline strong {
  color: var(--navy);
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.metric-inline span {
  color: var(--muted);
  font-weight: 650;
}

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

.capability-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
}

.technology-process-grid {
  display: grid;
  gap: 24px;
}

.technology-process {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(7, 28, 70, 0.05);
}

.technology-process:nth-child(even) .technology-process__media {
  order: 2;
}

.technology-process__media {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: #fff;
}

.technology-process__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.technology-process__media > span {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(7, 92, 58, 0.24);
}

.technology-process__copy {
  align-self: center;
  padding: clamp(30px, 5vw, 58px);
}

.technology-process__copy h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
}

.technology-process__copy > p {
  margin-bottom: 24px;
  color: var(--muted);
}

.technology-process__copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.technology-process__copy li {
  display: flex;
  gap: 10px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
}

.technology-process__copy li span {
  color: var(--green);
}

.about-expertise {
  background: var(--background);
}

.about-expertise-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
}

.about-materials,
.about-prepress {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(7, 28, 70, 0.05);
}

.about-materials {
  padding: clamp(30px, 5vw, 52px);
}

.about-materials > h3,
.about-prepress h3 {
  margin-bottom: 24px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.about-material-list {
  display: grid;
  gap: 0;
}

.about-material-list > div {
  padding-block: 18px;
  border-bottom: 1px solid var(--border);
}

.about-material-list > div:last-child {
  border-bottom: 0;
}

.about-material-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
}

.about-material-list p,
.about-prepress p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.about-prepress img {
  width: 100%;
  aspect-ratio: 3 / 2;
  display: block;
  object-fit: cover;
}

.about-prepress > div {
  padding: clamp(26px, 4vw, 42px);
}

.about-prepress ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.about-prepress li {
  padding: 11px 13px;
  color: var(--navy);
  background: var(--green-soft);
  border-radius: 9px;
  font-size: 0.78rem;
  font-weight: 700;
}

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

.industry-card {
  min-height: 260px;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.industry-card:hover {
  border-color: rgba(7, 92, 58, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

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

.value-card > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
}

.value-card svg {
  width: 23px;
  height: 23px;
}

.quality--page {
  padding-block: 100px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 24px;
}

.contact-panel,
.contact-form-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 60px);
  border-radius: 20px;
}

.contact-panel {
  min-height: 620px;
  color: #fff;
  background: var(--green);
}

.contact-panel .eyebrow {
  color: #b9dec9;
}

.contact-panel h2 {
  margin-bottom: 30px;
  color: #fff;
}

.contact-form-card {
  min-height: 420px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-form-card .button {
  align-self: flex-start;
  margin-top: 18px;
}

.contact-form-card__note {
  margin: 20px 0 0;
  padding: 16px 18px;
  color: var(--green);
  background: var(--green-soft);
  border-left: 3px solid var(--green);
  border-radius: 0 10px 10px 0;
  font-size: 0.9rem;
}

.contact-location-list {
  display: grid;
  gap: 12px;
}

.contact-location-card {
  padding: 17px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
}

.contact-location-card > span,
.contact-channel > span:first-child {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.contact-location-card svg,
.contact-channel svg {
  width: 21px;
  height: 21px;
}

.contact-location-card h3 {
  margin: 2px 0 7px;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
}

.contact-location-card address {
  color: #e5f2eb;
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.55;
}

.contact-channels-title {
  margin: 30px 0 12px;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
}

.contact-channels {
  display: grid;
  gap: 10px;
}

.contact-channel {
  min-height: 62px;
  padding: 8px 14px 8px 9px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease;
}

.contact-channel:hover,
.contact-channel:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.42);
}

.contact-channel > span:last-child {
  min-width: 0;
  display: grid;
}

.contact-channel small {
  color: #b9dec9;
  font-size: 0.72rem;
  font-weight: 650;
}

.contact-channel strong {
  overflow-wrap: anywhere;
  font-size: 0.94rem;
  line-height: 1.4;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 24px;
}

.contact-detail > span {
  width: 46px;
  height: 46px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.contact-detail svg {
  width: 22px;
  height: 22px;
}

.contact-detail p {
  margin: 0;
  color: #e5f2eb;
}

.breadcrumb-wrap {
  padding-top: 28px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumb a {
  color: var(--navy);
  font-weight: 650;
  text-decoration: none;
}

.product-subnav {
  position: sticky;
  z-index: 90;
  top: 92px;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.96);
  border-block: 1px solid rgba(7, 28, 70, 0.08);
  backdrop-filter: blur(14px);
}

.product-subnav__inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-subnav__inner::-webkit-scrollbar {
  display: none;
}

.product-subnav a {
  min-height: 44px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 8px 13px;
  color: var(--muted);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 750;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.product-subnav a:hover,
.product-subnav a[aria-current="location"] {
  color: var(--green);
  background: var(--green-soft);
}

.product-page #product-title,
.product-page #applications-title,
.product-page #structures-title,
.product-page #formats-title,
.product-page #reference-title {
  scroll-margin-top: 176px;
}

.product-detail {
  padding-block: 50px 100px;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.product-detail__media {
  min-height: 0;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #f8faf8, #e9efeb);
  border: 1px solid var(--border);
  border-radius: 22px;
}

.product-detail__media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.product-detail__media--landscape {
  aspect-ratio: 3 / 2;
}

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

.product-gallery__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.product-gallery__thumb {
  width: 78px;
  height: 78px;
  padding: 3px;
  overflow: hidden;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease;
}

.product-gallery__thumb:hover,
.product-gallery__thumb:focus-visible,
.product-gallery__thumb.is-active {
  border-color: var(--green);
}

.product-gallery__thumb:hover {
  transform: translateY(-2px);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.product-detail__copy h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 5vw, 4.7rem);
}

.product-detail__copy {
  position: sticky;
  top: 178px;
  align-self: start;
}

.product-detail__lead {
  margin-bottom: 35px;
  font-size: 1.12rem;
}

.product-detail__copy h2 {
  margin-bottom: 20px;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-detail__catalogue {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.product-detail__catalogue:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-detail__catalogue svg {
  width: 18px;
  height: 18px;
}

.applications-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 60px;
}

.applications-layout h2 {
  margin: 0;
}

.applications-layout ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.applications-layout li {
  padding: 12px 18px;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(7, 92, 58, 0.17);
  border-radius: 999px;
  font-weight: 700;
}

.technical-section {
  padding-top: clamp(56px, 5vw, 72px);
  background: var(--background);
}

.technical-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.technical-section__intro {
  position: sticky;
  top: 128px;
}

.technical-section__intro h2,
.format-panel h2 {
  margin-bottom: 18px;
}

.technical-section__intro > p:last-child {
  max-width: 440px;
  color: var(--muted);
}

.structure-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.structure-list li {
  min-height: 76px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 16px;
  padding: 15px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 13px;
}

.structure-list li > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}

.structure-list strong {
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88rem;
  line-height: 1.55;
}

.format-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
  padding-top: 72px;
  margin-top: 72px;
  border-top: 1px solid var(--border);
}

.reference-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
  padding-top: 72px;
  margin-top: 72px;
  border-top: 1px solid var(--border);
}

.reference-panel__intro h2 {
  margin-bottom: 18px;
}

.reference-panel__intro > p:last-child {
  max-width: 440px;
  color: var(--muted);
}

.reference-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(7, 28, 70, 0.05);
}

.reference-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: #fff;
  font-variant-numeric: tabular-nums;
}

.reference-table th,
.reference-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.reference-table thead th {
  color: var(--green);
  background: var(--green-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.reference-table tbody th {
  color: var(--navy);
  text-align: left;
  font-size: 0.82rem;
}

.reference-table tbody tr:last-child th,
.reference-table tbody tr:last-child td {
  border-bottom: 0;
}

.format-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.format-panel li {
  padding: 13px 17px;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(7, 28, 70, 0.14);
  border-radius: 10px;
  font-weight: 750;
  box-shadow: 0 5px 16px rgba(7, 28, 70, 0.04);
}

.format-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.format-detail-grid article {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 13px;
  box-shadow: 0 5px 16px rgba(7, 28, 70, 0.04);
}

.format-detail-grid article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
}

.format-detail-grid h3 {
  margin-bottom: 5px;
  font-size: 0.98rem;
}

.format-detail-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.related-products {
  background: var(--background);
}

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

.related-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 132px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 18px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.related-card:hover {
  border-color: rgba(7, 92, 58, 0.4);
  box-shadow: var(--shadow);
}

.related-card img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  object-position: center;
  background: var(--background);
  border-radius: 12px;
}

.related-card span,
.related-card strong {
  display: block;
}

.related-card strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.15rem;
}

.related-card > svg {
  width: 23px;
  height: 23px;
  color: var(--navy);
}

.no-js .reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 360ms ease-out, transform 360ms ease-out;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Blog and knowledge centre */
.blog-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 90% 15%, rgba(51, 135, 91, 0.32), transparent 28%),
    linear-gradient(125deg, var(--navy-deep), var(--navy) 66%, #0a4f39);
}

.blog-hero::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.blog-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 430px;
  padding-block: 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 72px;
}

.blog-hero__copy {
  max-width: 820px;
}

.blog-hero .eyebrow,
.article-hero .eyebrow {
  color: #8fcea9;
}

.blog-hero h1 {
  max-width: 800px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(3rem, 5.3vw, 4.9rem);
}

.blog-hero__copy > p:last-child {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.blog-hero__index {
  width: 152px;
  height: 152px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
}

.blog-hero__index span {
  color: #fff;
  font-size: 3.1rem;
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 1;
}

.blog-hero__index small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 650;
  line-height: 1.25;
}

.blog-section {
  padding-top: 72px;
}

.blog-card {
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(7, 28, 70, 0.06);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.blog-card:hover,
.blog-card:focus-within {
  border-color: rgba(7, 92, 58, 0.42);
  box-shadow: 0 20px 48px rgba(7, 28, 70, 0.12);
  transform: translateY(-4px);
}

.blog-card__link {
  height: 100%;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.blog-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8ece9;
}

.blog-card__media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
  pointer-events: none;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.blog-card:hover .blog-card__media img,
.blog-card:focus-within .blog-card__media img {
  transform: scale(1.025);
}

.blog-card__copy {
  min-width: 0;
  padding: 28px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.blog-card__featured {
  margin-bottom: 18px;
  padding: 6px 10px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card__meta,
.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.blog-card__meta span:first-child,
.article-meta span:first-child {
  color: var(--green);
}

.blog-card h3 {
  margin: 15px 0 13px;
  font-size: clamp(1.3rem, 2vw, 1.62rem);
  line-height: 1.16;
}

.blog-card__copy > p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.65;
}

.blog-card .text-link {
  margin-top: auto;
}

.blog-card--featured {
  margin-bottom: 92px;
}

.blog-card--featured .blog-card__link {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
}

.blog-card--featured .blog-card__media {
  min-height: 480px;
  aspect-ratio: auto;
}

.blog-card--featured .blog-card__copy {
  padding: clamp(36px, 4.5vw, 58px);
  justify-content: center;
}

.blog-card--featured h3 {
  font-size: clamp(2rem, 3.4vw, 3.05rem);
}

.blog-archive-heading {
  margin-bottom: 32px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.blog-archive-heading > div {
  max-width: 680px;
}

.blog-archive-heading h2 {
  margin-bottom: 14px;
}

.blog-archive-heading p {
  margin-bottom: 0;
}

.blog-result-count {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 750;
}

.blog-explorer {
  margin-bottom: 42px;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
  align-items: end;
  gap: 18px;
  background: #eef2ef;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.blog-search label {
  display: block;
  margin: 0 0 8px 2px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 750;
}

.blog-search__field {
  min-height: 50px;
  padding-inline: 15px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #cfd8d2;
  border-radius: 12px;
}

.blog-search__field:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(7, 92, 58, 0.12);
}

.blog-search__field > svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--green);
}

.blog-search__field input {
  min-width: 0;
  padding: 0;
  flex: 1;
  color: var(--navy);
  background: transparent;
  border: 0;
  outline: 0;
}

.blog-search__field button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.blog-search__field button:hover {
  color: var(--navy);
  background: var(--green-soft);
}

.blog-search__field button svg {
  width: 17px;
  height: 17px;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-filter {
  min-height: 44px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  background: #fff;
  border: 1px solid #cfd8d2;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.blog-filter strong {
  min-width: 22px;
  height: 22px;
  padding-inline: 5px;
  display: inline-grid;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 0.7rem;
}

.blog-filter:hover,
.blog-filter.is-active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.blog-filter.is-active strong,
.blog-filter:hover strong {
  color: var(--green);
  background: #fff;
}

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

.blog-empty {
  padding: 72px 24px;
  text-align: center;
  background: #fff;
  border: 1px dashed #c7d3cb;
  border-radius: var(--radius);
}

.blog-empty > span {
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
}

.blog-empty svg {
  width: 28px;
  height: 28px;
}

.blog-empty h2 {
  margin-bottom: 10px;
  font-size: 1.65rem;
}

.blog-empty p {
  margin-bottom: 24px;
  color: var(--muted);
}

/* Article */
.article-page {
  background: #fff;
}

.article-hero {
  padding: 62px 0 0;
}

.article-hero__copy {
  max-width: 940px;
  text-align: center;
}

.article-hero .article-meta {
  justify-content: center;
  margin-bottom: 20px;
}

.article-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.4vw, 5.1rem);
}

.article-hero__copy > p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

.article-hero__media {
  margin-top: 52px;
  overflow: hidden;
  aspect-ratio: 16 / 8.5;
  background: #e9edeb;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.article-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-layout {
  padding-block: 88px 112px;
  display: grid;
  grid-template-columns: 280px minmax(0, 720px);
  justify-content: center;
  align-items: start;
  gap: 86px;
}

.article-aside__inner {
  position: sticky;
  top: 126px;
}

.article-aside h2 {
  margin-bottom: 18px;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-aside ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}

.article-aside li {
  border-bottom: 1px solid var(--border);
}

.article-aside li a {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
}

.article-aside li a:hover {
  color: var(--green);
}

.article-aside li span {
  color: var(--green);
  font-size: 0.72rem;
}

.article-aside__actions {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.article-aside__actions .button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.article-body {
  min-width: 0;
  color: #39465a;
  font-size: 1.08rem;
  line-height: 1.78;
}

.article-intro {
  margin-bottom: 64px;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.52rem);
  font-weight: 540;
  line-height: 1.58;
}

.article-body > section:not(.article-summary) {
  margin-bottom: 62px;
  scroll-margin-top: 130px;
}

.article-section-number {
  margin-bottom: 13px;
  display: inline-block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.article-body h2 {
  margin-bottom: 22px;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.article-body p {
  margin-bottom: 21px;
}

.article-body ul {
  margin: 26px 0;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 9px;
}

.article-summary {
  margin: 72px 0 28px;
  padding: 38px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #0b3e54);
  border-radius: var(--radius);
}

.article-summary .eyebrow {
  color: #8fcea9;
}

.article-summary h2 {
  margin-bottom: 26px;
  color: #fff;
  font-size: 1.55rem;
}

.article-summary ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-summary li {
  margin: 0;
  padding: 12px 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.article-summary li span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #8fcea9;
}

.article-summary li svg {
  width: 18px;
  height: 18px;
}

.article-note {
  margin-bottom: 32px;
  padding: 24px 26px;
  background: var(--green-soft);
  border-left: 4px solid var(--green);
  border-radius: 0 12px 12px 0;
}

.article-note h2 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.article-note p {
  margin: 0;
  font-size: 0.92rem;
}

.article-back {
  display: inline-flex;
}

.article-back svg {
  width: 20px;
  height: 20px;
}

.related-articles {
  background: var(--background);
}

.blog-grid--related .blog-card h3 {
  font-size: 1.35rem;
}

@media (max-width: 1040px) {
  .primary-nav {
    gap: 16px;
  }

  .primary-nav .nav-link--about {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .metric {
    padding-inline: 18px;
  }

  .technology__copy {
    padding-inline: 50px;
  }

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

  .blog-card--featured .blog-card__link {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
  }

  .blog-explorer {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: 240px minmax(0, 660px);
    gap: 48px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 82px;
  }

  .utility-bar p {
    max-width: 72%;
  }

  .site-header__inner {
    min-height: 78px;
  }

  .brand {
    width: 150px;
  }

  .brand img {
    height: 52px;
  }

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

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 24px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 35px rgba(7, 28, 70, 0.13);
  }

  .primary-nav[data-open="true"] {
    display: grid;
  }

  .primary-nav > a,
  .primary-nav .nav-link--about,
  .nav-dropdown__toggle {
    min-height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #edf0ee;
  }

  .primary-nav > a::after {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown__toggle {
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid #edf0ee;
  }

  .nav-dropdown__toggle::after {
    display: none;
  }

  .nav-dropdown__panel {
    position: static;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 8px 0 12px 12px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .nav-dropdown:hover .nav-dropdown__panel,
  .nav-dropdown.is-open .nav-dropdown__panel {
    display: grid;
    transform: none;
  }

  .nav-dropdown__panel::before,
  .nav-dropdown__panel::after {
    display: none;
  }

  .nav-dropdown__panel .nav-dropdown__all {
    grid-column: auto;
  }

  .primary-nav .button {
    margin-top: 14px;
  }

  .hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 680px;
    padding: 70px 0 42px;
  }

  .hero__visual {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 0;
    aspect-ratio: 5 / 4;
    margin: 0;
  }

  .hero__visual::after {
    background: linear-gradient(
      180deg,
      #f9faf8 0%,
      rgba(249, 250, 248, 0.82) 8%,
      rgba(249, 250, 248, 0.18) 18%,
      transparent 28%
    );
  }

  .hero__visual img {
    inset: 0;
    height: 100%;
    object-position: right center;
  }

  .metrics__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric,
  .metric:first-child,
  .metric:last-child {
    padding: 24px 20px;
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .technology__grid {
    grid-template-columns: 1fr;
  }

  .technology__media {
    min-height: 460px;
  }

  .technology__copy {
    max-width: 680px;
    padding: 70px 20px 80px;
  }

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

  .product-card {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
  }

  .product-card__media {
    height: auto;
    min-height: 0;
  }

  .product-card__copy {
    align-self: center;
  }

  .catalog-explorer {
    position: static;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 52px;
  }

  .catalog-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: thin;
  }

  .catalog-filters::-webkit-scrollbar {
    height: 4px;
  }

  .catalog-filters::-webkit-scrollbar-track {
    background: transparent;
  }

  .catalog-filters::-webkit-scrollbar-thumb {
    background: #aebbb3;
    border-radius: 999px;
  }

  .catalog-filter {
    flex: 0 0 auto;
  }

  .catalog-groups {
    gap: 70px;
  }

  .catalog-group__heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-card--catalog {
    display: block;
  }

  .product-card--catalog .product-card__link {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  }

  .product-card--catalog .product-card__media {
    height: auto;
    min-height: 0;
  }

  .sectors__layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

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

  .page-hero__inner {
    min-height: 390px;
  }

  .process-grid,
  .industry-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .page-media-split,
  .page-media-split--reverse,
  .contact-layout,
  .product-detail__grid,
  .applications-layout,
  .technical-layout,
  .format-panel,
  .reference-panel {
    grid-template-columns: 1fr;
  }

  .technical-section__intro {
    position: static;
  }

  .format-panel {
    gap: 28px;
  }

  .page-media-split__media {
    min-height: 430px;
  }

  .capability-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .product-detail {
    padding-top: 34px;
  }

  .product-subnav {
    top: 78px;
  }

  .product-page #product-title,
  .product-page #applications-title,
  .product-page #structures-title,
  .product-page #formats-title,
  .product-page #reference-title {
    scroll-margin-top: 146px;
  }

  .product-detail__copy {
    position: static;
  }

  .product-detail__media {
    min-height: 0;
  }

  .blog-hero__inner {
    min-height: 370px;
    padding-block: 70px;
    gap: 32px;
  }

  .blog-hero__index {
    width: 126px;
    height: 126px;
    padding: 20px;
  }

  .blog-hero__index span {
    font-size: 2.55rem;
  }

  .blog-card--featured {
    margin-bottom: 72px;
  }

  .blog-card--featured .blog-card__link {
    grid-template-columns: 1fr;
  }

  .blog-card--featured .blog-card__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .blog-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }

  .blog-filter {
    flex: 0 0 auto;
  }

  .article-hero {
    padding-top: 46px;
  }

  .article-hero__media {
    margin-top: 40px;
  }

  .article-layout {
    padding-block: 66px 90px;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .article-aside__inner {
    position: static;
  }

  .article-aside ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
  }

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

  .quality-showcase,
  .quality-certification-panel,
  .about-expertise-grid,
  .technology-process {
    grid-template-columns: 1fr;
  }

  .quality-showcase__media {
    position: relative;
    top: auto;
  }

  .quality-certification-panel {
    gap: 26px;
  }

  .technology-process:nth-child(even) .technology-process__media {
    order: 0;
  }

  .technology-process__media {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .utility-bar__inner {
    min-height: 36px;
    font-size: 0.7rem;
  }

  .utility-bar p svg {
    display: none;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.7rem);
  }

  .hero__copy {
    padding-top: 56px;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__visual {
    width: 100%;
    margin: 0;
  }

  .metrics__grid {
    width: 100%;
  }

  .metric,
  .metric:first-child,
  .metric:last-child {
    align-items: flex-start;
    gap: 12px;
    padding: 20px 14px;
  }

  .metric__icon {
    width: 40px;
    height: 40px;
  }

  .metric__icon svg {
    width: 21px;
    height: 21px;
  }

  .metric strong {
    font-size: 1.45rem;
  }

  .metric p span {
    font-size: 0.74rem;
  }

  .section {
    padding-block: 78px;
  }

  .technology {
    padding-block: 0;
  }

  .technology__media {
    min-height: 330px;
  }

  .technology__copy {
    padding: 60px 16px 70px;
  }

  .product-card {
    display: block;
  }

  .catalog-explorer {
    padding: 18px;
    margin-inline: -2px;
    border-radius: 13px;
  }

  .catalog-search label {
    font-size: 0.74rem;
  }

  .catalog-result-count {
    font-size: 0.74rem;
  }

  .catalog-groups {
    gap: 58px;
  }

  .catalog-group__heading {
    margin-bottom: 20px;
  }

  .catalog-group__heading > div {
    align-items: flex-start;
  }

  .catalog-group__number {
    width: 42px;
    height: 42px;
  }

  .product-card--catalog .product-card__media {
    height: auto;
    min-height: 0;
  }

  .product-card--catalog .product-card__link {
    display: block;
  }

  .product-card__media {
    height: auto;
  }

  .product-card__copy p {
    min-height: auto;
  }

  .sector-list {
    grid-template-columns: 1fr;
  }

  .quality__certificates {
    padding: 20px 14px;
  }

  .quality-detail-grid,
  .quality-certification-list,
  .about-prepress ul,
  .format-detail-grid {
    grid-template-columns: 1fr;
  }

  .quality-detail-grid article,
  .technology-process__copy,
  .about-materials,
  .about-prepress > div {
    padding: 24px 20px;
  }

  .quality-certification-panel .quality__certificates {
    padding: 0;
  }

  .cta-band__inner {
    padding-block: 40px;
    flex-direction: column;
    align-items: stretch;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 55px 42px;
  }

  .footer-bottom {
    padding-block: 18px;
  }

  .quote-dialog {
    width: 100%;
    max-width: none;
    max-height: calc(100vh - 24px);
    margin: auto 0 0;
    border-radius: 20px 20px 0 0;
  }

  .quote-dialog__header {
    padding: 24px 20px 18px;
  }

  .quote-dialog__header h2 {
    font-size: 1.7rem;
  }

  .quote-form {
    padding: 22px 20px 28px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field--full {
    grid-column: auto;
  }

  .quote-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .page-hero__inner {
    min-height: 350px;
    padding-block: 60px;
  }

  .page-hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.6rem);
  }

  .page-hero__inner > p:last-of-type {
    font-size: 1rem;
  }

  .page-hero__actions {
    width: 100%;
    display: grid;
  }

  .page-hero__actions .button {
    width: 100%;
  }

  .page-media-split__media {
    min-height: 320px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .process-card,
  .capability-card,
  .industry-card,
  .value-card {
    padding: 26px;
  }

  .contact-panel,
  .contact-form-card {
    min-height: 330px;
    padding: 30px 24px;
  }

  .product-detail__media {
    min-height: 0;
    padding: 0;
  }

  .product-detail__copy h1 {
    font-size: 2.8rem;
  }

  .product-detail__actions {
    display: grid;
  }

  .applications-layout {
    gap: 30px;
  }

  .technical-layout {
    gap: 32px;
  }

  .structure-list li {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 13px 14px;
  }

  .structure-list li > span {
    width: 36px;
    height: 36px;
  }

  .format-panel {
    padding-top: 50px;
    margin-top: 50px;
  }

  .related-card {
    grid-template-columns: 100px 1fr;
  }

  .related-card img {
    width: 100px;
    height: 100px;
  }

  .related-card > svg {
    display: none;
  }

  .blog-hero__inner {
    min-height: 360px;
    padding-block: 60px;
    grid-template-columns: 1fr;
    align-items: center;
  }

  .blog-hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.65rem);
  }

  .blog-hero__index {
    display: none;
  }

  .blog-section {
    padding-top: 48px;
  }

  .blog-card--featured {
    margin-bottom: 62px;
  }

  .blog-card--featured .blog-card__media {
    aspect-ratio: 4 / 3;
  }

  .blog-card--featured .blog-card__copy,
  .blog-card__copy {
    padding: 24px 22px 26px;
  }

  .blog-card--featured h3 {
    font-size: 1.75rem;
  }

  .blog-archive-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .blog-explorer {
    margin-inline: -2px;
    padding: 16px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .article-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.55rem);
  }

  .article-hero__copy > p {
    font-size: 1rem;
  }

  .article-hero__media {
    margin-top: 32px;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .article-layout {
    padding-block: 52px 72px;
    gap: 44px;
  }

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

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

  .article-body {
    font-size: 1rem;
  }

  .article-intro {
    margin-bottom: 50px;
  }

  .article-body > section:not(.article-summary) {
    margin-bottom: 50px;
  }

  .article-summary {
    margin-top: 56px;
    padding: 28px 22px;
  }

  .article-note {
    padding: 21px 20px;
  }
}

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

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