:root {
  --font-family: "Barlow Condensed", sans-serif;
  --font-family-base: "Barlow", sans-serif;
  --primary: #c0392b;
  --primary-black: #1a1a1a;
  --steel-gray: #555555;
  --light-gray: #f0f0f0;
  --background: #f6f6f4;
  --medium-gray: #888888;
  /* Product table: synced from JS to .site-header height */
  --product-sticky-offset: 96px;
  --spec-thead-row1-h: 52px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-family-base);
  color: var(--primary-black);
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--bleed {
  max-width: none;
  margin: 0;
  padding: 0;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--background);
  border-top: 5px solid var(--primary);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-left a,
.nav-right a {
  color: var(--primary-black);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 0;
  position: relative;
}

.nav-left a:hover,
.nav-right a:hover {
  color: var(--primary);
}

.nav-left a.active,
.nav-right a.active {
  color: var(--primary);
}

.nav-left a.active::after,
.nav-right a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--primary-black);
}

.logo-stack {
  line-height: 1;
  text-align: center;
}

.logo-top {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 2px;
}

.logo-bottom {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--steel-gray);
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-link {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-black);
  text-decoration: none;
}

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

.icon-link i[class^="fa-"],
.icon-link i[class*=" fa-"] {
  font-size: 18px;
  line-height: 1;
  display: block;
}

.icon-link:hover {
  color: var(--primary);
}

/* ----- Mobile menu + responsive nav (breakpoint 1024px = tablet / iPad portrait) ----- */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--primary-black);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(192, 57, 43, 0.08);
  color: var(--primary);
}

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-logo__img {
  width: auto;
  height: clamp(52px, 12vw, 80px);
  max-width: min(230px, 48vw);
  display: block;
}

.site-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.site-nav-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.site-nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.site-nav-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 360px);
  height: 100%;
  max-height: 100dvh;
  background: var(--background);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.site-nav-drawer.is-open .site-nav-drawer__panel {
  transform: translateX(0);
}

.site-nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.site-nav-drawer__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-black);
}

.site-nav-drawer__close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: var(--medium-gray);
  cursor: pointer;
  border-radius: 8px;
}

.site-nav-drawer__close:hover {
  color: var(--primary);
  background: rgba(192, 57, 43, 0.06);
}

.site-nav-drawer__nav {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
}

.site-nav-drawer__nav a {
  display: block;
  padding: 14px 22px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-black);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.15s ease, color 0.15s ease;
}

.site-nav-drawer__nav a:hover,
.site-nav-drawer__nav a:focus-visible {
  background: rgba(192, 57, 43, 0.06);
  color: var(--primary);
}

.site-nav-drawer__nav a.is-active {
  color: var(--primary);
  border-left: 4px solid var(--primary);
  padding-left: 18px;
}

.site-nav-drawer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 18px 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.site-nav-drawer__icon {
  color: var(--primary-black);
  font-size: 22px;
  text-decoration: none;
  padding: 8px;
}

.site-nav-drawer__icon:hover {
  color: var(--primary);
}

body.site-nav-open {
  overflow: hidden;
  touch-action: none;
}

