/* stylelint-disable no-descending-specificity -- Component variants intentionally follow their base layouts. */

:root {
  --nby-navy: #172033;
  --nby-ink: #222;
  --nby-secondary: #626a73;
  --nby-accent: #d62929;
  --nby-accent-dark: #a91f1f;
  --nby-white: #fff;
  --nby-surface: #f4f5f6;
  --nby-border: #d9dde1;
  --nby-border-dark: #394254;
  --nby-success: #17633a;
  --nby-error: #a51f1f;
  --nby-content: 76rem;
  --nby-reading: 50rem;
  --nby-radius: 0.25rem;
  --nby-transition: 160ms ease;
  --nby-floating-whatsapp-right: 1rem;
  --nby-floating-whatsapp-bottom: 5rem;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-width: 20rem;
  margin: 0;
  color: var(--nby-ink);
  background: var(--nby-white);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

figure {
  margin: 0;
}

a {
  color: var(--nby-accent-dark);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--nby-accent);
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 0.1875rem solid #1f6feb;
  outline-offset: 0.1875rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.8em;
  color: var(--nby-ink);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.125rem, 8vw, 3.625rem);
}

h2 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.1rem, 2.3vw, 1.35rem);
}

p,
ul,
ol,
dl {
  margin-top: 0;
}

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

button {
  cursor: pointer;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 0.75rem;
  left: 0.75rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip-path: none;
  color: var(--nby-white);
  background: var(--nby-navy);
}

.nby-container {
  width: min(calc(100% - 2.5rem), var(--nby-content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 4.5rem;
  border-bottom: 1px solid var(--nby-border);
  background: var(--nby-white);
}

.home .site-header {
  position: fixed;
  right: 0;
  left: 0;
  border-bottom-color: rgb(255 255 255 / 18%);
  color: var(--nby-white);
  background: linear-gradient(180deg, rgb(5 9 15 / 76%), rgb(5 9 15 / 32%));
  transition:
    background-color var(--nby-transition),
    box-shadow var(--nby-transition);
}

.admin-bar .site-header {
  top: 2.875rem;
}

.site-header.is-scrolled {
  box-shadow: 0 0.25rem 0.8rem rgb(23 32 51 / 8%);
}

.home .site-header.is-scrolled {
  border-bottom-color: var(--nby-border);
  color: var(--nby-navy);
  background: rgb(255 255 255 / 97%);
}

.site-header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  width: min(calc(100% - 2.5rem), var(--nby-content));
  min-height: 4.5rem;
  margin-inline: auto;
}

.site-branding {
  position: relative;
  z-index: 52;
}

.site-title {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--nby-navy);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  white-space: nowrap;
}

.home .site-header:not(.is-scrolled) .site-title {
  color: var(--nby-white);
}

.site-title-mark {
  letter-spacing: -0.02em;
}

.site-title-suffix {
  color: var(--nby-accent);
}

.custom-logo {
  width: auto;
  max-width: 10rem;
  max-height: 2.75rem;
}

.menu-toggle {
  position: relative;
  z-index: 52;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--nby-border);
  border-radius: var(--nby-radius);
  color: var(--nby-navy);
  background: var(--nby-white);
  font-weight: 700;
}

.home .site-header:not(.is-scrolled) .menu-toggle {
  border-color: rgb(255 255 255 / 45%);
  color: var(--nby-white);
  background: rgb(8 13 22 / 48%);
}

.menu-toggle-icon {
  display: grid;
  gap: 0.3rem;
  width: 1.2rem;
}

.menu-toggle-icon span {
  display: block;
  width: 100%;
  height: 0.125rem;
  background: currentcolor;
  transition: transform var(--nby-transition);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:first-child {
  transform: translateY(0.2125rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:last-child {
  transform: translateY(-0.2125rem) rotate(-45deg);
}

.site-navigation {
  grid-column: 1 / -1;
}

.has-menu-js .site-navigation {
  position: fixed;
  z-index: 51;
  top: 4.5rem;
  right: 0;
  bottom: 0;
  display: none;
  width: min(90vw, 25rem);
  padding: 1.25rem;
  overflow-y: auto;
  border-left: 1px solid var(--nby-border);
  background: var(--nby-white);
}

html.has-menu-js body.admin-bar .site-navigation {
  top: 7.375rem;
}

.has-menu-js .site-navigation.is-open {
  display: block;
}

.menu-overlay {
  position: fixed;
  z-index: 49;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgb(23 32 51 / 58%);
}

.menu-open .menu-overlay {
  display: block;
}

.primary-menu,
.primary-menu .sub-menu,
.footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-menu a,
.footer-menu a {
  color: inherit;
  text-decoration: none;
}

.primary-menu > li > a {
  display: block;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--nby-border);
  font-weight: 700;
}

.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a {
  color: var(--nby-accent);
}

.primary-menu .sub-menu {
  padding: 0.25rem 0 0.6rem 1rem;
  border-left: 2px solid var(--nby-border);
}

.primary-menu .sub-menu a {
  display: block;
  padding: 0.5rem 0;
  color: var(--nby-secondary);
  font-size: 0.92rem;
}

.header-rfq {
  display: none;
}

.nby-header-actions {
  display: none;
}

.nby-language-desktop {
  display: none;
}

.nby-language-mobile {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--nby-border);
}

.nby-mobile-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding-top: 1rem;
}

.nby-language-switcher {
  position: relative;
  color: var(--nby-ink);
}

.nby-language-switcher summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.5rem;
  border: 1px solid currentcolor;
  border-radius: var(--nby-radius);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  list-style: none;
  cursor: pointer;
}

.nby-language-switcher summary::-webkit-details-marker {
  display: none;
}

.nby-language-switcher ul {
  z-index: 80;
  display: grid;
  min-width: 10rem;
  padding: 0.5rem;
  margin: 0.5rem 0 0;
  border: 1px solid var(--nby-border);
  background: var(--nby-white);
  box-shadow: 0 0.8rem 2rem rgb(8 13 22 / 16%);
  list-style: none;
}

