@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --page: #f4f5f0;
  --surface: #fbfcf8;
  --surface-raised: #fdfefb;
  --surface-muted: #e9ebe5;
  --surface-accent: #edf4df;
  --ink: #11130f;
  --text: #393d35;
  --muted: #697065;
  --line: #d4d8cf;
  --line-strong: #b8beb2;
  --accent: #3f7038;
  --accent-strong: #315a2d;
  --accent-bright: #c9f54a;
  --accent-soft: #e8f6c4;
  --danger: #a03a3a;
  --radius: 10px;
  --container: min(100% - 48px, 1360px);
  --header-height: 72px;
  --shadow: 0 18px 54px rgba(17, 19, 15, 0.09);
  --shadow-strong: 0 30px 90px rgba(17, 19, 15, 0.15);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  background: var(--page);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--text);
  font-family: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

::selection {
  background: var(--accent-soft);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid rgba(63, 112, 56, 0.34);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(17, 19, 15, 0.12);
  background: rgba(244, 245, 240, 0.94);
  backdrop-filter: blur(18px) saturate(1.04);
  -webkit-backdrop-filter: blur(18px) saturate(1.04);
}

.header-inner {
  width: var(--container);
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(270px, auto) 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.competence-logo {
  width: 144px;
  height: auto;
}

.brand-divider {
  width: 1px;
  height: 26px;
  background: var(--line-strong);
}

.sofinet-logo {
  width: 86px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 10px;
  border-radius: var(--radius);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: var(--surface-muted);
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.project-button,
.menu-button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 13px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.project-button,
.menu-button {
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.project-button span {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  margin-left: 8px;
  padding: 0 5px;
  place-items: center;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 11px;
}

.project-button:hover,
.menu-button:hover {
  border-color: var(--accent);
  background: var(--surface-accent);
}

.project-button:active,
.menu-button:active,
.header-cta:active,
.button:active {
  transform: translateY(1px);
}

.header-cta {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--surface);
  transition: background-color 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--accent-strong);
}

.menu-button {
  display: none;
}

.mobile-nav {
  width: var(--container);
  margin: 0 auto 14px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  box-shadow: var(--shadow);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 600;
}

.mobile-nav a:hover {
  background: var(--surface-muted);
}

.hero {
  width: var(--container);
  min-height: calc(100dvh - var(--header-height));
  margin: 0 auto;
  padding: clamp(36px, 5vw, 72px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(420px, 1.17fr);
  gap: clamp(28px, 4.6vw, 72px);
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.solutions-sticky h2,
.company-copy h2,
.testing-copy h2,
.request-intro h2,
.project-head h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 0.98;
}

.hero-lead {
  max-width: 540px;
  margin: 22px 0 0;
  color: var(--text);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 17px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button-primary {
  border: 1px solid var(--accent-strong);
  background: var(--accent-strong);
  color: var(--surface-raised);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: var(--surface-raised);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--accent);
  background: var(--surface-accent);
}

.hero-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #1a1d18;
  box-shadow: var(--shadow-strong);
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
}

.hero-visual img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 56% 52%;
  filter: saturate(0.84) contrast(1.05) brightness(0.96);
}

.hero-visual figcaption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 15px 17px;
  border-top: 1px solid rgba(251, 252, 248, 0.18);
  background: #1a1d18;
  color: #f3f5ef;
}

.hero-visual figcaption strong {
  font-size: 13px;
  font-weight: 700;
}

.hero-visual figcaption span {
  color: #c4c9c0;
  font-size: 12px;
  text-align: right;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(68px, 8vw, 116px) 0;
}

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

.section-heading h2,
.solutions-sticky h2,
.company-copy h2,
.testing-copy h2,
.request-intro h2,
.project-head h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}

.section-heading p,
.solutions-sticky > p:not(.eyebrow),
.company-copy > p,
.testing-copy > p,
.request-intro > p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.series-section {
  border-top: 1px solid var(--line);
}

.series-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr 0.92fr;
  grid-template-rows: minmax(270px, auto) minmax(250px, auto);
  gap: 12px;
}

.series-card {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.series-card:hover,
.series-card:focus-visible {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.series-card:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 28%, transparent);
  outline-offset: 3px;
}

.series-card:active {
  transform: translateY(-1px) scale(0.995);
}

.series-card-featured {
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  min-height: 532px;
  background: var(--surface-accent);
}

.series-card-wide {
  grid-column: 2 / span 2;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) 1.28fr;
  align-items: center;
}

.series-card-industrial {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  background: var(--surface-muted);
}

.series-card-wireless {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  background: var(--surface-raised);
}

.series-card-access {
  grid-column: 1 / span 2;
  display: grid;
  grid-template-columns: minmax(260px, 0.66fr) minmax(0, 1.34fr);
  min-height: 220px;
  align-items: center;
  background: var(--surface-raised);
}

.series-card-core {
  grid-column: 3;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  background: var(--surface-muted);
}

.series-copy {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 2.4vw, 34px);
}

.series-copy > span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 750;
}

.series-copy h3 {
  margin: 0;
  color: var(--ink);
  max-width: 16ch;
  font-size: clamp(24px, 2.15vw, 34px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-wrap: balance;
}

.series-copy p {
  max-width: 440px;
  margin: 13px 0 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
}

.text-link,
.text-button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-top: 18px;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.text-link:hover,
.text-link:focus-visible,
.text-button:hover,
.text-button:focus-visible {
  color: var(--ink);
  transform: translateX(2px);
}

.series-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.series-card-featured img {
  margin: auto 0 7%;
  padding: 0 7%;
}

.series-card-wide img {
  padding: 20px 30px 20px 0;
}

.series-card-industrial img,
.series-card-wireless img {
  align-self: end;
  max-height: 220px;
  padding: 20px 18px 20px 0;
}

.series-card-access img {
  max-height: 190px;
  padding: 18px 34px;
}

.series-card-core img {
  width: 100%;
  max-height: 128px;
  margin-top: auto;
  padding: 0 20px 24px;
}

.series-card-core .series-copy {
  padding-bottom: 18px;
}

.series-card-core .series-copy h3 {
  font-size: clamp(22px, 1.9vw, 30px);
}

.catalog-section {
  border-top: 1px solid var(--line);
}

.catalog-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
}

.catalog-heading {
  margin-bottom: 0;
}

.catalog-result {
  display: grid;
  justify-items: end;
  padding-bottom: 7px;
}

.catalog-result strong {
  color: var(--ink);
  font-size: 34px;
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1;
}

.catalog-result span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.catalog-toolbar {
  margin-top: 34px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.search-field {
  display: grid;
  gap: 7px;
}

.search-field > span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
}

.search-field input,
.request-form input,
.request-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-raised);
  color: var(--ink);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.search-field input {
  background: var(--page);
  font-size: 14px;
}

.search-field input::placeholder {
  color: var(--muted);
}

.search-field input:focus,
.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(63, 112, 56, 0.14);
  background: var(--surface-raised);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.filter-button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  font-size: 11px;
  font-weight: 650;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.filter-button:hover {
  border-color: var(--accent);
  background: var(--surface-accent);
}

.filter-button:active {
  transform: translateY(1px);
}