@media (max-width: 1023px) {
  .nav-inner {
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    padding: 8px 0;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
  }

  .nav-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .nav-desktop {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .site-nav-drawer {
    display: none !important;
  }

  .nav-toggle {
    display: none !important;
  }

  .nav-inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .nav-logo {
    grid-column: auto;
    justify-self: center;
  }
}

/* Fluid type + spacing (use across pages) */
.type-hero-display {
  font-size: clamp(2.25rem, 9vw + 0.5rem, 6.25rem);
  line-height: 0.95;
}

.type-hero-sub {
  font-size: clamp(1.5rem, 5vw + 0.25rem, 4.375rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.type-section-title {
  font-size: clamp(1.75rem, 4vw + 0.75rem, 3.75rem);
  line-height: 1.08;
}

.type-page-hero {
  font-size: clamp(2rem, 5vw + 1rem, 4.375rem);
  line-height: 1.02;
}

.type-banner-title {
  font-size: clamp(2rem, 5vw + 1rem, 3.875rem);
  line-height: 1.05;
}

/* Safer horizontal padding on small phones */
@media (max-width: 380px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.site-footer {
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

.search-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-input {
  width: 190px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  padding: 9px 12px;
  background: #ffffff;
  font-size: 14px;
  outline: none;
}

.search-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.12);
}

.search-button {
  border: 0;
  background: transparent;
  padding: 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-black);
  cursor: pointer;
}

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

.search-button:hover {
  color: var(--primary);
  background: rgba(192, 57, 43, 0.08);
}

/* Page content */
.page-content {
  padding: 0;
}

.page-content--bleed {
  padding: 0;
}

.hero-section {
  min-height: calc(100svh - 72px);
  padding: 24px 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 40px 0;
    min-height: calc(100svh - 88px);
  }
}

.hero {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 38px 28px;
}

.hero-title {
  margin: 0;
  font-size: 40px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  margin: 14px 0 0;
  color: var(--steel-gray);
  font-size: 16px;
  max-width: 60ch;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ----- Buttons (site-wide — use .btn + modifier only) ----- */
.btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  margin: 0;
  padding: 11px 22px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: inherit;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease, opacity 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

button.btn {
  font-family: var(--font-family);
}

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

.btn:disabled,
.btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--sm {
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.btn--lg {
  padding: 14px 28px;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.btn--primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn--primary:hover:not(:disabled) {
  background: #a33226;
  border-color: #a33226;
  color: #fff;
}

.btn--secondary {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.18);
  color: var(--primary-black);
}

.btn--secondary:hover:not(:disabled) {
  border-color: var(--primary-black);
  background: #fafafa;
  color: var(--primary-black);
}

.btn--outline {
  background: transparent;
  border-color: var(--primary-black);
  color: var(--primary-black);
}

.btn--outline:hover:not(:disabled) {
  background: var(--primary-black);
  border-color: var(--primary-black);
  color: #fff;
}

.grid-section {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 22px 18px;
}

.card-title {
  margin: 0;
  font-size: 18px;
}

.card-text {
  margin: 10px 0 0;
  color: var(--steel-gray);
}

.content-card,
.form-card {
  background: #ffffff;
  padding: 32px 24px;
}

.page-title {
  margin: 0;
  font-size: 34px;
}

.lead {
  margin: 12px 0 0;
  color: var(--steel-gray);
  font-size: 16px;
  line-height: 1.5;
}

.section-title {
  margin: 0;
  font-size: 18px;
}

.muted {
  color: var(--medium-gray);
}

.small {
  font-size: 12px;
}

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

.product-list {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.product-item {
  padding: 16px 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Contact form */
.field {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.field label {
  font-weight: 700;
  font-size: 14px;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--light-gray);
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.12);
}

.form-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.site-footer {
  padding: 28px 0 1.5rem;
  border-bottom: 5px solid var(--primary);
}

.footer-inner {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 18px;
}

.muted {
  color: var(--medium-gray);
}

/* Pixel-perfect image mode (no layout chrome) */
.image-perfect {
  width: 100%;
  margin: 0;
  padding: 0;
}

.image-perfect img {
  width: 100%;
  height: auto;
  display: block;
  background: #ffffff;
}

/* Home (code-based homepage layout) */
.home-hero {
  margin-top: 6px;
}

.home-hero-banner-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 470px;
  overflow: hidden;
  background: #ffffff;
}

.home-hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Push visible area down to hide the hero screenshot's own top nav */
  object-position: center 72%;
  display: block;
}

/* Tailwind-based hero overlay background cropping (transform owned by GSAP parallax) */
.home-hero-bg-img {
  object-position: 82% 52%;
}

.home-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.home-hero-copy {
  padding: 26px 0;
}

.home-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--steel-gray);
}