.nby-language-switcher li a {
  display: block;
  padding: 0.55rem 0.65rem;
  color: var(--nby-ink);
  text-decoration: none;
}

.nby-language-switcher li a:hover,
.nby-language-switcher li a[aria-current="page"] {
  color: var(--nby-accent-dark);
  background: var(--nby-surface);
}

.nby-language-desktop .nby-language-switcher ul {
  position: absolute;
  top: calc(100% + 0.2rem);
  right: 0;
}

.site-main {
  width: min(calc(100% - 2.5rem), var(--nby-content));
  min-height: 55vh;
  margin-inline: auto;
  padding-block: clamp(3rem, 8vw, 6rem);
}

.site-main-front {
  width: 100%;
  max-width: none;
  padding: 0;
}

.page .site-main:not(.site-main-front) {
  padding-top: 0;
}

.nby-eyebrow,
.nby-data-label {
  margin-bottom: 0.85rem;
  color: var(--nby-accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.nby-industrial-hero {
  padding-block: clamp(3.5rem, 8vw, 6.25rem);
  color: var(--nby-white);
  background: var(--nby-navy);
}

.nby-fullscreen-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
  color: var(--nby-white);
  background: #070b12;
}

.nby-fullscreen-hero-media,
.nby-fullscreen-hero-media img,
.nby-fullscreen-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nby-fullscreen-hero-media img {
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.nby-fullscreen-hero-shade {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgb(4 7 12 / 94%) 0%,
      rgb(4 7 12 / 80%) 36%,
      rgb(4 7 12 / 28%) 68%,
      rgb(4 7 12 / 12%) 100%
    ),
    linear-gradient(0deg, rgb(4 7 12 / 58%) 0%, transparent 42%);
}

.nby-fullscreen-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding-top: clamp(7rem, 16vh, 10rem);
  padding-bottom: clamp(3.5rem, 10vh, 7rem);
}

.nby-fullscreen-hero-copy {
  width: min(100%, 47rem);
}

.nby-fullscreen-hero h1 {
  max-width: 15ch;
  color: var(--nby-white);
  font-size: clamp(2.45rem, 6.2vw, 5.2rem);
  text-wrap: balance;
}

.nby-fullscreen-hero .nby-eyebrow {
  color: #ff8585;
}

.nby-fullscreen-hero .nby-hero-description {
  max-width: 43rem;
  color: #e2e6ec;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.nby-industrial-hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.nby-industrial-hero h1 {
  max-width: 17ch;
  color: var(--nby-white);
}

.nby-industrial-hero .nby-eyebrow {
  color: #ff7676;
}

.nby-hero-description {
  max-width: 40rem;
  margin-bottom: 2rem;
  color: #d9dee7;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
}

.nby-industrial-hero-media {
  position: relative;
  border: 1px solid #4c566a;
  background: #0d1422;
}

.nby-industrial-hero-media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 5rem;
  height: 0.35rem;
  background: var(--nby-accent);
  content: "";
}

.nby-industrial-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.nby-home-quality-control-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.nby-button-row,
.nby-button {
  display: inline-flex;
  align-items: center;
}

.nby-button-row {
  flex-wrap: wrap;
  gap: 0.75rem;
}

.nby-button,
.wp-element-button,
.header-rfq,
.footer-rfq,
.nby-submit,
.nby-application-form button,
.nby-search-form button {
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.15rem;
  border: 2px solid var(--nby-accent);
  border-radius: var(--nby-radius);
  color: var(--nby-white);
  background: var(--nby-accent);
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition:
    border-color var(--nby-transition),
    background-color var(--nby-transition),
    color var(--nby-transition);
}

.nby-button:hover,
.wp-element-button:hover,
.header-rfq:hover,
.footer-rfq:hover,
.nby-submit:hover,
.nby-application-form button:hover,
.nby-search-form button:hover {
  border-color: var(--nby-accent-dark);
  color: var(--nby-white);
  background: var(--nby-accent-dark);
}

.nby-button-secondary,
.is-style-outline > .wp-element-button {
  border-color: #8791a3;
  color: var(--nby-white);
  background: transparent;
}

.nby-button-secondary:hover,
.is-style-outline > .wp-element-button:hover {
  border-color: var(--nby-white);
  color: var(--nby-navy);
  background: var(--nby-white);
}

.nby-capability-strip {
  border-bottom: 1px solid var(--nby-border);
  background: var(--nby-white);
}

.nby-capability-strip ul {
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nby-capability-strip li {
  position: relative;
  padding: 1rem 0 1rem 1.1rem;
  border-bottom: 1px solid var(--nby-border);
  font-size: 0.88rem;
  font-weight: 700;
}

.nby-capability-strip li:last-child {
  border-bottom: 0;
}

.nby-capability-strip li::before {
  position: absolute;
  top: 1.57rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--nby-accent);
  content: "";
}

.nby-industrial-section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.nby-industrial-section-muted {
  background: var(--nby-surface);
}

.nby-industrial-section-dark {
  color: #dce1e9;
  background: var(--nby-navy);
}

.nby-industrial-section-dark h2,
.nby-industrial-section-dark h3 {
  color: var(--nby-white);
}

.nby-catalog-search-section .nby-eyebrow,
.nby-industrial-section-dark .nby-eyebrow,
.nby-final-industrial-cta .nby-eyebrow,
.nby-final-cta .nby-eyebrow {
  color: #ff7676;
}

.nby-industrial-heading {
  display: grid;
  gap: 0.25rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.nby-industrial-heading h2 {
  max-width: 19ch;
  margin-bottom: 0.5rem;
}

.nby-industrial-heading > p:last-child {
  max-width: 44rem;
  margin-bottom: 0;
  color: var(--nby-secondary);
  font-size: 1.05rem;
}

.nby-industrial-section-dark .nby-industrial-heading > p:last-child {
  color: #c8cfda;
}

.nby-product-range {
  display: grid;
  gap: 1.5rem;
}

.nby-product-range-lead {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--nby-border);
  border-radius: var(--nby-radius);
}