.filter-button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--surface-raised);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.product-card,
.product-skeleton {
  min-width: 0;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.product-card {
  display: flex;
  flex-direction: column;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  border-color: var(--accent);
  box-shadow: 0 18px 44px rgba(17, 19, 15, 0.08);
  transform: translateY(-2px);
}

.product-media {
  position: relative;
  display: grid;
  min-height: 198px;
  place-items: center;
  padding: 22px 18px;
  border-bottom: 1px solid var(--line);
  background: #fafbf8;
}

.product-media img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  transition: transform 260ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.025);
}

.product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 17px;
}

.product-type {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.product-copy h3 {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 680;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.product-detail {
  display: -webkit-box;
  min-height: 40px;
  margin: 9px 0 0;
  overflow: hidden;
  color: var(--text);
  font-size: 11px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-price {
  margin-top: auto;
  padding-top: 18px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 11px;
}

.product-detail-button,
.product-add-button {
  min-height: 44px;
  padding: 0 12px;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.product-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--surface-raised);
  color: var(--accent-strong);
  box-shadow: 0 1px 0 rgba(17, 19, 15, 0.04);
}

.product-detail-button:hover,
.product-detail-button:focus-visible {
  border-color: var(--accent);
  background: var(--surface-accent);
}

.product-detail-button svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.product-detail-button:hover svg,
.product-detail-button:focus-visible svg {
  transform: translateX(2px);
}

.product-add-button {
  min-width: 76px;
  border: 1px solid var(--accent-strong);
  background: var(--accent-strong);
  color: var(--surface-raised);
}

.product-add-button:hover {
  border-color: var(--ink);
  background: var(--ink);
}

.product-add-button.is-added {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.product-detail-button:active,
.product-add-button:active {
  transform: translateY(1px);
}

.product-skeleton {
  background: var(--surface-raised);
  animation: skeleton-pulse 1.2s ease-in-out infinite alternate;
}

.catalog-empty,
.catalog-error {
  grid-column: 1 / -1;
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  text-align: center;
}

.catalog-empty h3,
.catalog-error h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 650;
}

.catalog-empty p,
.catalog-error p {
  max-width: 460px;
  margin: 8px 0 0;
  color: var(--muted);
}

.catalog-footer {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.solutions-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(44px, 8vw, 126px);
  border-top: 1px solid var(--line);
}

.solutions-sticky {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  align-self: start;
}

.capability-list {
  border-top: 1px solid var(--line-strong);
}

.capability-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px 26px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.capability-item > span {
  grid-row: 1 / span 2;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 700;
}

.capability-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 2.2vw, 31px);
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.capability-item p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.company-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.company-copy {
  max-width: 620px;
}

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

.company-number {
  padding: 20px 0 16px;
  border-top: 1px solid var(--line-strong);
}

.company-number:last-child {
  grid-column: 1 / -1;
}

.company-number strong,
.company-number span {
  display: block;
}

.company-number strong {
  color: var(--ink);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 620;
  letter-spacing: -0.05em;
  line-height: 1;
}

.company-number span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.testing-section {
  width: var(--container);
  margin: 0 auto clamp(68px, 8vw, 116px);
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  min-height: 370px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-accent);
}

.testing-media {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 48px;
  background: var(--surface-raised);
}

.testing-media img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
}

.testing-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(32px, 5vw, 68px);
}

.testing-copy h2 {
  font-size: clamp(31px, 3.5vw, 48px);
}

.testing-copy .button {
  margin-top: 24px;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  gap: clamp(40px, 8vw, 130px);
  border-top: 1px solid var(--line);
}

.request-intro {
  align-self: start;
}

.request-contacts {
  display: grid;
  gap: 7px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line-strong);
}

.request-contacts a {
  width: fit-content;
  color: var(--ink);
  font-size: 16px;
  font-weight: 650;
}

.request-contacts a:hover {
  color: var(--accent-strong);
}

.request-contacts span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-raised);
  box-shadow: var(--shadow);
}

.form-row {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
}

.form-row-half {
  grid-column: auto;
}

.form-row label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
}

.form-row small {
  color: var(--muted);
  font-size: 10px;
}

.request-form textarea {
  min-height: 124px;
  padding: 11px 12px;
  resize: vertical;
}

.request-form input.is-invalid,
.request-form textarea.is-invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(160, 58, 58, 0.12);
}

.field-error {
  min-height: 0;
  color: var(--danger);
  font-size: 10px;
  font-weight: 600;
}

.field-error:empty {
  display: none;
}

.consent-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: var(--text);
  font-size: 10px;
  line-height: 1.5;
  cursor: pointer;
}

.consent-row input {
  width: 17px;
  height: 17px;
  min-height: 0;
  margin: 0;
  accent-color: var(--accent-strong);
}

.consent-row a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-error,
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

.form-submit {
  width: fit-content;
  min-width: 180px;
}

.form-submit.is-loading {
  opacity: 0.68;
  cursor: wait;
}

.form-status {
  min-height: 0;
  margin: 0;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 600;
}

.form-status:empty {
  display: none;
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  padding: 48px 0 24px;
  border-top: 1px solid var(--line-strong);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr 0.95fr;
  gap: 38px;
}

.footer-brand img {
  width: 164px;
}

.footer-brand p {
  max-width: 340px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-links,
.footer-support {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong,
.footer-support strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
}

.footer-links a,
.footer-support a {
  width: fit-content;
  color: var(--muted);
  font-size: 11px;
}

.footer-links a:hover,
.footer-support a:hover {
  color: var(--accent-strong);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

dialog {
  width: min(100% - 32px, 980px);
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-raised);
  color: var(--text);
  box-shadow: var(--shadow-strong);
}

dialog::backdrop {
  background: rgba(17, 19, 15, 0.52);
  backdrop-filter: blur(6px);
}

.dialog-shell,
.project-shell {
  max-height: calc(100dvh - 34px);
  overflow: auto;
}

.dialog-close {
  display: inline-grid;
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease;
}

.dialog-close:hover,
.dialog-close:focus-visible {
  background: var(--surface-accent);
  color: var(--accent-strong);
}

.dialog-close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.dialog-shell > .dialog-close {
  position: sticky;
  top: 14px;
  z-index: 3;
  display: flex;
  margin: 14px 14px 0 auto;
}

.product-dialog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 0;
  margin-top: -54px;
}

.product-dialog-media {
  display: grid;
  min-height: 570px;
  place-items: center;
  padding: 70px 44px 44px;
  border-right: 1px solid var(--line);
  background: #fafbf8;
}

.product-dialog-media img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
}

.product-dialog-copy {
  padding: 82px 38px 38px;
}

.product-dialog-copy > span {
  color: var(--accent-strong);
  font-size: 10px;
  font-weight: 750;
}

.product-dialog-copy h2 {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1;
}

.product-dialog-copy > p {
  margin: 13px 0 0;
  color: var(--text);
  font-size: 13px;
}