.home-hero-title {
  margin: 12px 0 0;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -1px;
}

.home-hero-subtitle {
  margin: 14px 0 0;
  color: var(--steel-gray);
  font-size: 16px;
  line-height: 1.55;
  max-width: 56ch;
}

.home-hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.home-hero-media {
  display: flex;
  justify-content: flex-end;
}

.media-placeholder {
  width: 100%;
  min-height: 360px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, #ffffff, #fafafa);
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-label {
  color: rgba(0, 0, 0, 0.45);
  font-weight: 800;
  letter-spacing: 0.5px;
  text-align: center;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px dashed rgba(0, 0, 0, 0.16);
}

.home-register-bar {
  margin-top: 18px;
  background: #101010;
  color: #ffffff;
}

.register-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.register-text {
  font-size: 14px;
  font-weight: 700;
}

.register-pill {
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
}

.home-what {
  padding: 46px 0 10px;
}

.home-what-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: center;
}

.ring-placeholder {
  width: 100%;
  min-height: 260px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-section-head {
  margin: 0 0 18px;
}

.home-section-title {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.5px;
}

.home-capabilities {
  padding: 24px 0 10px;
}

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

.cap-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.cap-media {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f7f7f7, #ffffff);
  color: rgba(0, 0, 0, 0.35);
  font-weight: 800;
}

.cap-title {
  margin: 16px 18px 0;
  font-size: 18px;
}

.cap-text {
  margin: 10px 18px 18px;
  color: var(--steel-gray);
  line-height: 1.55;
  font-size: 14px;
}

.home-people {
  padding: 40px 0 10px;
}

.people-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
}

.home-people .lead {
  margin-top: 14px;
}

.home-news {
  padding: 40px 0 10px;
}

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

.news-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.news-media {
  height: 92px;
  background: linear-gradient(180deg, #f7f7f7, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.35);
  font-weight: 800;
}

.news-body {
  padding: 14px 16px 16px;
}

.news-date {
  font-weight: 800;
  font-size: 12px;
  color: var(--medium-gray);
  letter-spacing: 0.4px;
}

.news-title {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.3;
}

.news-text {
  margin: 10px 0 0;
  color: var(--steel-gray);
  font-size: 13px;
  line-height: 1.5;
}

.news-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
}

.home-coinnovation {
  padding: 40px 0 70px;
}

.co-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}

.co-copy {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 26px 22px;
}

.co-label {
  font-weight: 800;
  color: var(--medium-gray);
  letter-spacing: 1px;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 980px) {
  .home-hero-banner-wrap {
    height: 360px;
  }

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

  .home-hero-media {
    justify-content: flex-start;
  }

  .home-what-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .two-col {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .search-input {
    width: 140px;
  }
}

@media (max-width: 640px) {
  .home-hero-banner-wrap {
    height: 320px;
  }

  .search-form {
    gap: 6px;
  }

  .search-input {
    width: 110px;
  }
}

/* ----- About page (mobile / iPad) ----- */
.about-page__mission-grid>* {
  min-width: 0;
}

.about-page__hero {
  overflow-x: clip;
}

/* Demo image crops (reusing `static/img/home-demo-page.png`) */
.home-people-img {
  object-position: 50% 58%;
}

.home-news-img {
  object-position: 50% 74%;
}

.home-news-img--1 {
  object-position: 18% 74%;
}

.home-news-img--2 {
  object-position: 42% 74%;
}

.home-news-img--3 {
  object-position: 66% 74%;
}

.home-news-img--4 {
  object-position: 90% 74%;
}

.home-coinnovation-img {
  object-position: 50% 83%;
}

/* Hide default <details><summary> marker for FAQ accordions */
details summary::-webkit-details-marker {
  display: none;
}


/* Our Clients (auto slider) */
.clients-viewport {
  position: relative;
  overflow: hidden;
}

.clients-shadow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}