.nby-product-range-lead figure {
  display: grid;
  min-height: 17rem;
  background: var(--nby-surface);
  place-items: center;
}

.nby-product-photo {
  width: min(70%, 18.75rem);
  max-height: 18.75rem;
  object-fit: contain;
}

.nby-product-range-lead p:not(.nby-data-label),
.nby-product-type-list p {
  color: var(--nby-secondary);
}

.nby-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--nby-accent-dark);
  font-weight: 750;
  text-decoration: none;
}

.nby-text-link::after {
  content: "→";
}

.nby-text-link:hover::after {
  transform: translateX(0.15rem);
}

.nby-product-type-list {
  border-top: 1px solid var(--nby-border);
}

.nby-product-type-list article {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--nby-border);
}

.nby-product-type-list h3,
.nby-product-type-list p {
  margin-bottom: 0;
}

.nby-catalog-search-section {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  color: var(--nby-white);
  background: var(--nby-navy);
}

.nby-catalog-search-grid {
  display: grid;
  gap: 2rem;
}

.nby-catalog-search-section h2 {
  color: var(--nby-white);
}

.nby-catalog-search-section p:not(.nby-eyebrow) {
  color: #cdd3dc;
}

.nby-home-catalog-search {
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--nby-border-dark);
  background: #111929;
}

.nby-home-catalog-search label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--nby-white);
  font-size: 0.9rem;
  font-weight: 700;
}

.nby-home-catalog-search > div {
  display: grid;
  gap: 0.6rem;
}

.nby-home-catalog-search input {
  min-width: 0;
  min-height: 3.5rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid #8b95a7;
  border-radius: 0;
  color: var(--nby-ink);
  background: var(--nby-white);
}

.nby-home-catalog-search button {
  min-height: 3.5rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--nby-accent);
  border-radius: 0;
  color: var(--nby-white);
  background: var(--nby-accent);
  font-weight: 750;
}

.nby-popular-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 1rem 0 0;
  margin: 0;
  list-style: none;
}

.nby-popular-brands a {
  color: #eef1f6;
  font-size: 0.85rem;
  font-weight: 650;
}

.nby-image-copy {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.nby-image-copy > div > p:not(.nby-eyebrow) {
  color: var(--nby-secondary);
  font-size: 1.03rem;
}

.nby-industrial-steps {
  display: grid;
  padding: 0;
  margin: 0 0 2rem;
  border-top: 1px solid var(--nby-border);
  list-style: none;
}

.nby-industrial-steps li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--nby-border);
}

.nby-industrial-steps span {
  display: block;
  margin-bottom: 1rem;
  color: var(--nby-accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.nby-industrial-steps h3 {
  margin-bottom: 0.55rem;
}

.nby-industrial-steps p {
  margin-bottom: 0;
  color: var(--nby-secondary);
}

.nby-rule-list {
  padding: 0;
  margin: 1.5rem 0 2rem;
  border-top: 1px solid var(--nby-border);
  list-style: none;
}

.nby-rule-list li {
  position: relative;
  padding: 0.9rem 0 0.9rem 1.25rem;
  border-bottom: 1px solid var(--nby-border);
  font-weight: 650;
}

.nby-rule-list li::before {
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--nby-accent);
  content: "";
}

.nby-buyer-grid {
  display: grid;
  border-top: 1px solid var(--nby-border-dark);
}

.nby-buyer-grid article {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--nby-border-dark);
}

.nby-buyer-grid p {
  margin-bottom: 0;
  color: #c8cfda;
}

.nby-application-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--nby-border);
}

.nby-application-table {
  display: block;
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
}

.nby-application-table thead {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.nby-application-table tbody {
  display: grid;
  gap: 1rem;
}

.nby-application-table tr {
  display: grid;
  padding: 1rem;
  border: 1px solid var(--nby-border);
}

.nby-application-table th,
.nby-application-table td {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--nby-border);
  text-align: left;
  vertical-align: top;
}

.nby-application-table td {
  display: grid;
  grid-template-columns: minmax(6.75rem, 0.4fr) minmax(0, 1fr);
  gap: 0.75rem;
  overflow-wrap: anywhere;
}

.nby-application-table td::before {
  color: var(--nby-secondary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  content: attr(data-label);
}

.nby-application-table th {
  color: var(--nby-navy);
  background: var(--nby-surface);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nby-application-table td span {
  display: block;
  color: var(--nby-secondary);
  font-size: 0.88rem;
}

.nby-application-table td:last-child {
  display: block;
  padding-top: 0.85rem;
  border-bottom: 0;
  white-space: normal;
}

.nby-application-table td:last-child::before {
  display: none;
}

.nby-fitment-note {
  margin: 0.8rem 0 0;
  color: var(--nby-secondary);
  font-size: 0.86rem;
}

.nby-resource-band {
  padding-block: 3rem;
  border-block: 1px solid var(--nby-border);
  background: var(--nby-surface);
}

.nby-resource-band .nby-container {
  display: grid;
  gap: 1.5rem;
}

.nby-resource-band h2 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.nby-resource-band ul {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nby-resource-band a {
  color: var(--nby-navy);
  font-weight: 700;
}

.nby-final-industrial-cta,
.nby-final-cta {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  color: var(--nby-white);
  background: #101727;
}

.nby-final-industrial-cta .nby-container,
.nby-final-cta-inner {
  display: grid;
  gap: 1.5rem;
  align-items: end;
}

.nby-final-industrial-cta h2,
.nby-final-cta h2 {
  max-width: 20ch;
  color: var(--nby-white);
}

.nby-final-industrial-cta p:not(.nby-eyebrow),
.nby-final-cta p:not(.nby-eyebrow) {
  max-width: 43rem;
  color: #cbd2dd;
}

.content-entry {
  width: 100%;
}

.nby-page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: end;
  min-height: clamp(25rem, 54vw, 35rem);
  overflow: hidden;
  color: var(--nby-white);
  background: #0d1421;
}

.nby-page-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgb(8 13 22 / 76%);
  content: "";
}

.nby-page-hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 48rem);
  padding: clamp(2.25rem, 6vw, 4.75rem);
}