.dialog-price {
  display: block;
  margin-top: 22px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

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

.dialog-specs li {
  min-height: 56px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
  color: var(--text);
  font-size: 10px;
  line-height: 1.4;
}

.dialog-add {
  width: 100%;
  margin-top: 24px;
}

.project-dialog {
  width: min(100% - 32px, 760px);
}

.project-shell {
  padding: 30px;
}

.project-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.project-head > div > span {
  color: var(--accent-strong);
  font-size: 10px;
  font-weight: 750;
}

.project-head h2 {
  margin-top: 5px;
  font-size: clamp(28px, 3.8vw, 44px);
}

.project-head h2:focus {
  outline: 0;
}

.project-content {
  margin-top: 28px;
}

.project-empty {
  min-height: 240px;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
  text-align: center;
}

.project-empty h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 650;
}

.project-empty p {
  max-width: 420px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.project-list {
  display: grid;
  gap: 8px;
}

.project-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
}

.project-item img {
  width: 88px;
  height: 60px;
  object-fit: contain;
}

.project-item-copy strong,
.project-item-copy span {
  display: block;
}

.project-item-copy strong {
  color: var(--ink);
  font-size: 13px;
}

.project-item-copy span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.project-remove {
  min-height: 34px;
  padding: 0 9px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: transparent;
  color: var(--danger);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.project-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-strong);
}

.project-total span {
  color: var(--muted);
  font-size: 11px;
}

.project-total strong {
  color: var(--ink);
  font-size: 18px;
}

.project-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.project-actions .text-button {
  margin-top: 0;
  color: var(--danger);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 640ms cubic-bezier(0.16, 1, 0.3, 1), transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay {
  transition-delay: 80ms;
}

@keyframes skeleton-pulse {
  from {
    opacity: 0.54;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: minmax(260px, 1fr) auto;
  }

  .desktop-nav {
    display: none;
  }

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

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

  .series-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .series-card-featured {
    grid-row: 1 / span 2;
  }

  .series-card-wide {
    grid-column: auto;
    display: flex;
    flex-direction: column;
  }

  .series-card-wide img {
    margin-top: auto;
    padding: 12px 24px 28px;
  }

  .series-card-industrial,
  .series-card-wireless {
    display: grid;
  }

  .series-card-industrial {
    grid-column: 1 / 2;
  }

  .series-card-wireless {
    grid-column: 2 / 3;
  }

  .series-card-access {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) 1.3fr;
    align-items: center;
  }

  .series-card-core {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) 1.3fr;
    align-items: center;
  }

  .series-card-access img,
  .series-card-core img {
    width: 100%;
    max-height: 190px;
    margin-top: 0;
    padding: 20px 34px;
  }
}