.clients-shadow--left {
  left: 0;
  background: linear-gradient(to right, rgba(246, 246, 244, 1) 0%, rgba(246, 246, 244, 0) 100%);
}

.clients-shadow--right {
  right: 0;
  background: linear-gradient(to left, rgba(246, 246, 244, 1) 0%, rgba(246, 246, 244, 0) 100%);
}

.clients-track {
  display: flex;
  width: max-content;
  gap: 28px;
  animation: clientsScroll 22s linear infinite;
  padding: 6px 40px;
}

.clients-track:hover {
  animation-play-state: paused;
}

.clients-track-set {
  display: flex;
  gap: 28px;
}

.client-logo {
  min-width: 150px;
  height: 70px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.45);
  user-select: none;
}

@keyframes clientsScroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .clients-shadow {
    width: 46px;
  }

  .client-logo {
    min-width: 120px;
    height: 62px;
    font-size: 12px;
  }
}

/* ----- Product category (listing) ----- */
.product-category-page {
  display: flex;
  min-height: min(70vh, 900px);
  width: 100%;
  align-items: stretch;
}

.product-category-sidebar {
  flex: 0 0 clamp(72px, 10vw, 140px);
  min-height: 100%;
  background: linear-gradient(180deg,
      var(--primary) 0%,
      var(--primary) 50%,
      #e4e4e0 50%,
      #e4e4e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-category-sidebar__label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-family);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  user-select: none;
  line-height: 1;
}

.product-category-main {
  flex: 1;
  padding: clamp(28px, 4vw, 56px) 0;
  min-width: 0;
}

.product-category-intro {
  max-width: 72ch;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.product-category-intro__eyebrow {
  margin: 0 0 8px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.product-category-intro__title {
  margin: 0 0 14px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  letter-spacing: -0.02em;
  color: var(--primary-black);
}

.product-category-intro__copy {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--steel-gray);
}

.product-category-intro__link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-category-intro__link:hover {
  color: #a33226;
}

.product-category-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-category-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.product-category-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.product-category-row__text {
  padding-right: clamp(8px, 2vw, 24px);
}

.product-category-row__index {
  display: block;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}

.product-category-row__title {
  margin: 0 0 14px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--primary-black);
}

.product-category-row__rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--primary-black);
  margin-bottom: 16px;
  opacity: 0.85;
}

.product-category-row__sub {
  margin: 0 0 12px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-black);
}

.product-category-row__desc {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--medium-gray);
  max-width: 52ch;
}

.product-category-row__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s ease, transform 0.15s ease;
}

.product-category-row__cta:hover {
  background: #a33226;
}

.product-category-row__cta:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.product-category-row__media {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: clamp(20px, 3vw, 40px);
  display: flex;
  justify-content: center;
}

.product-category-row__figure {
  margin: 0;
  width: 100%;
  max-width: 400px;
}

.product-category-row__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .product-category-page {
    flex-direction: column;
    min-height: 0;
  }

  .product-category-sidebar {
    flex: none;
    min-height: 56px;
    width: 100%;
    background: var(--primary);
  }

  .product-category-sidebar__label {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1rem;
    letter-spacing: 0.28em;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.9);
  }

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

  .product-category-row__media {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 24px;
    margin-top: 8px;
  }
}

/* ----- Product detail (single) ----- */
.product-detail-page {
  margin: 0 auto;
  padding: 32px 24px 72px;
}

.product-detail-breadcrumb {
  font-size: 14px;
  color: var(--medium-gray);
  margin-bottom: 24px;
}

.product-detail-breadcrumb a {
  color: var(--steel-gray);
  text-decoration: none;
}

.product-detail-breadcrumb a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.product-detail-breadcrumb__sep {
  margin: 0 8px;
  opacity: 0.5;
}