.nby-page-hero h1 {
  max-width: 17ch;
  margin-bottom: 1rem;
  color: var(--nby-white);
  text-wrap: balance;
}

.nby-page-hero-summary {
  max-width: 43rem;
  margin-bottom: 0;
  color: #d8dee7;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}

.nby-page-hero .nby-eyebrow {
  color: #ff8585;
}

.nby-page-hero .nby-breadcrumbs {
  color: #d8dee7;
}

.nby-page-hero .nby-breadcrumbs a {
  color: var(--nby-white);
}

.nby-page-hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #0d1421;
}

.nby-page-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nby-company-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--nby-border);
  background: var(--nby-surface);
}

.nby-company-image {
  display: block;
  width: 100%;
  height: auto;
}

.nby-company-image-wide {
  max-height: 34rem;
  object-fit: cover;
}

.nby-company-media-grid,
.nby-quality-sections {
  display: grid;
  gap: 1rem;
}

.nby-quality-section {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-top: 0.2rem solid var(--nby-accent);
  background: var(--nby-surface);
}

.nby-quality-section h2,
.nby-quality-section h3 {
  font-size: clamp(1.25rem, 2.6vw, 1.55rem);
}

.nby-quality-section > :last-child {
  margin-bottom: 0;
}

.nby-company-timeline {
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nby-company-timeline li {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: 1.35rem;
  border-bottom: 1px solid var(--nby-border);
}

.nby-company-timeline time {
  color: var(--nby-accent-dark);
  font-weight: 800;
}

.nby-company-timeline p {
  margin: 0;
}

.entry-content {
  width: min(100%, var(--nby-reading));
  padding-top: clamp(2.5rem, 6vw, 4rem);
}

.entry-content > * + * {
  margin-top: 1.5rem;
}

.entry-content > .alignwide,
.entry-content > .nby-page-wide,
.entry-content > .nby-catalog {
  width: min(var(--nby-content), calc(100vw - 2.5rem));
  max-width: none;
  margin-left: 0;
  transform: none;
}

.nby-page-intro {
  max-width: 48rem;
  color: var(--nby-secondary);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.75;
}

.nby-section-block,
.nby-card-band,
.nby-history-section,
.nby-resource-list {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.nby-section-heading {
  max-width: 48rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.nby-section-heading h2,
.nby-section-title {
  max-width: 22ch;
}

.nby-section-heading > :last-child,
.nby-split-media-copy > :last-child,
.nby-inner-cta > div > :last-child {
  margin-bottom: 0;
}

.nby-split-media,
.nby-split-panel,
.nby-contact-layout {
  display: grid;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  border-block: 1px solid var(--nby-border);
}

.nby-split-media > .nby-company-figure,
.nby-split-media > .nby-industrial-figure {
  min-width: 0;
}

.nby-split-media .nby-company-image,
.nby-split-media .nby-industrial-gallery-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.nby-split-media-copy p,
.nby-split-panel p {
  color: var(--nby-secondary);
}

.nby-split-media-copy ul {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.nby-fact-strip {
  display: grid;
  padding: 0;
  border-block: 1px solid var(--nby-border);
}

.nby-fact-strip > div {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--nby-border);
}

.nby-fact-strip > div:last-child {
  border-bottom: 0;
}

.nby-fact-strip dt {
  color: var(--nby-secondary);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nby-fact-strip dd {
  margin: 0.35rem 0 0;
  color: var(--nby-navy);
  font-size: 1.05rem;
  font-weight: 750;
}

.nby-card-band {
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  background: var(--nby-surface);
}

.nby-compact-card-grid,
.nby-value-grid,
.nby-process-grid {
  display: grid;
  gap: 0;
  padding: 0;
  border-top: 1px solid var(--nby-border);
  list-style: none;
}

.nby-compact-card-grid article,
.nby-value-grid article,
.nby-process-grid li {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--nby-border);
}

.nby-compact-card-grid h3,
.nby-value-grid h3,
.nby-process-grid h3 {
  margin-bottom: 0.45rem;
}

.nby-compact-card-grid p,
.nby-value-grid p,
.nby-process-grid p {
  margin-bottom: 0;
  color: var(--nby-secondary);
}

.nby-process-grid > li > span,
.nby-resource-list article > span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--nby-accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.nby-history-section {
  border-bottom: 1px solid var(--nby-border);
}

.nby-company-timeline h3 {
  margin-bottom: 0.25rem;
}

.nby-industrial-gallery {
  display: grid;
  gap: 1rem;
}

.nby-industrial-figure,
.nby-industrial-gallery > .nby-company-figure {
  overflow: hidden;
  border: 1px solid var(--nby-border);
  background: var(--nby-surface);
}

.nby-industrial-gallery-image,
.nby-industrial-gallery .nby-company-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.nby-industrial-figure figcaption {
  padding: 0.7rem 0.85rem;
  color: var(--nby-secondary);
  font-size: 0.82rem;
}

.nby-evidence-note {
  padding: 1.25rem 1.5rem;
  border-left: 0.25rem solid var(--nby-accent);
  background: var(--nby-surface);
}

.nby-evidence-note strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--nby-navy);
}

.nby-evidence-note p {
  margin: 0;
  color: var(--nby-secondary);
}

.nby-inner-cta {
  display: grid;
  gap: 1.5rem;
  align-items: end;
  padding: clamp(1.75rem, 5vw, 3rem);
  color: #d8dee7;
  background: var(--nby-navy);
}

.nby-inner-cta h2 {
  max-width: 22ch;
  color: var(--nby-white);
}

.nby-inner-cta .nby-data-label {
  color: #ff8585;
}

.nby-inner-cta .nby-text-link {
  color: var(--nby-white);
}

.nby-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.nby-resource-list article {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0.75rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--nby-border);
}

.nby-resource-list article > span {
  margin: 0;
}

.nby-resource-list article p {
  color: var(--nby-secondary);
}

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