@media (max-width: 920px) {
  :root {
    --container: min(100% - 32px, 760px);
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 0 32px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual {
    width: 100%;
  }

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

  .series-card-featured {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 440px;
  }

  .series-card-wide,
  .series-card-industrial,
  .series-card-wireless {
    grid-column: auto;
  }

  .series-card-access,
  .series-card-core {
    grid-column: 1 / -1;
  }

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

  .solutions-section,
  .company-section,
  .request-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .solutions-sticky {
    position: static;
    max-width: 700px;
  }

  .testing-section {
    grid-template-columns: 1fr;
  }

  .testing-media {
    min-height: 290px;
  }

  .request-section {
    align-items: start;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-support {
    grid-column: 2 / -1;
  }

  .product-dialog-layout {
    grid-template-columns: 1fr;
    margin-top: -54px;
  }

  .product-dialog-media {
    min-height: 360px;
    padding-top: 68px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-dialog-copy {
    padding: 32px;
  }
}

@media (max-width: 660px) {
  :root {
    --container: min(100% - 24px, 620px);
    --header-height: 64px;
  }

  body {
    font-size: 14px;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .header-inner {
    min-height: var(--header-height);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .brand-lockup {
    gap: 9px;
  }

  .competence-logo {
    width: 118px;
  }

  .brand-divider {
    height: 21px;
  }

  .sofinet-logo {
    width: 68px;
  }

  .project-button,
  .menu-button {
    min-height: 36px;
    padding: 0 9px;
    font-size: 10px;
  }

  .project-button {
    width: 36px;
    padding: 0;
    overflow: hidden;
    color: transparent;
    font-size: 0;
  }

  .project-button span {
    flex: 0 0 auto;
    margin: 0;
    color: var(--accent-strong);
  }

  .hero {
    padding-top: 40px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual figcaption {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .hero-visual figcaption span {
    text-align: left;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .solutions-sticky h2,
  .company-copy h2,
  .testing-copy h2,
  .request-intro h2 {
    font-size: 34px;
  }

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

  .series-card,
  .series-card-featured,
  .series-card-wide,
  .series-card-industrial,
  .series-card-wireless,
  .series-card-access,
  .series-card-core {
    grid-column: 1;
    min-height: 330px;
  }

  .series-card-wide,
  .series-card-industrial,
  .series-card-wireless,
  .series-card-access,
  .series-card-core {
    display: flex;
    flex-direction: column;
  }

  .series-card-wide img,
  .series-card-industrial img,
  .series-card-wireless img,
  .series-card-access img,
  .series-card-core img {
    width: 100%;
    max-height: 190px;
    margin-top: auto;
    padding: 16px 24px 24px;
  }

  .catalog-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .catalog-result {
    justify-items: start;
  }

  .filter-row {
    flex-wrap: nowrap;
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filter-row::-webkit-scrollbar {
    display: none;
  }

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

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

  .product-card,
  .product-skeleton {
    min-height: 390px;
  }

  .capability-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .capability-item > span {
    grid-row: auto;
  }

  .company-numbers {
    grid-template-columns: 1fr;
  }

  .company-number:last-child {
    grid-column: auto;
  }

  .testing-section {
    margin-bottom: 64px;
  }

  .testing-media {
    min-height: 240px;
    padding: 28px;
  }

  .testing-copy {
    padding: 30px 22px 34px;
  }

  .testing-copy .button {
    width: 100%;
  }

  .request-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .form-row-half {
    grid-column: 1;
  }

  .form-submit {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px 18px;
  }

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  dialog,
  .project-dialog {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
  }

  .dialog-shell,
  .project-shell {
    max-height: calc(100dvh - 18px);
  }

  .product-dialog-media {
    min-height: 280px;
    padding: 64px 24px 24px;
  }

  .product-dialog-copy {
    padding: 26px 20px 24px;
  }

  .dialog-specs {
    grid-template-columns: 1fr;
  }

  .project-shell {
    padding: 20px;
  }

  .project-item {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .project-item img {
    width: 70px;
    height: 54px;
  }

  .project-remove {
    grid-column: 2;
    justify-self: start;
  }

  .project-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .project-actions .button {
    width: 100%;
  }
}

.product-offer #productPageAddCart {
  margin-top: auto;
}

.product-page-secondary-actions {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.product-page-state-button {
  min-height: 44px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-raised);
  color: var(--ink);
  font-size: 10px;
  font-weight: 650;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.product-page-state-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-page-state-button:hover,
.product-page-state-button:focus-visible {
  border-color: var(--accent);
}

.product-page-state-button.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.product-offer > .button-secondary {
  margin-top: 8px;
}

.product-page-status {
  min-height: 0;
  margin-top: 10px;
  color: var(--accent-strong);
  font-size: 10px;
  line-height: 1.4;
}

.product-page-status:empty {
  display: none;
}

@media (max-width: 1060px) {
  .product-offer #productPageAddCart {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .product-page-secondary-actions {
    grid-column: 3;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .product-offer > a.button.button-secondary {
    grid-column: 2 / span 2;
    grid-row: 3;
    margin: 0;
  }

  .product-page-status {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .product-offer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .product-offer #productPageAddCart,
  .product-page-secondary-actions,
  .product-offer > a.button.button-secondary,
  .product-page-status {
    width: 100%;
    margin-top: 8px;
  }
}

@media (max-width: 430px) {
  .sofinet-logo,
  .brand-divider {
    display: none;
  }

  .competence-logo {
    width: 128px;
  }
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.error-page {
  min-height: 100svh;
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 32px 0;
  display: grid;
  align-content: space-between;
  gap: 72px;
}

.error-page .brand-lockup {
  width: max-content;
}

.error-page-copy {
  max-width: 720px;
  padding-bottom: clamp(40px, 12vh, 140px);
}

.error-page-copy h1 {
  margin: 10px 0 18px;
  font-size: clamp(42px, 8vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.error-page-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
}

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

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

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

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--page);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  dialog::backdrop {
    backdrop-filter: none;
  }
}

/* Denser storefront layout inspired by the manufacturer and professional B2B catalogs. */
:root {
  --header-height: 132px;
}

.site-header {
  min-height: var(--header-height);
  background: rgba(244, 245, 240, 0.97);
}

.utility-bar {
  min-height: 30px;
  background: #284e2f;
  color: #f4f7f0;
}

.utility-inner {
  width: var(--container);
  min-height: 30px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  font-weight: 600;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.utility-links a {
  color: #edf3e9;
  transition: color 180ms ease;
}

.utility-links a:hover {
  color: var(--accent-bright);
}

.header-inner {
  min-height: 62px;
}

.product-nav {
  border-top: 1px solid rgba(17, 19, 15, 0.09);
  background: rgba(251, 252, 248, 0.94);
}

.product-nav-inner {
  width: var(--container);
  min-height: 39px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-nav-inner::-webkit-scrollbar {
  display: none;
}

.product-nav-link {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 11px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.product-nav-link:hover,
.product-nav-link:focus-visible {
  background: var(--surface-accent);
  color: var(--accent-strong);
}

.hero {
  min-height: 0;
  padding: 30px 0 28px;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
  gap: clamp(26px, 3vw, 44px);
}

.hero h1 {
  font-size: clamp(48px, 4.5vw, 66px);
}

.hero-lead {
  margin-top: 18px;
}

.hero-actions {
  margin-top: 22px;
}

.hero-benefits {
  margin: 24px 0 0;
  padding: 17px 0 0;
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-benefits li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 550;
}

.hero-benefits li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--accent);
}

.hero-visual {
  height: 480px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.hero-visual picture {
  min-height: 0;
}

.hero-visual img {
  height: 100%;
  aspect-ratio: auto;
}

.section {
  padding: clamp(62px, 6vw, 86px) 0;
}

.catalog-head {
  display: block;
}

.catalog-heading {
  max-width: 850px;
  margin-bottom: 26px;
}

.catalog-workspace {
  display: grid;
  grid-template-columns: 255px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.catalog-sidebar-head {
  min-height: 62px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.catalog-sidebar-head strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.catalog-sidebar-head span {
  color: var(--muted);
  font-size: 10px;
}

.catalog-sidebar .filter-row {
  display: grid;
  gap: 0;
  margin: 0;
}

.catalog-sidebar .filter-button {
  width: 100%;
  min-height: 45px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  text-align: left;
}

.catalog-sidebar .filter-button b {
  min-width: 24px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  text-align: right;
}

.catalog-sidebar .filter-button.is-active {
  background: var(--accent-strong);
  color: var(--surface-raised);
}

.catalog-sidebar .filter-button.is-active b {
  color: #dcebd6;
}

.catalog-sidebar-note {
  padding: 17px 15px 18px;
  background: var(--surface-accent);
}

.catalog-sidebar-note strong {
  color: var(--ink);
  font-size: 12px;
}

.catalog-sidebar-note p {
  margin: 6px 0 10px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.catalog-sidebar-note a {
  color: var(--accent-strong);
  font-size: 10px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.catalog-main {
  min-width: 0;
}

.catalog-toolbar {
  margin: 0 0 12px;
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.catalog-controls {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 18px;
}

.sort-field {
  display: grid;
  gap: 7px;
}

.sort-field > span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
}

.sort-field select {
  min-width: 180px;
  min-height: 44px;
  padding: 0 34px 0 11px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--page);
  color: var(--ink);
  font-size: 12px;
  outline: 0;
  cursor: pointer;
}

.sort-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(63, 112, 56, 0.14);
}

.catalog-result {
  min-width: 72px;
  padding: 0 0 2px;
  justify-items: start;
}

.catalog-result strong {
  font-size: 26px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 0;
}

.product-card,
.product-skeleton {
  min-height: 232px;
}

.product-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 218px;
  border-color: var(--line);
  transform: none;
}

.product-card:hover {
  border-color: var(--accent);
  box-shadow: 0 14px 38px rgba(29, 53, 31, 0.08);
  transform: none;
}

.product-media {
  min-height: 230px;
  padding: 22px 16px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: #fafbf8;
  cursor: pointer;
}

.product-media img {
  max-height: 145px;
}

.product-copy {
  min-width: 0;
  padding: 18px 20px;
}

.product-copy h3 {
  margin-top: 6px;
  font-size: 21px;
}

.product-name {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.product-detail {
  min-height: 0;
  margin-top: 7px;
  font-size: 11px;
  -webkit-line-clamp: 2;
}

.product-spec-preview {
  margin: 13px 0 0;
  padding: 11px 0 0;
  display: grid;
  gap: 5px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.product-spec-preview li {
  position: relative;
  padding-left: 12px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.product-spec-preview li::before {
  content: "";
  position: absolute;
  top: 0.46em;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--accent);
}

.product-buy {
  padding: 18px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  background: #f7f8f4;
}

.product-buy > span {
  color: var(--muted);
  font-size: 10px;
}

.product-price {
  margin: 5px 0 0;
  padding: 0;
  font-size: 20px;
  font-variant-numeric: tabular-nums;
}

.product-buy > small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
}

.product-actions {
  margin-top: auto;
  grid-template-columns: 1fr;
}

.product-detail-button,
.product-add-button {
  width: 100%;
}

.product-skeleton {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent),
    var(--surface-muted);
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  }

  .hero-visual {
    height: 440px;
  }

  .catalog-workspace {
    grid-template-columns: 220px minmax(0, 1fr);
  }

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

@media (max-width: 920px) {
  :root {
    --header-height: 132px;
  }

  .utility-inner > span {
    display: none;
  }

  .utility-inner {
    justify-content: flex-end;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 0 26px;
  }

  .hero-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 24px;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .hero-lead,
  .hero-copy .hero-benefits {
    grid-column: 1;
  }

  .hero-copy .hero-actions {
    grid-column: 2;
    grid-row: 2 / span 3;
    align-self: center;
    flex-direction: column;
  }

  .hero-visual {
    height: 380px;
  }

  .hero-visual img {
    object-position: 50% 52%;
  }

  .catalog-workspace {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: static;
  }

  .catalog-sidebar .filter-row {
    display: flex;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    overflow-x: auto;
  }

  .catalog-sidebar .filter-button {
    flex: 0 0 190px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .catalog-sidebar-note {
    display: none;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .catalog-controls {
    justify-content: space-between;
  }

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

@media (max-width: 660px) {
  :root {
    --header-height: 104px;
  }

  .utility-bar {
    display: none;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .product-nav-inner {
    width: 100%;
    padding: 0 12px;
  }

  .hero {
    display: grid;
    padding: 22px 0 24px;
  }

  .hero-copy {
    display: block;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .hero-copy .hero-actions {
    margin-top: 20px;
  }

  .hero-benefits {
    margin-top: 18px;
  }

  .hero-visual {
    height: 276px;
  }

  .hero-visual img {
    object-position: 44% 52%;
  }

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

  .catalog-sidebar-head {
    min-height: 52px;
  }

  .catalog-toolbar {
    padding: 12px;
  }

  .catalog-controls {
    align-items: end;
    gap: 10px;
  }

  .sort-field {
    flex: 1;
  }

  .sort-field select {
    width: 100%;
    min-width: 0;
  }

  .catalog-result {
    min-width: 66px;
  }

  .product-card {
    min-height: 0;
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .product-media {
    min-height: 154px;
    padding: 14px 10px;
  }

  .product-media img {
    max-height: 105px;
  }

  .product-copy {
    padding: 13px 12px;
  }

  .product-copy h3 {
    font-size: 17px;
  }

  .product-detail {
    -webkit-line-clamp: 2;
  }

  .product-spec-preview {
    display: none;
  }

  .product-buy {
    grid-column: 1 / -1;
    padding: 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2px 10px;
    align-items: end;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-buy > span,
  .product-price {
    grid-column: 1;
  }

  .product-buy > small {
    display: none;
  }

  .product-actions {
    grid-column: 2;
    grid-row: 1 / span 2;
    grid-template-columns: 1fr;
    margin: 0;
  }

  .product-detail-button,
  .product-add-button {
    width: 100%;
    min-width: 78px;
  }
}

@media (max-width: 430px) {
  .sofinet-logo,
  .brand-divider {
    display: block;
  }

  .competence-logo {
    width: 94px;
  }

  .sofinet-logo {
    width: 62px;
  }

  .brand-divider {
    height: 20px;
  }

  .product-detail-button {
    display: none;
  }
}

/* Indexable product detail pages. */
.product-page-main {
  width: var(--container);
  margin: 0 auto;
  padding: 24px 0 88px;
}

.product-header-inner .product-page-project {
  text-decoration: none;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 11px;
}

.breadcrumbs a {
  transition: color 180ms ease;
}

.breadcrumbs a:hover {
  color: var(--accent-strong);
}

.product-page-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(330px, 1.05fr) minmax(230px, 0.55fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.product-page-media {
  min-height: 480px;
  padding: clamp(32px, 5vw, 74px);
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  background: #fafbf8;
}

.product-page-media img {
  width: 100%;
  max-height: 290px;
  object-fit: contain;
}

.product-page-intro {
  padding: clamp(32px, 4vw, 62px);
}

.product-page-intro h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 680;
  letter-spacing: -0.05em;
  line-height: 1;
}

.product-page-intro h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 650;
}

.product-page-lead {
  max-width: 590px;
  margin: 10px 0 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.product-key-specs {
  margin: 24px 0 0;
  padding: 18px 0 0;
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.product-key-specs li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 12px;
}

.product-key-specs li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.product-offer {
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  background: #f1f3ed;
}

.product-offer > span {
  color: var(--muted);
  font-size: 11px;
}

.product-offer > strong {
  margin-top: 6px;
  color: var(--ink);
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 720;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}

.product-offer > small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.product-offer .button:first-of-type {
  margin-top: auto;
}

.product-offer .button + .button {
  margin-top: 8px;
}

.product-page-add.is-added {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.product-offer > p {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.product-page-content {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 16px;
  align-items: start;
}

.product-specification,
.product-service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.product-specification {
  padding: clamp(28px, 4vw, 50px);
}

.product-specification h2,
.product-service-card h2,
.related-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.product-specification dl {
  margin: 28px 0 0;
  border-top: 1px solid var(--line-strong);
}

.product-specification dl > div {
  min-height: 51px;
  padding: 12px 0;
  display: grid;
  grid-template-columns: minmax(150px, 0.38fr) minmax(0, 0.62fr);
  gap: 24px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.product-specification dt {
  color: var(--muted);
  font-size: 11px;
}

.product-specification dd {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 550;
}

.product-service-card {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  padding: 30px;
  background: var(--surface-accent);
}

.product-service-card h2 {
  font-size: clamp(28px, 2.7vw, 38px);
}

.product-service-card > p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.product-service-card ul {
  margin: 22px 0;
  padding: 18px 0;
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.product-service-card li {
  position: relative;
  padding-left: 16px;
  color: var(--text);
  font-size: 11px;
}

.product-service-card li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--accent-strong);
  font-weight: 800;
}

.related-products {
  margin-top: 76px;
}

.related-heading {
  margin-bottom: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

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

.related-product-card {
  min-width: 0;
  padding: 18px;
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.related-product-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.related-product-card img {
  width: 100%;
  height: 150px;
  margin-bottom: 15px;
  object-fit: contain;
}

.related-product-card > span {
  color: var(--muted);
  font-size: 10px;
}

.related-product-card h3 {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 680;
}

.related-product-card p {
  min-height: 36px;
  margin: 7px 0 17px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.related-product-card strong {
  margin-top: auto;
  color: var(--ink);
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}

.product-page-footer .footer-bottom {
  grid-template-columns: 1fr auto 1fr;
}

.product-page-footer .footer-bottom > :last-child {
  justify-self: end;
}

@media (max-width: 1060px) {
  .product-page-hero {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  }

  .product-offer {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px 12px;
    align-items: center;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-offer > span,
  .product-offer > strong,
  .product-offer > small {
    grid-column: 1;
  }

  .product-offer .button:first-of-type,
  .product-offer .button + .button {
    margin: 0;
  }

  .product-offer .button:first-of-type {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .product-offer .button + .button {
    grid-column: 3;
    grid-row: 1 / span 3;
  }

  .product-offer > p {
    display: none;
  }
}

@media (max-width: 760px) {
  .product-page-main {
    padding-top: 18px;
  }

  .product-page-hero,
  .product-page-content {
    grid-template-columns: 1fr;
  }

  .product-page-media {
    min-height: 330px;
    padding: 36px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-page-intro {
    padding: 28px 22px;
  }

  .product-offer {
    grid-column: 1;
    grid-template-columns: 1fr 1fr;
    padding: 20px;
  }

  .product-offer > span,
  .product-offer > strong,
  .product-offer > small {
    grid-column: 1 / -1;
  }

  .product-offer .button:first-of-type,
  .product-offer .button + .button {
    grid-row: auto;
  }

  .product-offer .button:first-of-type {
    grid-column: 1;
  }

  .product-offer .button + .button {
    grid-column: 2;
  }

  .product-service-card {
    position: static;
  }

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

  .related-product-card {
    grid-template-columns: 120px minmax(0, 1fr);
    column-gap: 16px;
  }

  .related-product-card img {
    grid-row: 1 / span 5;
    height: 120px;
    margin: 0;
  }

  .related-product-card p {
    min-height: 0;
    margin-bottom: 10px;
  }

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

  .product-page-footer .footer-bottom > :last-child {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .product-page-media {
    min-height: 260px;
  }

  .product-page-intro h1 {
    font-size: 36px;
  }

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

  .product-offer .button:first-of-type,
  .product-offer .button + .button {
    grid-column: 1;
    width: 100%;
  }

  .product-specification,
  .product-service-card {
    padding: 24px 20px;
  }

  .product-specification dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .related-heading {
    align-items: start;
    flex-direction: column;
  }
}

/* Commerce states: favorites, comparison and cart. */
.commerce-button {
  position: relative;
  min-height: 40px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  font-size: 10px;
  font-weight: 650;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.commerce-button svg,
.product-card-tool svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.commerce-button:hover,
.commerce-button:focus-visible {
  border-color: var(--accent);
  background: var(--surface-accent);
}

.commerce-button:active {
  transform: translateY(1px);
}

.commerce-count {
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: inline-grid;
  place-items: center;
  border-radius: 5px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 9px;
  font-weight: 750;
  line-height: 1;
}

.product-media-cell {
  position: relative;
  min-width: 0;
  min-height: 230px;
}

.product-media-cell .product-media {
  width: 100%;
  height: 100%;
}

.product-card-tools {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 7px;
}

.product-card-tool {
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(253, 254, 251, 0.94);
  color: var(--text);
  box-shadow: 0 7px 18px rgba(17, 19, 15, 0.08);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.product-card-tool:hover,
.product-card-tool:focus-visible {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.product-card-tool:active {
  transform: scale(0.97);
}

.product-card-tool.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.commerce-empty .text-link {
  margin-top: 14px;
}

.commerce-list,
.cart-list {
  display: grid;
  gap: 8px;
}

.commerce-list-item {
  min-height: 104px;
  padding: 10px;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
}

.commerce-list-item img {
  width: 110px;
  height: 74px;
  object-fit: contain;
}

.commerce-list-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.commerce-list-copy strong {
  color: var(--ink);
  font-size: 14px;
}

.commerce-list-copy span {
  color: var(--muted);
  font-size: 10px;
}

.commerce-list-copy b {
  margin-top: 5px;
  color: var(--ink);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.commerce-list-actions {
  display: grid;
  gap: 7px;
}

.commerce-list-actions .button {
  min-height: 40px;
}

.commerce-list-actions .text-button {
  margin: 0;
  text-align: center;
}

.compare-dialog {
  width: min(100% - 32px, 1240px);
}

.compare-shell {
  padding: 30px;
}

.compare-hint {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--surface-accent);
  color: var(--accent-strong);
  font-size: 11px;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--surface-raised);
  table-layout: fixed;
}

.compare-table th,
.compare-table td {
  min-width: 190px;
  padding: 13px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 10px;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
}

.compare-table th:first-child {
  width: 150px;
  min-width: 150px;
  color: var(--muted);
  font-weight: 600;
}

.compare-table thead th {
  background: var(--page);
}

.compare-table thead a {
  display: grid;
  gap: 8px;
}

.compare-table thead img {
  width: 100%;
  height: 82px;
  object-fit: contain;
}

.compare-table thead strong {
  color: var(--ink);
  font-size: 13px;
}

.compare-table thead button,
.cart-remove {
  min-height: 36px;
  margin-top: 8px;
  padding: 0 9px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: transparent;
  color: var(--danger);
  font-size: 10px;
  font-weight: 650;
  cursor: pointer;
}

.compare-table ul {
  margin: 0;
  padding-left: 15px;
}

.compare-table .button {
  width: 100%;
  min-height: 40px;
}

.cart-item {
  min-height: 104px;
  padding: 10px;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) auto minmax(100px, auto) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
}

.cart-item img {
  width: 100px;
  height: 70px;
  object-fit: contain;
}

.cart-item-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.cart-item-copy strong {
  color: var(--ink);
  font-size: 13px;
}

.cart-item-copy span,
.cart-item-copy small {
  color: var(--muted);
  font-size: 9px;
}

.quantity-control {
  height: 40px;
  display: grid;
  grid-template-columns: 38px 38px 38px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.quantity-control button,
.quantity-control output {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
}

.quantity-control button {
  cursor: pointer;
}

.quantity-control button:hover {
  background: var(--surface-accent);
}

.quantity-control output {
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

.cart-line-total {
  color: var(--ink);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.cart-remove {
  margin: 0;
}

.commerce-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  max-width: min(360px, calc(100% - 32px));
  padding: 13px 16px;
  border: 1px solid rgba(251, 252, 248, 0.16);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--surface-raised);
  box-shadow: var(--shadow-strong);
  font-size: 11px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.commerce-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .commerce-label {
    display: none;
  }

  .commerce-button {
    width: 40px;
    padding: 0;
  }

  .commerce-count {
    position: absolute;
    top: -5px;
    right: -5px;
    border: 2px solid var(--page);
  }

  .cart-item {
    grid-template-columns: 88px minmax(0, 1fr) auto;
  }

  .cart-item img {
    width: 88px;
  }

  .quantity-control {
    grid-column: 2;
  }

  .cart-line-total {
    grid-column: 3;
    grid-row: 2;
  }

  .cart-remove {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 660px) {
  .header-inner {
    gap: 6px;
  }

  .brand-lockup {
    gap: 6px;
  }

  .competence-logo {
    width: 90px;
  }

  .sofinet-logo {
    width: 56px;
  }

  .header-actions {
    gap: 4px;
  }

  .commerce-button,
  .menu-button {
    width: 40px;
    min-height: 40px;
    padding: 0;
  }

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

  .product-media-cell {
    min-height: 154px;
  }

  .product-card-tools {
    top: 7px;
    right: 7px;
    gap: 5px;
  }

  .product-card-tool {
    width: 38px;
    height: 38px;
  }

  .commerce-list-item {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .commerce-list-item img {
    width: 82px;
    height: 62px;
  }

  .commerce-list-actions {
    grid-column: 2;
    grid-template-columns: auto auto;
    justify-content: start;
    align-items: center;
  }

  .cart-item {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 10px;
  }

  .cart-item img {
    width: 74px;
    height: 58px;
  }

  .quantity-control,
  .cart-line-total,
  .cart-remove {
    grid-column: 2;
  }

  .cart-line-total {
    grid-row: auto;
  }

  .quantity-control {
    grid-template-columns: 36px 36px 36px;
  }

  .compare-shell {
    padding: 20px;
  }

  .commerce-toast {
    right: 12px;
    bottom: 12px;
  }
}

/* Global tolerant search. */
.search-dialog {
  --search-dropdown-top: calc(var(--header-height) + 6px);
  --search-dropdown-right: 24px;
  position: fixed;
  inset: var(--search-dropdown-top) var(--search-dropdown-right) auto auto;
  z-index: 120;
  width: min(720px, calc(100vw - 32px));
  max-height: calc(100dvh - var(--search-dropdown-top) - 8px);
  margin: 0;
  border-color: var(--line-strong);
  background: rgba(253, 254, 251, 0.985);
  box-shadow: 0 24px 54px rgba(17, 19, 15, 0.18);
  transform-origin: top right;
}

.search-dialog[open] {
  animation: search-dropdown-enter 180ms ease-out both;
}

.search-dialog::backdrop {
  display: none;
}

@keyframes search-dropdown-enter {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.search-shell {
  max-height: calc(100dvh - var(--search-dropdown-top) - 8px);
  padding: 16px 18px 18px;
  overflow: auto;
  overscroll-behavior: contain;
}

.search-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 36px;
}

.search-dialog-head > strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.search-dropdown-close {
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
}

.search-dropdown-close:hover,
.search-dropdown-close:focus-visible {
  background: var(--surface-accent);
  color: var(--accent-strong);
}

.search-dropdown-close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.global-search-form {
  margin-top: 10px;
}

.global-search-field {
  display: grid;
  gap: 7px;
}

.search-input-label {
  color: var(--ink);
  font-size: 11px;
  font-weight: 650;
}

.search-input-control {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--page);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.search-input-control:focus-within {
  border-color: var(--accent);
  background: var(--surface-raised);
  box-shadow: 0 0 0 4px rgba(63, 112, 56, 0.13);
}

.search-input-control > svg {
  width: 22px;
  height: 22px;
  margin-left: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--accent-strong);
  stroke-width: 1.8;
  stroke-linecap: round;
}

.search-input-control input {
  width: 100%;
  min-width: 0;
  height: 50px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  font-weight: 560;
}

.search-input-control input::-webkit-search-cancel-button {
  display: none;
}

.search-input-control input::placeholder {
  color: var(--muted);
  font-weight: 400;
}

.search-input-control button {
  min-height: 42px;
  margin-right: 7px;
  padding: 0 11px;
  flex: 0 0 auto;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  cursor: pointer;
}

.search-input-control button:hover,
.search-input-control button:focus-visible {
  background: var(--surface-accent);
  color: var(--accent-strong);
}

.global-search-status {
  min-height: 18px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.global-search-results {
  margin-top: 8px;
}

.search-result-list {
  display: grid;
  gap: 0;
}

.search-result {
  min-height: 78px;
  padding: 9px 10px;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  transition: background-color 180ms ease, color 180ms ease;
}

.search-result:first-child {
  border-top: 0;
}

.search-result:hover,
.search-result:focus-visible,
.search-result.is-active {
  background: var(--surface-accent);
  box-shadow: none;
}

.search-result img {
  width: 86px;
  height: 58px;
  object-fit: contain;
}

.search-result-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.search-result-copy small {
  color: var(--accent-strong);
  font-size: 9px;
  font-weight: 700;
}

.search-result-copy strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.search-result-copy > span {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result-price {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.search-result-price svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--accent-strong);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-suggestions {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.search-suggestions:first-child {
  border-top: 0;
}

.search-suggestions-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.search-suggestions h3 {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.search-suggestions-head > button {
  min-height: 36px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
  cursor: pointer;
}

.search-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.search-chip-row button,
.search-empty button,
.search-empty a {
  min-height: 42px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--page);
  color: var(--ink);
  font-size: 11px;
  font-weight: 650;
  cursor: pointer;
}

.search-chip-row button:hover,
.search-chip-row button:focus-visible,
.search-empty button:hover,
.search-empty button:focus-visible,
.search-empty a:hover,
.search-empty a:focus-visible {
  border-color: var(--accent);
  background: var(--surface-accent);
  color: var(--accent-strong);
}

.search-capabilities {
  margin: 2px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--surface-accent);
  color: var(--text);
  font-size: 11px;
  line-height: 1.5;
}

.search-empty {
  min-height: 150px;
  padding: 22px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
  text-align: center;
}

.search-empty h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
}

.search-empty p {
  max-width: 520px;
  margin: 7px 0 15px;
  color: var(--muted);
  font-size: 11px;
}

.search-shortcut-hint {
  margin: 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  color: var(--muted);
  font-size: 9px;
}

.search-shortcut-hint kbd {
  min-width: 23px;
  height: 23px;
  padding: 0 6px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-bottom-width: 2px;
  border-radius: 5px;
  background: var(--page);
  color: var(--text);
  font-family: inherit;
  font-size: 9px;
  font-weight: 650;
}

@media (max-width: 660px) {
  .search-dialog {
    inset: var(--search-dropdown-top) 8px auto auto;
    width: calc(100% - 16px);
    max-height: calc(100dvh - var(--search-dropdown-top) - 8px);
  }

  .search-shell {
    max-height: calc(100dvh - var(--search-dropdown-top) - 8px);
    padding: 12px 14px 14px;
  }

  .search-dialog-head {
    min-height: 40px;
  }

  .global-search-form {
    margin-top: 8px;
  }

  .search-result {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 10px;
    min-height: 76px;
  }

  .search-result img {
    width: 68px;
    height: 54px;
  }

  .search-result-copy > span {
    white-space: normal;
  }

  .search-result-price {
    grid-column: 2;
    margin-top: -4px;
    font-size: 11px;
  }

  .search-result-price svg {
    margin-left: auto;
  }

  .search-shortcut-hint {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .search-dialog[open] {
    animation: none;
  }
}

/* Compact icon-only actions in the site header. */
.header-actions {
  gap: 8px;
}

.header-actions .commerce-button {
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  gap: 0;
  border: 0;
  background: transparent;
}

.header-actions .commerce-button:hover,
.header-actions .commerce-button:focus-visible {
  border-color: transparent;
  background: var(--surface-accent);
}

.header-actions .commerce-label {
  display: none;
}

.header-actions .commerce-count {
  position: absolute;
  top: -3px;
  right: -3px;
  border: 2px solid var(--page);
}

/* Motion system: short, purposeful transitions for the storefront. */
:root {
  --motion-fast: 160ms;
  --motion-base: 260ms;
  --motion-slow: 380ms;
  --motion-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-ease-spring: cubic-bezier(0.2, 0.8, 0.2, 1.08);
}

.site-header {
  transition: border-color var(--motion-base) ease, background-color var(--motion-base) ease, box-shadow var(--motion-base) ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(17, 19, 15, 0.18);
  box-shadow: 0 10px 28px rgba(17, 19, 15, 0.07);
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 3px;
  left: 10px;
  height: 1px;
  background: var(--accent-strong);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-base) var(--motion-ease-out);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button:active,
.header-cta:active,
.commerce-button:active,
.product-page-state-button:active {
  transform: translateY(1px) scale(0.985);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.992);
  transition: opacity var(--motion-slow) var(--motion-ease-out), transform var(--motion-slow) var(--motion-ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

.hero-copy.reveal {
  opacity: 1;
  transform: none;
}

.hero-copy.reveal > * {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity var(--motion-slow) var(--motion-ease-out), transform var(--motion-slow) var(--motion-ease-out);
}

.hero-copy.reveal.is-visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-copy.reveal.is-visible > :nth-child(2) { transition-delay: 45ms; }
.hero-copy.reveal.is-visible > :nth-child(3) { transition-delay: 90ms; }
.hero-copy.reveal.is-visible > :nth-child(4) { transition-delay: 135ms; }
.hero-copy.reveal.is-visible > :nth-child(5) { transition-delay: 180ms; }

.hero-visual.reveal {
  transform: translate3d(0, 14px, 0) scale(0.985);
}

.hero-visual.reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-visual img,
.series-card img,
.testing-media img,
.related-product-card img,
.product-page-media img {
  transition: transform var(--motion-slow) var(--motion-ease-out), filter var(--motion-base) ease;
}

.testing-media.reveal {
  transform: translate3d(-18px, 0, 0) scale(0.992);
}

.testing-copy.reveal {
  transform: translate3d(18px, 0, 0) scale(0.992);
}

.testing-media.reveal.is-visible,
.testing-copy.reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.capability-item h3,
.capability-item p {
  transition: color var(--motion-base) ease, transform var(--motion-base) var(--motion-ease-out);
}

.company-number {
  position: relative;
  border-top: 0;
}

.company-number::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line-strong);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-slow) var(--motion-ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.company-number.is-visible::before {
  transform: scaleX(1);
}

.product-card-enter,
.catalog-content-enter {
  animation: catalog-card-enter var(--motion-slow) var(--motion-ease-out) both;
  animation-delay: var(--catalog-delay, 0ms);
}

.commerce-count.is-updated {
  animation: commerce-count-bump var(--motion-base) var(--motion-ease-spring);
}

.project-dialog[open] {
  animation: project-dialog-enter var(--motion-base) var(--motion-ease-out) both;
}

.project-dialog[open]::backdrop {
  animation: dialog-backdrop-enter var(--motion-fast) ease-out both;
}

.product-page .breadcrumbs {
  animation: product-page-enter var(--motion-base) var(--motion-ease-out) both;
}

.product-page-hero > * {
  animation: product-page-enter var(--motion-slow) var(--motion-ease-out) both;
}

.product-page-hero > :nth-child(2) { animation-delay: 45ms; }
.product-page-hero > :nth-child(3) { animation-delay: 90ms; }

.motion-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.992);
  transition: opacity var(--motion-slow) var(--motion-ease-out), transform var(--motion-slow) var(--motion-ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (hover: hover) and (pointer: fine) {
  .series-card:hover img {
    transform: translate3d(0, -4px, 0) scale(1.035);
  }

  .capability-item:hover h3,
  .capability-item:hover p {
    transform: translate3d(6px, 0, 0);
  }

  .capability-item:hover h3 {
    color: var(--accent-strong);
  }

  .testing-section:hover .testing-media img,
  .product-page-media:hover img {
    transform: scale(1.035);
  }

  .related-product-card:hover img {
    transform: translate3d(0, -3px, 0) scale(1.025);
  }
}

@keyframes catalog-card-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0) scale(0.992);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes commerce-count-bump {
  0% { transform: scale(0.82); }
  58% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

@keyframes project-dialog-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes dialog-backdrop-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes product-page-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0) scale(0.992);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-card-enter,
  .catalog-content-enter,
  .commerce-count.is-updated,
  .project-dialog[open],
  .project-dialog[open]::backdrop,
  .product-page .breadcrumbs,
  .product-page-hero > * {
    animation: none !important;
  }

  .reveal,
  .hero-copy.reveal > *,
  .motion-reveal,
  .testing-media.reveal,
  .testing-copy.reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .company-number::before {
    transform: scaleX(1);
    transition: none;
  }
}

/* Mobile completion: keep product pages fluid and controls comfortable to tap. */
.product-page-hero > *,
.product-page-content > *,
.product-page-media picture,
.product-page-secondary-actions {
  min-width: 0;
}

.product-page-media picture {
  width: 100%;
  display: grid;
  place-items: center;
}

@media (min-width: 761px) and (max-width: 1060px) {
  .product-offer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
    grid-template-rows: repeat(3, auto);
    gap: 8px 18px;
    align-items: center;
  }

  .product-offer > span {
    grid-column: 1;
    grid-row: 1;
  }

  .product-offer > strong {
    grid-column: 1;
    grid-row: 2;
  }

  .product-offer > small {
    grid-column: 1;
    grid-row: 3;
  }

  .product-offer #productPageAddCart {
    width: 100%;
    margin: 0;
    grid-column: 2;
    grid-row: 1;
  }

  .product-page-secondary-actions {
    width: 100%;
    margin: 0;
    grid-column: 2;
    grid-row: 2;
  }

  .product-offer > .button-secondary {
    width: 100%;
    margin: 0;
    grid-column: 2;
    grid-row: 3;
  }

  .product-page-status {
    grid-column: 1 / -1;
    grid-row: 4;
  }
}

@media (max-width: 760px) {
  .product-page-hero,
  .product-page-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-page-media,
  .product-page-intro,
  .product-offer,
  .product-specification,
  .product-service-card {
    width: 100%;
    min-width: 0;
  }

  .product-offer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .product-offer #productPageAddCart,
  .product-page-secondary-actions,
  .product-offer > .button-secondary,
  .product-page-status {
    width: 100%;
    margin-top: 8px;
  }

  .product-offer #productPageAddCart {
    margin-top: 16px;
  }

  .product-page-secondary-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .product-page-media img {
    width: 100%;
    max-width: 100%;
  }

  .product-page-intro h1,
  .product-specification h2,
  .related-product-card h3 {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 660px) {
  :root {
    --header-height: 108px;
  }

  .product-nav-link,
  .product-card-tool,
  .menu-button {
    min-height: 44px;
  }

  .product-card-tool {
    width: 44px;
    height: 44px;
  }

  .product-card-tools {
    top: 6px;
    right: 6px;
    gap: 4px;
  }

  .request-form input,
  .request-form textarea,
  .search-field input,
  .sort-field select {
    font-size: 16px;
  }

  .series-card .text-link,
  .product-service-card .text-link,
  .related-heading .text-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 430px) {
  :root {
    --header-height: 148px;
  }

  .header-inner,
  .product-header-inner {
    min-height: 103px;
    padding: 6px 0 5px;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 44px 44px;
    gap: 4px;
  }

  .brand-lockup {
    min-height: 44px;
    justify-self: start;
    gap: 8px;
  }

  .competence-logo {
    width: 112px;
    flex: 0 0 auto;
  }

  .sofinet-logo {
    width: 68px;
    display: block;
    flex: 0 0 auto;
  }

  .brand-divider {
    height: 22px;
    display: block;
    flex: 0 0 auto;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
    gap: 4px;
  }

  .product-header-inner .header-actions {
    justify-content: flex-end;
    gap: 8px;
  }

  .header-actions .commerce-button,
  .menu-button {
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
  }

  .menu-button {
    font-size: 10px;
  }
}