.product-detail-breadcrumb__current {
  color: var(--primary-black);
  font-weight: 600;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.product-detail-hero__title {
  margin: 0 0 16px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.product-detail-hero__lead {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--steel-gray);
}

.product-detail-hero__sub {
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-black);
}

.product-detail-hero__media {
  margin: 0;
}

.product-detail-hero__img--dummy {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

.product-detail-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-detail-section__title {
  margin: 0 0 12px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1.5rem;
}

.product-detail-section__body {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--steel-gray);
}

/* SKF-style product catalog table (detail page) */
/* .product-detail-catalog {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 24px 22px 28px;
} */

.product-detail-catalog__intro {
  margin-bottom: 20px;
}

.product-detail-catalog__ref-link {
  color: #005eb8;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-detail-catalog__ref-link:hover {
  color: #004a94;
}

.product-detail-catalog__footnote {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--medium-gray);
}

.product-catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.product-catalog-toolbar__count {
  margin: 0;
  font-size: 15px;
  color: var(--primary-black);
}

.product-catalog-toolbar__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
}

.product-catalog-toolbar__controls--wrap {
  justify-content: flex-end;
  flex: 1 1 280px;
  min-width: min(100%, 320px);
}

.product-catalog-filter-label {
  flex: 1 1 200px;
  min-width: 180px;
  max-width: 320px;
}

.product-catalog-filter-input {
  flex: 1;
  min-width: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-family: var(--font-family-base);
  border: 1px solid #ccc;
  border-radius: 4px;
  color: var(--primary-black);
}

.product-catalog-filter-input::placeholder {
  color: #999;
}

.product-catalog-filter-input:focus {
  outline: 2px solid rgba(0, 94, 184, 0.35);
  outline-offset: 1px;
  border-color: #005eb8;
}

.product-catalog-toolbar__field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.product-catalog-toolbar__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-black);
}

.product-catalog-radio {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--steel-gray);
  cursor: pointer;
}

.product-catalog-radio input {
  accent-color: #005eb8;
  width: 16px;
  height: 16px;
}

.product-catalog-select {
  min-width: 160px;
  padding: 8px 32px 8px 12px;
  font-size: 14px;
  font-family: var(--font-family-base);
  color: var(--primary-black);
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E") no-repeat right 10px center;
  background-size: 12px 8px;
  appearance: none;
  cursor: pointer;
}

/* Horizontal scroll on phones / tablets; sticky still works inside scroll container */
.product-table-wrap {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #fff;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

.product-spec-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  line-height: 1.35;
}

.product-spec-table__head-titles th {
  position: sticky;
  top: 0;
  z-index: 88;
  padding: 14px 18px;
  min-height: var(--spec-thead-row1-h);
  box-sizing: border-box;
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 13px;
  text-align: left;
  color: #fff;
  background: #333333;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.product-spec-table__head-titles th:last-child {
  border-right: none;
}

.product-spec-table__head-units th {
  position: sticky;
  top: 46px;
  z-index: 87;
  padding: 10px 18px;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 12px;
  text-align: left;
  color: #fff;
  background: #005eb8;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.product-spec-table__head-units th:last-child {
  border-right: none;
}

.product-spec-table__unit-bracket {
  white-space: nowrap;
}

.product-spec-table__unit-bracket--empty {
  opacity: 0.75;
  font-weight: 400;
}

.product-spec-table tbody td {
  padding: 12px 18px;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  color: var(--primary-black);
  vertical-align: middle;
}

.product-spec-table tbody td:last-child {
  border-right: none;
}

.product-spec-table tbody tr:nth-child(even of :not([hidden])) td {
  background: #f5f5f5;
}

.product-spec-table tbody tr:nth-child(odd of :not([hidden])) td {
  background: #fff;
}

.product-spec-table tbody tr:not([hidden]):hover td {
  background: #eef6fc;
}

.product-spec-table__designation {
  min-width: 8.5rem;
  font-weight: 600;
}