.nby-check-list li {
  position: relative;
  padding: 0.8rem 0 0.8rem 1.5rem;
  border-bottom: 1px solid var(--nby-border);
}

.nby-check-list li::before {
  position: absolute;
  top: 1.45rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--nby-accent);
  content: "";
}

.nby-contact-layout {
  align-items: start;
}

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

.nby-contact-prep li {
  display: grid;
  gap: 0.2rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--nby-border);
}

.nby-contact-prep span {
  color: var(--nby-secondary);
}

.entry-content > .nby-page-module {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 3px solid var(--nby-navy);
  background: var(--nby-surface);
}

.entry-content > .nby-page-module.nby-section-dark {
  color: var(--nby-white);
  background: var(--nby-navy);
}

.entry-content > .nby-page-module.nby-section-dark h2,
.entry-content > .nby-page-module.nby-section-dark h3 {
  color: var(--nby-white);
}

.content-grid,
.nby-category-grid,
.nby-resource-grid,
.nby-sourcing-grid,
.nby-product-grid {
  display: grid;
  gap: 1rem;
}

.content-card,
.nby-category-card,
.nby-resource-card,
.nby-product-card {
  padding: 1.35rem;
  border: 1px solid var(--nby-border);
  border-radius: var(--nby-radius);
  background: var(--nby-white);
}

.nby-category-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 1rem;
  object-fit: contain;
  background: var(--nby-surface);
}

.content-card p,
.nby-category-card p,
.nby-resource-card p {
  color: var(--nby-secondary);
}

.nby-card-link {
  color: var(--nby-accent-dark);
  font-weight: 750;
  text-decoration: none;
}

.nby-card-link::after {
  margin-left: 0.35rem;
  content: "→";
}

.nby-detail-list,
.nby-contact-list {
  display: grid;
  padding: 0;
  margin: 1.5rem 0;
  list-style: none;
}

.nby-detail-list > div,
.nby-contact-item {
  display: grid;
  gap: 0.25rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--nby-border);
}

.nby-detail-list dt,
.nby-contact-item strong {
  color: var(--nby-secondary);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nby-detail-list dd {
  margin: 0;
}

.nby-contact-brand {
  margin-bottom: 0.75rem;
  color: inherit;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.nby-contact-actions,
.nby-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.nby-icon-link,
.nby-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid currentcolor;
  border-radius: var(--nby-radius);
  text-decoration: none;
}

.nby-inline-icon {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
}

.nby-button-whatsapp {
  gap: 0.55rem;
  border-color: #167c48;
  background: #167c48;
}

.nby-floating-whatsapp {
  position: fixed;
  z-index: 70;
  right: var(--nby-floating-whatsapp-right);
  bottom: var(--nby-floating-whatsapp-bottom);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 0.125rem solid var(--nby-white);
  border-radius: 50%;
  color: var(--nby-white);
  background: #168c50;
  box-shadow: 0 0.45rem 1.3rem rgb(0 0 0 / 28%);
  opacity: 0;
  animation: nby-whatsapp-enter 260ms ease-out 400ms forwards;
}

.nby-floating-whatsapp:hover {
  color: var(--nby-white);
  background: #116b3e;
}

.nby-floating-whatsapp .nby-inline-icon {
  width: 1.75rem;
  height: 1.75rem;
}

.nby-floating-whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 0.65rem);
  width: max-content;
  max-width: 12rem;
  padding: 0.45rem 0.65rem;
  border-radius: var(--nby-radius);
  color: var(--nby-white);
  background: #0e1523;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateX(0.25rem);
  transition:
    opacity var(--nby-transition),
    transform var(--nby-transition);
}

.nby-floating-whatsapp:hover .nby-floating-whatsapp-tooltip,
.nby-floating-whatsapp:focus-visible .nby-floating-whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes nby-whatsapp-enter {
  to {
    opacity: 1;
  }
}

.nby-rtl {
  direction: rtl;
}

.nby-rtl input,
.nby-rtl select,
.nby-rtl textarea {
  text-align: right;
}

.nby-breadcrumbs {
  margin-bottom: 1.25rem;
  color: var(--nby-secondary);
  font-size: 0.84rem;
}

.nby-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nby-breadcrumbs li:not(:last-child)::after {
  margin-left: 0.4rem;
  content: "/";
}

.nby-workflow-list,
.nby-quality-list {
  display: grid;
  padding: 0;
  margin: 1.5rem 0;
  border-top: 1px solid var(--nby-border);
  list-style: none;
}

.nby-workflow-step,
.nby-quality-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--nby-border);
}

.nby-step-number,
.nby-sourcing-number {
  color: var(--nby-accent);
  font-size: 0.76rem;
  font-weight: 800;
}

.nby-workflow-step p,
.nby-quality-step p {
  margin-bottom: 0;
  color: var(--nby-secondary);
}

.nby-workflow-art,
.nby-quality-art {
  display: none;
}

.nby-buyer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  margin: 1.5rem 0;
  border-top: 1px solid var(--nby-border);
  list-style: none;
}

.nby-buyer-item {
  padding: 0.65rem 1rem;
  border-right: 1px solid var(--nby-border);
  border-bottom: 1px solid var(--nby-border);
  font-weight: 650;
}

.nby-rfq {
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--nby-border);
  border-top: 3px solid var(--nby-navy);
  border-radius: var(--nby-radius);
  background: var(--nby-white);
}

.nby-rfq-grid,
.nby-rfq-form {
  display: grid;
  gap: 1rem;
}

.nby-field {
  display: grid;
  gap: 0.4rem;
  margin: 0;
}

.nby-rfq-form label,
.nby-application-form label,
.nby-search-form label {
  font-weight: 700;
}

:where(
  .nby-rfq-form input:not([type="checkbox"]),
  .nby-rfq-form select,
  .nby-rfq-form textarea,
  .nby-application-form input,
  .nby-application-form select,
  .nby-search-form input
) {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid #8e98a4;
  border-radius: var(--nby-radius);
  color: var(--nby-ink);
  background: var(--nby-white);
}

.nby-rfq-form textarea {
  min-height: 9rem;
  resize: vertical;
}