.product-spec-table__designation-link {
  color: #005eb8;
  text-decoration: none;
  font-weight: 700;
}

.product-spec-table__designation-link:hover {
  text-decoration: underline;
  color: #004a94;
}

.product-detail-back {
  margin: 48px 0 0;
}

.product-detail-back__link {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.product-detail-back__link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .product-detail-hero {
    grid-template-columns: 1fr;
  }
}

/* ----- Blog ----- */
.blog-page {
  padding-bottom: 72px;
  background: var(--background);
}

.blog-hero {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: clamp(32px, 5vw, 56px) 0;
}

.blog-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-hero__eyebrow {
  margin: 0 0 8px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.blog-hero__title {
  margin: 0 0 12px;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--primary-black);
}

.blog-hero__lead {
  margin: 0;
  max-width: 56ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--steel-gray);
}

.blog-grid-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px 0;
}

.blog-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 28px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.blog-card__media {
  aspect-ratio: 16 / 9;
  background: var(--light-gray);
  overflow: hidden;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.blog-card__title {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.2;
}

.blog-card__title a {
  color: var(--primary-black);
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--primary);
}

.blog-card__meta {
  margin: 0;
  font-size: 13px;
  color: var(--medium-gray);
}

.blog-card__excerpt {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--steel-gray);
  flex: 1;
}

.blog-card__read {
  margin-top: 8px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
}

.blog-card__read:hover {
  text-decoration: underline;
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
  margin-top: 40px;
  padding-bottom: 16px;
}

.blog-page-link {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.blog-page-link:hover {
  text-decoration: underline;
}

.blog-page-status {
  font-size: 14px;
  color: var(--medium-gray);
}

.blog-empty {
  text-align: center;
  padding: 48px 24px;
  font-size: 17px;
  color: var(--steel-gray);
}

.blog-empty a {
  color: var(--primary);
  font-weight: 600;
}

/* Blog detail */
.blog-detail {
  padding: 32px 0 72px;
}

.blog-detail__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-detail__breadcrumb {
  font-size: 14px;
  color: var(--medium-gray);
  margin-bottom: 24px;
}

.blog-detail__breadcrumb a {
  color: var(--steel-gray);
  text-decoration: none;
}

.blog-detail__breadcrumb a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.blog-detail__sep {
  margin: 0 8px;
  opacity: 0.5;
}

.blog-detail__header {
  margin-bottom: 28px;
}

.blog-detail__title {
  margin: 0 0 14px;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--primary-black);
}

.blog-detail__meta {
  margin: 0;
  font-size: 15px;
  color: var(--medium-gray);
}

.blog-detail__figure {
  margin: 0 0 32px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-detail__img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-detail__prose {
  background: var(--background);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: clamp(24px, 4vw, 36px);
  font-size: 17px;
  line-height: 1.7;
  color: var(--primary-black);
}

.blog-detail__prose p {
  margin: 0 0 1em;
}

.blog-detail__prose p:last-child {
  margin-bottom: 0;
}

/* CKEditor / HTML body */
.blog-detail__prose--richtext h2,
.blog-detail__prose--richtext h3,
.blog-detail__prose--richtext h4 {
  font-family: var(--font-family);
  font-weight: 800;
  line-height: 1.25;
  margin: 1.25em 0 0.5em;
  color: var(--primary-black);
}

.blog-detail__prose--richtext h2 {
  font-size: 1.5rem;
}

.blog-detail__prose--richtext h3 {
  font-size: 1.25rem;
}

.blog-detail__prose--richtext h4 {
  font-size: 1.1rem;
}

.blog-detail__prose--richtext ul,
.blog-detail__prose--richtext ol {
  margin: 0 0 1em;
  padding-left: 1.35em;
}

.blog-detail__prose--richtext li {
  margin-bottom: 0.35em;
}

.blog-detail__prose--richtext a {
  color: #005eb8;
  font-weight: 600;
}

.blog-detail__prose--richtext a:hover {
  text-decoration: underline;
}

.blog-detail__prose--richtext blockquote {
  margin: 1em 0;
  padding: 12px 18px;
  border-left: 4px solid var(--primary);
  background: rgba(192, 57, 43, 0.06);
  font-style: italic;
  color: var(--steel-gray);
}

.blog-detail__prose--richtext img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1em 0;
}