.nby-rfq-form [aria-invalid="true"] {
  border-color: var(--nby-error);
  box-shadow: 0 0 0 1px var(--nby-error);
}

.nby-rfq-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.nby-rfq-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  margin: 0;
}

.nby-rfq-consent input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
}

.nby-rfq-privacy,
.nby-required-note,
.nby-data-note {
  color: var(--nby-secondary);
  font-size: 0.86rem;
}

.nby-required,
.nby-field-error {
  color: var(--nby-error);
}

.nby-field-error {
  font-size: 0.86rem;
  font-weight: 650;
}

.nby-rfq-error-summary {
  padding: 1rem;
  border: 2px solid var(--nby-error);
  background: #fff7f7;
}

.nby-rfq-error-summary p {
  margin-top: 0;
}

.nby-rfq-error-summary ul {
  margin-bottom: 0;
}

.nby-rfq-error-summary a {
  color: var(--nby-error);
  font-weight: 700;
}

.nby-rfq-status {
  padding: 0.9rem 1rem;
  border-left: 0.25rem solid var(--nby-accent);
  background: var(--nby-surface);
}

.nby-rfq-status.is-error {
  border-color: var(--nby-error);
}

.nby-rfq-status.is-success {
  border-color: var(--nby-success);
}

.nby-rfq-success {
  display: grid;
  gap: 1rem;
}

.nby-rfq-success > * {
  margin: 0;
}

.nby-rfq-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.nby-rfq-whatsapp-note {
  color: var(--nby-secondary);
  font-size: 0.9rem;
}

.nby-table-wrap,
.nby-catalog-table-wrap {
  max-width: 100%;
  overflow-x: auto;
}

.nby-product-data table {
  width: 100%;
  border-collapse: collapse;
}

.nby-product-data th,
.nby-product-data td {
  padding: 0.75rem;
  border: 1px solid var(--nby-border);
  text-align: left;
  vertical-align: top;
}

.nby-product-data th {
  width: 36%;
  background: var(--nby-surface);
}

.nby-search-form {
  display: grid;
  gap: 0.5rem;
  margin-top: 2rem;
}

.nby-search-form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.nby-catalog {
  width: min(100%, var(--nby-content));
  margin: clamp(3rem, 7vw, 5rem) auto;
}

.nby-catalog-form {
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--nby-border);
  border-top: 3px solid var(--nby-navy);
  background: var(--nby-surface);
}

.nby-catalog-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.nby-catalog-form input,
.nby-catalog-form select {
  width: 100%;
  min-height: 3rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid #8e98a4;
  border-radius: 0;
  color: var(--nby-ink);
  background: var(--nby-white);
}

.nby-catalog-oem-field {
  max-width: 54rem;
  margin: 0 0 1.5rem;
}

.nby-catalog-oem-field > div {
  display: grid;
  gap: 0.5rem;
}

.nby-catalog-oem-field input {
  min-height: 3.6rem;
  font-size: 1.05rem;
}

.nby-catalog-search-button,
.nby-catalog-filter-button {
  min-height: 3rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--nby-accent);
  border-radius: 0;
  color: var(--nby-white);
  background: var(--nby-accent);
  font-weight: 750;
}

.nby-catalog-oem-field > p {
  margin: 0.45rem 0 0;
  color: var(--nby-secondary);
  font-size: 0.82rem;
}

.nby-catalog-filters {
  display: grid;
  gap: 0.85rem;
}

.nby-catalog-filters p,
.nby-catalog-per-page {
  margin: 0;
}

.nby-catalog-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.nby-catalog-results-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--nby-border);
}

.nby-catalog-results-heading p {
  margin: 0;
}

.nby-catalog-results-heading p:first-child {
  font-weight: 750;
}

.nby-catalog-results-heading p:last-child {
  max-width: 42rem;
  color: var(--nby-secondary);
  font-size: 0.86rem;
}

.nby-catalog-table-wrap {
  display: none;
  border: 1px solid var(--nby-border);
  border-top: 0;
}

.nby-catalog-table {
  width: 100%;
  min-width: 68rem;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.nby-catalog-table th,
.nby-catalog-table td {
  padding: 0.9rem;
  border-bottom: 1px solid var(--nby-border);
  text-align: left;
  vertical-align: top;
}

.nby-catalog-table th {
  color: var(--nby-navy);
  background: var(--nby-surface);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nby-catalog-table tbody tr:hover {
  background: #fafafa;
}

.nby-catalog-table-line,
.nby-catalog-table td small {
  display: block;
}

.nby-catalog-table td small {
  color: var(--nby-secondary);
}

.nby-catalog-table td:last-child > a {
  display: block;
  width: fit-content;
  margin-bottom: 0.4rem;
}

.nby-catalog-rfq-link {
  font-weight: 750;
}

.nby-oem-list,
.nby-oem-details-list {
  overflow-wrap: anywhere;
}

.nby-oem-details {
  margin-top: 0.4rem;
}

.nby-oem-details summary {
  color: var(--nby-accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.nby-oem-details-list {
  display: block;
  padding-top: 0.35rem;
  color: var(--nby-secondary);
  font-size: 0.82rem;
}

.nby-catalog-cards {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
}

.nby-catalog-card {
  padding: 1rem;
  border: 1px solid var(--nby-border);
  border-radius: var(--nby-radius);
  background: var(--nby-white);
}

.nby-catalog-card > img {
  width: 100%;
  max-height: 11rem;
  margin-bottom: 1rem;
  object-fit: contain;
  background: var(--nby-surface);
}

.nby-catalog-card-type {
  margin-bottom: 0.35rem;
  color: var(--nby-accent-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nby-catalog-card h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.nby-catalog-card dl {
  margin: 0 0 1rem;
}

.nby-catalog-card dl > div {
  display: grid;
  grid-template-columns: minmax(5rem, 0.35fr) 1fr;
  gap: 0.75rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--nby-border);
}

.nby-catalog-card dt {
  color: var(--nby-secondary);
  font-size: 0.8rem;
}

.nby-catalog-card dd {
  margin: 0;
  font-size: 0.88rem;
}

.nby-catalog-card-oem {
  padding: 0.75rem;
  border-left: 3px solid var(--nby-navy);
  background: var(--nby-surface);
  font-size: 0.84rem;
}

.nby-catalog-card-oem-label {
  display: block;
  margin-bottom: 0.3rem;
}

.nby-catalog-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
}

.nby-catalog-pagination {
  margin-top: 2rem;
}

.nby-catalog-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nby-catalog-pagination li > .page-numbers {
  display: inline-grid;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.45rem;
  border: 1px solid var(--nby-border);
  border-radius: 0;
  text-decoration: none;
  place-items: center;
}

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

.nby-catalog-empty {
  padding: clamp(2rem, 6vw, 4rem);
  border: 1px solid var(--nby-border);
  text-align: center;
  background: var(--nby-surface);
}

.nby-catalog-product {
  margin-top: 3rem;
}

.nby-catalog-product-layout {
  display: grid;
  gap: 1.5rem;
}

.nby-catalog-product-layout figure {
  display: grid;
  min-height: 20rem;
  border: 1px solid var(--nby-border);
  background: var(--nby-surface);
  place-items: center;
}

.nby-catalog-product-layout img {
  width: min(100%, 28rem);
  max-height: 28rem;
  object-fit: contain;
}

.nby-catalog-product-details {
  margin: 0;
}

.nby-catalog-product-detail {
  display: grid;
  grid-template-columns: minmax(7rem, 0.35fr) 1fr;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--nby-border);
}

.nby-catalog-product-details dt {
  color: var(--nby-secondary);
}

.nby-catalog-product-details dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.nby-product-oem-row {
  grid-template-columns: 1fr;
  padding: 1rem;
  margin-top: 0.5rem;
  border-left: 3px solid var(--nby-accent);
  background: var(--nby-surface);
}

.nby-catalog-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  margin-top: 1.25rem;
}

.nby-related-section {
  padding-top: 2.5rem;
  margin-top: 3rem;
  border-top: 1px solid var(--nby-border);
}

.nby-related-applications {
  display: grid;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--nby-border);
  list-style: none;
}

.nby-related-applications li {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--nby-border);
}

.nby-related-applications a {
  color: var(--nby-navy);
  font-weight: 700;
}

.nby-related-applications span {
  color: var(--nby-secondary);
  font-size: 0.86rem;
}

.nby-rfq-catalog-context {
  padding: 1rem;
  border: 1px solid var(--nby-border);
  border-left: 3px solid var(--nby-accent);
  background: var(--nby-surface);
}

.nby-rfq-catalog-context dl {
  display: grid;
  gap: 0.35rem;
  margin: 0 0 0.75rem;
}

.nby-rfq-catalog-context dl > div {
  display: grid;
  grid-template-columns: minmax(6rem, 0.3fr) 1fr;
  gap: 0.75rem;
}

.nby-rfq-catalog-context dt {
  color: var(--nby-secondary);
}

.nby-rfq-catalog-context dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: clamp(3.5rem, 7vw, 5rem) 1.25rem 1.5rem;
  color: #cbd2dd;
  background: #0e1523;
}

.site-footer-grid {
  display: grid;
  gap: 2.25rem;
  width: min(100%, var(--nby-content));
  margin-inline: auto;
}

.site-footer-grid > * {
  min-width: 0;
}

.site-footer .nby-icon-link {
  justify-content: flex-start;
  max-width: 100%;
}

.site-footer .nby-icon-link span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.site-footer-brand,
.site-footer-title,
.site-footer a {
  color: var(--nby-white);
}