.blog-detail__prose--richtext table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
  font-size: 15px;
}

.blog-detail__prose--richtext th,
.blog-detail__prose--richtext td {
  border: 1px solid #ddd;
  padding: 8px 12px;
  text-align: left;
}

.blog-detail__prose--richtext th {
  background: #f5f5f5;
  font-weight: 700;
}

.blog-detail__prose--richtext pre {
  overflow-x: auto;
  padding: 14px 16px;
  background: #1a1a1a;
  color: #f0f0f0;
  border-radius: 8px;
  font-size: 14px;
  margin: 1em 0;
}

.blog-related {
  margin-top: 40px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-related__title {
  margin: 0 0 16px;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 1.15rem;
}

.blog-related__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-related__list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-related__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-related__link {
  display: block;
  font-weight: 600;
  color: var(--primary-black);
  text-decoration: none;
}

.blog-related__link:hover {
  color: var(--primary);
}

.blog-related__date {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--medium-gray);
}

.blog-detail__back {
  margin: 40px 0 0;
}

.blog-detail__back-link {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.blog-detail__back-link:hover {
  text-decoration: underline;
}

/* ----- Careers (sharp corners, industrial) ----- */
.careers-page {
  border-radius: 0;
}

.careers-hero {
  border-radius: 0;
}

.careers-card__index {
  display: inline-block;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--primary);
  padding: 6px 10px;
  line-height: 1;
}

.careers-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
}

.careers-pillars-grid>.careers-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.careers-pillars-grid>.careers-card:last-child {
  border-bottom: none;
}

@media (min-width: 1024px) {
  .careers-pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .careers-pillars-grid>.careers-card {
    border-bottom: none;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }

  .careers-pillars-grid>.careers-card:last-child {
    border-right: none;
  }
}

.careers-role {
  border-radius: 0;
}

.careers-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.careers-steps-grid>.careers-step {
  list-style: none;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.careers-steps-grid>.careers-step:last-child {
  border-bottom: none;
}

@media (min-width: 640px) {
  .careers-steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .careers-steps-grid>.careers-step {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .careers-steps-grid>.careers-step:nth-child(2n) {
    border-right: none;
  }

  .careers-steps-grid>.careers-step:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

@media (min-width: 1024px) {
  .careers-steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .careers-steps-grid>.careers-step {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .careers-steps-grid>.careers-step:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .careers-steps-grid>.careers-step:nth-child(4n) {
    border-right: none;
  }
}

/* ----- Product enquiry modal (quote) ----- */
.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

@media (max-width: 480px) {
  .enquiry-modal {
    padding: 12px 10px;
    align-items: stretch;
  }

  .enquiry-modal__panel {
    max-height: min(94dvh, 720px);
    margin-top: auto;
  }
}

.enquiry-modal[hidden] {
  display: none !important;
}

.enquiry-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

.enquiry-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 580px;
  max-height: min(92vh, 720px);
  overflow-y: auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.enquiry-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 16px;
  margin-bottom: 0;
}

.enquiry-modal__title {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary-black);
  letter-spacing: -0.02em;
}

.enquiry-modal__close {
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: var(--medium-gray);
  cursor: pointer;
  padding: 0 4px;
  margin: -4px -4px 0 0;
}

.enquiry-modal__close:hover {
  color: var(--primary);
}

.enquiry-modal__intro {
  margin: 0;
  padding: 16px 22px 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--steel-gray);
}

.enquiry-form {
  padding: 18px 22px 22px;
}

.enquiry-form__field {
  margin-bottom: 16px;
}

.enquiry-form__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-black);
  margin-bottom: 6px;
}