.site-footer-brand {
  margin-bottom: 1rem;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.site-footer-brand span {
  color: #ff6d6d;
  font-size: 0.72em;
  letter-spacing: 0.12em;
}

.site-footer-title {
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-menu {
  display: grid;
  gap: 0.5rem;
}

.site-footer .footer-menu a {
  color: #cbd2dd;
  font-size: 0.9rem;
}

.site-footer .nby-contact-list a {
  color: var(--nby-white);
}

.site-footer .nby-contact-item strong {
  color: #cbd2dd;
}

.site-footer-legal {
  width: min(100%, var(--nby-content));
  padding-top: 1.5rem;
  margin: 2.5rem auto 0;
  border-top: 1px solid var(--nby-border-dark);
  color: #9fa9b8;
  font-size: 0.8rem;
}

.nby-language-footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  padding: 0;
  margin: 0.75rem 0 0;
  list-style: none;
}

.nby-language-footer a {
  color: #cbd2dd;
}

.nby-language-footer a[aria-current="page"] {
  color: var(--nby-white);
  font-weight: 700;
}

@media (width < 30rem) {
  .nby-page-hero-copy {
    padding-inline: 1.5rem;
  }

  .nby-fullscreen-hero .nby-button-row,
  .nby-fullscreen-hero .nby-button {
    display: flex;
    width: 100%;
  }

  .nby-fullscreen-hero-inner {
    padding-top: 6.5rem;
  }

  .nby-fullscreen-hero-media img {
    object-position: 48% center;
  }
}

@media (width >= 42rem) {
  .nby-capability-strip ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nby-capability-strip li:nth-child(odd) {
    border-right: 1px solid var(--nby-border);
  }

  .nby-product-range-lead {
    grid-template-columns: minmax(14rem, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
  }

  .nby-home-catalog-search > div {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nby-industrial-steps,
  .nby-buyer-grid,
  .content-grid,
  .nby-category-grid,
  .nby-resource-grid,
  .nby-compact-card-grid,
  .nby-value-grid,
  .nby-process-grid,
  .nby-industrial-gallery,
  .nby-fact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nby-compact-card-grid article,
  .nby-value-grid article,
  .nby-process-grid li,
  .nby-fact-strip > div {
    padding-inline: 1.25rem;
    border-right: 1px solid var(--nby-border);
  }

  .nby-compact-card-grid article:nth-child(even),
  .nby-value-grid article:nth-child(even),
  .nby-process-grid li:nth-child(even),
  .nby-fact-strip > div:nth-child(even) {
    border-right: 0;
  }

  .nby-fact-strip > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .nby-industrial-steps li,
  .nby-buyer-grid article {
    padding-right: 1.5rem;
  }

  .nby-resource-band .nby-container {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
    align-items: center;
  }

  .nby-final-industrial-cta .nby-container,
  .nby-final-cta-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

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

@media (width >= 48rem) {
  .nby-company-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nby-company-media-grid > :only-child,
  .nby-company-media-grid > :nth-child(3):last-child {
    grid-column: 1 / -1;
  }

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

  .nby-image-copy {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.9fr);
  }

  .nby-split-media,
  .nby-split-panel,
  .nby-contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 1fr);
  }

  .nby-split-media-reverse > :first-child {
    order: 2;
  }

  .nby-inner-cta {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nby-image-copy-reverse > figure {
    order: 2;
  }

  .nby-industrial-steps,
  .nby-buyer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .nby-industrial-steps li,
  .nby-buyer-grid article {
    padding-inline: 1.25rem;
    border-right: 1px solid var(--nby-border);
  }

  .nby-industrial-steps li:first-child,
  .nby-buyer-grid article:first-child {
    padding-left: 0;
  }

  .nby-industrial-steps li:last-child,
  .nby-buyer-grid article:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .nby-industrial-section-dark .nby-buyer-grid article {
    border-right-color: var(--nby-border-dark);
  }

  .nby-catalog-oem-field > div {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

  .nby-catalog-table-wrap {
    display: block;
  }

  .nby-catalog-cards {
    display: none;
  }

  .nby-catalog-product-layout {
    grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
  }
}

@media (width >= 64rem) {
  :root {
    --nby-floating-whatsapp-right: 1.5rem;
    --nby-floating-whatsapp-bottom: 1.5rem;
  }

  .nby-floating-whatsapp {
    width: 3.5rem;
    height: 3.5rem;
  }

  .nby-value-grid,
  .nby-industrial-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .nby-quality-gallery > :nth-child(3):last-child {
    grid-column: auto;
  }

  .nby-value-grid article:nth-child(even) {
    border-right: 1px solid var(--nby-border);
  }

  .nby-value-grid article:nth-child(3n) {
    border-right: 0;
  }

  .admin-bar .site-header {
    top: 2rem;
  }

  .site-header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 4.75rem;
  }

  .menu-toggle,
  .menu-overlay {
    display: none;
  }

  .site-navigation,
  .has-menu-js .site-navigation {
    position: static;
    grid-column: auto;
    justify-self: center;
    display: block;
    width: auto;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .primary-menu {
    display: flex;
    justify-content: center;
    gap: clamp(0.75rem, 1.6vw, 1.5rem);
  }

  .primary-menu > li {
    position: relative;
  }

  .primary-menu > li > a {
    padding: 1.65rem 0;
    border: 0;
    color: var(--nby-navy);
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .home .site-header:not(.is-scrolled) .primary-menu > li > a {
    color: var(--nby-white);
  }

  .nby-header-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
  }

  .nby-language-desktop {
    display: block;
  }

  .home
    .site-header:not(.is-scrolled)
    .nby-language-desktop
    .nby-language-switcher {
    color: var(--nby-white);
  }

  .nby-language-mobile,
  .nby-mobile-contact {
    display: none;
  }

  .primary-menu .sub-menu {
    position: absolute;
    z-index: 55;
    top: calc(100% - 0.25rem);
    left: -1rem;
    display: none;
    width: 15rem;
    padding: 0.6rem 1rem;
    border: 1px solid var(--nby-border);
    background: var(--nby-white);
    box-shadow: 0 0.5rem 1rem rgb(23 32 51 / 10%);
  }

  .primary-menu li:hover > .sub-menu,
  .primary-menu li:focus-within > .sub-menu {
    display: block;
  }

  .header-rfq {
    justify-self: end;
    display: inline-flex;
    min-height: 2.75rem;
    padding-inline: 1rem;
    font-size: 0.84rem;
  }

  .menu-item-mobile-rfq {
    display: none;
  }

  .nby-industrial-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr);
  }

  .nby-capability-strip ul {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .nby-capability-strip li {
    border-right: 1px solid var(--nby-border);
    border-bottom: 0;
  }

  .nby-capability-strip li:last-child {
    border-right: 0;
  }

  .nby-product-range {
    grid-template-columns: minmax(0, 1.35fr) minmax(20rem, 0.65fr);
  }

  .nby-product-range-lead {
    grid-template-columns: minmax(16rem, 0.9fr) minmax(0, 1.1fr);
  }

  .nby-catalog-search-grid {
    grid-template-columns: minmax(0, 0.75fr) minmax(30rem, 1.25fr);
    align-items: center;
  }

  .nby-application-table {
    display: table;
    min-width: 62rem;
  }

  .nby-application-table thead {
    position: static;
    display: table-header-group;
    width: auto;
    height: auto;
    padding: initial;
    margin: initial;
    overflow: visible;
    clip-path: none;
    white-space: normal;
  }

  .nby-application-table tbody {
    display: table-row-group;
  }

  .nby-application-table tr {
    display: table-row;
    padding: 0;
    border: 0;
  }

  .nby-application-table td {
    display: table-cell;
    padding: 1rem;
    overflow-wrap: normal;
  }

  .nby-application-table td::before {
    display: none;
  }

  .nby-application-table td:last-child {
    display: table-cell;
    padding-top: 1rem;
    white-space: nowrap;
  }

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

@media (width >= 75rem) {
  .site-footer-grid {
    grid-template-columns: 1.45fr repeat(4, minmax(0, 0.8fr));
  }
}

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

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

  .nby-floating-whatsapp {
    opacity: 1;
    animation: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .nby-final-industrial-cta,
  .nby-final-cta,
  .nby-button-row {
    display: none;
  }

  .nby-floating-whatsapp {
    display: none;
  }

  .site-main {
    width: 100%;
    padding: 0;
  }
}