.enquiry-form__hint {
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--medium-gray);
  font-size: 11px;
}

.enquiry-field {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  font-size: 15px;
  font-family: var(--font-family-base);
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 0;
  background: #fff;
  color: var(--primary-black);
}

.enquiry-field:focus {
  outline: 2px solid rgba(192, 57, 43, 0.35);
  outline-offset: 1px;
  border-color: var(--primary);
}

.enquiry-field--textarea {
  min-height: 100px;
  resize: vertical;
}

.enquiry-field--multiselect {
  min-height: 120px;
}

.enquiry-form__error {
  margin: 0 0 14px;
  font-size: 14px;
  color: #b91c1c;
  font-weight: 600;
}

.enquiry-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 8px;
}

.enquiry-modal__success {
  margin: 0 22px 22px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #166534;
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
}

/* Select2 + checkbox-style options (product enquiry) */
#product-enquiry-modal .select2-container {
  z-index: 10001 !important;
}

#product-enquiry-modal .select2-container--default .select2-selection--multiple {
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.18);
  min-height: 46px;
  padding: 4px 6px;
  background: #fff;
}

#product-enquiry-modal .select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: var(--primary);
  outline: 2px solid rgba(192, 57, 43, 0.25);
  outline-offset: 1px;
}

#product-enquiry-modal .select2-dropdown {
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.14);
}

#product-enquiry-modal .select2-results__option {
  padding: 8px 12px;
  border-radius: 0;
}

#product-enquiry-modal .select2-results__option--highlighted {
  background: rgba(192, 57, 43, 0.12) !important;
  color: var(--primary-black) !important;
}

.enquiry-s2-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.enquiry-s2-cb {
  margin-top: 3px;
  width: 1.15em;
  flex-shrink: 0;
  color: var(--medium-gray);
  font-size: 15px;
}

.enquiry-s2-cb--checked {
  color: var(--primary);
}

/* Dropdown rows: show correct box; Select2 toggles aria-selected without re-running templateResult */
#product-enquiry-modal .select2-results__option .enquiry-s2-cb--on {
  display: none;
}

#product-enquiry-modal .select2-results__option[aria-selected="true"] .enquiry-s2-cb--off {
  display: none;
}

#product-enquiry-modal .select2-results__option[aria-selected="true"] .enquiry-s2-cb--on {
  display: inline-block;
}

.enquiry-s2-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.enquiry-s2-chip__icon {
  font-size: 10px;
  color: #fff;
}

#product-enquiry-modal .select2-container--default .select2-selection--multiple .select2-selection__choice {
  border-radius: 0;
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 4px 8px;
  margin-top: 4px;
  font-weight: 600;
  font-size: 13px;
}

#product-enquiry-modal .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: rgba(255, 255, 255, 0.9);
  margin-right: 6px;
  font-weight: 700;
}

#product-enquiry-modal .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #fff;
}

.enquiry-form__field--products .enquiry-field--multiselect {
  /* Hidden visually once Select2 replaces it; keep for no-JS fallback */
  min-height: 120px;
}

.select2-container--default .select2-search--inline .select2-search__field {
  margin-top: 6px;
  font-family: var(--font-family-base);
}

/* GSAP: parallax image roots (clip + predictable height for object-fit) */
[data-gsap-parallax-root] {
  overflow: hidden;
  position: relative;
}

[data-gsap-parallax-root] img[data-gsap-parallax] {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

[data-gsap-parallax-root] img[data-gsap-parallax].gsap-parallax-img--contain {
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  [data-gsap-parallax-root] img[data-gsap-parallax] {
    will-change: auto;
  }
}

.auto-rotated {
  animation: animName 20s linear infinite;
}

@keyframes animName {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.industries-swiper-pagination {
  display: none;
}