@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --page-bg: #fafafa;
  --white: #ffffff;
  --dark: #0d0202;
  --red: #bf2121;
  --text-muted: rgba(13, 2, 2, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--dark);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.page {
  min-height: 100vh;
  background: var(--page-bg);
  overflow: hidden;
}

.hero,
.strengths,
.industries,
.built-industry {
  width: min(1840px, calc(100vw - 80px));
}

.hero {
  container-type: inline-size;
  position: relative;
  margin: 32px auto 0;
}

.hero__image {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}

.site-header {
  position: absolute;
  top: 0;
  left: calc(324 / 1840 * 100cqw);
  width: calc(1192 / 1840 * 100cqw);
  height: calc(80 / 1840 * 100cqw);
  display: flex;
  align-items: center;
  padding: 0 calc(24 / 1840 * 100cqw) 0 calc(34 / 1840 * 100cqw);
  background: var(--page-bg);
  border-bottom-right-radius: calc(24 / 1840 * 100cqw);
  border-bottom-left-radius: calc(24 / 1840 * 100cqw);
  z-index: 5;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-header__logo img {
  display: block;
  width: calc(146 / 1840 * 100cqw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: calc(39 / 1840 * 100cqw);
  margin-left: calc(46 / 1840 * 100cqw);
  white-space: nowrap;
}

.site-nav__link {
  font-size: calc(18 / 1840 * 100cqw);
  line-height: 1;
  color: var(--dark);
  transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--red);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: calc(14 / 1840 * 100cqw);
  margin-left: auto;
}

.language {
  position: relative;
  flex: 0 0 auto;
}

.language__button {
  width: calc(50 / 1840 * 100cqw);
  height: calc(50 / 1840 * 100cqw);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.language__button img {
  width: 100%;
  height: 100%;
  display: block;
}

.language__menu {
  position: absolute;
  right: 0;
  top: calc(58 / 1840 * 100cqw);
  min-width: max(138px, calc(158 / 1840 * 100cqw));
  padding: calc(8 / 1840 * 100cqw);
  background: var(--page-bg);
  border: 1px solid rgba(13, 2, 2, 0.12);
  border-radius: calc(14 / 1840 * 100cqw);
  box-shadow: 0 12px 30px rgba(13, 2, 2, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.language.is-open .language__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language__menu a {
  display: block;
  padding: calc(9 / 1840 * 100cqw) calc(10 / 1840 * 100cqw);
  border-radius: calc(9 / 1840 * 100cqw);
  font-size: calc(16 / 1840 * 100cqw);
  line-height: 1;
}

.language__menu a:hover {
  background: rgba(191, 33, 33, 0.08);
  color: var(--red);
}

.request-button {
  width: calc(185 / 1840 * 100cqw);
  height: calc(50 / 1840 * 100cqw);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: calc(18 / 1840 * 100cqw);
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.request-button:hover,
.request-button:focus-visible {
  background: #d11f1f;
  transform: translateY(-1px);
}

.hero__slider-controls {
  position: absolute;
  left: calc(780 / 1840 * 100cqw);
  bottom: calc(31 / 1840 * 100cqw);
  width: calc(288 / 1840 * 100cqw);
  height: auto;
  z-index: 3;
  pointer-events: none;
}

main {
  padding-bottom: 120px;
}

.section-vertical-title {
  margin: 0;
  color: var(--dark);
  font-size: clamp(30px, 3.62vw, 72px);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  user-select: none;
}

.strengths {
  container-type: inline-size;
  display: flex;
  align-items: stretch;
  gap: calc(30 / 1840 * 100cqw);
  margin: calc(24px + 8 / 1840 * 100vw) auto 0;
  min-height: calc(460 / 1840 * 100cqw);
}

.strengths__accordion {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  gap: calc(16 / 1840 * 100cqw);
}

.strength-card {
  position: relative;
  flex: 0 0 calc(160 / 1840 * 100cqw);
  height: calc(460 / 1840 * 100cqw);
  min-height: 180px;
  border: 0;
  border-radius: calc(24 / 1840 * 100cqw);
  overflow: hidden;
  background: var(--red);
  cursor: pointer;
  outline: none;
  transition: flex-basis 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 14px 32px rgba(13, 2, 2, 0.04);
}

.strength-card.is-active {
  flex-basis: calc(640 / 1840 * 100cqw);
  cursor: default;
}

.strength-card:not(.is-active):hover,
.strength-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(191, 33, 33, 0.16);
}

.strength-card__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 0.38s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.strength-card.is-active .strength-card__image {
  opacity: 1;
  transform: scale(1);
}

.strength-card__shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(0deg, rgba(13, 2, 2, 0.88) 0%, rgba(13, 2, 2, 0.52) 26%, rgba(13, 2, 2, 0) 58%);
  transition: opacity 0.35s ease;
}

.strength-card.is-active .strength-card__shade {
  opacity: 1;
}

.strength-card__content {
  position: absolute;
  left: calc(42 / 1840 * 100cqw);
  right: calc(34 / 1840 * 100cqw);
  bottom: calc(31 / 1840 * 100cqw);
  z-index: 2;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.32s ease 0.14s, transform 0.32s ease 0.14s;
}

.strength-card.is-active .strength-card__content {
  opacity: 1;
  transform: translateY(0);
}

.strength-card__content h2 {
  margin: 0 0 calc(8 / 1840 * 100cqw);
  font-size: clamp(15px, 1.75vw, 32px);
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.strength-card__content p {
  max-width: 92%;
  margin: 0;
  font-size: clamp(8px, 0.82vw, 17px);
  line-height: 1.2;
  font-weight: 400;
}

.strength-card__tab-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  color: #fff;
  font-size: clamp(11px, 1.25vw, 24px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: opacity 0.2s ease;
}

.strength-card.is-active .strength-card__tab-label {
  opacity: 0;
  pointer-events: none;
}

.strengths__title {
  flex: 0 0 calc(120 / 1840 * 100cqw);
  align-self: center;
  text-align: center;
}

.industries {
  container-type: inline-size;
  display: flex;
  align-items: flex-start;
  gap: calc(34 / 1840 * 100cqw);
  margin: calc(34 / 1840 * 100vw) auto 0;
}

.industries__side {
  flex: 0 0 calc(150 / 1840 * 100cqw);
  min-height: calc(530 / 1840 * 100cqw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-bottom: calc(6 / 1840 * 100cqw);
}

.industries__title {
  font-size: clamp(28px, 2.7vw, 56px);
  line-height: 0.86;
  text-align: center;
  white-space: nowrap;
}

.industries__controls {
  display: flex;
  align-items: center;
  gap: calc(12 / 1840 * 100cqw);
  width: 100%;
  justify-content: center;
}

.industries__control {
  width: calc(50 / 1840 * 100cqw);
  height: calc(50 / 1840 * 100cqw);
  min-width: 26px;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(191, 33, 33, 0.35);
  border-radius: 999px;
  background: var(--page-bg);
  color: rgba(13, 2, 2, 0.55);
  font-size: clamp(17px, 1.5vw, 30px);
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

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

.industries__viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  border-radius: calc(24 / 1840 * 100cqw);
}

.industries__track {
  display: flex;
  gap: calc(16 / 1840 * 100cqw);
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-card {
  position: relative;
  flex: 0 0 calc(400 / 1840 * 100cqw);
  height: calc(530 / 1840 * 100cqw);
  min-width: 172px;
  min-height: 228px;
  border-radius: calc(24 / 1840 * 100cqw);
  overflow: hidden;
  background: #101010;
  box-shadow: 0 14px 34px rgba(13, 2, 2, 0.06);
}

.industry-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.006);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(191, 33, 33, 0.6) 0%, rgba(191, 33, 33, 0.54) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  z-index: 2;
  background: linear-gradient(0deg, rgba(13, 2, 2, 0.76) 0%, rgba(13, 2, 2, 0.32) 53%, rgba(13, 2, 2, 0) 100%);
  pointer-events: none;
}

.industry-card:hover img {
  transform: scale(1.055);
  filter: contrast(1.04) saturate(0.96);
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-card h3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(30 / 1840 * 100cqw);
  z-index: 3;
  margin: 0;
  color: #fff;
  font-size: clamp(13px, 1.2vw, 24px);
  line-height: 1;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}


.built-industry {
  container-type: inline-size;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(24 / 1840 * 100cqw);
  margin: calc(34 / 1840 * 100vw) auto 0;
  min-height: calc(430 / 1840 * 100cqw);
}

.built-industry__text-panel,
.built-industry__video-card {
  position: relative;
  height: calc(430 / 1840 * 100cqw);
  min-height: 210px;
  border-radius: calc(24 / 1840 * 100cqw);
  overflow: hidden;
}

.built-industry__text-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13, 2, 2, 0.78);
  background: var(--page-bg);
  text-align: center;
}

.built-industry__text-panel::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: calc(245 / 908 * 100%);
  height: calc(68 / 430 * 100%);
  min-width: 150px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  background: var(--page-bg);
  transform: translateX(-50%);
  z-index: 1;
}

.built-industry__content {
  width: min(610px, 78%);
  transform: translateY(calc(-18 / 1840 * 100cqw));
}

.built-industry__content h2 {
  margin: 0 0 calc(22 / 1840 * 100cqw);
  color: var(--dark);
  font-size: clamp(42px, 5vw, 112px);
  line-height: 0.79;
  font-weight: 800;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.built-industry__content p {
  max-width: 540px;
  margin: 0 auto;
  color: var(--dark);
  font-size: clamp(12px, 1.22vw, 24px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.built-industry__button {
  position: absolute;
  left: 50%;
  bottom: calc(32 / 1840 * 100cqw);
  z-index: 3;
  width: calc(193 / 1840 * 100cqw);
  min-width: 136px;
  height: calc(50 / 1840 * 100cqw);
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: clamp(11px, 0.82vw, 16px);
  line-height: 1;
  transform: translateX(-50%);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.built-industry__button:hover,
.built-industry__button:focus-visible {
  background: #d11f1f;
  transform: translateX(-50%) translateY(-1px);
  box-shadow: 0 14px 28px rgba(191, 33, 33, 0.18);
}

.built-industry__video-card {
  background: #111;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(13, 2, 2, 0.06);
}

.built-industry__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.006);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.32s ease;
}

.built-industry__video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(191, 33, 33, 0.6) 0%, rgba(191, 33, 33, 0.54) 100%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.built-industry__video-card:hover::before {
  opacity: 1;
}

.built-industry__video-card:hover .built-industry__video {
  transform: scale(1.045);
  filter: contrast(1.04) saturate(0.96);
}

.built-industry__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: calc(80 / 1840 * 100cqw);
  min-width: 46px;
  height: calc(80 / 1840 * 100cqw);
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.built-industry__play img {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 6px 18px rgba(13, 2, 2, 0.22));
}

.built-industry__video-card:hover .built-industry__play,
.built-industry__play:focus-visible {
  transform: translate(-50%, -50%) scale(1.06);
}

.built-industry__video-card.is-playing::before,
.built-industry__video-card.is-playing .built-industry__play {
  opacity: 0;
  pointer-events: none;
}

.under-development {
  width: min(1180px, calc(100vw - 80px));
  margin: 74px auto 120px;
  padding: 72px 48px;
  border: 1px solid rgba(13, 2, 2, 0.08);
  border-radius: 32px;
  text-align: center;
  background: #fff;
}

.under-development__eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.under-development h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.08;
}

.under-development p {
  max-width: 620px;
  margin: 0 auto 32px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
}

.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 185px;
  height: 50px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 18px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.is-open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 2, 2, 0.45);
}

.modal__box {
  position: relative;
  width: min(560px, 100%);
  padding: 36px;
  border-radius: 28px;
  background: var(--page-bg);
  box-shadow: 0 28px 80px rgba(13, 2, 2, 0.24);
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(13, 2, 2, 0.14);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.modal h2 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.1;
}

.modal p {
  margin: 0 0 24px;
  color: var(--text-muted);
  line-height: 1.5;
}

.request-form {
  display: grid;
  gap: 14px;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(13, 2, 2, 0.14);
  border-radius: 16px;
  padding: 15px 16px;
  background: #fff;
  color: var(--dark);
  outline: none;
}

.request-form textarea {
  min-height: 120px;
  resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--red);
}

.request-form button {
  height: 50px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  cursor: pointer;
}

@media (max-width: 980px) {
  .hero,
  .strengths,
  .industries,
  .built-industry {
    width: calc(100vw - 28px);
  }

  .hero {
    margin-top: 18px;
  }

  .strengths {
    gap: 10px;
  }
}

@media (max-width: 760px) {
  .strengths,
  .industries,
  .built-industry {
    width: calc(100vw - 20px);
  }

  .strengths {
    align-items: flex-start;
    gap: 12px;
  }

  .strengths__accordion {
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .strength-card,
  .strength-card.is-active {
    flex-basis: 276px;
    height: 200px;
    scroll-snap-align: start;
  }

  .strength-card__image,
  .strength-card__shade,
  .strength-card__content {
    opacity: 1;
    transform: none;
  }

  .strength-card__tab-label {
    display: none;
  }

  .strengths__title {
    flex-basis: 48px;
  }

  .industries {
    gap: 14px;
  }

  .built-industry {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .built-industry__text-panel,
  .built-industry__video-card {
    height: 230px;
    border-radius: 18px;
  }

  .built-industry__content {
    transform: translateY(-10px);
  }

  .built-industry__button {
    bottom: 22px;
  }


  .industries__side {
    flex-basis: 56px;
    min-height: 228px;
  }

  .industry-card {
    flex-basis: 172px;
    height: 228px;
  }
}

@media (max-width: 640px) {
  .hero {
    width: calc(100vw - 20px);
  }

  .site-nav {
    display: none;
  }

  .site-header__logo img {
    width: calc(190 / 1840 * 100cqw);
  }

  .language__button,
  .request-button {
    transform: scale(1.25);
    transform-origin: center;
  }

  .under-development {
    width: calc(100vw - 32px);
    margin-top: 44px;
    padding: 46px 22px;
  }
}

/* Step 05: Latest News section */
.latest-news {
  container-type: inline-size;
  width: min(1840px, calc(100vw - 80px));
  margin: calc(72 / 1840 * 100vw) auto 0;
}

.latest-news__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: calc(20 / 1840 * 100cqw);
}

.latest-news__header h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(44px, 5.95vw, 112px);
  line-height: 0.86;
  font-weight: 800;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.latest-news__see-all {
  width: calc(123 / 1840 * 100cqw);
  min-width: 92px;
  height: calc(50 / 1840 * 100cqw);
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(18 / 1840 * 100cqw);
  border: 1px solid rgba(13, 2, 2, 0.78);
  border-radius: 999px;
  background: var(--page-bg);
  color: var(--dark);
  font-size: clamp(11px, 0.75vw, 14px);
  line-height: 1;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.latest-news__see-all:hover,
.latest-news__see-all:focus-visible {
  color: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

.latest-news__carousel {
  position: relative;
  height: calc(430 / 1840 * 100cqw);
  min-height: 230px;
}

.latest-news__viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: calc(24 / 1840 * 100cqw);
}

.latest-news__track {
  height: 100%;
  display: flex;
  gap: calc(16 / 1840 * 100cqw);
  will-change: transform;
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card {
  position: relative;
  flex: 0 0 calc(450 / 1840 * 100cqw);
  height: 100%;
  min-width: 224px;
  border-radius: calc(24 / 1840 * 100cqw);
  overflow: hidden;
  background: #111;
  color: #fff;
  outline: none;
  box-shadow: 0 14px 34px rgba(13, 2, 2, 0.06);
  transform-origin: center;
  transition:
    flex-basis 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.news-card.is-active {
  flex-basis: calc(908 / 1840 * 100cqw);
}

.news-card:hover,
.news-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(13, 2, 2, 0.14);
}

.news-card:active {
  transform: scale(1.025);
}

.news-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.006);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.32s ease;
}

.news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(191, 33, 33, 0.6) 0%, rgba(191, 33, 33, 0.5) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.news-card:hover::before,
.news-card:focus-visible::before {
  opacity: 1;
}

.news-card:hover img,
.news-card:focus-visible img {
  transform: scale(1.045);
  filter: contrast(1.04) saturate(0.96);
}

.news-card__shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 58%;
  z-index: 2;
  background: linear-gradient(0deg, rgba(13, 2, 2, 0.82) 0%, rgba(13, 2, 2, 0.42) 58%, rgba(13, 2, 2, 0) 100%);
  pointer-events: none;
}

.news-card__content {
  position: absolute;
  left: calc(40 / 1840 * 100cqw);
  right: calc(40 / 1840 * 100cqw);
  bottom: calc(32 / 1840 * 100cqw);
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  column-gap: calc(24 / 1840 * 100cqw);
  color: #fff;
}

.news-card__content h3 {
  grid-column: 1 / -1;
  margin: 0 0 calc(8 / 1840 * 100cqw);
  font-size: clamp(16px, 1.45vw, 32px);
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.news-card__content p {
  margin: 0;
  max-width: calc(620 / 1840 * 100cqw);
  font-size: clamp(8px, 0.78vw, 16px);
  line-height: 1.12;
  font-weight: 400;
}

.news-card:not(.is-active) .news-card__content {
  left: calc(28 / 1840 * 100cqw);
  right: calc(28 / 1840 * 100cqw);
}

.news-card:not(.is-active) .news-card__content p {
  max-height: 2.3em;
  overflow: hidden;
}

.news-card__button {
  width: calc(156 / 1840 * 100cqw);
  min-width: 98px;
  height: calc(50 / 1840 * 100cqw);
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(250, 250, 250, 0.92);
  border-radius: 999px;
  color: #fff;
  font-size: clamp(10px, 0.72vw, 14px);
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.news-card:hover .news-card__button,
.news-card:focus-visible .news-card__button {
  background: rgba(250, 250, 250, 0.12);
  border-color: #fff;
}

.latest-news__side {
  position: absolute;
  top: 0;
  z-index: 4;
  width: calc(146 / 1840 * 100cqw);
  height: 100%;
  min-width: 72px;
  border-radius: calc(24 / 1840 * 100cqw);
  background: var(--red);
  pointer-events: none;
}

.latest-news__side--left {
  left: 0;
  border-top-right-radius: calc(18 / 1840 * 100cqw);
  border-bottom-right-radius: calc(18 / 1840 * 100cqw);
}

.latest-news__side--right {
  right: 0;
  border-top-left-radius: calc(18 / 1840 * 100cqw);
  border-bottom-left-radius: calc(18 / 1840 * 100cqw);
}

.latest-news__arrow {
  position: absolute;
  top: 50%;
  z-index: 7;
  width: calc(50 / 1840 * 100cqw);
  min-width: 34px;
  height: calc(50 / 1840 * 100cqw);
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0.08em;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: clamp(20px, 1.85vw, 36px);
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 10px 28px rgba(13, 2, 2, 0.22);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.latest-news__arrow--prev {
  left: calc(118 / 1840 * 100cqw);
}

.latest-news__arrow--next {
  right: calc(118 / 1840 * 100cqw);
}

.latest-news__arrow:hover,
.latest-news__arrow:focus-visible {
  background: #d11f1f;
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 14px 32px rgba(191, 33, 33, 0.26);
}

.latest-news__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(9 / 1840 * 100cqw);
  height: calc(32 / 1840 * 100cqw);
  min-height: 22px;
}

.latest-news__dot {
  width: calc(8 / 1840 * 100cqw);
  min-width: 7px;
  height: calc(8 / 1840 * 100cqw);
  min-height: 7px;
  padding: 0;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.latest-news__dot.is-active {
  background: var(--red);
}

.latest-news__dot:hover,
.latest-news__dot:focus-visible {
  transform: scale(1.18);
}

@media (max-width: 980px) {
  .latest-news {
    width: calc(100vw - 28px);
  }
}

@media (max-width: 760px) {
  .latest-news {
    width: calc(100vw - 20px);
    margin-top: 34px;
  }

  .latest-news__header {
    align-items: center;
  }

  .latest-news__header h2 {
    font-size: clamp(36px, 12vw, 62px);
  }

  .latest-news__carousel {
    height: 250px;
  }

  .latest-news__side {
    display: none;
  }

  .latest-news__arrow--prev {
    left: 10px;
  }

  .latest-news__arrow--next {
    right: 10px;
  }

  .news-card,
  .news-card.is-active {
    flex-basis: calc(100vw - 20px);
    min-width: calc(100vw - 20px);
  }

  .news-card__content {
    left: 22px;
    right: 22px;
    bottom: 20px;
  }
}

/* Step 06: Blog preview cards + footer */
.blog-preview,
.site-footer {
  width: min(1840px, calc(100vw - 80px));
}

.blog-preview {
  container-type: inline-size;
  margin: calc(58 / 1840 * 100vw) auto 0;
}

.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: calc(20 / 1840 * 100cqw);
}

.blog-card {
  position: relative;
  display: block;
  min-height: calc(379 / 1840 * 100cqw);
  aspect-ratio: 448 / 379;
  border-radius: calc(18 / 1840 * 100cqw);
  overflow: hidden;
  background: #d9d9d9;
  color: #fff;
  transform: translateZ(0) scale(1);
  transform-origin: center;
  box-shadow: 0 6px 24px rgba(13, 2, 2, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.blog-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card__shade,
.blog-card__red-hover {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blog-card__shade {
  z-index: 1;
  background: linear-gradient(180deg, rgba(13, 2, 2, 0.04) 0%, rgba(13, 2, 2, 0.12) 38%, rgba(13, 2, 2, 0.76) 100%);
}

.blog-card__red-hover {
  z-index: 2;
  background: linear-gradient(180deg, rgba(191, 33, 33, 0.12) 0%, rgba(191, 33, 33, 0.62) 100%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.blog-card__content {
  position: absolute;
  left: calc(32 / 448 * 100%);
  right: calc(28 / 448 * 100%);
  bottom: calc(28 / 379 * 100%);
  z-index: 3;
}

.blog-card h3 {
  margin: 0 0 calc(8 / 448 * 100%) 0;
  color: #fff;
  font-size: clamp(14px, 1.42vw, 32px);
  line-height: 0.95;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.blog-card p {
  max-width: 95%;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(9px, 0.68vw, 15px);
  line-height: 1.08;
  font-weight: 400;
}

.blog-card:hover,
.blog-card:focus-visible,
.blog-card.is-clicked {
  transform: translateY(-4px) scale(1.035);
  box-shadow: 0 18px 42px rgba(13, 2, 2, 0.18);
}

.blog-card:hover img,
.blog-card:focus-visible img,
.blog-card.is-clicked img {
  transform: scale(1.06);
}

.blog-card:hover .blog-card__red-hover,
.blog-card:focus-visible .blog-card__red-hover,
.blog-card.is-clicked .blog-card__red-hover {
  opacity: 1;
}

.site-footer {
  container-type: inline-size;
  position: relative;
  display: grid;
  grid-template-columns: calc(520 / 1840 * 100cqw) 1fr;
  min-height: calc(480 / 1840 * 100cqw);
  margin: calc(32 / 1840 * 100vw) auto 0;
  padding: calc(48 / 1840 * 100cqw) calc(56 / 1840 * 100cqw) calc(40 / 1840 * 100cqw);
  border-radius: calc(24 / 1840 * 100cqw);
  background: var(--red);
  color: #fff;
  overflow: hidden;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(34 / 1840 * 100cqw);
}

.site-footer__logo {
  display: inline-flex;
  width: calc(260 / 1840 * 100cqw);
  min-width: 166px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-footer__logo:hover,
.site-footer__logo:focus-visible {
  opacity: 0.9;
  transform: translateY(-2px);
}

.site-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: calc(8 / 1840 * 100cqw);
}

.site-footer__socials button {
  width: calc(40 / 1840 * 100cqw);
  min-width: 30px;
  height: calc(40 / 1840 * 100cqw);
  min-height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: transparent;
  background-image: url('../assets/footer/social-icons.svg');
  background-repeat: no-repeat;
  background-size: 460% 100%;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-footer__socials button:nth-child(1) { background-position: 0% 50%; }
.site-footer__socials button:nth-child(2) { background-position: 33.333% 50%; }
.site-footer__socials button:nth-child(3) { background-position: 66.666% 50%; }
.site-footer__socials button:nth-child(4) { background-position: 100% 50%; }

.site-footer__socials button:hover,
.site-footer__socials button:focus-visible {
  transform: scale(1.08);
  opacity: 0.88;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: calc(110 / 1840 * 100cqw);
  align-self: start;
  padding-top: calc(4 / 1840 * 100cqw);
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(12 / 1840 * 100cqw);
}

.site-footer__column h3 {
  margin: 0 0 calc(4 / 1840 * 100cqw);
  color: #fff;
  font-size: clamp(13px, 0.88vw, 18px);
  line-height: 1.18;
  font-weight: 800;
}

.site-footer__column a {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(12px, 0.8vw, 16px);
  line-height: 1.1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
  opacity: 0.76;
  transform: translateX(3px);
}

.site-footer__copy {
  position: absolute;
  left: calc(56 / 1840 * 100cqw);
  bottom: calc(36 / 1840 * 100cqw);
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(10px, 0.64vw, 14px);
  line-height: 1.2;
}

@media (max-width: 980px) {
  .blog-preview,
  .site-footer {
    width: calc(100vw - 28px);
  }

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

  .blog-card {
    border-radius: 16px;
    min-height: 180px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 34px;
    padding: 38px 28px 72px;
    border-radius: 22px;
  }

  .site-footer__brand {
    gap: 22px;
  }

  .site-footer__nav {
    gap: 24px;
  }

  .site-footer__socials {
    gap: 8px;
  }

  .site-footer__socials button {
    width: 36px;
    height: 36px;
  }

  .site-footer__copy {
    left: 28px;
    bottom: 28px;
  }
}

@media (max-width: 660px) {
  .blog-preview {
    width: calc(100vw - 20px);
    margin-top: 36px;
  }

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

  .blog-card {
    min-height: 210px;
  }

  .blog-card__content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .site-footer {
    width: calc(100vw - 20px);
    margin-top: 24px;
    padding: 34px 22px 72px;
  }

  .site-footer__nav {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

/* Step 07 final homepage interactions */
.language__menu button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: calc(9 / 1840 * 100cqw) calc(10 / 1840 * 100cqw);
  border: 0;
  border-radius: calc(9 / 1840 * 100cqw);
  background: transparent;
  color: var(--dark);
  font-size: max(14px, calc(16 / 1840 * 100cqw));
  line-height: 1.1;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
}

.language__flag {
  width: 22px;
  height: 15px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(13, 2, 2, 0.12);
  object-fit: cover;
}

.language__menu button:hover,
.language__menu button:focus-visible,
.language__menu button.is-active {
  background: rgba(191, 33, 33, 0.08);
  color: var(--red);
}

.hero__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: calc(28 / 1840 * 100cqw);
}

.hero__track {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__slide {
  position: relative;
  flex: 0 0 100%;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(191, 33, 33, 0.12);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.hero__slide:hover::after,
.hero__slide:focus-visible::after {
  opacity: 1;
}

.hero__slide .hero__image {
  transform: scale(1.001);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.32s ease;
}

.hero__slide:hover .hero__image,
.hero__slide:focus-visible .hero__image {
  transform: scale(1.025);
  filter: contrast(1.02) saturate(1.02);
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0.32s ease;
  background: #0d0202;
}

.hero__media.is-video-active .hero__video {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero__slider-controls {
  width: calc(300 / 1840 * 100cqw);
  min-width: 160px;
  height: calc(36 / 1840 * 100cqw);
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(11 / 1840 * 100cqw);
  pointer-events: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(3px);
}

.hero__slider-arrow,
.hero__slider-play,
.hero__slider-dots button {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.hero__slider-arrow,
.hero__slider-play {
  width: calc(28 / 1840 * 100cqw);
  min-width: 22px;
  height: calc(28 / 1840 * 100cqw);
  min-height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: calc(16 / 1840 * 100cqw);
  line-height: 1;
}

.hero__slider-play {
  font-size: calc(10 / 1840 * 100cqw);
}

.hero__slider-dots {
  display: inline-flex;
  align-items: center;
  gap: calc(8 / 1840 * 100cqw);
}

.hero__slider-dots button {
  width: calc(8 / 1840 * 100cqw);
  min-width: 5px;
  height: calc(8 / 1840 * 100cqw);
  min-height: 5px;
  padding: 0;
  border-radius: 999px;
}

.hero__slider-dots button.is-active {
  width: calc(24 / 1840 * 100cqw);
  min-width: 18px;
  background: #fff;
}

.hero__slider-arrow:hover,
.hero__slider-play:hover,
.hero__slider-dots button:hover,
.hero__slider-arrow:focus-visible,
.hero__slider-play:focus-visible,
.hero__slider-dots button:focus-visible {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.32);
  border-color: #fff;
}

.modal {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: 0 24px 24px;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.modal.is-open {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__backdrop {
  opacity: 0;
  background: rgba(13, 2, 2, 0.38);
  transition: opacity 0.32s ease;
}

.modal.is-open .modal__backdrop {
  opacity: 1;
}

.modal__box {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 38px 44px 36px;
  border-radius: 0 0 34px 34px;
  background: var(--page-bg);
  transform: translateY(-110%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 26px 90px rgba(13, 2, 2, 0.24);
  max-height: calc(100vh - 24px);
  overflow: auto;
}

.modal.is-open .modal__box {
  transform: translateY(0);
}

.modal h2 {
  margin-bottom: 10px;
  font-size: clamp(34px, 4vw, 72px);
  font-weight: 800;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.modal p {
  max-width: 700px;
}

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

.request-form input,
.request-form textarea {
  min-height: 52px;
  border-radius: 18px;
}

.request-form__grid input:nth-child(5) {
  grid-column: span 2;
}

.request-form__file,
.request-form__privacy {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.35;
}

.request-form__file {
  justify-content: space-between;
  padding: 13px 16px;
  border: 1px dashed rgba(13, 2, 2, 0.2);
  border-radius: 18px;
  background: #fff;
}

.request-form__file input {
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.request-form__privacy input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  accent-color: var(--red);
}

.request-form__note {
  margin: -2px 0 0;
  max-width: none;
  color: rgba(13, 2, 2, 0.54);
  font-size: 13px;
}

.news-card.is-clicked,
.blog-card.is-clicked {
  transform: scale(1.025) !important;
}

@media (max-width: 760px) {
  .hero__slider-controls {
    left: 50%;
    width: 180px;
    transform: translateX(-50%);
  }
  .request-form__grid {
    grid-template-columns: 1fr;
  }
  .request-form__grid input:nth-child(5) {
    grid-column: auto;
  }
  .modal__box {
    width: calc(100vw - 24px);
    padding: 34px 20px 24px;
    border-radius: 0 0 24px 24px;
  }
}


/* =========================
   INNER PAGES / PRODUCTS
   ========================= */
.inner-page {
  overflow: visible;
}
.inner-top {
  position: relative;
  width: min(1840px, calc(100vw - 80px));
  margin: 32px auto 28px;
  min-height: 270px;
  background: var(--red);
  border-radius: 28px 28px 16px 16px;
  overflow: visible;
}
.inner-top::before,
.inner-top::after {
  content: '';
  position: absolute;
  top: 0;
  width: 245px;
  height: 78px;
  background: var(--red);
  border-radius: 18px;
}
.inner-top::before { left: 0; }
.inner-top::after { right: 0; }
.inner-top .site-header {
  container-type: normal;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(920px, calc(100% - 420px));
  height: 78px;
  border-radius: 0 0 24px 24px;
  padding: 0 26px;
  gap: 26px;
}
.inner-top .site-header__logo { width: 118px; }
.inner-top .site-nav { gap: 30px; }
.inner-top .site-nav__link.is-current { color: var(--red); font-weight: 700; }
.inner-top .site-header__actions { margin-left: auto; }
.inner-top__title {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 26px;
}
.inner-top__title h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(68px, 8.2vw, 132px);
  line-height: .82;
  text-transform: uppercase;
  letter-spacing: -.06em;
  font-weight: 900;
}
.inner-content {
  width: min(1840px, calc(100vw - 80px));
  margin: 0 auto 40px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  font-size: 14px;
  color: rgba(13,2,2,.7);
}
.breadcrumb a:hover { color: var(--red); }
.category-strip {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}
.category-strip__viewport { overflow: hidden; }
.category-strip__track {
  display: flex;
  gap: 18px;
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.category-strip__arrow,
.product-slider-row__arrow {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(13,2,2,.28);
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.category-strip__arrow:hover,
.product-slider-row__arrow:hover { transform: scale(1.08); background: var(--red); color: var(--white); }
.category-pill {
  position: relative;
  flex: 0 0 calc((100% - 54px) / 4);
  height: 140px;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  color: var(--white);
  transform-origin: center;
  transition: transform .28s ease;
}
.category-pill:hover { transform: scale(1.025); }
.category-pill img { width: 100%; height: 100%; object-fit: cover; display:block; filter: brightness(.68); transition: filter .28s ease, transform .28s ease; }
.category-pill:hover img { filter: brightness(.62); transform: scale(1.04); }
.category-pill::after { content:''; position:absolute; inset:0; background: rgba(191,33,33,.62); opacity:0; transition: opacity .28s ease; pointer-events:none; }
.category-pill:hover::after { opacity:1; }
.category-pill span { position:absolute; z-index:1; left:24px; bottom:22px; font-size:24px; font-weight:800; text-transform:uppercase; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px;
}
.product-card {
  min-height: 520px;
  border: 1.5px solid rgba(13,2,2,.65);
  border-radius: 18px;
  background: var(--page-bg);
  overflow: hidden;
  display:flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.product-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 16px 44px rgba(13,2,2,.12); border-color: var(--red); }
.product-card__image-link { display: block; height: 280px; padding: 16px; background: #fff; }
.product-card__image-link img { width: 100%; height: 100%; object-fit: contain; display:block; transition: transform .28s ease; }
.product-card:hover .product-card__image-link img { transform: scale(1.04); }
.product-card__body { padding: 0 26px 26px; display:flex; flex-direction:column; flex:1; }
.product-card h3 { margin: 0; font-size: 29px; line-height: 1; letter-spacing: -.04em; }
.product-card p { margin: 5px 0 14px; font-size: 14px; color: rgba(13,2,2,.72); }
.product-card dl { margin: 0 0 22px; padding-top: 12px; border-top: 1px solid rgba(13,2,2,.55); font-size: 14px; }
.product-card dl div { display:flex; justify-content:space-between; gap: 16px; margin: 8px 0; }
.product-card dt { font-weight: 800; }
.product-card dd { margin:0; }
.product-card__request,
.product-side-card button {
  margin-top: auto;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  height: 44px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card__request:hover,
.product-side-card button:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(191,33,33,.28); }
.equipment-intro,
.placeholder-card {
  border: 1.4px solid rgba(13,2,2,.45);
  border-radius: 20px;
  padding: 36px;
  margin-bottom: 28px;
  background: rgba(255,255,255,.35);
}
.equipment-intro h2,
.placeholder-card h2 { margin:0 0 12px; text-transform: uppercase; font-size: clamp(36px, 5vw, 74px); line-height:.88; letter-spacing:-.06em; }
.equipment-intro p,
.placeholder-card p { max-width: 760px; color: var(--text-muted); font-size: 18px; }
.category-hero-card {
  display:grid;
  grid-template-columns: minmax(260px, 480px) 1fr;
  gap: 28px;
  align-items:center;
  border: 1.4px solid rgba(13,2,2,.5);
  border-radius:20px;
  padding:18px;
  margin-bottom:28px;
}
.category-hero-card img { width:100%; height: 220px; object-fit:cover; border-radius:16px; filter: brightness(.82); }
.category-hero-card h2 { margin:0 0 12px; text-transform:uppercase; font-size:58px; line-height:.9; letter-spacing:-.06em; }
.category-hero-card p { max-width:600px; color:var(--text-muted); font-size:18px; }
.product-detail {
  display:grid;
  grid-template-columns: 1.12fr 1.22fr 280px;
  gap: 22px;
  align-items:start;
}
.product-gallery__main {
  width: 100%;
  min-height: 520px;
  border: 1.5px solid rgba(13,2,2,.5);
  border-radius: 18px;
  background: var(--white);
  display:grid;
  place-items:center;
  cursor: zoom-in;
  overflow:hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-gallery__main:hover { transform: scale(1.012); box-shadow: 0 20px 60px rgba(13,2,2,.13); }
.product-gallery__main img { width: 92%; height: 92%; object-fit: contain; }
.product-gallery__dots { display:flex; justify-content:center; gap:7px; margin-top:14px; }
.product-gallery__dots span { width:6px; height:6px; border-radius:50%; background:rgba(13,2,2,.25); }
.product-gallery__dots span:first-child { background:var(--red); }
.product-detail__info h2 { margin:0 0 5px; font-size: 32px; line-height:1; letter-spacing:-.04em; }
.product-detail__category { margin: 0 0 16px; color:var(--text-muted); }
.product-detail__info > p:not(.product-detail__category) { color: var(--text-muted); line-height: 1.45; }
.product-accordions { display:grid; gap:12px; margin-top:16px; }
.product-accordions details { border:1.3px solid rgba(13,2,2,.5); border-radius:14px; background:rgba(255,255,255,.42); overflow:hidden; }
.product-accordions summary { cursor:pointer; padding:18px 20px; font-weight:900; text-transform:uppercase; }
.product-accordions ul { margin: 0; padding: 0 24px 20px 38px; color: var(--text-muted); }
.product-side-card { border:1.3px solid rgba(13,2,2,.5); border-radius:16px; padding:22px; background:rgba(255,255,255,.5); }
.product-side-card dl { margin:0 0 20px; }
.product-side-card div { display:flex; justify-content:space-between; gap:16px; padding:8px 0; border-bottom:1px solid rgba(13,2,2,.14); font-size:13px; }
.product-side-card dt { color: rgba(13,2,2,.72); }
.product-side-card dd { margin:0; font-weight:800; text-align:right; }
.product-side-card button { width:100%; }
.related-section { margin-top: 80px; }
.related-section h2 { margin:0 0 18px; text-transform:uppercase; font-size:32px; letter-spacing:-.04em; }
.product-slider-row { display:grid; grid-template-columns: 34px 1fr 34px; gap: 12px; align-items:center; }
.product-grid--small .product-card { min-height: 390px; }
.product-grid--small .product-card__image-link { height: 210px; }
.product-grid--small .product-card h3 { font-size: 21px; }
.product-grid--small .product-card p, .product-grid--small .product-card dl { font-size: 12px; }
.product-grid--three { grid-template-columns: repeat(3, minmax(0,1fr)); max-width: 900px; }
.contact-layout { display:grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items:center; margin-top: 20px; }
.contact-info-list { display:grid; gap: 28px; }
.contact-info-list article { display:grid; grid-template-columns: 74px 1fr; gap:22px; align-items:center; }
.contact-info-list span { width:60px; height:60px; border:1.6px solid var(--dark); border-radius:50%; display:grid; place-items:center; font-size:28px; }
.contact-info-list h2 { margin:0 0 5px; text-transform:uppercase; font-size:32px; line-height:1; letter-spacing:-.05em; }
.contact-info-list p { margin:0; color: var(--text-muted); }
.contact-map { position:relative; height: 360px; border-radius: 22px; overflow:hidden; background: #e8e8e6; }
.contact-map__grid { position:absolute; inset:-40px; background: linear-gradient(35deg, transparent 47%, #fff 48%, #fff 52%, transparent 53%) 0 0/150px 86px, linear-gradient(-35deg, transparent 47%, #fff 48%, #fff 52%, transparent 53%) 0 0/170px 94px; opacity:.75; transform: rotate(-8deg) scale(1.25); }
.contact-map__label { position:absolute; left: 32%; top: 20%; font-size:24px; color:#232323; }
.contact-map__pin { position:absolute; left: 50%; top: 47%; width: 44px; height: 44px; border-radius:50% 50% 50% 0; background:var(--red); color:var(--white); transform: rotate(-45deg); display:grid; place-items:center; font-size:0; box-shadow: 0 8px 20px rgba(191,33,33,.3); }
.contact-map__pin::after { content:''; width:12px; height:12px; border-radius:50%; background:white; }
.contact-feature-row { margin-top: 44px; display:grid; grid-template-columns:repeat(3,1fr); border:1.5px solid rgba(13,2,2,.55); border-radius:18px; padding:26px 30px; }
.contact-feature-row article:not(:last-child) { border-right:1px solid rgba(13,2,2,.45); }
.contact-feature-row article { padding:0 48px 0 0; margin-right:48px; }
.contact-feature-row article:last-child { padding-right:0; margin-right:0; }
.contact-feature-row h2 { margin:0 0 12px; text-transform:uppercase; font-size:32px; line-height:.88; letter-spacing:-.05em; }
.contact-feature-row p { margin:0; color:var(--text-muted); line-height:1.25; }
.image-lightbox { position:fixed; inset:0; background:rgba(13,2,2,.82); z-index:90; display:grid; place-items:center; opacity:0; pointer-events:none; transition:opacity .28s ease; padding:40px; }
.image-lightbox.is-open { opacity:1; pointer-events:auto; }
.image-lightbox img { max-width:min(1100px, 92vw); max-height:82vh; border-radius:24px; background:white; transform:scale(.88); transition:transform .35s cubic-bezier(.22,.61,.36,1); box-shadow:0 30px 100px rgba(0,0,0,.42); }
.image-lightbox.is-open img { transform:scale(1); }
.image-lightbox__close { position:absolute; top:28px; right:32px; width:52px; height:52px; border-radius:50%; border:1px solid rgba(255,255,255,.4); background:rgba(255,255,255,.08); color:white; font-size:32px; cursor:pointer; }
.back-link { display:inline-flex; align-items:center; justify-content:center; min-height:44px; padding:0 24px; border-radius:999px; background:var(--red); color:white; margin-top:12px; }
@media (max-width: 1200px) {
  .inner-top .site-header { width: min(900px, calc(100% - 80px)); }
  .inner-top::before, .inner-top::after { display:none; }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .product-detail { grid-template-columns: 1fr; }
  .product-side-card { max-width: 560px; }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .contact-feature-row { grid-template-columns:1fr; gap:22px; }
  .contact-feature-row article, .contact-feature-row article:not(:last-child) { border-right:0; border-bottom:1px solid rgba(13,2,2,.3); margin:0; padding:0 0 22px; }
}
@media (max-width: 760px) {
  .inner-top, .inner-content { width: min(100% - 28px, 1840px); }
  .inner-top { min-height: 220px; margin-top: 16px; }
  .inner-top .site-header { width: calc(100% - 18px); height:auto; min-height: 70px; padding:10px 12px; flex-wrap:wrap; }
  .inner-top__title h1 { font-size: 54px; }
  .category-strip { grid-template-columns:1fr; }
  .category-strip__arrow { display:none; }
  .category-pill { flex-basis: 78%; }
  .product-grid, .product-grid--three { grid-template-columns: 1fr; }
  .product-gallery__main { min-height: 320px; }
  .contact-info-list article { grid-template-columns: 52px 1fr; }
  .contact-info-list span { width:44px; height:44px; font-size:22px; }
}

/* --------------------------------------------------------------------------
   Feroxo final reference pass — approved Figma system and responsive layouts
   -------------------------------------------------------------------------- */
:root {
  --page-bg: #FAFAFA;
  --surface: #FFFFFF;
  --dark: #0D0202;
  --red: #BF2121;
  --red-hover: #961A1A;
  --line: rgba(13, 2, 2, .24);
  --radius-card: 24px;
  --radius-pill: 25px;
  --page-width: min(1840px, calc(100vw - 80px));
}

body { font-family: Inter, Arial, Helvetica, sans-serif; }
.site-header { border-radius: 0 0 var(--radius-card) var(--radius-card); }
.request-button { border-radius: var(--radius-pill); background: var(--red); }
.request-button:hover, .request-button:focus-visible { background: var(--red-hover); }
.language__button { border-radius: var(--radius-pill); }
.site-menu-toggle { display: none; }

/* Home */
.home-page main { padding-bottom: 0; }
.home-page .hero { margin-top: 40px; }
.home-page .hero__media { border-radius: 24px; }
.home-page .hero__image { aspect-ratio: 1840 / 500; object-fit: cover; }
.home-page .strengths { margin-top: 32px; }
.home-page .strengths__accordion { min-height: 430px; }
.home-page .strength-card { border-radius: 18px; }
.home-page .strength-card:not(.is-active) { background: var(--red); }
.home-page .strength-card__tab-label { font-size: 15px; font-weight: 700; letter-spacing: .035em; }
.home-page .strength-card__content h2 { font-size: clamp(28px, 3vw, 52px); }
.home-page .strength-card__content p { max-width: 480px; }
.home-page .industries { margin-top: 28px; }
.home-page .industry-card { border-radius: 18px; }
.home-page .built-industry { margin-top: 28px; }
.home-page .latest-news { margin-top: 36px; }

/* Shared inner page header */
.inner-top { width: var(--page-width); margin: 40px auto 0; min-height: 280px; background: var(--red); border-radius: 18px; overflow: hidden; position: relative; }
.inner-top::before, .inner-top::after { display:none; }
.inner-top .site-header { top:0; left: 324px; width: calc(100% - 648px); height: 80px; container-type:inline-size; }
.inner-top .site-header__logo img { width: 146px; }
.inner-top .site-nav { gap: 27px; margin-left: 40px; }
.inner-top .site-nav__link { font-size: 13px; }
.inner-top .site-header__actions { gap: 9px; }
.inner-top .language__button { width: 36px; height:36px; }
.inner-top .request-button { width: 145px; height: 38px; font-size: 13px; }
.inner-top__title { height: 100%; display:flex; align-items:flex-end; padding: 0 32px 30px; }
.inner-top__title h1 { margin:0; color: var(--page-bg); font-size: clamp(50px, 6vw, 112px); line-height:.85; letter-spacing:-.055em; font-weight: 800; text-transform:uppercase; }
.inner-content { width: var(--page-width); margin: 34px auto 0; padding:0; }
.inner-page main { padding-bottom: 0; }
.breadcrumb { display:flex; align-items:center; flex-wrap:wrap; gap:10px; font-size: 14px; color: rgba(13,2,2,.72); margin: 22px 0 28px; }
.breadcrumb span:not(:last-child)::after { content:'›'; margin-left:10px; opacity:.55; }

/* Contact reference */
.contact-top { min-height: 280px; }
.contact-layout-v2 { display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items:center; }
.contact-info-list { display:grid; gap: 23px; }
.contact-info-list article { display:grid; grid-template-columns: 64px 1fr; gap:20px; align-items:center; }
.contact-info-list span { width:50px; height:50px; border:1px solid rgba(13,2,2,.28); border-radius:50%; display:grid; place-items:center; font-size:22px; }
.contact-info-list h2 { margin:0 0 5px; font-size: 22px; line-height:.92; letter-spacing:-.045em; font-weight:800; text-transform:uppercase; }
.contact-info-list p { margin:0; font-size: 14px; line-height:1.3; color:rgba(13,2,2,.78); }
.contact-map-v2 { min-height: 416px; overflow:hidden; border-radius: 22px; position:relative; background:#eee; }
.contact-map-v2 img { width:100%; height:100%; display:block; object-fit:cover; }
.contact-map-v2__pin { position:absolute; left:50%; top:50%; width:30px; height:30px; background:var(--red); border-radius:50% 50% 50% 0; transform:translate(-50%,-50%) rotate(-45deg); box-shadow:0 8px 18px rgba(191,33,33,.35); }
.contact-map-v2__pin::after { content:''; position:absolute; width:10px; height:10px; background:#fff; border-radius:50%; top:10px; left:10px; }
.contact-feature-row { margin-top: 40px; border-color: var(--line); border-radius:18px; padding: 28px 30px; }
.contact-feature-row h2 { font-size: 25px; }
.contact-feature-row p { font-size: 14px; }

/* Products */
.product-list-top { min-height: 280px; }
.products-page .category-strip { display:grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap:16px; margin: 0 0 30px; }
.products-page .category-pill { flex: initial; height: 180px; border-radius:16px; border:1px solid var(--line); }
.products-page .category-pill span { left:16px; bottom:14px; font-size:20px; }
.product-catalog { margin-top: 10px; }
.product-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.product-card { min-height: 0; border:1px solid var(--line); border-radius: 16px; background:var(--surface); }
.product-card__image-link { height: 245px; padding:12px; background:#fff; }
.product-card__body { padding: 0 16px 16px; }
.product-card h3 { font-size: 22px; line-height:.94; }
.product-card p { font-size:12px; margin:6px 0 12px; }
.product-card dl { font-size:12px; margin-bottom:14px; padding-top:8px; }
.product-card dl div { margin:6px 0; }
.product-card__request, .product-side-v2 button { height: 40px; border-radius:var(--radius-pill); font-size: 13px; }

/* Product detail */
.detail-top { display:none; }
.product-detail-page { padding-top: 26px; }
.product-detail-v2 { display:grid; grid-template-columns: minmax(0,1.08fr) minmax(0,.92fr) 240px; gap: 22px; align-items:start; }
.product-gallery-v2__main { width:100%; min-height: 620px; padding: 24px; background:var(--surface); border:1px solid var(--line); border-radius:16px; display:grid; place-items:center; cursor:zoom-in; }
.product-gallery-v2__main img { width:100%; height:100%; max-height: 570px; object-fit:contain; }
.product-gallery-v2__dots { display:flex; gap:7px; justify-content:center; margin:12px 0 0; }
.product-gallery-v2__dots span { width:7px; height:7px; border-radius:50%; background:rgba(13,2,2,.22); }
.product-gallery-v2__dots span:first-child { background:var(--red); }
.product-summary h1 { margin:0; font-size: 34px; line-height:.96; letter-spacing:-.04em; }
.product-summary__meta { margin: 6px 0 15px; font-size:13px; color:rgba(13,2,2,.72); }
.product-summary > p { font-size: 14px; line-height:1.35; color:rgba(13,2,2,.85); }
.product-badges { display:flex; flex-wrap:wrap; gap: 6px; margin: 13px 0 15px; }
.product-badges span { border:1px solid rgba(13,2,2,.32); color: var(--red); font-size: 10px; font-weight:800; padding:6px 8px; border-radius:14px; }
.product-accordions { gap:10px; }
.product-accordions details { border-color: var(--line); border-radius:14px; background:var(--surface); }
.product-accordions summary { font-size:14px; padding:15px 17px; }
.product-accordions ul { padding: 0 22px 16px 34px; font-size:13px; line-height:1.35; }
.product-side-v2 { border-radius:16px; min-height: 0; display:flex; flex-direction:column; gap:16px; }
.product-warranty { display:block; width: min(100%, 180px); margin:0 auto; }
.product-side-v2 button { margin:0; width:100%; border:0; background:var(--red); color:#fff; cursor:pointer; }
.product-side-v2 nav { display:grid; gap:10px; border:1px solid var(--line); border-radius:14px; padding: 14px; background:var(--surface); }
.product-side-v2 nav a { font-size:13px; padding-bottom:10px; border-bottom:1px solid rgba(13,2,2,.12); }
.product-side-v2 nav a:last-child { border:0; padding:0; }
.detail-section { max-width: 1496px; margin: 58px 0 0; }
.detail-section h2, .related-section h2 { margin: 0 0 16px; text-transform:uppercase; font-size: 27px; line-height:.96; letter-spacing:-.04em; }
.technical-specs { display:grid; grid-template-columns: repeat(4, 1fr); border:1px solid var(--line); border-radius: 14px; overflow:hidden; background:var(--surface); }
.technical-specs div { min-height: 75px; padding: 14px 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.technical-specs div:nth-child(4n) { border-right:0; }
.technical-specs div:nth-last-child(-n+4) { border-bottom:0; }
.technical-specs dt { font-size:12px; color:rgba(13,2,2,.76); }
.technical-specs dd { margin:8px 0 0; font-size:13px; font-weight:700; }
.equipment-detail__grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; border-bottom:1px solid var(--line); padding-bottom:20px; }
.equipment-detail h3 { margin:0 0 10px; font-size:18px; text-transform:uppercase; }
.equipment-detail ul, .equipment-detail p { margin:0; padding-left:18px; font-size:14px; line-height:1.4; }
.equipment-detail__custom { margin-top:20px; }
.detail-video { display:block; position:relative; overflow:hidden; border-radius:16px; background:#111; }
.detail-video img { display:block; width:100%; aspect-ratio:1496 / 720; object-fit:cover; }
.detail-video span, .article-video span { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:76px; height:76px; border:3px solid #fff; border-radius:50%; display:grid; place-items:center; color:#fff; font-size:34px; background:rgba(13,2,2,.22); }
.documents-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.document-card { min-height:90px; display:flex; align-items:center; gap:13px; border:1px solid var(--line); border-radius:14px; background:var(--surface); padding:18px; transition:border-color .2s ease, transform .2s ease; }
.document-card:hover { border-color:var(--red); transform:translateY(-2px); }
.document-card__icon { font-size:26px; }
.document-card strong { display:block; font-size:14px; }
.document-card small { display:block; color:rgba(13,2,2,.58); margin-top:4px; }
.document-card__actions { margin-left:auto; font-size:13px; }
.product-grid--accessories { grid-template-columns: repeat(4,minmax(0,1fr)); }
.related-section { margin-top: 60px; }

/* Resources */
.resources-top { min-height:280px; }
.resource-search { width:min(952px,100%); height:50px; margin: 0 auto 28px; border:1px solid var(--line); border-radius:var(--radius-pill); display:flex; align-items:center; gap:10px; padding:0 18px; background:var(--surface); }
.resource-search span { font-size:18px; opacity:.7; }
.resource-search input { width:100%; border:0; outline:0; background:transparent; font-size:14px; }
.resources-grid { display:grid; grid-template-columns:1fr 1fr; gap: 16px; }
.resource-card { min-height: 180px; border:1px solid var(--line); border-radius:14px; overflow:hidden; background:var(--surface); }
.resource-card a { display:grid; grid-template-columns: 240px 1fr; min-height:180px; height:100%; }
.resource-card img { width:100%; height:100%; min-height:180px; object-fit:cover; }
.resource-card div { padding: 25px 24px; display:flex; flex-direction:column; }
.resource-card h2 { margin:0; text-transform:uppercase; font-size:22px; line-height:.92; letter-spacing:-.04em; }
.resource-card p { margin:auto 0 0; font-size:12px; color:rgba(13,2,2,.58); }
.resource-card__tags { display:flex; flex-wrap:wrap; gap:8px; margin:14px 0 10px; }
.resource-card__tags span { display:inline-flex; align-items:center; height:24px; padding:0 10px; border-radius:999px; border:1px solid rgba(191,33,33,.35); background:rgba(191,33,33,.08); color:var(--red); font-size:10px; font-weight:500; line-height:1; white-space:nowrap; }

.pagination { display:flex; justify-content:center; align-items:center; gap:8px; margin: 28px 0 44px; }
.pagination button { width:32px; height:32px; border:1px solid var(--line); border-radius:50%; background:var(--surface); cursor:pointer; font-size:12px; }
.pagination button.is-active { border-color:var(--red); color:#fff; background:var(--red); }

/* Resource article */
.article-top { width:var(--page-width); margin: 18px auto 0; height:80px; position:relative; }
.article-top .site-header { left:324px; width:calc(100% - 648px); height:80px; position:absolute; background:var(--page-bg); border-radius:0 0 18px 18px; container-type:inline-size; }
.article-top .site-header__logo img { width:146px; }
.article-top .site-nav { gap:27px; margin-left:40px; }
.article-top .site-nav__link { font-size:13px; }
.article-top .site-header__actions { gap:9px; }
.article-top .language__button { width:36px; height:36px; }
.article-top .request-button { width:145px; height:38px; font-size:13px; }
.article-content { width:var(--page-width); margin:24px auto 0; }
.article-content > h1 { max-width:1800px; margin:20px 0 14px; font-size:clamp(44px, 5vw, 88px); line-height:.89; letter-spacing:-.06em; text-transform:uppercase; }
.article-meta { display:flex; flex-wrap:wrap; gap:10px; margin:18px 0 12px; }
.article-meta span { border:1px solid var(--red); color:var(--red); height:38px; padding:0 18px; display:inline-flex; align-items:center; border-radius:var(--radius-pill); font-size:13px; }
.article-meta span:last-child { width:38px; justify-content:center; padding:0; }
.article-date { margin:0 0 18px; font-size:13px; color:rgba(13,2,2,.62); }
.article-hero { width:100%; max-height:800px; object-fit:cover; border-radius:16px; display:block; }
.article-prose { max-width:1192px; margin:44px auto 0; }
.article-prose p { font-size:16px; line-height:1.35; margin:0 0 14px; }
.article-prose figure { margin:30px 0 22px; }
.article-prose figure img { display:block; width:100%; border-radius:16px; }
.article-prose figcaption { margin-top:8px; font-size:13px; color:rgba(13,2,2,.68); }
.article-prose h2 { margin:22px 0 16px; font-size:28px; line-height:.95; text-transform:uppercase; letter-spacing:-.04em; }
.article-video { max-width:1192px; margin:36px auto 0; }
.article-video a { display:block; position:relative; overflow:hidden; border-radius:16px; }
.article-video img { width:100%; display:block; aspect-ratio:1192 / 640; object-fit:cover; }
.article-prose--lower { margin-bottom:54px; }
.article-related { margin-top:54px; }
.article-related > h2 { text-transform:uppercase; font-size:28px; margin:0 0 18px; }
.article-related__grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.article-related__grid .resource-card { min-height:160px; }
.article-related__grid .resource-card a { min-height:160px; grid-template-columns:240px 1fr; }
.article-related__grid .resource-card img { min-height:160px; }

/* Reference request form */
.modal { z-index:100; }
.modal__box { width:min(1632px, calc(100vw - 40px)); max-width:none; border-radius:24px; padding:64px; display:grid; grid-template-columns: .9fr 1.1fr; gap:76px; background:var(--page-bg); border:1px solid rgba(13,2,2,.72); box-shadow:0 30px 100px rgba(0,0,0,.32); }
.modal__close { top:-1px; right:-1px; width:50px; height:50px; border:1px solid rgba(255,255,255,.5); border-radius:50%; background:rgba(13,2,2,.55); color:#fff; font-size:30px; }
.request-modal__intro h2 { margin:0; font-size:clamp(48px, 6vw, 112px); line-height:.85; letter-spacing:-.06em; }
.request-modal__intro p { margin:22px 0 0; font-size:20px; line-height:1.1; max-width:600px; }
.request-form { display:block; }
.request-form__grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.request-form input, .request-form textarea { width:100%; border:1px solid rgba(13,2,2,.65); border-radius:var(--radius-pill); background:var(--surface); color:var(--dark); padding:0 22px; min-height:50px; outline:0; }
.request-form textarea { margin-top:14px; height:170px; padding:18px 22px; border-radius:14px; resize:vertical; }
.request-form__equipment { display:grid; grid-template-columns: 1fr auto; gap:14px; align-items:center; margin-top:14px; min-height:92px; border:1px solid rgba(13,2,2,.65); border-radius:14px; padding: 14px 16px; position:relative; }
.request-form__equipment > span { position:absolute; top:-9px; left:16px; background:var(--page-bg); padding:0 5px; font-size:12px; }
.request-form__equipment input { border:0; padding:0; min-height:40px; }
.request-form__equipment a { min-width:150px; height:42px; display:inline-flex; align-items:center; justify-content:center; border:1px solid rgba(13,2,2,.65); border-radius:var(--radius-pill); font-size:13px; }
.request-form__bottom { display:flex; align-items:center; gap:24px; margin-top:14px; }
.request-form__bottom > button { width:180px; height:50px; border:0; border-radius:var(--radius-pill); background:var(--red); color:#fff; cursor:pointer; }
.request-form__privacy { display:flex; align-items:flex-start; gap:9px; font-size:11px; line-height:1.2; color:rgba(13,2,2,.88); }
.request-form__privacy input { width:14px; min-height:14px; margin-top:1px; flex:0 0 auto; }
.request-form__privacy a { color:var(--red); text-decoration:underline; }

/* mobile: all pages */
@media (max-width: 1100px) {
  :root { --page-width: min(100% - 32px, 1840px); }
  .inner-top .site-header, .article-top .site-header { left:28px; width:calc(100% - 56px); }
  .products-page .category-strip { grid-template-columns:repeat(2,1fr); }
  .product-grid, .product-grid--accessories { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .product-detail-v2 { grid-template-columns:1fr 1fr; }
  .product-side-v2 { grid-column: 1 / -1; display:grid; grid-template-columns: 180px 1fr; align-items:start; }
  .product-side-v2 nav { grid-column:2; grid-row:1 / span 2; }
  .technical-specs { grid-template-columns: repeat(2, 1fr); }
  .technical-specs div:nth-child(4n) { border-right:1px solid var(--line); }
  .technical-specs div:nth-child(2n) { border-right:0; }
  .technical-specs div:nth-last-child(-n+4) { border-bottom:1px solid var(--line); }
  .technical-specs div:nth-last-child(-n+2) { border-bottom:0; }
  .contact-layout-v2 { grid-template-columns:1fr; }
}
@media (max-width: 760px) {
  :root { --page-width: calc(100% - 20px); }
  body { min-width:0; }
  .home-page .hero, .hero, .strengths, .industries, .built-industry { width:var(--page-width); }
  .home-page .hero { margin-top:10px; }
  .home-page .hero__image { aspect-ratio: 1.35 / 1; }
  .site-header, .inner-top .site-header, .article-top .site-header { position:absolute; top:0; left:10px; width:calc(100% - 20px); height:62px; min-height:62px; padding:0 12px; border-radius:0 0 16px 16px; container-type: normal; }
  .site-header__logo img, .inner-top .site-header__logo img, .article-top .site-header__logo img { width:82px; }
  .site-header__actions { margin-left:auto; gap:7px; }
  .site-header .language__button, .inner-top .language__button, .article-top .language__button { width:30px; height:30px; }
  .site-header .request-button, .inner-top .request-button, .article-top .request-button { width:auto; min-width:88px; height:30px; padding:0 10px; font-size:10px; }
  .site-menu-toggle { display:flex; flex-direction:column; justify-content:center; align-items:center; gap:4px; width:34px; height:34px; margin-left:12px; border:0; background:transparent; cursor:pointer; }
  .site-menu-toggle span { width:20px; height:2px; background:var(--dark); transition:transform .2s ease, opacity .2s ease; }
  .site-header.is-menu-open .site-menu-toggle span:nth-child(1) { transform:translateY(6px) rotate(45deg); }
  .site-header.is-menu-open .site-menu-toggle span:nth-child(2) { opacity:0; }
  .site-header.is-menu-open .site-menu-toggle span:nth-child(3) { transform:translateY(-6px) rotate(-45deg); }
  .site-nav, .inner-top .site-nav, .article-top .site-nav { display:none; position:absolute; left:0; top:62px; width:100%; margin:0; padding:14px; border-radius:0 0 16px 16px; background:var(--page-bg); box-shadow:0 14px 30px rgba(13,2,2,.13); z-index:10; }
  .site-header.is-menu-open .site-nav { display:grid; gap:0; }
  .site-nav__link, .inner-top .site-nav__link, .article-top .site-nav__link { display:block; padding:12px 8px; font-size:15px; border-bottom:1px solid rgba(13,2,2,.08); }
  .site-nav__link:last-child { border:0; }
  .hero__slider-controls { left:50%; transform:translateX(-50%); bottom:12px; min-width:160px; }
  .home-page .strengths { margin-top:16px; display:block; }
  .home-page .strengths__accordion { min-height:auto; overflow-x:auto; padding:0 2px 8px; }
  .home-page .strength-card, .home-page .strength-card.is-active { flex:0 0 270px; height:330px; border-radius:16px; }
  .home-page .strength-card__content { padding:20px; }
  .home-page .strength-card__content h2 { font-size:27px; }
  .home-page .strengths__title, .home-page .industries__title { display:none; }
  .home-page .industries { margin-top:18px; display:block; }
  .home-page .industries__side { min-height:0; display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; }
  .home-page .industries__side::before { content:'INDUSTRIES WE SERVE'; font-size:26px; font-weight:800; line-height:.9; letter-spacing:-.04em; }
  .home-page .industries__controls { display:flex; }
  .home-page .industry-card { flex:0 0 190px; height:250px; }
  .home-page .built-industry { grid-template-columns:1fr; gap:12px; margin-top:18px; }
  .home-page .built-industry__text-panel, .home-page .built-industry__video-card { height:250px; border-radius:16px; }
  .home-page .latest-news { margin-top:26px; width:var(--page-width); }
  .latest-news__heading h2 { font-size:30px; }
  .latest-news__grid { grid-template-columns:1fr; }
  .latest-news__feature { min-height:320px; }
  .latest-news__stack { grid-template-columns:1fr; }
  .inner-top { min-height:180px; margin-top:10px; border-radius:16px; }
  .inner-top__title { padding:0 16px 18px; }
  .inner-top__title h1 { font-size:clamp(42px, 13vw, 68px); }
  .inner-content { margin-top:18px; }
  .contact-layout-v2 { gap:24px; }
  .contact-info-list { gap:17px; }
  .contact-info-list article { grid-template-columns:46px 1fr; gap:12px; }
  .contact-info-list span { width:38px; height:38px; font-size:17px; }
  .contact-info-list h2 { font-size:18px; }
  .contact-info-list p { font-size:12px; }
  .contact-map-v2 { min-height:250px; border-radius:16px; }
  .contact-feature-row { margin-top:22px; padding:20px; gap:18px; }
  .contact-feature-row h2 { font-size:21px; }
  .contact-feature-row p { font-size:13px; }
  .products-page .category-strip { grid-template-columns:1fr 1fr; gap:10px; margin-bottom:18px; }
  .products-page .category-pill { height:130px; }
  .products-page .category-pill span { font-size:14px; left:10px; bottom:10px; }
  .product-grid, .product-grid--accessories { grid-template-columns:1fr; gap:12px; }
  .product-card__image-link { height:240px; }
  .product-card h3 { font-size:21px; }
  .product-detail-page { padding-top:0; }
  .product-detail-v2 { grid-template-columns:1fr; gap:18px; }
  .product-gallery-v2__main { min-height:310px; padding:14px; }
  .product-summary h1 { font-size:30px; }
  .product-side-v2 { display:flex; }
  .product-warranty { width:142px; }
  .technical-specs { grid-template-columns:1fr 1fr; }
  .technical-specs div { min-height:70px; padding:11px; }
  .equipment-detail__grid, .documents-grid { grid-template-columns:1fr; gap:14px; }
  .detail-section { margin-top:36px; }
  .detail-section h2, .related-section h2 { font-size:25px; }
  .document-card { min-height:76px; padding:13px; }
  .document-card__actions { font-size:11px; }
  .resources-grid, .article-related__grid { grid-template-columns:1fr; gap:10px; }
  .resource-search { height:42px; margin-bottom:16px; }
  .resource-card, .resource-card a { min-height:130px; }
  .resource-card a { grid-template-columns:130px 1fr; }
  .resource-card img { min-height:130px; }
  .resource-card div { padding:15px; }
  .resource-card h2 { font-size:17px; }
  .resource-card p { font-size:10px; }
  .resource-card__tags { gap:6px; margin:10px 0 8px; }
  .resource-card__tags span { height:20px; padding:0 8px; font-size:9px; }
  .article-top { width:var(--page-width); height:62px; margin-top:10px; }
  .article-content { width:var(--page-width); margin-top:16px; }
  .article-content > h1 { font-size:clamp(36px, 10vw, 56px); }
  .article-meta { gap:6px; }
  .article-meta span { height:32px; font-size:11px; padding:0 12px; }
  .article-hero { height:300px; object-fit:cover; border-radius:14px; }
  .article-prose { margin-top:28px; }
  .article-prose p { font-size:14px; }
  .article-prose h2, .article-related > h2 { font-size:24px; }
  .article-video span, .detail-video span { width:58px; height:58px; font-size:26px; }
  .article-related__grid .resource-card, .article-related__grid .resource-card a, .article-related__grid .resource-card img { min-height:130px; }
  .modal__box { width:calc(100vw - 20px); max-height:calc(100vh - 20px); overflow:auto; padding:46px 20px 22px; grid-template-columns:1fr; gap:22px; border-radius:18px; }
  .request-modal__intro h2 { font-size:52px; }
  .request-modal__intro p { margin-top:10px; font-size:15px; }
  .request-form__grid { grid-template-columns:1fr; gap:9px; }
  .request-form__equipment { grid-template-columns:1fr; gap:8px; }
  .request-form__equipment a { width:100%; }
  .request-form textarea { height:120px; }
  .request-form__bottom { display:grid; gap:12px; }
  .request-form__bottom > button { width:100%; }
}

/* Product detail retains the shared navigation header on every viewport. */
.detail-top { display:block; width:var(--page-width); height:80px; min-height:80px; margin:18px auto 0; background:transparent; border-radius:0; overflow:visible; position:relative; }
.detail-top .site-header { position:absolute; top:0; left:324px; width:calc(100% - 648px); height:80px; container-type:inline-size; }
.detail-top .site-header__logo img { width:146px; }
.detail-top .site-nav { gap:27px; margin-left:40px; }
.detail-top .site-nav__link { font-size:13px; }
.detail-top .site-header__actions { gap:9px; }
.detail-top .language__button { width:36px; height:36px; }
.detail-top .request-button { width:145px; height:38px; font-size:13px; }
@media (max-width:1100px) { .detail-top .site-header { left:28px; width:calc(100% - 56px); } }
@media (max-width:760px) { .detail-top { width:var(--page-width); height:62px; min-height:62px; margin-top:10px; } .detail-top .site-header { top:0; left:10px; width:calc(100% - 20px); height:62px; min-height:62px; } .detail-top .site-header__logo img { width:82px; } .detail-top .language__button { width:30px; height:30px; } .detail-top .request-button { width:auto; min-width:88px; height:30px; font-size:10px; } }

/* ========================================================================
   HOME — Desktop - 15 parity pass
   Source of truth: Project: main / Desktop - 15 only.
   These rules are deliberately scoped to the landing page.
   ======================================================================== */
.home-page {
  --home-width: min(1840px, calc(100vw - 80px));
  --home-card-radius: 24px;
  --home-red: #BF2121;
  --home-dark: #0D0202;
  --home-surface: #FAFAFA;
}

.home-page .hero,
.home-page .strengths,
.home-page .built-industry,
.home-page .latest-news,
.home-page .site-footer {
  width: var(--home-width);
}

.home-page .hero {
  position: relative;
  height: min(500px, calc(var(--home-width) * .271739));
  min-height: 300px;
  margin: 40px auto 0;
  container-type: inline-size;
}

.home-page .hero__media,
.home-page .hero__track,
.home-page .hero__slide,
.home-page .hero__image {
  width: 100%;
  height: 100%;
}

.home-page .hero__media {
  overflow: hidden;
  border-radius: var(--home-card-radius);
  background: #D9D9D9;
}

.home-page .hero__track { display: flex; }
.home-page .hero__slide { flex: 0 0 100%; }
.home-page .hero__slide .hero__image {
  display: block;
  aspect-ratio: auto;
  object-fit: fill;
  transform: none;
  transition: filter .25s ease;
}
.home-page .hero__slide:hover .hero__image,
.home-page .hero__slide:focus-visible .hero__image { transform: none; filter: brightness(.97); }
.home-page .hero__slide::after { display: none; }
.home-page .hero__video { border-radius: var(--home-card-radius); }

.home-page .site-header {
  top: 0;
  left: calc(324 / 1840 * 100cqw);
  width: calc(1192 / 1840 * 100cqw);
  height: calc(80 / 1840 * 100cqw);
  min-height: 0;
  padding: 0 calc(24 / 1840 * 100cqw);
  border-radius: 0 0 var(--home-card-radius) var(--home-card-radius);
  background: var(--home-surface);
}
.home-page .site-header__logo img { width: calc(146 / 1840 * 100cqw); }
.home-page .site-nav { gap: calc(24 / 1840 * 100cqw); margin-left: calc(48 / 1840 * 100cqw); }
.home-page .site-nav__link { font-size: calc(18 / 1840 * 100cqw); line-height: 1; }
.home-page .site-header__actions { gap: calc(14 / 1840 * 100cqw); }
.home-page .language__button {
  width: calc(50 / 1840 * 100cqw);
  height: calc(50 / 1840 * 100cqw);
  border: 1px solid var(--home-dark);
  border-radius: 50%;
}
.home-page .request-button {
  width: calc(185 / 1840 * 100cqw);
  height: calc(50 / 1840 * 100cqw);
  border-radius: 25px;
  background: var(--home-red);
  color: #FAFAFA;
  font-size: calc(18 / 1840 * 100cqw);
}
.home-page .request-button:hover,
.home-page .request-button:focus-visible { background: #961A1A; }

.home-page .hero__slider-controls {
  position: absolute;
  left: 50%;
  bottom: calc(32 / 1840 * 100cqw);
  width: calc(152 / 1840 * 100cqw);
  min-width: 90px;
  height: calc(8 / 1840 * 100cqw);
  min-height: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(8 / 1840 * 100cqw);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  transform: translateX(-50%);
  backdrop-filter: none;
}
.home-page .hero__slider-dots button {
  width: calc(8 / 1840 * 100cqw);
  min-width: 5px;
  height: calc(8 / 1840 * 100cqw);
  min-height: 5px;
  padding: 0;
  border: 1px solid #FAFAFA;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}
.home-page .hero__slider-dots button.is-active {
  width: calc(32 / 1840 * 100cqw);
  min-width: 20px;
  border-radius: 999px;
  background: #FAFAFA;
}
.home-page .hero__side-arrow {
  position: absolute;
  top: 50%;
  z-index: 7;
  width: calc(50 / 1840 * 100cqw);
  min-width: 30px;
  height: calc(50 / 1840 * 100cqw);
  min-height: 30px;
  display: grid;
  place-items: center;
  padding: 0 0 .07em;
  border: 0;
  border-radius: 50%;
  background: var(--home-red);
  color: #FAFAFA;
  font-size: calc(28 / 1840 * 100cqw);
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}
.home-page .hero__side-arrow--prev { left: calc(82 / 1840 * 100cqw); }
.home-page .hero__side-arrow--next { right: calc(32 / 1840 * 100cqw); }
.home-page .hero__side-arrow:hover,
.home-page .hero__side-arrow:focus-visible { background: #961A1A; }

/* Strengths */
.home-page .strengths {
  container-type: inline-size;
  display: flex;
  align-items: stretch;
  gap: calc(16 / 1840 * 100cqw);
  height: calc(460 / 1840 * 100cqw);
  min-height: 250px;
  margin: calc(40 / 1840 * 100vw) auto 0;
}
.home-page .strengths__accordion {
  flex: 0 0 calc(1580 / 1840 * 100cqw);
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: flex;
  gap: calc(16 / 1840 * 100cqw);
}
.home-page .strength-card {
  flex: 0 0 calc(132 / 1840 * 100cqw);
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: var(--home-card-radius);
  background: var(--home-red);
  box-shadow: none;
}
.home-page .strength-card.is-active { flex-basis: calc(544 / 1840 * 100cqw); }
.home-page .strength-card:not(.is-active):hover,
.home-page .strength-card:focus-visible { transform: none; box-shadow: none; }
.home-page .strength-card__image { object-fit: cover; transform: none; }
.home-page .strength-card.is-active .strength-card__image { transform: none; }
.home-page .strength-card__shade {
  opacity: 0;
  background: linear-gradient(180deg, rgba(13,2,2,0) 0%, rgba(13,2,2,.60) 87.02%);
}
.home-page .strength-card.is-active .strength-card__shade { opacity: 1; }
.home-page .strength-card__content {
  left: calc(32 / 1840 * 100cqw);
  right: calc(32 / 1840 * 100cqw);
  bottom: calc(32 / 1840 * 100cqw);
  color: #FAFAFA;
}
.home-page .strength-card__content h2 {
  margin: 0;
  font-size: calc(32 / 1840 * 100cqw);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}
.home-page .strength-card__eyebrow {
  display: block;
  margin-top: calc(6 / 1840 * 100cqw);
  font-size: calc(14 / 1840 * 100cqw);
  line-height: 1;
  font-weight: 400;
}
.home-page .strength-card__content p {
  max-width: none;
  margin: calc(12 / 1840 * 100cqw) 0 0;
  font-size: calc(18 / 1840 * 100cqw);
  line-height: 1;
  font-weight: 400;
}
.home-page .strength-card__tab-label {
  color: #FAFAFA;
  font-size: calc(32 / 1840 * 100cqw);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}
.home-page .strengths__title {
  flex: 0 0 calc(228 / 1840 * 100cqw);
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(72 / 1840 * 100cqw);
  line-height: .85;
  font-weight: 700;
  letter-spacing: 0;
}

/* Industries */
.home-page .industries {
  width: min(1824px, calc(100vw - 96px));
  container-type: inline-size;
  display: flex;
  align-items: flex-start;
  gap: calc(16 / 1824 * 100cqw);
  height: calc(530 / 1824 * 100cqw);
  min-height: 280px;
  margin: calc(40 / 1840 * 100vw) auto 0;
  transform: translateX(8px);
}
.home-page .industries__side {
  flex: 0 0 calc(228 / 1824 * 100cqw);
  min-height: 0;
  height: 100%;
  padding: 0;
}
.home-page .industries__title {
  font-size: calc(72 / 1824 * 100cqw);
  line-height: .85;
  font-weight: 700;
  letter-spacing: 0;
}
.home-page .industries__controls { gap: calc(16 / 1824 * 100cqw); padding-bottom: 0; }
.home-page .industries__control {
  width: calc(50 / 1824 * 100cqw);
  height: calc(50 / 1824 * 100cqw);
  min-width: 30px;
  min-height: 30px;
  border-color: rgba(13,2,2,.24);
  color: rgba(13,2,2,.48);
  background: transparent;
  font-size: calc(28 / 1824 * 100cqw);
}
.home-page .industries__viewport {
  flex: 0 0 calc(1580 / 1824 * 100cqw);
  height: 100%;
  border-radius: var(--home-card-radius);
}
.home-page .industries__track { gap: calc(16 / 1824 * 100cqw); height: 100%; }
.home-page .industry-card {
  flex: 0 0 calc(400 / 1824 * 100cqw);
  width: calc(400 / 1824 * 100cqw);
  height: 100%;
  min-width: 0;
  min-height: 0;
  border-radius: var(--home-card-radius);
  box-shadow: none;
}
.home-page .industry-card::after {
  inset: 0;
  height: auto;
  background: linear-gradient(180deg, rgba(13,2,2,0) 0%, rgba(13,2,2,.60) 87.02%);
}
.home-page .industry-card h3 {
  left: calc(40 / 1824 * 100cqw);
  right: calc(40 / 1824 * 100cqw);
  bottom: calc(40 / 1824 * 100cqw);
  font-size: calc(32 / 1824 * 100cqw);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}

/* Built for Industry */
.home-page .built-industry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(24 / 1840 * 100cqw);
  height: calc(430 / 1840 * 100cqw);
  min-height: 240px;
  margin: calc(40 / 1840 * 100vw) auto 0;
}
.home-page .built-industry__text-panel,
.home-page .built-industry__video-card {
  height: 100%;
  min-height: 0;
  border-radius: var(--home-card-radius);
}
.home-page .built-industry__text-panel {
  border: 1px solid rgba(13,2,2,.24);
  background: var(--home-surface);
}
.home-page .built-industry__text-panel::after {
  width: calc(225 / 908 * 100%);
  min-width: 0;
  height: calc(82 / 430 * 100%);
  bottom: -1px;
  border-top-left-radius: var(--home-card-radius);
  border-top-right-radius: var(--home-card-radius);
  background: var(--home-surface);
}
.home-page .built-industry__content {
  position: absolute;
  top: calc(32 / 1840 * 100cqw);
  left: calc(32 / 1840 * 100cqw);
  right: calc(32 / 1840 * 100cqw);
  width: auto;
  transform: none;
}
.home-page .built-industry__content h2 {
  margin: 0;
  font-size: calc(112 / 1840 * 100cqw);
  line-height: .85;
  font-weight: 700;
  letter-spacing: 0;
}
.home-page .built-industry__content p {
  max-width: calc(576 / 1840 * 100cqw);
  margin: calc(22 / 1840 * 100cqw) auto 0;
  font-size: calc(24 / 1840 * 100cqw);
  line-height: 1;
  letter-spacing: 0;
}
.home-page .built-industry__button {
  left: 50%;
  bottom: calc(16 / 1840 * 100cqw);
  width: calc(193 / 1840 * 100cqw);
  min-width: 110px;
  height: calc(50 / 1840 * 100cqw);
  min-height: 34px;
  border-radius: 25px;
  font-size: calc(18 / 1840 * 100cqw);
  background: var(--home-red);
}
.home-page .built-industry__video-card { box-shadow: none; }
.home-page .built-industry__video { transform: none; }
.home-page .built-industry__video-card:hover .built-industry__video { transform: none; filter: brightness(.97); }
.home-page .built-industry__video-card::before { background: rgba(191,33,33,.5); }
.home-page .built-industry__play {
  width: calc(160 / 1840 * 100cqw);
  min-width: 70px;
  height: calc(160 / 1840 * 100cqw);
  min-height: 70px;
}

/* Latest News & Articles */
.home-page .latest-news {
  container-type: inline-size;
  margin: calc(40 / 1840 * 100vw) auto 0;
}
.home-page .latest-news__heading {
  height: calc(95 / 1840 * 100cqw);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 calc(24 / 1840 * 100cqw);
}
.home-page .latest-news__heading h2 {
  margin: 0;
  color: var(--home-dark);
  font-size: calc(112 / 1840 * 100cqw);
  line-height: .85;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.home-page .latest-news__heading a {
  width: calc(123 / 1840 * 100cqw);
  min-width: 85px;
  height: calc(50 / 1840 * 100cqw);
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--home-dark);
  border-radius: 25px;
  color: var(--home-dark);
  background: transparent;
  font-size: calc(18 / 1840 * 100cqw);
}
.home-page .latest-news__heading a:hover,
.home-page .latest-news__heading a:focus-visible { color: var(--home-red); border-color: var(--home-red); }
.home-page .latest-news__grid {
  display: grid;
  grid-template-columns: calc(1240 / 1840 * 100cqw) calc(594 / 1840 * 100cqw);
  gap: calc(16 / 1840 * 100cqw);
  height: calc(752 / 1840 * 100cqw);
}
.home-page .latest-news__feature,
.home-page .latest-news__stack a {
  position: relative;
  overflow: hidden;
  border-radius: var(--home-card-radius);
  color: #FAFAFA;
  background: #D9D9D9;
}
.home-page .latest-news__feature img,
.home-page .latest-news__stack img { width:100%; height:100%; display:block; object-fit:cover; }
.home-page .latest-news__feature::after,
.home-page .latest-news__stack a::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(13,2,2,0) 0%, rgba(13,2,2,.60) 87.02%);
}
.home-page .latest-news__feature > span {
  position: absolute;
  z-index: 1;
  left: calc(37 / 1240 * 100%);
  right: calc(37 / 1240 * 100%);
  bottom: calc(32 / 752 * 100%);
  font-size: calc(56 / 1840 * 100cqw);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}
.home-page .latest-news__stack { display:grid; grid-template-rows: repeat(3, 1fr); gap: calc(16 / 1840 * 100cqw); }
.home-page .latest-news__stack a > span {
  position:absolute;
  z-index:1;
  top: calc(72 / 240 * 100%);
  left: calc(24 / 594 * 100%);
  color:#FAFAFA;
  font-size: calc(32 / 1840 * 100cqw);
  line-height: 1;
  font-weight:600;
  letter-spacing:0;
}
.home-page .latest-news__feature:hover img,
.home-page .latest-news__stack a:hover img { transform: none; filter: brightness(.96); }

/* Footer */
.home-page .site-footer {
  position: relative;
  display: block;
  height: calc(366 / 1840 * 100cqw);
  min-height: 220px;
  margin: calc(40 / 1840 * 100vw) auto 40px;
  padding: 0;
  border-radius: var(--home-card-radius);
  background: var(--home-red);
  color: #FAFAFA;
  overflow: hidden;
}
.home-page .site-footer__brand {
  position: absolute;
  top: calc(32 / 1840 * 100cqw);
  left: calc(32 / 1840 * 100cqw);
  width: calc(243 / 1840 * 100cqw);
  display: block;
}
.home-page .site-footer__logo { width: 100%; min-width:0; }
.home-page .site-footer__logo img { width:100%; height:auto; }
.home-page .site-footer__brand p {
  margin: calc(12 / 1840 * 100cqw) 0 0;
  font-size: calc(14 / 1840 * 100cqw);
  line-height: 1;
  color: #FAFAFA;
}
.home-page .site-footer__socials { margin-top: calc(24 / 1840 * 100cqw); gap: calc(8 / 1840 * 100cqw); }
.home-page .site-footer__socials a {
  width: calc(40 / 1840 * 100cqw);
  height: calc(40 / 1840 * 100cqw);
  min-width: 20px;
  min-height: 20px;
  display: block;
  border-radius: 50%;
  background-color: transparent;
  background-image: url('../assets/footer/social-icons.svg');
  background-repeat:no-repeat;
  background-size:460% 100%;
}
.home-page .site-footer__socials a:nth-child(1) { background-position:0% 50%; }
.home-page .site-footer__socials a:nth-child(2) { background-position:33.333% 50%; }
.home-page .site-footer__socials a:nth-child(3) { background-position:66.666% 50%; }
.home-page .site-footer__socials a:nth-child(4) { background-position:100% 50%; }
.home-page .site-footer__nav {
  position: absolute;
  top: calc(32 / 1840 * 100cqw);
  left: calc(652 / 1840 * 100cqw);
  display: grid;
  grid-template-columns: repeat(3, calc(184 / 1840 * 100cqw));
  column-gap: calc(264 / 1840 * 100cqw);
  padding: 0;
  gap: 0;
}
.home-page .site-footer__column { gap: calc(8 / 1840 * 100cqw); }
.home-page .site-footer__column h3 {
  margin:0 0 calc(4 / 1840 * 100cqw);
  font-size: calc(18 / 1840 * 100cqw);
  line-height: 1;
  font-weight:600;
}
.home-page .site-footer__column a {
  color:#FAFAFA;
  font-size: calc(18 / 1840 * 100cqw);
  line-height: 1;
}
.home-page .site-footer__copy {
  left: calc(32 / 1840 * 100cqw);
  bottom: calc(32 / 1840 * 100cqw);
  color:#FAFAFA;
  font-size: calc(14 / 1840 * 100cqw);
  line-height:1;
}

/* Mobile landing page. The desktop layout above remains untouched for >= 761px. */
@media (max-width: 760px) {
  .home-page { --home-width: calc(100vw - 20px); }
  .home-page .hero { height: clamp(250px, 66vw, 360px); min-height:0; margin-top:10px; }
  .home-page .hero__media { border-radius:16px; }
  .home-page .hero__slide .hero__image { object-fit:cover; }
  .home-page .site-header { left:10px; width:calc(100% - 20px); height:62px; padding:0 12px; border-radius:0 0 16px 16px; }
  .home-page .site-header__logo img { width:82px; }
  .home-page .site-menu-toggle { display:inline-flex; order:3; margin-left:8px; }
  .home-page .site-header__actions { gap:7px; }
  .home-page .language__button { width:30px; height:30px; }
  .home-page .request-button { width:auto; min-width:88px; height:30px; padding:0 10px; font-size:10px; }
  .home-page .site-nav { display:none; }
  .home-page .site-header.is-menu-open { height:auto; min-height:62px; padding-bottom:12px; align-items:center; flex-wrap:wrap; }
  .home-page .site-header.is-menu-open .site-nav { order:4; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); width:100%; gap:10px 16px; margin:12px 0 0; }
  .home-page .site-header.is-menu-open .site-nav__link { font-size:13px; }
  .home-page .hero__side-arrow { width:36px; height:36px; min-width:0; min-height:0; font-size:24px; }
  .home-page .hero__side-arrow--prev { left:14px; }
  .home-page .hero__side-arrow--next { right:14px; }
  .home-page .hero__slider-controls { bottom:14px; min-width:74px; gap:6px; }
  .home-page .hero__slider-dots button { width:6px; height:6px; min-width:0; min-height:0; }
  .home-page .hero__slider-dots button.is-active { width:22px; min-width:0; }

  .home-page .strengths { height:auto; min-height:0; margin-top:24px; display:block; }
  .home-page .strengths__title { display:none; }
  .home-page .strengths__accordion { flex:none; width:100%; height:auto; display:grid; grid-template-columns:1fr; gap:10px; }
  .home-page .strength-card, .home-page .strength-card.is-active { flex:none; width:100%; height:260px; }
  .home-page .strength-card:not(.is-active) { height:62px; }
  .home-page .strength-card:not(.is-active) .strength-card__image,
  .home-page .strength-card:not(.is-active) .strength-card__shade,
  .home-page .strength-card:not(.is-active) .strength-card__content { display:none; }
  .home-page .strength-card__content { left:20px; right:20px; bottom:20px; }
  .home-page .strength-card__content h2 { font-size:24px; }
  .home-page .strength-card__eyebrow { font-size:12px; margin-top:5px; }
  .home-page .strength-card__content p { font-size:13px; line-height:1.18; margin-top:10px; }
  .home-page .strength-card__tab-label { font-size:18px; }

  .home-page .industries { width:var(--home-width); height:auto; min-height:0; margin-top:24px; transform:none; display:block; }
  .home-page .industries__side { height:auto; width:100%; display:flex; flex-direction:row; align-items:center; justify-content:space-between; margin-bottom:12px; }
  .home-page .industries__title { writing-mode:initial; transform:none; font-size:34px; line-height:.9; text-align:left; }
  .home-page .industries__controls { width:auto; gap:8px; }
  .home-page .industries__control { width:36px; height:36px; min-width:0; min-height:0; font-size:24px; }
  .home-page .industries__viewport { width:100%; height:270px; border-radius:16px; }
  .home-page .industries__track { gap:10px; }
  .home-page .industry-card { flex:0 0 72%; width:72%; height:270px; border-radius:16px; }
  .home-page .industry-card h3 { left:16px; right:16px; bottom:18px; font-size:22px; }

  .home-page .built-industry { height:auto; min-height:0; grid-template-columns:1fr; gap:12px; margin-top:24px; }
  .home-page .built-industry__text-panel, .home-page .built-industry__video-card { height:270px; border-radius:16px; }
  .home-page .built-industry__content { top:28px; left:20px; right:20px; }
  .home-page .built-industry__content h2 { font-size:48px; }
  .home-page .built-industry__content p { max-width:330px; margin-top:14px; font-size:15px; }
  .home-page .built-industry__button { bottom:16px; width:150px; height:40px; min-width:0; min-height:0; font-size:13px; }
  .home-page .built-industry__play { width:72px; height:72px; min-width:0; min-height:0; }

  .home-page .latest-news { margin-top:24px; }
  .home-page .latest-news__heading { height:auto; margin-bottom:12px; align-items:center; }
  .home-page .latest-news__heading h2 { font-size:38px; line-height:.88; }
  .home-page .latest-news__heading a { width:80px; height:34px; min-width:0; min-height:0; font-size:12px; }
  .home-page .latest-news__grid { display:grid; grid-template-columns:1fr; height:auto; gap:12px; }
  .home-page .latest-news__feature { min-height:280px; border-radius:16px; }
  .home-page .latest-news__feature > span { left:20px; right:20px; bottom:20px; font-size:26px; }
  .home-page .latest-news__stack { grid-template-columns:1fr; grid-template-rows:repeat(3,160px); gap:10px; }
  .home-page .latest-news__stack a { border-radius:16px; }
  .home-page .latest-news__stack a > span { top:36px; left:18px; font-size:20px; }

  .home-page .site-footer { height:auto; min-height:0; margin:24px auto 20px; padding:28px 22px 66px; border-radius:16px; }
  .home-page .site-footer__brand { position:static; width:auto; }
  .home-page .site-footer__logo { width:160px; }
  .home-page .site-footer__brand p { margin-top:8px; font-size:12px; }
  .home-page .site-footer__socials { margin-top:18px; gap:8px; }
  .home-page .site-footer__socials a { width:28px; height:28px; min-width:0; min-height:0; }
  .home-page .site-footer__nav { position:static; display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:26px; }
  .home-page .site-footer__column { gap:7px; }
  .home-page .site-footer__column h3 { font-size:13px; margin-bottom:2px; }
  .home-page .site-footer__column a { font-size:12px; }
  .home-page .site-footer__copy { left:22px; bottom:22px; font-size:10px; }
}

/* ========================================================================
   HOME TEST PASS — corrections from live preview feedback (2026-06-28)
   Scope: landing page only. No other route geometry is changed here.
   ======================================================================== */

/* 1. Hero photography must preserve its own proportions rather than stretching. */
.home-page .hero__slide .hero__image {
  object-fit: cover;
  object-position: center 52%;
}

/* 2. Built for Industry uses the exact approved Figma outline, including
   the rounded centre cut-out below the card. */
.home-page .built-industry__text-panel {
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-image: url('../assets/images/home-figma/built-industry-frame.svg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  overflow: visible;
}
.home-page .built-industry__text-panel::after { display: none; }
.home-page .built-industry__button { z-index: 4; }
.home-page .built-industry__video-card {
  padding: 0;
  border: 0;
  font: inherit;
  text-align: inherit;
}

/* 3–4. Keep the footer below the complete news grid and give its columns
   breathing room at all desktop widths. */
.home-page main { display: block; position: relative; z-index: 1; }
.home-page .latest-news { position: relative; z-index: 1; }
.home-page .latest-news__grid { min-height: calc(752 / 1840 * 100cqw); }
.home-page .site-footer {
  clear: both;
  z-index: 2;
  margin-top: clamp(56px, calc(72 / 1840 * 100vw), 72px);
}
.home-page .site-footer__nav {
  left: calc(620 / 1840 * 100cqw);
  right: calc(48 / 1840 * 100cqw);
  grid-template-columns: 1fr 1.15fr 1.15fr;
  column-gap: calc(210 / 1840 * 100cqw);
  justify-content: normal;
}
.home-page .site-footer__column {
  min-width: 0;
}
.home-page .site-footer__column a,
.home-page .site-footer__column h3 {
  white-space: nowrap;
}

/* 6. Make Request — Figma Frame 154 outer shell plus the precise inner
   cut-out contour. Controls remain real accessible form controls. */
.home-page .request-modal {
  z-index: 120;
  padding: 16px;
}
.home-page .request-modal .modal__box {
  width: min(1632px, calc(100vw - 32px), calc((100vh - 32px) * 2.4954));
  max-width: none;
  aspect-ratio: 1632 / 654;
  min-height: 0;
  max-height: none;
  padding: calc(96 / 1632 * 100cqw);
  display: grid;
  grid-template-columns: minmax(0, 620fr) minmax(0, 712fr);
  gap: calc(108 / 1632 * 100cqw);
  align-items: start;
  container-type: inline-size;
  border: 0;
  border-radius: 0;
  background: url('../assets/images/home-figma/request-frame-shell.svg') center / 100% 100% no-repeat;
  box-shadow: 0 30px 100px rgba(0,0,0,.34);
  overflow: visible;
}
.home-page .request-modal .modal__close {
  top: 0;
  right: 0;
  width: calc(50 / 1632 * 100cqw);
  min-width: 40px;
  height: calc(50 / 1632 * 100cqw);
  min-height: 40px;
  border: 1px solid #FAFAFA;
  border-radius: 50%;
  background: #0D0202;
  color: #FAFAFA;
  font-size: calc(28 / 1632 * 100cqw);
  line-height: 1;
  transform: translate(0, 0);
  z-index: 8;
}
.home-page .request-modal .request-modal__intro {
  align-self: start;
}
.home-page .request-modal .request-modal__intro h2 {
  margin: 0;
  font-size: calc(112 / 1632 * 100cqw);
  line-height: .85;
  letter-spacing: -.06em;
}
.home-page .request-modal .request-modal__intro p {
  max-width: calc(610 / 1632 * 100cqw);
  margin: calc(22 / 1632 * 100cqw) 0 0;
  color: var(--dark);
  font-size: calc(24 / 1632 * 100cqw);
  line-height: 1.05;
}
.home-page .request-modal .request-form { display:block; }
.home-page .request-modal .request-form__grid { gap: calc(12 / 1632 * 100cqw); }
.home-page .request-modal .request-form input,
.home-page .request-modal .request-form textarea {
  min-height: calc(50 / 1632 * 100cqw);
  padding: 0 calc(22 / 1632 * 100cqw);
  border-color: #0D0202;
  border-radius: 25px;
  font-size: calc(18 / 1632 * 100cqw);
}
.home-page .request-modal .request-form__equipment {
  grid-template-columns: 1fr auto;
  min-height: calc(144 / 1632 * 100cqw);
  margin-top: calc(14 / 1632 * 100cqw);
  padding: calc(16 / 1632 * 100cqw) calc(16 / 1632 * 100cqw);
  border-color: #0D0202;
  border-radius: 14px;
}
.home-page .request-modal .request-form__equipment > span {
  top: calc(-9 / 1632 * 100cqw);
  left: calc(16 / 1632 * 100cqw);
  padding: 0 calc(5 / 1632 * 100cqw);
  font-size: calc(12 / 1632 * 100cqw);
}
.home-page .request-modal .request-form__equipment em {
  justify-self: end;
  margin-right: calc(10 / 1632 * 100cqw);
  color: var(--dark);
  font-size: calc(14 / 1632 * 100cqw);
  line-height: .95;
  font-style: normal;
  text-align: left;
}
.home-page .request-modal .request-form__equipment a {
  min-width: calc(223 / 1632 * 100cqw);
  height: calc(50 / 1632 * 100cqw);
  border-color: #0D0202;
  border-radius: 25px;
  color: var(--dark);
  font-size: calc(18 / 1632 * 100cqw);
}
.home-page .request-modal .request-form textarea {
  height: calc(170 / 1632 * 100cqw);
  min-height: 0;
  margin-top: calc(14 / 1632 * 100cqw);
  padding-top: calc(18 / 1632 * 100cqw);
  border-radius: 14px;
  resize: none;
}
.home-page .request-modal .request-form__bottom {
  gap: calc(24 / 1632 * 100cqw);
  margin-top: calc(14 / 1632 * 100cqw);
}
.home-page .request-modal .request-form__bottom > button {
  width: calc(183 / 1632 * 100cqw);
  height: calc(50 / 1632 * 100cqw);
  border-radius: 25px;
  font-size: calc(18 / 1632 * 100cqw);
}
.home-page .request-modal .request-form__privacy {
  max-width: calc(510 / 1632 * 100cqw);
  font-size: calc(11 / 1632 * 100cqw);
}
.home-page .request-modal .request-form__privacy input {
  width: calc(14 / 1632 * 100cqw);
  min-height: calc(14 / 1632 * 100cqw);
  padding: 0;
}

/* 7. On-site video overlay — no outbound YouTube navigation. */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal.is-open { display:flex; }
.video-modal__backdrop { position:absolute; inset:0; background:rgba(13,2,2,.82); }
.video-modal__box {
  position:relative;
  z-index:1;
  width:min(1120px, calc(100vw - 40px));
  overflow:hidden;
  border-radius:24px;
  background:#0D0202;
  box-shadow:0 32px 100px rgba(0,0,0,.45);
}
.video-modal__box video { display:block; width:100%; max-height:calc(100vh - 64px); background:#0D0202; }
.video-modal__close {
  position:absolute;
  z-index:2;
  top:12px;
  right:12px;
  width:44px;
  height:44px;
  border:1px solid #FAFAFA;
  border-radius:50%;
  background:rgba(13,2,2,.7);
  color:#FAFAFA;
  font-size:28px;
  cursor:pointer;
}

@media (max-width: 760px) {
  .home-page .site-footer { margin-top:42px; }
  .home-page .site-footer__nav { position:static; display:grid; grid-template-columns:1fr; gap:24px; margin-top:28px; padding:0; }
  .home-page .site-footer__column a,
  .home-page .site-footer__column h3 { white-space:normal; }
  .home-page .request-modal { padding:10px; }
  .home-page .request-modal .modal__box {
    width:calc(100vw - 20px);
    aspect-ratio:auto;
    min-height:calc(100vh - 20px);
    max-height:calc(100vh - 20px);
    overflow:auto;
    display:grid;
    grid-template-columns:1fr;
    gap:24px;
    padding:52px 20px 26px;
    border-radius:18px;
    background:#FAFAFA;
    border:1px solid rgba(13,2,2,.24);
  }
  .home-page .request-modal .modal__close { top:12px; right:12px; width:40px; height:40px; font-size:24px; }
  .home-page .request-modal .request-modal__intro h2 { font-size:52px; }
  .home-page .request-modal .request-modal__intro p { max-width:360px; font-size:16px; }
  .home-page .request-modal .request-form input { min-height:48px; font-size:15px; }
  .home-page .request-modal .request-form__equipment { min-height:130px; }
  .home-page .request-modal .request-form__equipment em { font-size:13px; }
  .home-page .request-modal .request-form__equipment a { min-width:130px; height:44px; font-size:13px; }
  .home-page .request-modal .request-form textarea { height:150px; font-size:15px; }
  .home-page .request-modal .request-form__bottom { align-items:flex-start; flex-direction:column; }
  .home-page .request-modal .request-form__bottom > button { width:180px; height:50px; font-size:16px; }
  .home-page .request-modal .request-form__privacy { max-width:none; font-size:12px; }
}


/* --------------------------------------------------------------------------
   Contact page — exact approved Figma assets and geometry
   -------------------------------------------------------------------------- */
/* Sprite now works for both footer buttons and the semantic links used on
   product/resource/contact pages. */
.site-footer__socials > a,
.site-footer__socials > button {
  width: calc(40 / 1840 * 100cqw);
  min-width: 30px;
  height: calc(40 / 1840 * 100cqw);
  min-height: 30px;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: transparent;
  background-image: url('../assets/footer/social-icons.svg');
  background-repeat: no-repeat;
  background-size: 460% 100%;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}
.site-footer__socials > a:nth-child(1),
.site-footer__socials > button:nth-child(1) { background-position: 0% 50%; }
.site-footer__socials > a:nth-child(2),
.site-footer__socials > button:nth-child(2) { background-position: 33.333% 50%; }
.site-footer__socials > a:nth-child(3),
.site-footer__socials > button:nth-child(3) { background-position: 66.666% 50%; }
.site-footer__socials > a:nth-child(4),
.site-footer__socials > button:nth-child(4) { background-position: 100% 50%; }
.site-footer__socials > a:hover,
.site-footer__socials > a:focus-visible,
.site-footer__socials > button:hover,
.site-footer__socials > button:focus-visible { transform: scale(1.08); opacity: .88; }

/* Desktop - 5: 908 + 24 + 908 inside the 1840px content region. */
.contact-layout-v2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.contact-info-list {
  align-content: center;
  min-height: 416px;
  gap: 23px;
}
.contact-info-list article { grid-template-columns: 64px minmax(0, 1fr); }
.contact-info-list .contact-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(13, 2, 2, .28);
  border-radius: 50%;
}
.contact-info-list .contact-icon img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.contact-info-list article:nth-child(1) .contact-icon img { width: 24px; }
.contact-map-v2 {
  min-height: 0;
  aspect-ratio: 908 / 416;
  border-radius: 24px;
  background: #FAFAFA;
}
.contact-map-v2 img { object-fit: fill; }
/* The source SVG contains the first approved Figma marker; this is the
   second marker displayed lower on Market Street in Desktop - 5. */
.contact-map-v2__pin { left: 50%; top: 60.5%; }

/* Contact footer follows the 1840x366 Figma component rather than the
   taller generic fallback. The logo artwork includes the tagline, so the
   duplicated HTML text is visually hidden only on this page. */
.contact-page + .site-footer {
  position: relative;
  display: block;
  height: calc(366 / 1840 * 100cqw);
  min-height: 230px;
  margin: 40px auto;
  padding: 0;
  border-radius: 24px;
}
.contact-page + .site-footer .site-footer__brand {
  position: absolute;
  top: calc(32 / 1840 * 100cqw);
  left: calc(32 / 1840 * 100cqw);
  display: block;
  width: calc(243 / 1840 * 100cqw);
}
.contact-page + .site-footer .site-footer__logo { width: 100%; min-width: 0; }
.contact-page + .site-footer .site-footer__logo img { width: 100%; height: auto; }
.contact-page + .site-footer .site-footer__tagline { display: none; }
.contact-page + .site-footer .site-footer__socials {
  margin-top: calc(24 / 1840 * 100cqw);
  gap: calc(8 / 1840 * 100cqw);
}
.contact-page + .site-footer .site-footer__nav {
  position: absolute;
  top: calc(32 / 1840 * 100cqw);
  left: calc(652 / 1840 * 100cqw);
  display: grid;
  grid-template-columns: repeat(3, calc(184 / 1840 * 100cqw));
  column-gap: calc(264 / 1840 * 100cqw);
  gap: 0;
  padding: 0;
}
.contact-page + .site-footer .site-footer__column { gap: calc(8 / 1840 * 100cqw); }
.contact-page + .site-footer .site-footer__column h3 {
  margin: 0 0 calc(4 / 1840 * 100cqw);
  font-size: calc(18 / 1840 * 100cqw);
  line-height: 1;
  font-weight: 600;
}
.contact-page + .site-footer .site-footer__column a {
  color: #FAFAFA;
  font-size: calc(18 / 1840 * 100cqw);
  line-height: 1;
}
.contact-page + .site-footer .site-footer__copy {
  left: calc(32 / 1840 * 100cqw);
  bottom: calc(32 / 1840 * 100cqw);
  color: #FAFAFA;
  font-size: calc(14 / 1840 * 100cqw);
  line-height: 1;
}

@media (max-width: 760px) {
  .contact-layout-v2 { grid-template-columns: 1fr; gap: 24px; }
  .contact-info-list { min-height: 0; }
  .contact-info-list .contact-icon { width: 38px; height: 38px; }
  .contact-info-list .contact-icon img { width: 23px; height: 23px; }
  .contact-info-list article:nth-child(1) .contact-icon img { width: 19px; }
  .contact-map-v2 { aspect-ratio: 908 / 416; min-height: 0; border-radius: 16px; }
  .contact-page + .site-footer {
    height: auto;
    min-height: 0;
    margin: 24px auto 20px;
    padding: 28px 22px 66px;
    border-radius: 16px;
  }
  .contact-page + .site-footer .site-footer__brand,
  .contact-page + .site-footer .site-footer__nav { position: static; width: auto; }
  .contact-page + .site-footer .site-footer__logo { width: 160px; }
  .contact-page + .site-footer .site-footer__socials { margin-top: 18px; gap: 8px; }
  .contact-page + .site-footer .site-footer__socials > a { width: 28px; height: 28px; min-width: 0; min-height: 0; }
  .contact-page + .site-footer .site-footer__nav { grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 26px; }
  .contact-page + .site-footer .site-footer__column { gap: 7px; }
  .contact-page + .site-footer .site-footer__column h3 { font-size: 13px; margin-bottom: 2px; }
  .contact-page + .site-footer .site-footer__column a { font-size: 12px; }
  .contact-page + .site-footer .site-footer__copy { left: 22px; bottom: 22px; font-size: 10px; }
}


/* --------------------------------------------------------------------------
   Products pass — card copy and reliable shared inner-page header alignment
   -------------------------------------------------------------------------- */
/* The original Figma header is 1192px wide inside a 1840px content area.
   Use proportional positioning on wide screens, then centre it before the
   nav needs to compress. This prevents the logo from being cropped at
   browser zoom levels and intermediate laptop widths. */
.inner-top,
.article-top,
.detail-top {
  overflow: visible;
}
.inner-top .site-header,
.article-top .site-header,
.detail-top .site-header {
  overflow: visible;
  min-width: 0;
}
.inner-top .site-header__logo,
.article-top .site-header__logo,
.detail-top .site-header__logo {
  flex: 0 0 auto;
  min-width: 0;
  overflow: visible;
}
.inner-top .site-header__logo img,
.article-top .site-header__logo img,
.detail-top .site-header__logo img {
  display: block;
  max-width: none;
  object-fit: contain;
  overflow: visible;
}

@media (min-width: 1201px) {
  .inner-top .site-header,
  .article-top .site-header,
  .detail-top .site-header {
    left: calc(324 / 1840 * 100%);
    width: calc(1192 / 1840 * 100%);
    transform: none;
    padding-left: 34px;
    padding-right: 24px;
  }
  .inner-top .site-header__logo,
  .article-top .site-header__logo,
  .detail-top .site-header__logo { width: 146px; }
  .inner-top .site-header__logo img,
  .article-top .site-header__logo img,
  .detail-top .site-header__logo img { width: 146px; }
  .inner-top .site-nav,
  .article-top .site-nav,
  .detail-top .site-nav { gap: clamp(18px, 1.45vw, 27px); margin-left: 32px; }
}

@media (min-width: 761px) and (max-width: 1200px) {
  .inner-top .site-header,
  .article-top .site-header,
  .detail-top .site-header {
    left: 50%;
    width: min(940px, calc(100% - 48px));
    transform: translateX(-50%);
    padding-left: 26px;
    padding-right: 22px;
  }
  .inner-top .site-header__logo,
  .article-top .site-header__logo,
  .detail-top .site-header__logo { width: 118px; }
  .inner-top .site-header__logo img,
  .article-top .site-header__logo img,
  .detail-top .site-header__logo img { width: 118px; }
  .inner-top .site-nav,
  .article-top .site-nav,
  .detail-top .site-nav { gap: 18px; margin-left: 24px; }
  .inner-top .site-nav__link,
  .article-top .site-nav__link,
  .detail-top .site-nav__link { font-size: 12px; }
  .inner-top .site-header__actions,
  .article-top .site-header__actions,
  .detail-top .site-header__actions { gap: 8px; }
}

/* Product cards: all supplied products now have readable, non-empty fields. */
.products-page .product-card__body { min-height: 238px; }
.products-page .product-card h3 { overflow-wrap: anywhere; }
.products-page .product-card p { min-height: 28px; }
.products-page .product-card dl { margin-top: auto; }
.products-page .product-card dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  column-gap: 12px;
}
.products-page .product-card dt { overflow-wrap: anywhere; font-weight: 700; }
.products-page .product-card dd { white-space: nowrap; text-align: right; }

@media (max-width: 760px) {
  .products-page .product-card__body { min-height: 0; }
  .products-page .product-card p { min-height: 0; }
}

/* Resources article video — play inline in site modal, never leave for YouTube. */
.article-video__trigger { display:block; position:relative; width:100%; padding:0; border:0; background:none; cursor:pointer; border-radius:16px; overflow:hidden; }
.article-video__trigger:focus-visible { outline:3px solid rgba(191,33,33,.7); outline-offset:4px; }
.article-video__trigger img { display:block; width:100%; }
.article-video__trigger span { pointer-events:none; }


/* --------------------------------------------------------------------------
   Product detail reference pass — Desktop - 8 / DGW300MS/UKV
   -------------------------------------------------------------------------- */
.detail-top {
  display:block;
  width:var(--page-width);
  min-height:80px;
  height:80px;
  margin:40px auto 0;
  background:var(--red);
  border-radius:18px;
  position:relative;
  overflow:visible;
}
.detail-top::before { content:''; position:absolute; top:0; bottom:0; left:calc(324 / 1840 * 100%); right:calc(324 / 1840 * 100%); background:var(--page-bg); }
.detail-top .site-header { z-index:2; }
.product-detail-page { padding-top:0; }
.product-detail-page .breadcrumb { margin: 36px 0 32px; }
.product-detail-v2 { grid-template-columns: 816fr 656fr 320fr; gap:24px; }
.product-gallery-v2 { position:relative; min-width:0; }
.product-gallery-v2__main { min-height:816px; padding:32px; border-radius:18px; position:relative; }
.product-gallery-v2__main img { max-height:720px; width:100%; object-fit:contain; }
.product-gallery-v2__arrow { position:absolute; z-index:3; top:48%; width:50px; height:50px; border:1px solid rgba(13,2,2,.32); border-radius:50%; color:var(--dark); background:var(--surface); font-size:34px; line-height:1; display:grid; place-items:center; cursor:default; }
.product-gallery-v2__arrow--prev { left:18px; }
.product-gallery-v2__arrow--next { right:18px; }
.product-gallery-v2__dots { margin-top:16px; }
.product-gallery-v2__dots span { width:8px; height:8px; }
.product-summary h1 { font-size:32px; line-height:1; }
.product-summary__meta { margin:4px 0 12px; font-size:14px; }
.product-summary > p { font-size:14px; line-height:1.22; margin:0; }
.product-badges { margin:12px 0 14px; }
.product-badges span { padding:4px 7px; font-size:9px; border-radius:10px; }
.product-accordions { margin-top:0; }
.product-accordions details { border-radius:14px; }
.product-accordions summary { font-size:14px; padding:17px 18px; }
.product-accordions ul { font-size:12px; line-height:1.28; padding:0 22px 16px 34px; }
.product-side-v2 { gap:14px; padding-top:0; }
.product-warranty { width:252px; max-width:100%; }
.product-side-v2 > button { height:50px; font-size:13px; }
.product-side-v2__onpage { display:grid; gap:10px; padding-top:2px; }
.product-side-v2__eyebrow { font-size:12px; color:rgba(13,2,2,.72); }
.product-side-v2__onpage > strong { font-size:18px; line-height:1; }
.product-side-v2 nav { display:grid; gap:12px; border:0; border-radius:0; padding:0; background:transparent; }
.product-side-v2 nav a { border:0; padding:0; font-size:12px; color:rgba(13,2,2,.82); }
.product-side-v2 nav a:hover { color:var(--red); }
.detail-section { max-width:1496px; margin-top:54px; }
.detail-section h2, .related-section h2 { font-size:26px; margin-bottom:16px; }
.technical-specs--figma { grid-template-columns: repeat(4,1fr); }
.technical-specs--figma div { min-height:64px; padding:14px 16px; }
.technical-specs--figma .technical-specs__label { background:#E7E7E7; }
.technical-specs--figma dt, .technical-specs--figma dd { margin:0; font-size:12px; line-height:1.25; font-weight:400; }
.technical-specs--figma .technical-specs__value dd { font-weight:500; }
.equipment-detail__grid { gap:54px; padding-bottom:18px; }
.equipment-detail h3 { font-size:17px; }
.equipment-detail ul, .equipment-detail p { font-size:12px; line-height:1.3; }
.detail-video__trigger { width:100%; padding:0; border:0; cursor:pointer; }
.detail-video__trigger:focus-visible { outline:3px solid rgba(191,33,33,.7); outline-offset:4px; }
.detail-video { border-radius:18px; }
.detail-video img { aspect-ratio:1496 / 720; }
.documents-grid { gap:16px; }
.document-card { min-height:114px; border-radius:14px; padding:16px 20px; gap:14px; }
.document-card:hover { transform:none; border-color:var(--line); }
.document-card__pdf { display:block; width:29px; height:29px; object-fit:contain; }
.document-card__text strong { font-size:13px; font-weight:500; }
.document-card__text small { font-size:11px; margin-top:5px; }
.document-card__actions { display:flex; align-items:center; gap:8px; }
.document-card__open { min-width:70px; height:36px; padding:0 14px; display:inline-flex; align-items:center; justify-content:center; border:1px solid rgba(13,2,2,.55); border-radius:999px; font-size:12px; }
.document-card__download { width:36px; height:36px; display:grid; place-items:center; border:1px solid rgba(13,2,2,.55); border-radius:50%; }
.document-card__download img { width:18px; height:18px; }
.related-section { max-width:1840px; margin-top:54px; }
.product-grid--accessories { gap:16px; }

@media (max-width: 1500px) {
  .product-detail-v2 { grid-template-columns:minmax(0,1.08fr) minmax(0,.92fr) 240px; gap:22px; }
  .product-gallery-v2__main { min-height:620px; }
  .product-warranty { width:180px; }
}
@media (max-width: 1200px) {
  .detail-top { margin-top:24px; }
  .product-detail-v2 { grid-template-columns:1fr 1fr; }
  .product-side-v2 { grid-column:1 / -1; display:grid; grid-template-columns:180px 1fr 1fr; gap:22px; align-items:start; }
  .product-side-v2__onpage { grid-column:2 / -1; }
  .product-side-v2 > button { align-self:start; }
  .product-gallery-v2__main { min-height:520px; }
}
@media (max-width: 760px) {
  .detail-top { width:min(100% - 20px, 1840px); min-height:62px; height:62px; margin-top:10px; border-radius:16px; }
  .detail-top::before { left:10px; right:10px; }
  .product-detail-page .breadcrumb { margin:22px 0 20px; font-size:11px; }
  .product-detail-v2 { grid-template-columns:1fr; gap:18px; }
  .product-gallery-v2__main { min-height:310px; padding:14px; border-radius:16px; }
  .product-gallery-v2__main img { max-height:270px; }
  .product-gallery-v2__arrow { width:36px; height:36px; font-size:25px; }
  .product-gallery-v2__arrow--prev { left:10px; }
  .product-gallery-v2__arrow--next { right:10px; }
  .product-summary h1 { font-size:27px; }
  .product-summary > p { font-size:13px; line-height:1.35; }
  .product-side-v2 { display:flex; }
  .product-warranty { width:150px; }
  .technical-specs--figma { grid-template-columns:1fr 1fr; }
  .technical-specs--figma div:nth-child(4n) { border-right:1px solid var(--line); }
  .technical-specs--figma div:nth-child(2n) { border-right:0; }
  .technical-specs--figma div:nth-last-child(-n+4) { border-bottom:1px solid var(--line); }
  .technical-specs--figma div:nth-last-child(-n+2) { border-bottom:0; }
  .equipment-detail__grid, .documents-grid { grid-template-columns:1fr; gap:12px; }
  .document-card { min-height:84px; padding:12px; }
  .document-card__open { min-width:54px; height:32px; padding:0 10px; }
  .document-card__download { width:32px; height:32px; }
  .detail-video img { aspect-ratio:16 / 9; }
}

/* ========================================================================
   FINAL INTEGRATED HOME FIXES — 28 June 2026
   These rules intentionally come last so every previously approved home
   correction is applied to the actual release package.
   ======================================================================== */
.home-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
.home-page > main {
  display: block !important;
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  padding-bottom: 0 !important;
}

/* Hero: preserve the source photo proportions. There is no stretch and no
   unused grey strip under the image. */
.home-page .hero {
  overflow: visible;
  height: clamp(360px, 27.174vw, 500px);
  min-height: 0;
}
.home-page .hero__media,
.home-page .hero__track,
.home-page .hero__slide {
  height: 100% !important;
  min-height: 0 !important;
  line-height: 0;
}
.home-page .hero__media {
  display: block;
  background: #0D0202;
  isolation: isolate;
}
.home-page .hero__track { align-items: stretch; }
.home-page .hero__slide {
  display: block;
  overflow: hidden;
}
.home-page .hero__slide .hero__image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center 56% !important;
  vertical-align: top;
  transform: none !important;
}
.home-page .hero__video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center;
}

/* The footer is always a normal flow element below the entire Latest News
   grid; the absolute children inside it still use the footer as their scope. */
.home-page .latest-news {
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.home-page .latest-news__grid {
  display: grid;
  height: clamp(420px, 40.87vw, 752px) !important;
  min-height: 420px !important;
  overflow: visible;
}
.home-page .site-footer {
  position: relative !important;
  inset: auto !important;
  float: none !important;
  clear: both !important;
  display: block !important;
  flex: 0 0 auto;
  height: clamp(240px, 19.89vw, 366px) !important;
  min-height: 240px !important;
  margin: clamp(64px, 4.35vw, 80px) auto 40px !important;
  transform: none !important;
  z-index: 1 !important;
  isolation: isolate;
}
.home-page .site-footer__nav {
  grid-template-columns: minmax(120px, 1fr) minmax(150px, 1.2fr) minmax(150px, 1.2fr);
  column-gap: clamp(48px, 8vw, 150px);
}

/* Local in-page video modal — all home video triggers are buttons and are
   never allowed to open YouTube or another tab. */
.home-page .built-industry__video-card {
  cursor: pointer;
  appearance: none;
}
.home-page .video-modal {
  z-index: 9999;
}

/* Clearly visible language-state feedback. */
.language__menu button.is-active {
  background: rgba(191,33,33,.12);
  color: var(--red);
}

@media (max-width: 760px) {
  .home-page .hero {
    height: clamp(260px, 68vw, 360px);
  }
  .home-page .latest-news__grid {
    height: auto !important;
    min-height: 0 !important;
  }
  .home-page .site-footer {
    height: auto !important;
    min-height: 0 !important;
    margin: 42px auto 20px !important;
  }
}


/* ========================================================================
   FINAL VISUAL POLISH — approved review corrections
   ======================================================================== */

/* Never allow a wide child to create a horizontal page scroll that clips the
   left side of the global header. */
html, body { max-width: 100%; overflow-x: clip; }
.page { max-width: 100%; }

/* Shared header: retain the approved white cut-out on large desktop, and
   switch to a safe full-width cut-out before navigation can crop. */
.site-header {
  box-sizing: border-box;
  min-width: 0;
  overflow: visible;
  background: var(--page-bg);
}
.site-header__logo {
  width: 146px;
  min-width: 0;
  overflow: visible;
}
.site-header__logo img {
  width: 100%;
  max-width: 146px;
  min-width: 0;
  height: auto;
}
.site-nav, .site-header__actions { min-width: 0; }

@media (max-width: 1500px) and (min-width: 761px) {
  .inner-top .site-header,
  .article-top .site-header,
  .detail-top .site-header {
    left: 24px !important;
    width: calc(100% - 48px) !important;
    transform: none !important;
    padding-left: 26px;
    padding-right: 22px;
  }
  .inner-top .site-header__logo,
  .article-top .site-header__logo,
  .detail-top .site-header__logo { width: 132px; }
  .inner-top .site-header__logo img,
  .article-top .site-header__logo img,
  .detail-top .site-header__logo img { width: 132px; max-width: 132px; }
  .inner-top .site-nav,
  .article-top .site-nav,
  .detail-top .site-nav { gap: clamp(16px, 1.7vw, 27px); margin-left: clamp(22px, 2.2vw, 40px); }
  .inner-top .site-nav__link,
  .article-top .site-nav__link,
  .detail-top .site-nav__link { font-size: 13px; }
}
@media (max-width: 1040px) and (min-width: 761px) {
  .inner-top .site-header,
  .article-top .site-header,
  .detail-top .site-header { height: 70px; }
  .inner-top .site-header__logo,
  .article-top .site-header__logo,
  .detail-top .site-header__logo { width: 118px; }
  .inner-top .site-header__logo img,
  .article-top .site-header__logo img,
  .detail-top .site-header__logo img { width: 118px; max-width: 118px; }
  .inner-top .site-nav,
  .article-top .site-nav,
  .detail-top .site-nav { gap: 14px; margin-left: 20px; }
  .inner-top .site-nav__link,
  .article-top .site-nav__link,
  .detail-top .site-nav__link { font-size: 12px; }
  .inner-top .language__button,
  .article-top .language__button,
  .detail-top .language__button { width: 34px; height: 34px; }
  .inner-top .request-button,
  .article-top .request-button,
  .detail-top .request-button { width: 132px; height: 36px; font-size: 12px; }
}

/* Footer: exact functional reconstruction of Component 10. The SVG itself
   already includes the tagline, so the duplicate HTML tagline must not render. */
.site-footer {
  container-type: inline-size;
  position: relative !important;
  clear: both;
  float: none !important;
  inset: auto !important;
  display: block !important;
  width: var(--page-width) !important;
  height: clamp(230px, calc(366 / 1840 * 100vw), 366px) !important;
  min-height: 0 !important;
  margin: clamp(56px, calc(80 / 1840 * 100vw), 80px) auto 40px !important;
  padding: 0 !important;
  border-radius: 24px !important;
  background: var(--red) !important;
  color: #FAFAFA;
  overflow: hidden !important;
  isolation: isolate;
  transform: none !important;
}
.site-footer__brand {
  position: absolute !important;
  top: calc(32 / 1840 * 100cqw) !important;
  left: calc(32 / 1840 * 100cqw) !important;
  width: calc(243 / 1840 * 100cqw) !important;
  display: block !important;
}
.site-footer__logo { width: 100% !important; min-width: 0 !important; }
.site-footer__logo img { display:block; width:100% !important; height:auto; }
.site-footer__brand > p,
.site-footer__tagline { display: none !important; }
.site-footer__socials { margin-top: calc(24 / 1840 * 100cqw) !important; gap: calc(8 / 1840 * 100cqw) !important; }
.site-footer__socials > a,
.site-footer__socials > button {
  width: calc(40 / 1840 * 100cqw) !important;
  height: calc(40 / 1840 * 100cqw) !important;
  min-width: 20px !important;
  min-height: 20px !important;
}
.site-footer__nav {
  position: absolute !important;
  top: calc(32 / 1840 * 100cqw) !important;
  left: calc(652 / 1840 * 100cqw) !important;
  right: auto !important;
  display: grid !important;
  grid-template-columns: repeat(3, calc(184 / 1840 * 100cqw)) !important;
  column-gap: calc(264 / 1840 * 100cqw) !important;
  gap: 0 !important;
  padding: 0 !important;
}
.site-footer__column { gap: calc(8 / 1840 * 100cqw) !important; min-width: 0; }
.site-footer__column h3 { margin:0 0 calc(4 / 1840 * 100cqw) !important; font-size:calc(18 / 1840 * 100cqw) !important; line-height:1 !important; font-weight:600 !important; }
.site-footer__column a { color:#FAFAFA !important; font-size:calc(18 / 1840 * 100cqw) !important; line-height:1 !important; }
.site-footer__copy { left:calc(32 / 1840 * 100cqw) !important; bottom:calc(32 / 1840 * 100cqw) !important; color:#FAFAFA !important; font-size:calc(14 / 1840 * 100cqw) !important; line-height:1 !important; }

/* The home footer follows a real spacer after the complete 2-column news grid,
   preventing it from ever sitting over a news card. */
.home-page .latest-news {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(64px, calc(80 / 1840 * 100vw), 80px) !important;
  margin-bottom: 0 !important;
}
.home-page .latest-news__grid {
  position: relative;
  display: grid;
  height: clamp(420px, calc(752 / 1840 * 100vw), 752px) !important;
  min-height: 420px !important;
  overflow: hidden;
}
.home-page .site-footer {
  position: relative !important;
  z-index: 1 !important;
  margin-top: 0 !important;
}

/* Resources card category labels: the approved two independent 25px pills,
   rather than a nested card layout inheriting large padding/flex rules. */
.resource-card > a > div { padding: 25px 24px; display:flex; flex-direction:column; min-width:0; }
.resource-card__tags {
  display: grid !important;
  grid-template-columns: 1fr !important;
  width: 100% !important;
  min-height: 0 !important;
  margin: 12px 0 10px !important;
  padding: 0 !important;
  gap: 8px !important;
  flex: 0 0 auto !important;
  background: transparent !important;
}
.resource-card__tags span {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  height: 25px !important;
  min-height: 25px !important;
  margin: 0 !important;
  padding: 0 10px !important;
  border: 1px solid rgba(191,33,33,.36) !important;
  border-radius: 13px !important;
  background: rgba(191,33,33,.055) !important;
  color: var(--red) !important;
  font-size: 10px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}
.resource-card__tags + p { margin-top: auto !important; }

/* Contact: constrain the SVG map to its actual card at every viewport width. */
.contact-layout-v2,
.contact-map-v2 { min-width: 0 !important; max-width: 100% !important; }
.contact-map-v2 {
  width: 100% !important;
  aspect-ratio: 908 / 416 !important;
  overflow: hidden !important;
  contain: paint;
}
.contact-map-v2 img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  object-fit: fill !important;
}

/* DGW300MS/UKV: use the approved real certification strip instead of text
   substitutes. */
.product-certification-strip {
  display: block;
  width: min(100%, 430px);
  max-width: 100%;
  height: auto;
  margin: 12px 0 14px;
  object-fit: contain;
  object-position: left center;
}
.product-certification-strip + .product-badges--fallback { display: none !important; }

@media (max-width: 760px) {
  .site-footer {
    height: auto !important;
    min-height: 0 !important;
    margin: 42px auto 20px !important;
    padding: 28px 22px 66px !important;
    border-radius: 16px !important;
  }
  .site-footer__brand,
  .site-footer__nav { position: static !important; width: auto !important; }
  .site-footer__logo { width: 160px !important; }
  .site-footer__socials { margin-top: 18px !important; gap: 8px !important; }
  .site-footer__socials > a,
  .site-footer__socials > button { width:28px !important; height:28px !important; min-width:0 !important; min-height:0 !important; }
  .site-footer__nav { grid-template-columns: 1fr 1fr !important; gap: 24px !important; margin-top: 26px !important; }
  .site-footer__column { gap: 7px !important; }
  .site-footer__column h3 { font-size:13px !important; margin-bottom:2px !important; }
  .site-footer__column a { font-size:12px !important; white-space:normal !important; }
  .site-footer__copy { left:22px !important; bottom:22px !important; font-size:10px !important; }
  .home-page .latest-news { padding-bottom:42px !important; }
  .home-page .latest-news__grid { height:auto !important; min-height:0 !important; overflow:visible; }
  .resource-card > a > div { padding:15px !important; }
  .resource-card__tags { margin:8px 0 7px !important; gap:5px !important; }
  .resource-card__tags span { height:20px !important; min-height:20px !important; padding:0 8px !important; font-size:9px !important; }
}


/* HOME FOOTER — final spacing pass.
   Keep the approved Component 10 positions, but give the three text columns
   enough horizontal air so long placeholder lines never visually merge. */
@media (min-width: 761px) {
  .home-page .site-footer__nav {
    grid-template-columns:
      calc(160 / 1840 * 100cqw)
      calc(220 / 1840 * 100cqw)
      calc(220 / 1840 * 100cqw) !important;
    column-gap: calc(190 / 1840 * 100cqw) !important;
    align-items: start;
  }
  .home-page .site-footer__column {
    min-width: 0;
  }
  .home-page .site-footer__column a,
  .home-page .site-footer__column h3 {
    overflow-wrap: anywhere;
  }
}


/* Technical specification table — Figma alternating label cells */
.technical-specs.technical-specs--figma {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-color: #D9D9D9;
  border-radius: 14px;
}
.technical-specs.technical-specs--figma > div {
  min-height: 64px;
  padding: 14px 16px;
  border-color: #D9D9D9;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.technical-specs.technical-specs--figma > .technical-specs__label {
  background: #E7E7E7;
}
.technical-specs.technical-specs--figma > .technical-specs__value {
  background: #FAFAFA;
}
.technical-specs.technical-specs--figma dt,
.technical-specs.technical-specs--figma dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 400;
}
.technical-specs.technical-specs--figma dd {
  color: var(--dark);
}
@media (max-width: 1100px) {
  .technical-specs.technical-specs--figma { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .technical-specs.technical-specs--figma > div { min-height: 62px; padding: 12px; }
}


/* HOME — Latest News & Articles: exact approved Figma exports.
   The three compact cards are supplied as completed visual tiles, including
   their blur and typography, so do not layer a second text/gradient above. */
.home-page .latest-news__stack a::after,
.home-page .latest-news__stack a > span {
  display: none !important;
}
.home-page .latest-news__stack a img {
  object-fit: fill !important;
  transform: none !important;
  filter: none !important;
}
.home-page .latest-news__feature img {
  object-fit: fill !important;
}
.home-page .latest-news__feature > span {
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
  font-size: calc(56 / 1840 * 100cqw);
  line-height: 1;
  letter-spacing: 0;
}
@media (max-width: 760px) {
  .home-page .latest-news__stack a img {
    object-fit: cover !important;
  }
}

/* HOME FOOTER — final column separation.
   Use stable Figma-based tracks on wide desktops and a flexible wrapping grid
   below them so placeholder text can never overlap another column. */
@media (min-width: 1200px) {
  .home-page .site-footer__nav {
    left: calc(652 / 1840 * 100cqw) !important;
    right: auto !important;
    display: grid !important;
    grid-template-columns:
      calc(170 / 1840 * 100cqw)
      calc(220 / 1840 * 100cqw)
      calc(220 / 1840 * 100cqw) !important;
    column-gap: calc(230 / 1840 * 100cqw) !important;
    align-items: start !important;
  }

  .home-page .site-footer__column:nth-child(2),
  .home-page .site-footer__column:nth-child(3) {
    min-width: calc(220 / 1840 * 100cqw) !important;
  }
}

@media (min-width: 761px) and (max-width: 1199px) {
  .home-page .site-footer__nav {
    left: 34% !important;
    right: 4% !important;
    display: grid !important;
    grid-template-columns: minmax(78px, .78fr) minmax(0, 1.15fr) minmax(0, 1.15fr) !important;
    column-gap: clamp(42px, 6cqw, 82px) !important;
    align-items: start !important;
  }

  .home-page .site-footer__column {
    min-width: 0 !important;
  }

  .home-page .site-footer__column a,
  .home-page .site-footer__column h3 {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
}

/* Home / Built for Industry: approved bold body copy. */
.home-page .built-industry__content p {
  font-weight: 700;
}


/* --------------------------------------------------------------------------
   Make Request — approved Frame 154 typography and control placement.
   These rules preserve actual form functionality while matching the Figma
   layout: Inter Bold 112 / 85% for title, Inter Regular 24 / 100% intro,
   Inter Regular 14 / 100% form and privacy copy.
   -------------------------------------------------------------------------- */
.home-page .request-modal .request-modal__intro h2 {
  font-family: Inter, Arial, sans-serif;
  font-weight: 700;
  font-size: calc(112 / 1632 * 100cqw);
  line-height: .85;
  letter-spacing: 0;
  text-transform: uppercase;
}
.home-page .request-modal .request-modal__intro p {
  max-width: calc(620 / 1632 * 100cqw);
  margin: calc(22 / 1632 * 100cqw) 0 0;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: calc(24 / 1632 * 100cqw);
  line-height: 1;
  letter-spacing: 0;
}
.home-page .request-modal .request-form__grid { gap: calc(16 / 1632 * 100cqw); }
.home-page .request-modal .request-form input,
.home-page .request-modal .request-form textarea,
.home-page .request-modal .request-form__equipment > span,
.home-page .request-modal .request-form__equipment em,
.home-page .request-modal .request-form__equipment a,
.home-page .request-modal .request-form__bottom > button,
.home-page .request-modal .request-form__privacy {
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}
.home-page .request-modal .request-form input,
.home-page .request-modal .request-form textarea {
  font-size: calc(14 / 1632 * 100cqw);
  line-height: 1;
}
.home-page .request-modal .request-form__equipment > span,
.home-page .request-modal .request-form__equipment em,
.home-page .request-modal .request-form__equipment a,
.home-page .request-modal .request-form__bottom > button,
.home-page .request-modal .request-form__privacy {
  font-size: calc(14 / 1632 * 100cqw);
  line-height: 1;
}
.home-page .request-modal .request-form__equipment em { line-height: 1; }
.home-page .request-modal .request-form__bottom {
  position: absolute;
  left: calc(112 / 1632 * 100cqw);
  bottom: calc(80 / 1632 * 100cqw);
  margin: 0;
  gap: calc(48 / 1632 * 100cqw);
  align-items: center;
}
.home-page .request-modal .request-form__privacy {
  max-width: calc(420 / 1632 * 100cqw);
  color: var(--dark);
}
.home-page .request-modal .request-form__privacy input { display:none; }
.home-page .request-modal .request-form__privacy a {
  color: var(--dark);
  text-decoration: none;
}
@media (max-width: 760px) {
  .home-page .request-modal .request-modal__intro h2 { font-size:52px; }
  .home-page .request-modal .request-modal__intro p { font-size:16px; line-height:1.05; }
  .home-page .request-modal .request-form input,
  .home-page .request-modal .request-form textarea,
  .home-page .request-modal .request-form__equipment > span,
  .home-page .request-modal .request-form__equipment em,
  .home-page .request-modal .request-form__equipment a,
  .home-page .request-modal .request-form__bottom > button,
  .home-page .request-modal .request-form__privacy { font-size:14px; }
  .home-page .request-modal .request-form__bottom {
    position:static;
    margin-top:14px;
    gap:12px;
  }
}


/* ========================================================================
   CONTACT PAGE TYPOGRAPHY PASS — align with approved Figma reference
   ======================================================================== */
.contact-top .inner-top__title {
  padding: 0 24px 25px;
}
.contact-top .inner-top__title h1 {
  font-size: clamp(72px, calc(140 / 1840 * 100vw), 140px);
  line-height: .85;
  letter-spacing: 0;
  font-weight: 700;
}
.contact-info-list article {
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.contact-info-list .contact-icon {
  width: 50px;
  height: 50px;
}
.contact-info-list .contact-icon img {
  width: 24px;
  height: 24px;
}
.contact-info-list article:nth-child(1) .contact-icon img { width: 20px; height: 20px; }
.contact-info-list h2 {
  margin: 0 0 8px;
  font-size: 32px;
  line-height: .85;
  letter-spacing: 0;
  font-weight: 700;
  color: #0D0202;
}
.contact-info-list p,
.contact-info-list p a {
  margin: 0;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  color: rgba(13, 2, 2, .88);
  text-decoration: none;
}
.contact-map-v2 {
  border-radius: 26px;
}
.contact-map-v2 img {
  object-fit: cover !important;
  object-position: center;
}
.contact-map-v2__pin { display: none; }
.contact-feature-row {
  margin-top: 24px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(13, 2, 2, .20);
  border-radius: 18px;
}
.contact-feature-row article {
  padding: 0 40px 0 0;
  margin-right: 40px;
}
.contact-feature-row article:not(:last-child) {
  border-right: 1px solid rgba(13, 2, 2, .14);
}
.contact-feature-row h2 {
  margin: 0 0 8px;
  font-size: 32px;
  line-height: .85;
  letter-spacing: 0;
  font-weight: 700;
  color: #0D0202;
}
.contact-feature-row p {
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  color: rgba(13, 2, 2, .88);
}
@media (max-width: 760px) {
  .contact-top .inner-top__title { padding: 0 16px 18px; }
  .contact-info-list h2 { font-size: 22px; }
  .contact-info-list p,
  .contact-info-list p a { font-size: 14px; line-height: 1.25; }
  .contact-feature-row { padding: 20px; gap: 18px; }
  .contact-feature-row article,
  .contact-feature-row article:not(:last-child) {
    margin-right: 0;
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(13, 2, 2, .14);
  }
  .contact-feature-row article:last-child { padding-bottom: 0; border-bottom: 0; }
  .contact-feature-row h2 { font-size: 22px; }
  .contact-feature-row p { font-size: 14px; line-height: 1.25; }
}

/* ========================================================================
   PRODUCTS PAGE TYPOGRAPHY — match Desktop - 7 Figma text metrics
   ======================================================================== */
.product-list-top .inner-top__title {
  padding: 0 24px 25px;
}
.product-list-top .inner-top__title h1 {
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(72px, calc(140 / 1840 * 100vw), 140px);
  line-height: .85;
  letter-spacing: 0;
  font-weight: 700;
}
.products-page .category-pill span {
  font-family: Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: .85;
  letter-spacing: 0;
}
.products-page .product-card h3 {
  font-family: Inter, Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
}
.products-page .product-card p {
  font-family: Inter, Arial, sans-serif;
  line-height: 1;
  letter-spacing: 0;
  margin: 6px 0 11px;
}
.products-page .product-card dl {
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 14px;
  padding-top: 8px;
}
.products-page .product-card dl div {
  margin: 7px 0;
}
.products-page .product-card dt,
.products-page .product-card dd {
  line-height: 1;
}
.products-page .product-card__request {
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
@media (max-width: 760px) {
  .product-list-top .inner-top__title { padding: 0 16px 18px; }
  .products-page .product-card h3 { font-size: 21px; }
}


/* ========================================================================
   PRODUCT DETAIL — Desktop 8 Figma typography and visual asset pass
   ======================================================================== */
.product-detail-page,
.product-detail-page button,
.product-detail-page input,
.product-detail-page textarea {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

/* The two supplied Figma exports are used at their intended visual scale. */
.product-detail-page .product-certification-strip {
  display: block;
  width: min(100%, 536px);
  max-width: 536px;
  height: auto;
  margin: 14px 0 16px;
  object-fit: contain;
  object-position: left center;
}
.product-detail-page .product-warranty {
  display: block;
  width: 252px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 2px;
  object-fit: contain;
}

.product-detail-page .product-summary h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.product-detail-page .product-summary__meta {
  margin: 5px 0 16px;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}
.product-detail-page .product-summary__description {
  margin: 0;
  color: rgba(13, 2, 2, .88);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.17;
  letter-spacing: 0;
}
.product-detail-page .product-summary__description + .product-summary__description {
  margin-top: 13px;
}

.product-detail-page .product-accordions {
  margin-top: 0;
  display: grid;
  gap: 12px;
}
.product-detail-page .product-accordions details {
  margin: 0;
  border: 1px solid #D9D9D9;
  border-radius: 14px;
  overflow: hidden;
  background: #FAFAFA;
}
.product-detail-page .product-accordions summary {
  min-height: 60px;
  padding: 18px 20px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}
.product-detail-page .product-accordions ul {
  margin: 0;
  padding: 0 24px 18px 38px;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 0;
}
.product-detail-page .product-accordions li + li { margin-top: 2px; }

.product-detail-page .product-side-v2 {
  gap: 16px;
}
.product-detail-page .product-side-v2 > button {
  min-height: 50px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
.product-detail-page .product-side-v2__onpage {
  gap: 12px;
}
.product-detail-page .product-side-v2__eyebrow {
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
}
.product-detail-page .product-side-v2__onpage > strong {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.product-detail-page .product-side-v2 nav { gap: 14px; }
.product-detail-page .product-side-v2 nav a {
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}

.product-detail-page .detail-section {
  margin-top: 42px;
}
.product-detail-page .detail-section h2,
.product-detail-page .related-section h2 {
  margin: 0 0 16px;
  font-size: 26px;
  line-height: .95;
  font-weight: 700;
  letter-spacing: 0;
}
.product-detail-page .technical-specs.technical-specs--figma > div {
  min-height: 64px;
  padding: 14px 16px;
}
.product-detail-page .technical-specs.technical-specs--figma dt,
.product-detail-page .technical-specs.technical-specs--figma dd {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
}
.product-detail-page .technical-specs.technical-specs--figma dd { font-weight: 500; }

.product-detail-page .equipment-detail h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}
.product-detail-page .equipment-detail ul,
.product-detail-page .equipment-detail p {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
}
.product-detail-page .equipment-detail li + li { margin-top: 2px; }
.product-detail-page .detail-video { border-radius: 18px; }
.product-detail-page .documents-grid { gap: 12px; }
.product-detail-page .document-card {
  min-height: 92px;
  padding: 14px 18px;
  border-radius: 14px;
}
.product-detail-page .document-card__text strong {
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
}
.product-detail-page .document-card__text small {
  margin-top: 5px;
  font-size: 11px;
  line-height: 1;
  font-weight: 400;
}
.product-detail-page .document-card__open { font-size: 12px; font-weight: 400; }
.product-detail-page .related-section { margin-top: 42px; }
.product-detail-page .product-grid--accessories .product-card h3 {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}
.product-detail-page .product-grid--accessories .product-card p,
.product-detail-page .product-grid--accessories .product-card dt,
.product-detail-page .product-grid--accessories .product-card dd {
  font-size: 11px;
  line-height: 1.15;
  letter-spacing: 0;
}
.product-detail-page .product-grid--accessories .product-card__request {
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
}

@media (max-width: 1500px) {
  .product-detail-page .product-certification-strip { width: min(100%, 440px); }
  .product-detail-page .product-accordions summary { min-height: 54px; padding: 16px 18px; font-size: 15px; }
  .product-detail-page .product-accordions ul { font-size: 12px; padding: 0 22px 16px 34px; }
}
@media (max-width: 760px) {
  .product-detail-page .product-certification-strip { width: min(100%, 360px); margin: 12px 0; }
  .product-detail-page .product-warranty { width: 170px; margin-left: 0; }
  .product-detail-page .product-summary h1 { font-size: 27px; }
  .product-detail-page .product-summary__meta { font-size: 13px; }
  .product-detail-page .product-summary__description { font-size: 13px; line-height: 1.3; }
  .product-detail-page .product-accordions summary { min-height: 48px; padding: 15px 16px; font-size: 14px; }
  .product-detail-page .product-accordions ul { padding: 0 18px 15px 30px; font-size: 12px; }
  .product-detail-page .detail-section { margin-top: 36px; }
  .product-detail-page .document-card { min-height: 76px; padding: 12px; }
}

/* ========================================================================
   FINAL FOUR-CORRECTION PASS — approved image assets, text metrics and form
   ======================================================================== */

/* Built for Industry: supplied Figma inspector specifies Inter Regular 24px,
   100% line-height. The earlier bold testing rule is intentionally reset. */
.home-page .built-industry__content p {
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: calc(24 / 1840 * 100cqw);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

/* DGW300MS/UKV uses the freshly supplied raster exports. Keep both images at
   their native Figma proportions and avoid a CSS crop at every viewport. */
.product-detail-page .product-certification-strip {
  width: min(100%, 536px);
  max-width: 536px;
  height: auto;
  aspect-ratio: 656 / 40;
  margin: 14px 0 16px;
  object-fit: contain;
  object-position: left center;
}
.product-detail-page .product-warranty {
  width: 252px;
  height: 252px;
  max-width: 100%;
  margin: 0 auto 14px;
  object-fit: contain;
  object-position: center;
}

/* Match the Desktop-8 relationship: title/meta/body and badges should not be
   compressed by inherited global line-height rules. */
.product-detail-page .product-summary h1 {
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.product-detail-page .product-summary__meta,
.product-detail-page .product-summary__description,
.product-detail-page .product-accordions summary,
.product-detail-page .product-accordions li,
.product-detail-page .product-side-v2__eyebrow,
.product-detail-page .product-side-v2 strong,
.product-detail-page .product-side-v2 a,
.product-detail-page .detail-section h2,
.product-detail-page .equipment-detail h3,
.product-detail-page .equipment-detail li,
.product-detail-page .equipment-detail p,
.product-detail-page .document-card,
.product-detail-page .related-section .product-card {
  font-family: Inter, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

/* Request modal is the same approved Frame 154 on home and inner routes.
   The outer SVG contour is retained, while all fields remain real controls. */
.request-modal .modal__box {
  width: min(1632px, calc(100vw - 32px), calc((100vh - 32px) * 2.4954));
  max-width: none;
  aspect-ratio: 1632 / 654;
  min-height: 0;
  max-height: none;
  padding: calc(96 / 1632 * 100cqw);
  display: grid;
  grid-template-columns: minmax(0, 620fr) minmax(0, 712fr);
  gap: calc(108 / 1632 * 100cqw);
  align-items: start;
  container-type: inline-size;
  border: 0;
  border-radius: 0;
  background: url('../assets/images/home-figma/request-frame-shell.svg') center / 100% 100% no-repeat;
  box-shadow: 0 30px 100px rgba(0,0,0,.34);
  overflow: visible;
}
.request-modal .modal__close {
  top: 0;
  right: 0;
  width: calc(50 / 1632 * 100cqw);
  min-width: 40px;
  height: calc(50 / 1632 * 100cqw);
  min-height: 40px;
  border: 1px solid #FAFAFA;
  border-radius: 50%;
  background: #0D0202;
  color: #FAFAFA;
  font-size: calc(28 / 1632 * 100cqw);
  line-height: 1;
  z-index: 8;
}
.request-modal .request-modal__intro h2 {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: calc(112 / 1632 * 100cqw);
  font-weight: 700;
  line-height: .85;
  letter-spacing: 0;
}
.request-modal .request-modal__intro p {
  max-width: calc(620 / 1632 * 100cqw);
  margin: calc(22 / 1632 * 100cqw) 0 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: calc(24 / 1632 * 100cqw);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
.request-modal .request-form {
  display: block;
  min-width: 0;
}
.request-modal .request-form__grid { gap: calc(16 / 1632 * 100cqw); }
.request-modal .request-form input,
.request-modal .request-form textarea {
  min-height: calc(50 / 1632 * 100cqw);
  padding: 0 calc(22 / 1632 * 100cqw);
  border-color: #0D0202;
  border-radius: 25px;
  font-size: calc(14 / 1632 * 100cqw);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
.request-modal .request-form__equipment {
  min-height: calc(144 / 1632 * 100cqw);
  margin-top: calc(14 / 1632 * 100cqw);
  padding: calc(16 / 1632 * 100cqw);
  border-color: #0D0202;
  border-radius: 14px;
}
.request-modal .request-form__equipment > span,
.request-modal .request-form__equipment em,
.request-modal .request-form__equipment a,
.request-modal .request-form__bottom > button,
.request-modal .request-form__privacy {
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: calc(14 / 1632 * 100cqw);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
.request-modal .request-form__equipment > span { background: #FAFAFA; }
.request-modal .request-form__equipment a {
  min-width: calc(223 / 1632 * 100cqw);
  height: calc(50 / 1632 * 100cqw);
  border-color: #0D0202;
  border-radius: 25px;
  color: #0D0202;
}
.request-modal .request-form textarea {
  height: calc(170 / 1632 * 100cqw);
  min-height: 0;
  margin-top: calc(14 / 1632 * 100cqw);
  padding-top: calc(18 / 1632 * 100cqw);
  border-radius: 14px;
  resize: none;
}
.request-modal .request-form__bottom {
  position: absolute;
  left: calc(112 / 1632 * 100cqw);
  bottom: calc(80 / 1632 * 100cqw);
  margin: 0;
  gap: calc(48 / 1632 * 100cqw);
  align-items: center;
}
.request-modal .request-form__bottom > button {
  width: calc(183 / 1632 * 100cqw);
  height: calc(50 / 1632 * 100cqw);
  border-radius: 25px;
}
.request-modal .request-form__privacy {
  max-width: calc(420 / 1632 * 100cqw);
  margin-left: calc(12 / 1632 * 100cqw);
  color: #0D0202;
}
.request-modal .request-form__privacy input { display: none; }
.request-modal .request-form__privacy a { color: #0D0202; text-decoration: none; }

@media (max-width: 760px) {
  .home-page .built-industry__content p { font-size: 16px; line-height: 1.1; }
  .request-modal { padding: 10px; }
  .request-modal .modal__box {
    width: calc(100vw - 20px);
    aspect-ratio: auto;
    min-height: calc(100vh - 20px);
    max-height: calc(100vh - 20px);
    overflow: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 52px 20px 26px;
    border-radius: 18px;
    background: #FAFAFA;
    border: 1px solid rgba(13,2,2,.24);
  }
  .request-modal .modal__close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 24px; }
  .request-modal .request-modal__intro h2 { font-size: 52px; }
  .request-modal .request-modal__intro p { max-width: 360px; font-size: 16px; line-height: 1.05; }
  .request-modal .request-form input { min-height: 48px; font-size: 15px; }
  .request-modal .request-form__equipment { min-height: 130px; }
  .request-modal .request-form__equipment a { min-width: 130px; height: 44px; font-size: 13px; }
  .request-modal .request-form textarea { height: 150px; font-size: 15px; }
  .request-modal .request-form__bottom { position: static; margin-top: 14px; gap: 12px; align-items: flex-start; flex-direction: column; }
  .request-modal .request-form__bottom > button { width: 180px; height: 50px; font-size: 16px; }
  .request-modal .request-form__privacy { max-width: none; font-size: 12px; }
}

/* Make Request selected equipment alignment: centre help text and Browse Equipment button */
.request-modal .request-form__equipment {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  column-gap: calc(28 / 1632 * 100cqw) !important;
}
.request-modal .request-form__equipment > span {
  position: absolute !important;
  top: -0.62em !important;
  left: calc(32 / 1632 * 100cqw) !important;
  padding: 0 6px !important;
}
.request-modal .request-form__equipment em {
  grid-column: 2 !important;
  justify-self: end !important;
  align-self: center !important;
  margin: 0 !important;
  text-align: center !important;
}
.request-modal .request-form__equipment a {
  grid-column: 3 !important;
  justify-self: start !important;
  align-self: center !important;
  margin: 0 !important;
}
@media (max-width: 760px) {
  .request-modal .request-form__equipment {
    grid-template-columns: 1fr !important;
    row-gap: 12px !important;
    justify-items: center !important;
  }
  .request-modal .request-form__equipment em,
  .request-modal .request-form__equipment a {
    grid-column: 1 !important;
    justify-self: center !important;
  }
}


/* ========================================================================
   FINAL QA — request modal alignment + approved DGW300MS visual assets
   ======================================================================== */
.request-modal .request-form__privacy {
  margin-left: calc(12 / 1632 * 100cqw);
}
.request-modal .request-form__equipment {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  column-gap: calc(28 / 1632 * 100cqw) !important;
}
.request-modal .request-form__equipment > span {
  position: absolute !important;
  top: -0.62em !important;
  left: calc(32 / 1632 * 100cqw) !important;
  padding: 0 6px !important;
}
.request-modal .request-form__equipment em {
  grid-column: 2 !important;
  justify-self: end !important;
  align-self: center !important;
  margin: 0 !important;
  text-align: center !important;
}
.request-modal .request-form__equipment a {
  grid-column: 3 !important;
  justify-self: start !important;
  align-self: center !important;
  margin: 0 !important;
}
.product-detail-page .product-certification-strip[src*="approved-v3"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: min(100%, 536px) !important;
  max-width: 536px !important;
  min-height: 40px !important;
  height: auto !important;
  margin: 14px 0 16px !important;
  object-fit: contain !important;
  object-position: left center !important;
}
.product-detail-page .product-warranty[src*="approved-v3"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 252px !important;
  height: 252px !important;
  max-width: 100% !important;
  margin: 0 auto 14px !important;
  object-fit: contain !important;
  object-position: center !important;
}
@media (max-width: 760px) {
  .request-modal .request-form__privacy { margin-left: 0; }
  .request-modal .request-form__equipment {
    grid-template-columns: 1fr !important;
    row-gap: 12px !important;
    justify-items: center !important;
  }
  .request-modal .request-form__equipment em,
  .request-modal .request-form__equipment a {
    grid-column: 1 !important;
    justify-self: center !important;
  }
  .product-detail-page .product-certification-strip[src*="approved-v3"] { width: min(100%, 360px) !important; }
  .product-detail-page .product-warranty[src*="approved-v3"] { width: 170px !important; height: 170px !important; }
}

/* ========================================================================
   ABOUT US - Desktop 17 reference implementation
   ======================================================================== */
.about-page {
  --about-width: min(1840px, calc(100vw - 80px));
  --about-radius: 24px;
  --about-gap: 24px;
  overflow: clip;
}
.about-page .site-header {
  z-index: 10;
}
.about-page .site-header__logo img { width: calc(146 / 1840 * 100cqw); }
.about-page .site-nav { gap: calc(34 / 1840 * 100cqw); }
.about-page .site-nav__link { font-size: calc(14 / 1840 * 100cqw); }
.about-page .site-nav__link.is-current { color: var(--red); font-weight: 700; }
.about-page .request-button { width: calc(185 / 1840 * 100cqw); height: calc(50 / 1840 * 100cqw); font-size: calc(14 / 1840 * 100cqw); }

.about-hero {
  position: relative;
  container-type: inline-size;
  width: var(--about-width);
  height: calc(370 / 1840 * 100cqw);
  min-height: 340px;
  margin: calc(40 / 1840 * 100vw) auto calc(40 / 1840 * 100cqw);
  overflow: hidden;
  border-radius: var(--about-radius);
  background: #150505;
}
.about-hero__image,
.about-proof > img,
.about-reliability > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero__image { object-position: center 55%; }
.about-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,2,2,.22) 0%, rgba(13,2,2,.14) 48%, rgba(13,2,2,.6) 100%);
}
.about-hero__title {
  position: absolute;
  left: calc(32 / 1840 * 100cqw);
  bottom: calc(34 / 1840 * 100cqw);
  z-index: 2;
  max-width: calc(1090 / 1840 * 100cqw);
  margin: 0;
  color: #FAFAFA;
  font-size: calc(112 / 1840 * 100cqw);
  font-weight: 800;
  line-height: .85;
  letter-spacing: -.045em;
}
.about-hero__copy {
  position: absolute;
  right: calc(42 / 1840 * 100cqw);
  bottom: calc(30 / 1840 * 100cqw);
  z-index: 2;
  width: calc(690 / 1840 * 100cqw);
  margin: 0;
  color: #FAFAFA;
  font-size: calc(24 / 1840 * 100cqw);
  font-weight: 400;
  line-height: 1;
  text-align: left;
}

.about-main {
  width: var(--about-width);
  container-type: inline-size;
  margin: 0 auto;
  padding: 0;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--about-gap);
}
.about-card {
  position: relative;
  height: calc(450 / 1840 * 100cqw);
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(13,2,2,.24);
  border-radius: var(--about-radius);
  background: #FAFAFA;
}
.about-proof,
.about-reliability { background: #170707; color: #FAFAFA; }
.about-proof__shade,
.about-reliability__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,2,2,.78) 0%, rgba(13,2,2,.42) 48%, rgba(13,2,2,.12) 100%);
}
.about-proof__sectors,
.about-reliability__list {
  position: absolute;
  left: calc(48 / 908 * 100%);
  top: calc(72 / 450 * 100%);
  z-index: 2;
  display: grid;
  gap: calc(28 / 450 * 100cqw);
}
.about-proof__sectors > div,
.about-reliability__list > div {
  display: grid;
  grid-template-columns: calc(54 / 908 * 100cqw) auto;
  align-items: center;
  gap: calc(16 / 908 * 100cqw);
}
.about-proof__sectors img,
.about-reliability__list img {
  width: calc(54 / 908 * 100cqw);
  height: calc(54 / 908 * 100cqw);
  padding: calc(12 / 908 * 100cqw);
  border: 1px solid rgba(250,250,250,.5);
  border-radius: 50%;
  filter: brightness(0) invert(1);
}
.about-proof__sectors span,
.about-reliability__list span { display: grid; gap: 4px; }
.about-proof__sectors strong,
.about-reliability__list strong {
  font-size: calc(24 / 1840 * 100cqw);
  line-height: .92;
  font-weight: 700;
}
.about-proof__sectors small,
.about-reliability__list small {
  font-size: calc(16 / 1840 * 100cqw);
  line-height: 1;
  font-weight: 400;
}
.about-proof__stat {
  position: absolute;
  right: calc(80 / 908 * 100%);
  top: calc(132 / 450 * 100%);
  z-index: 2;
  display: grid;
  justify-items: center;
}
.about-proof__stat strong {
  font-size: calc(98 / 1840 * 100cqw);
  font-weight: 800;
  line-height: .8;
  letter-spacing: -.05em;
}
.about-proof__stat span {
  margin-top: calc(12 / 1840 * 100cqw);
  font-size: calc(18 / 1840 * 100cqw);
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.about-copy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(46 / 1840 * 100cqw) calc(32 / 1840 * 100cqw) calc(38 / 1840 * 100cqw);
  text-align: center;
}
.about-copy-card h2 {
  margin: 0 0 calc(28 / 1840 * 100cqw);
  color: var(--dark);
  font-size: calc(112 / 1840 * 100cqw);
  font-weight: 800;
  line-height: .85;
  letter-spacing: -.045em;
}
.about-copy-card p {
  margin: 0;
  max-width: 94%;
  color: var(--dark);
  font-size: calc(24 / 1840 * 100cqw);
  font-weight: 400;
  line-height: 1;
}
.about-copy-card p + p { margin-top: calc(18 / 1840 * 100cqw); }

.about-timeline {
  display: grid;
  grid-template-columns: 1.8fr repeat(4, 1fr);
  min-height: 0;
  gap: calc(12 / 1840 * 100cqw);
}
.about-timeline > article {
  min-width: 0;
  display: grid;
  place-items: center;
  border-radius: calc(22 / 1840 * 100cqw);
  background: var(--red);
  color: #FAFAFA;
}
.about-timeline > article:not(.about-timeline__highlight) span {
  font-size: calc(25 / 1840 * 100cqw);
  font-weight: 700;
  line-height: 1;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.about-timeline__highlight {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: flex-end !important;
  padding: calc(28 / 1840 * 100cqw);
}
.about-timeline__highlight img {
  align-self: center;
  width: calc(138 / 1840 * 100cqw);
  height: calc(138 / 1840 * 100cqw);
  object-fit: contain;
  image-rendering: auto;
}
.about-timeline__highlight strong {
  margin-top: auto;
  font-size: calc(70 / 1840 * 100cqw);
  font-weight: 800;
  line-height: .86;
  letter-spacing: -.05em;
}
.about-timeline__highlight span {
  margin-top: calc(10 / 1840 * 100cqw);
  font-size: calc(17 / 1840 * 100cqw);
  line-height: .96;
}
.about-reliability__shade { background: linear-gradient(90deg, rgba(13,2,2,.76), rgba(13,2,2,.24)); }
.about-reliability__list { top: calc(92 / 450 * 100%); }

.about-support {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr)) calc(150 / 1840 * 100cqw);
  gap: calc(16 / 1840 * 100cqw);
  margin-top: calc(24 / 1840 * 100cqw);
  min-height: calc(350 / 1840 * 100cqw);
}
.about-support > article {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
  padding: calc(34 / 1840 * 100cqw) calc(32 / 1840 * 100cqw);
  border-radius: var(--about-radius);
  background: var(--red);
  color: #FAFAFA;
}
.about-support h2 {
  margin: 0;
  font-size: calc(36 / 1840 * 100cqw);
  font-weight: 800;
  line-height: .84;
  letter-spacing: -.04em;
}
.about-support p {
  margin: calc(16 / 1840 * 100cqw) 0 0;
  font-size: calc(17 / 1840 * 100cqw);
  line-height: 1;
}
.about-support__vertical {
  display: grid;
  place-items: center;
  padding: 0 !important;
  color: var(--dark);
  background: transparent !important;
  font-size: calc(68 / 1840 * 100cqw) !important;
  line-height: .83 !important;
  text-align: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.about-industries {
  display: grid;
  grid-template-columns: calc(240 / 1840 * 100cqw) 1fr;
  gap: calc(16 / 1840 * 100cqw);
  margin-top: calc(24 / 1840 * 100cqw);
  min-height: calc(456 / 1840 * 100cqw);
}
.about-industries__side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-industries__side h2 {
  margin: 0;
  font-size: calc(64 / 1840 * 100cqw);
  font-weight: 800;
  line-height: .84;
  letter-spacing: -.05em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.about-industries__controls {
  position: absolute;
  bottom: calc(18 / 1840 * 100cqw);
  left: 50%;
  display: flex;
  gap: calc(14 / 1840 * 100cqw);
  transform: translateX(-50%);
}
.about-industries__controls button {
  width: calc(42 / 1840 * 100cqw);
  height: calc(42 / 1840 * 100cqw);
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(13,2,2,.42);
  border-radius: 50%;
  background: transparent;
  color: var(--dark);
  font-size: calc(32 / 1840 * 100cqw);
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.about-industries__controls button:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.about-industries__viewport { overflow: hidden; }
.about-industries__track {
  display: flex;
  gap: calc(16 / 1840 * 100cqw);
  height: 100%;
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
}
.about-industries__track article {
  position: relative;
  flex: 0 0 calc((100% - (3 * (16 / 1840 * 100cqw))) / 4);
  min-width: 0;
  overflow: hidden;
  border-radius: var(--about-radius);
  background: #150505;
}
.about-industries__track img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}
.about-industries__track article::after {
  content: '';
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(13,2,2,.8));
}
.about-industries__track article:hover img { transform: scale(1.04); filter: saturate(1.05); }
.about-industries__track strong {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: calc(28 / 1840 * 100cqw);
  width: 100%;
  padding: 0 8px;
  color: #FAFAFA;
  font-size: calc(26 / 1840 * 100cqw);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transform: translateX(-50%);
}

.about-cta {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: calc(288 / 1840 * 100cqw);
  margin-top: calc(28 / 1840 * 100cqw);
  padding: calc(36 / 1840 * 100cqw);
  border: 1px solid rgba(13,2,2,.24);
  border-radius: var(--about-radius);
  text-align: center;
}
.about-cta h2 {
  margin: 0;
  color: var(--dark);
  font-size: calc(82 / 1840 * 100cqw);
  font-weight: 800;
  line-height: .84;
  letter-spacing: -.05em;
}
.about-cta p {
  margin: calc(14 / 1840 * 100cqw) 0 0;
  font-size: calc(20 / 1840 * 100cqw);
  line-height: 1;
}
.about-cta div { display:flex; gap: calc(16 / 1840 * 100cqw); margin-top: calc(22 / 1840 * 100cqw); }
.about-cta button,
.about-cta a {
  min-width: calc(184 / 1840 * 100cqw);
  height: calc(50 / 1840 * 100cqw);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 calc(22 / 1840 * 100cqw);
  border: 1px solid var(--dark);
  border-radius: 999px;
  background: transparent;
  color: var(--dark);
  font-size: calc(16 / 1840 * 100cqw);
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.about-cta button { border: 0; background: var(--red); color: #fff; }
.about-cta button:hover, .about-cta a:hover { transform: translateY(-2px); }
.about-cta button:hover { background: #a51a1a; }
.about-cta a:hover { background: var(--dark); color: #fff; }

.about-page .about-footer {
  position: relative;
  display: block;
  width: var(--about-width);
  height: calc(366 / 1840 * 100cqw);
  min-height: 220px;
  margin: calc(28 / 1840 * 100cqw) auto calc(40 / 1840 * 100cqw);
  padding: 0;
  border-radius: var(--about-radius);
  background: var(--red);
  color: #FAFAFA;
  overflow: hidden;
}
.about-page .about-footer .site-footer__brand { position:absolute; top:calc(32 / 1840 * 100cqw); left:calc(32 / 1840 * 100cqw); width:calc(243 / 1840 * 100cqw); display:block; }
.about-page .about-footer .site-footer__logo { display:block; width:100%; }
.about-page .about-footer .site-footer__logo img { width:100%; height:auto; }
.about-page .about-footer .site-footer__brand p { margin:calc(12 / 1840 * 100cqw) 0 0; color:#FAFAFA; font-size:calc(14 / 1840 * 100cqw); line-height:1; }
.about-page .about-footer .site-footer__socials { display:flex; margin-top:calc(24 / 1840 * 100cqw); gap:calc(8 / 1840 * 100cqw); }
.about-page .about-footer .site-footer__socials a { width:calc(40 / 1840 * 100cqw); height:calc(40 / 1840 * 100cqw); display:block; border-radius:50%; background-image:url('../assets/footer/social-icons.svg'); background-size:460% 100%; background-repeat:no-repeat; }
.about-page .about-footer .site-footer__socials a:nth-child(1){background-position:0% 50%}.about-page .about-footer .site-footer__socials a:nth-child(2){background-position:33.333% 50%}.about-page .about-footer .site-footer__socials a:nth-child(3){background-position:66.666% 50%}.about-page .about-footer .site-footer__socials a:nth-child(4){background-position:100% 50%}
.about-page .about-footer .site-footer__nav { position:absolute; top:calc(32 / 1840 * 100cqw); left:calc(652 / 1840 * 100cqw); display:grid; grid-template-columns:repeat(3, calc(184 / 1840 * 100cqw)); column-gap:calc(264 / 1840 * 100cqw); padding:0; gap:0; }
.about-page .about-footer .site-footer__column { display:grid; gap:calc(8 / 1840 * 100cqw); }
.about-page .about-footer .site-footer__column h3 { margin:0 0 calc(4 / 1840 * 100cqw); font-size:calc(18 / 1840 * 100cqw); line-height:1; font-weight:600; }
.about-page .about-footer .site-footer__column a { color:#FAFAFA; font-size:calc(18 / 1840 * 100cqw); line-height:1; }
.about-page .about-footer .site-footer__copy { position:absolute; left:calc(32 / 1840 * 100cqw); bottom:calc(32 / 1840 * 100cqw); margin:0; color:#FAFAFA; font-size:calc(14 / 1840 * 100cqw); line-height:1; }

.about-animate { transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1); }
.js .about-animate { opacity: 0; transform: translateY(26px); }
.js .about-animate.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .about-page { --about-width: min(100% - 40px, 1840px); }
  .about-hero { min-height: 340px; }
  .about-card { min-height: 360px; }
  .about-copy-card h2 { font-size: clamp(43px, 7.2vw, 76px); }
  .about-copy-card p { font-size: clamp(14px, 2vw, 20px); }
  .about-proof__sectors strong, .about-reliability__list strong { font-size: clamp(15px, 2vw, 20px); }
  .about-proof__sectors small, .about-reliability__list small { font-size: clamp(11px, 1.5vw, 14px); }
  .about-support h2 { font-size: clamp(22px, 2.6vw, 32px); }
  .about-support p { font-size: clamp(11px, 1.5vw, 14px); }
  .about-industries__side h2 { font-size: clamp(38px, 5vw, 60px); }
  .about-cta h2 { font-size: clamp(50px, 7vw, 76px); }
}
@media (max-width: 760px) {
  .about-page { --about-width: calc(100vw - 20px); --about-gap: 14px; }
  .about-hero { height: 360px; min-height: 0; margin: 10px auto 16px; border-radius:16px; }
  .about-page .site-header { left:10px; width:calc(100% - 20px); height:62px; padding:0 12px; border-radius:0 0 16px 16px; }
  .about-page .site-header__logo img { width:82px; }
  .about-page .site-menu-toggle { display:inline-flex; order:3; margin-left:8px; }
  .about-page .site-header__actions { gap:7px; }
  .about-page .site-header .language__button { width:30px; height:30px; }
  .about-page .site-header .request-button { width:auto; min-width:88px; height:30px; padding:0 10px; font-size:10px; }
  .about-page .site-header.is-menu-open { height:auto; min-height:62px; padding-bottom:12px; align-items:center; flex-wrap:wrap; }
  .about-page .site-header.is-menu-open .site-nav { order:4; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); width:100%; gap:10px 16px; margin:12px 0 0; }
  .about-page .site-header.is-menu-open .site-nav__link { font-size:13px; }
  .about-hero__title { left:18px; bottom:76px; max-width:90%; font-size:clamp(46px, 12vw, 72px); }
  .about-hero__copy { left:18px; right:18px; bottom:22px; width:auto; font-size:13px; line-height:1.08; }
  .about-grid { grid-template-columns:1fr; }
  .about-card { height:auto; min-height:310px; }
  .about-proof, .about-reliability { min-height:360px; }
  .about-proof__sectors, .about-reliability__list { left:24px; top:45px; gap:18px; }
  .about-proof__sectors > div, .about-reliability__list > div { grid-template-columns:42px auto; gap:12px; }
  .about-proof__sectors img, .about-reliability__list img { width:42px; height:42px; padding:9px; }
  .about-proof__sectors strong, .about-reliability__list strong { font-size:15px; }
  .about-proof__sectors small, .about-reliability__list small { font-size:11px; }
  .about-proof__stat { right:18px; top:148px; }
  .about-proof__stat strong { font-size:60px; }
  .about-proof__stat span { font-size:11px; }
  .about-copy-card { padding:34px 20px; }
  .about-copy-card h2 { margin-bottom:20px; font-size:52px; }
  .about-copy-card p { font-size:14px; line-height:1.15; }
  .about-copy-card br { display:none; }
  .about-timeline { min-height:250px; grid-template-columns:1.8fr repeat(4,1fr); gap:8px; }
  .about-timeline__highlight { padding:18px; }
  .about-timeline__highlight img { width:72px; height:72px; }
  .about-timeline__highlight strong { font-size:42px; }
  .about-timeline__highlight span { font-size:11px; }
  .about-timeline > article:not(.about-timeline__highlight) span { font-size:15px; }
  .about-support { grid-template-columns:repeat(2,1fr); min-height:0; margin-top:14px; gap:10px; }
  .about-support > article { min-height:190px; padding:20px 16px; border-radius:16px; }
  .about-support h2 { font-size:22px; }
  .about-support p { font-size:11px; margin-top:10px; }
  .about-support__vertical { grid-column:1 / -1; min-height:82px; font-size:36px !important; writing-mode:horizontal-tb; transform:none; }
  .about-industries { grid-template-columns:72px 1fr; min-height:280px; margin-top:18px; gap:8px; }
  .about-industries__side h2 { font-size:34px; }
  .about-industries__controls { bottom:0; gap:8px; }
  .about-industries__controls button { width:26px; height:26px; font-size:20px; }
  .about-industries__track { gap:10px; }
  .about-industries__track article { flex-basis:calc(100% - 8px); border-radius:16px; }
  .about-industries__track strong { bottom:18px; font-size:18px; }
  .about-cta { min-height:240px; margin-top:18px; padding:24px 18px; border-radius:16px; }
  .about-cta h2 { font-size:44px; }
  .about-cta p { font-size:13px; line-height:1.1; }
  .about-cta div { gap:8px; margin-top:18px; }
  .about-cta button, .about-cta a { min-width:0; height:38px; padding:0 15px; font-size:11px; }
  .about-page .about-footer { height:auto; min-height:0; margin:20px auto; padding:28px 22px 66px; border-radius:16px; }
  .about-page .about-footer .site-footer__brand { position:static; width:auto; }
  .about-page .about-footer .site-footer__logo { width:160px; }
  .about-page .about-footer .site-footer__brand p { margin-top:8px; font-size:12px; }
  .about-page .about-footer .site-footer__socials { margin-top:18px; gap:8px; }
  .about-page .about-footer .site-footer__socials a { width:28px; height:28px; }
  .about-page .about-footer .site-footer__nav { position:static; display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:26px; }
  .about-page .about-footer .site-footer__column { gap:7px; }
  .about-page .about-footer .site-footer__column h3 { font-size:13px; margin-bottom:2px; }
  .about-page .about-footer .site-footer__column a { font-size:12px; }
  .about-page .about-footer .site-footer__copy { left:22px; bottom:22px; font-size:10px; }
}


/* SHARED FOOTER — use the approved Home footer on every route.
   The Home footer is the visual source of truth. Other pages receive the
   same component markup plus these exact desktop/tablet/mobile tracks. */
.site-footer.footer--home-reference {
  position: relative !important;
  inset: auto !important;
  float: none !important;
  clear: both !important;
  display: block !important;
  width: var(--page-width) !important;
  height: clamp(240px, 19.89vw, 366px) !important;
  min-height: 240px !important;
  margin: clamp(64px, 4.35vw, 80px) auto 40px !important;
  padding: 0 !important;
  border-radius: 24px !important;
  background: var(--red) !important;
  color: #FAFAFA !important;
  overflow: hidden !important;
  isolation: isolate;
  transform: none !important;
  z-index: 1 !important;
}
.site-footer.footer--home-reference .site-footer__brand {
  position: absolute !important;
  top: calc(32 / 1840 * 100cqw) !important;
  left: calc(32 / 1840 * 100cqw) !important;
  width: calc(243 / 1840 * 100cqw) !important;
  display: block !important;
}
.site-footer.footer--home-reference .site-footer__logo { width: 100% !important; min-width: 0 !important; }
.site-footer.footer--home-reference .site-footer__logo img { display: block; width: 100% !important; height: auto; }
.site-footer.footer--home-reference .site-footer__brand > p { display: none !important; }
.site-footer.footer--home-reference .site-footer__socials { margin-top: calc(24 / 1840 * 100cqw) !important; gap: calc(8 / 1840 * 100cqw) !important; }
.site-footer.footer--home-reference .site-footer__socials > a {
  width: calc(40 / 1840 * 100cqw) !important;
  height: calc(40 / 1840 * 100cqw) !important;
  min-width: 20px !important;
  min-height: 20px !important;
}
.site-footer.footer--home-reference .site-footer__nav {
  position: absolute !important;
  top: calc(32 / 1840 * 100cqw) !important;
  left: calc(652 / 1840 * 100cqw) !important;
  right: auto !important;
  display: grid !important;
  grid-template-columns: repeat(3, calc(184 / 1840 * 100cqw)) !important;
  column-gap: calc(264 / 1840 * 100cqw) !important;
  gap: 0 !important;
  padding: 0 !important;
}
.site-footer.footer--home-reference .site-footer__column { gap: calc(8 / 1840 * 100cqw) !important; min-width: 0; }
.site-footer.footer--home-reference .site-footer__column h3 {
  margin: 0 0 calc(4 / 1840 * 100cqw) !important;
  font-size: calc(18 / 1840 * 100cqw) !important;
  line-height: 1 !important;
  font-weight: 600 !important;
}
.site-footer.footer--home-reference .site-footer__column a {
  color: #FAFAFA !important;
  font-size: calc(18 / 1840 * 100cqw) !important;
  line-height: 1 !important;
}
.site-footer.footer--home-reference .site-footer__copy {
  position: absolute !important;
  left: calc(32 / 1840 * 100cqw) !important;
  bottom: calc(32 / 1840 * 100cqw) !important;
  margin: 0 !important;
  color: #FAFAFA !important;
  font-size: calc(14 / 1840 * 100cqw) !important;
  line-height: 1 !important;
}

@media (min-width: 1200px) {
  .site-footer.footer--home-reference .site-footer__nav {
    left: calc(652 / 1840 * 100cqw) !important;
    right: auto !important;
    grid-template-columns:
      calc(170 / 1840 * 100cqw)
      calc(220 / 1840 * 100cqw)
      calc(220 / 1840 * 100cqw) !important;
    column-gap: calc(230 / 1840 * 100cqw) !important;
    align-items: start !important;
  }
  .site-footer.footer--home-reference .site-footer__column:nth-child(2),
  .site-footer.footer--home-reference .site-footer__column:nth-child(3) {
    min-width: calc(220 / 1840 * 100cqw) !important;
  }
  .site-footer.footer--home-reference .site-footer__column a,
  .site-footer.footer--home-reference .site-footer__column h3 {
    white-space: nowrap !important;
    overflow-wrap: normal !important;
  }
}

@media (min-width: 761px) and (max-width: 1199px) {
  .site-footer.footer--home-reference .site-footer__nav {
    left: 34% !important;
    right: 4% !important;
    grid-template-columns: minmax(78px, .78fr) minmax(0, 1.15fr) minmax(0, 1.15fr) !important;
    column-gap: clamp(42px, 6cqw, 82px) !important;
    align-items: start !important;
  }
  .site-footer.footer--home-reference .site-footer__column { min-width: 0 !important; }
  .site-footer.footer--home-reference .site-footer__column a,
  .site-footer.footer--home-reference .site-footer__column h3 {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
}

@media (max-width: 760px) {
  .site-footer.footer--home-reference {
    height: auto !important;
    min-height: 0 !important;
    margin: 42px auto 20px !important;
    padding: 28px 22px 66px !important;
    border-radius: 16px !important;
  }
  .site-footer.footer--home-reference .site-footer__brand,
  .site-footer.footer--home-reference .site-footer__nav {
    position: static !important;
    width: auto !important;
  }
  .site-footer.footer--home-reference .site-footer__logo { width: 160px !important; }
  .site-footer.footer--home-reference .site-footer__socials { margin-top: 18px !important; gap: 8px !important; }
  .site-footer.footer--home-reference .site-footer__socials > a {
    width: 28px !important;
    height: 28px !important;
    min-width: 0 !important;
    min-height: 0 !important;
  }
  .site-footer.footer--home-reference .site-footer__nav {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    margin-top: 28px !important;
    padding: 0 !important;
  }
  .site-footer.footer--home-reference .site-footer__column { gap: 7px !important; }
  .site-footer.footer--home-reference .site-footer__column h3 { font-size: 13px !important; margin-bottom: 2px !important; }
  .site-footer.footer--home-reference .site-footer__column a {
    font-size: 12px !important;
    white-space: normal !important;
  }
  .site-footer.footer--home-reference .site-footer__copy { left: 22px !important; bottom: 22px !important; font-size: 10px !important; }
}

/* ========================================================================
   PRODUCT DETAIL — technical specification grid + full-width video/docs
   Exact Desktop product reference pass; scoped only to product detail pages.
   ======================================================================== */
.product-detail-page .detail-section#specifications,
.product-detail-page .detail-section#video,
.product-detail-page .detail-section#documents {
  width: min(100%, 1496px);
  max-width: 1496px;
}

.product-detail-page .technical-specs.technical-specs--figma {
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: calc((608px - 2px) / 7);
  border: 1px solid rgba(13, 2, 2, .24);
  border-radius: 0;
  background: #FAFAFA;
}
.product-detail-page .technical-specs.technical-specs--figma > div {
  min-height: 0;
  height: 100%;
  padding: 14px 24px;
  border-right-color: rgba(13, 2, 2, .24);
  border-bottom-color: rgba(13, 2, 2, .24);
  background: #FAFAFA;
}
.product-detail-page .technical-specs.technical-specs--figma > .technical-specs__label {
  background: rgba(13, 2, 2, .08);
}
.product-detail-page .technical-specs.technical-specs--figma > .technical-specs__value {
  background: #FAFAFA;
}
.product-detail-page .technical-specs.technical-specs--figma dt,
.product-detail-page .technical-specs.technical-specs--figma dd {
  font-size: 12px;
  line-height: 1.2;
  color: #0D0202;
}

.product-detail-page .detail-section#video .detail-video,
.product-detail-page .detail-section#video .detail-video__trigger,
.product-detail-page .detail-section#documents .documents-grid {
  width: 100%;
  max-width: 1496px;
}
.product-detail-page .detail-section#video .detail-video img {
  width: 100%;
  aspect-ratio: 1496 / 720;
  object-fit: cover;
}
.product-detail-page .detail-section#documents .documents-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 760px) {
  .product-detail-page .technical-specs.technical-specs--figma {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    border-radius: 0;
  }
  .product-detail-page .technical-specs.technical-specs--figma > div {
    min-height: 62px;
    height: auto;
    padding: 12px;
  }
  .product-detail-page .detail-section#documents .documents-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}


/* RESOURCES — exact Frame 369 category tags */
.resources-page .resource-card__tags {
  display: grid !important;
  grid-template-columns: 143px 100px 145px 100px 102px !important;
  column-gap: 4px !important;
  align-items: center !important;
  width: 608px !important;
  max-width: 100% !important;
  min-height: 38px !important;
  height: 38px !important;
  margin: 12px 0 10px !important;
  padding: 0 !important;
  overflow: visible !important;
  background: transparent !important;
}
.resources-page .resource-card__tags span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 38px !important;
  min-height: 38px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid #BF2121 !important;
  border-radius: 19px !important;
  background: transparent !important;
  color: #BF2121 !important;
  font-family: Inter, Arial, Helvetica, sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
}
@media (max-width: 760px) {
  .resources-page .resource-card__tags {
    display: flex !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    min-height: 38px !important;
    gap: 4px !important;
  }
  .resources-page .resource-card__tags span {
    width: auto !important;
    min-width: 0 !important;
    padding: 0 16px !important;
  }
}


/* PRODUCT DETAIL — header red flanks and approved home breadcrumb icon */
.detail-top::before,
.detail-top::after {
  content: '';
  position: absolute;
  top: 0;
  display: none;
  width: calc(324 / 1840 * 100%);
  height: 80px;
  background: #BF2121;
  border-radius: 24px;
  z-index: 0;
  pointer-events: none;
}
.detail-top::before { left: 0; }
.detail-top::after { right: 0; }
.detail-top .site-header { z-index: 1; }
.product-detail-page .breadcrumb__home {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 24px;
}
.product-detail-page .breadcrumb__home-icon {
  display: block;
  width: 14px;
  height: 16px;
  object-fit: contain;
}
@media (min-width: 1201px) {
  .detail-top::before,
  .detail-top::after { display: block; }
}
@media (max-width: 760px) {
  .product-detail-page .breadcrumb__home {
    width: 24px;
    height: 24px;
  }
}


/* ========================================================================
   CONTACT FEATURE ROW — Frame 209 text and typography reference
   ======================================================================== */
.contact-feature-row {
  container-type: inline-size;
  width: 100%;
  min-height: calc(224 / 1840 * 100cqw);
  margin-top: calc(24 / 1840 * 100cqw);
  padding: calc(32 / 1840 * 100cqw) 0;
  display: grid;
  grid-template-columns: 32% 37% 31%;
  align-items: stretch;
  gap: 0;
  border: 1px solid rgba(13, 2, 2, .24);
  border-radius: calc(24 / 1840 * 100cqw);
  background: #FAFAFA;
  box-sizing: border-box;
}
.contact-feature-row article {
  min-width: 0;
  min-height: calc(160 / 1840 * 100cqw);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.contact-feature-row article:nth-child(1) {
  padding-left: calc(32 / 1840 * 100cqw);
  padding-right: calc(88 / 1840 * 100cqw);
}
.contact-feature-row article:nth-child(2) {
  padding-left: calc(128 / 1840 * 100cqw);
  padding-right: calc(144 / 1840 * 100cqw);
}
.contact-feature-row article:nth-child(3) {
  padding-left: calc(126 / 1840 * 100cqw);
  padding-right: calc(32 / 1840 * 100cqw);
}
.contact-feature-row article:not(:last-child) {
  border-right: 1px solid rgba(13, 2, 2, .14);
}
.contact-feature-row h2 {
  margin: 0 0 calc(12 / 1840 * 100cqw);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: calc(32 / 1840 * 100cqw);
  font-weight: 700;
  line-height: .85;
  letter-spacing: 0;
  color: #0D0202;
}
.contact-feature-row p {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: calc(18 / 1840 * 100cqw);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #0D0202;
}
@media (max-width: 760px) {
  .contact-feature-row {
    min-height: 0;
    margin-top: 22px;
    padding: 20px;
    grid-template-columns: 1fr;
    border-radius: 18px;
  }
  .contact-feature-row article,
  .contact-feature-row article:nth-child(n) {
    min-height: 0;
    margin: 0;
    padding: 0 0 18px;
  }
  .contact-feature-row article:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(13, 2, 2, .14);
  }
  .contact-feature-row article:last-child { padding-bottom: 0; }
  .contact-feature-row h2 { margin-bottom: 8px; font-size: 22px; }
  .contact-feature-row p { font-size: 14px; line-height: 1.25; }
}


/* FRAME 154 — FINAL TYPOGRAPHY AND COPY ALIGNMENT */
/* This narrow override only affects the shared Make Request modal. */
.request-modal .request-modal__intro h2 {
  width: calc(620 / 1632 * 100cqw) !important;
  margin: 0 !important;
  font-family: Inter, Arial, Helvetica, sans-serif !important;
  font-size: calc(112 / 1632 * 100cqw) !important;
  font-weight: 700 !important;
  line-height: .85 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}
.request-modal .request-modal__intro p {
  width: calc(620 / 1632 * 100cqw) !important;
  max-width: calc(620 / 1632 * 100cqw) !important;
  margin: calc(22 / 1632 * 100cqw) 0 0 !important;
  font-family: Inter, Arial, Helvetica, sans-serif !important;
  font-size: calc(24 / 1632 * 100cqw) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}
.request-modal .request-form__grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: calc(16 / 1632 * 100cqw) !important;
}
.request-modal .request-form input,
.request-modal .request-form textarea {
  font-family: Inter, Arial, Helvetica, sans-serif !important;
  font-size: calc(18 / 1632 * 100cqw) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  color: #0D0202 !important;
}
.request-modal .request-form input::placeholder,
.request-modal .request-form textarea::placeholder {
  color: #0D0202 !important;
  opacity: 1 !important;
}
.request-modal .request-form__equipment {
  min-height: calc(144 / 1632 * 100cqw) !important;
  margin-top: calc(14 / 1632 * 100cqw) !important;
  padding: calc(16 / 1632 * 100cqw) !important;
  border: 1px solid #0D0202 !important;
  border-radius: 14px !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  column-gap: calc(28 / 1632 * 100cqw) !important;
}
.request-modal .request-form__equipment > span {
  position: absolute !important;
  top: calc(-9 / 1632 * 100cqw) !important;
  left: calc(16 / 1632 * 100cqw) !important;
  padding: 0 calc(5 / 1632 * 100cqw) !important;
  background: #FAFAFA !important;
  font-family: Inter, Arial, Helvetica, sans-serif !important;
  font-size: calc(14 / 1632 * 100cqw) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}
.request-modal .request-form__equipment-value {
  display: none !important;
}
.request-modal .request-form__equipment em {
  grid-column: 2 !important;
  justify-self: end !important;
  align-self: center !important;
  margin: 0 !important;
  color: #0D0202 !important;
  font-family: Inter, Arial, Helvetica, sans-serif !important;
  font-size: calc(14 / 1632 * 100cqw) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}
.request-modal .request-form__equipment a {
  grid-column: 3 !important;
  justify-self: start !important;
  align-self: center !important;
  min-width: calc(223 / 1632 * 100cqw) !important;
  height: calc(50 / 1632 * 100cqw) !important;
  margin: 0 !important;
  border: 1px solid #0D0202 !important;
  border-radius: 25px !important;
  color: #0D0202 !important;
  font-family: Inter, Arial, Helvetica, sans-serif !important;
  font-size: calc(18 / 1632 * 100cqw) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}
.request-modal .request-form textarea {
  height: calc(170 / 1632 * 100cqw) !important;
  min-height: 0 !important;
  margin-top: calc(14 / 1632 * 100cqw) !important;
  padding-top: calc(18 / 1632 * 100cqw) !important;
  border: 1px solid #0D0202 !important;
  border-radius: 14px !important;
  resize: none !important;
}
.request-modal .request-form__bottom {
  position: absolute !important;
  left: calc(112 / 1632 * 100cqw) !important;
  bottom: calc(80 / 1632 * 100cqw) !important;
  display: flex !important;
  align-items: center !important;
  gap: calc(48 / 1632 * 100cqw) !important;
  margin: 0 !important;
}
.request-modal .request-form__bottom > button {
  width: calc(183 / 1632 * 100cqw) !important;
  height: calc(50 / 1632 * 100cqw) !important;
  border-radius: 25px !important;
  font-family: Inter, Arial, Helvetica, sans-serif !important;
  font-size: calc(18 / 1632 * 100cqw) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}
.request-modal .request-form__privacy {
  max-width: calc(420 / 1632 * 100cqw) !important;
  margin-left: 0 !important;
  color: #0D0202 !important;
  font-family: Inter, Arial, Helvetica, sans-serif !important;
  font-size: calc(14 / 1632 * 100cqw) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}
.request-modal .request-form__privacy a {
  color: #0D0202 !important;
  text-decoration: none !important;
}
.request-modal .request-form__privacy input { display: none !important; }

@media (max-width: 760px) {
  .request-modal .request-modal__intro h2 { width: auto !important; font-size: 52px !important; }
  .request-modal .request-modal__intro p { width: auto !important; max-width: 360px !important; font-size: 16px !important; line-height: 1.05 !important; }
  .request-modal .request-form input,
  .request-modal .request-form textarea { font-size: 15px !important; }
  .request-modal .request-form__equipment { grid-template-columns: 1fr !important; row-gap: 12px !important; justify-items: center !important; }
  .request-modal .request-form__equipment em,
  .request-modal .request-form__equipment a { grid-column: 1 !important; justify-self: center !important; }
  .request-modal .request-form__equipment a { font-size: 14px !important; }
  .request-modal .request-form__bottom { position: static !important; margin-top: 14px !important; flex-direction: column !important; align-items: flex-start !important; gap: 12px !important; }
  .request-modal .request-form__bottom > button { font-size: 16px !important; }
  .request-modal .request-form__privacy { max-width: none !important; font-size: 12px !important; }
}

/* ========================================================================
   HOME — image-only hero, red Latest News interaction and image delivery
   ======================================================================== */
/* The hero carousel contains photographs only; the local video remains scoped
   to the separate Built for Industry module. */
.home-page .hero__video { display: none !important; }
.home-page .hero__slide { cursor: default; }

/* All four Latest News tiles use the same red sweep on hover/focus, matching
   the approved red interactive treatment used elsewhere on the site. */
.home-page .latest-news__feature,
.home-page .latest-news__stack a {
  isolation: isolate;
}
.home-page .latest-news__feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(13, 2, 2, 0) 0%, rgba(13, 2, 2, .60) 87.02%);
}
.home-page .latest-news__feature::after,
.home-page .latest-news__stack a::after {
  display: block !important;
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(191, 33, 33, .54);
  opacity: 0;
  transform: translateX(-102%);
  transition: transform .48s cubic-bezier(.22, 1, .36, 1), opacity .24s ease;
}
.home-page .latest-news__feature > span { z-index: 3 !important; }
.home-page .latest-news__feature:hover::after,
.home-page .latest-news__feature:focus-visible::after,
.home-page .latest-news__stack a:hover::after,
.home-page .latest-news__stack a:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}
.home-page .latest-news__feature img,
.home-page .latest-news__stack a img {
  transition: transform .48s cubic-bezier(.22, 1, .36, 1), filter .28s ease;
}
.home-page .latest-news__feature:hover img,
.home-page .latest-news__feature:focus-visible img,
.home-page .latest-news__stack a:hover img,
.home-page .latest-news__stack a:focus-visible img {
  transform: scale(1.025) !important;
  filter: contrast(1.02) saturate(1.05) !important;
}
@media (prefers-reduced-motion: reduce) {
  .home-page .latest-news__feature::after,
  .home-page .latest-news__stack a::after,
  .home-page .latest-news__feature img,
  .home-page .latest-news__stack a img { transition: none !important; }
}


/* ========================================================================
   REQUEST MODAL — approved bottom action/privacy alignment
   ======================================================================== */
/* The frame reference places the privacy copy immediately after the Send
   Request control, centred on the button’s vertical axis. */
.request-modal .request-form__bottom {
  justify-content: flex-start !important;
  gap: calc(32 / 1632 * 100cqw) !important;
}
.request-modal .request-form__privacy {
  display: block !important;
  align-self: center !important;
  margin: 0 !important;
}
@media (max-width: 760px) {
  .request-modal .request-form__bottom {
    gap: 12px !important;
  }
  .request-modal .request-form__privacy {
    align-self: flex-start !important;
  }
}

/* ========================================================================
   PRODUCT DETAIL — final fix pass requested 02 Jul
   1) header red side blocks must be fully rounded and exact desktop width
   2) technical specifications / video / documents must stop at the
      first-two-columns content width, not stretch to full page width
   ======================================================================== */
@media (min-width: 1201px) {
  .detail-top::before,
  .detail-top::after {
    width: 324px !important;
    height: 80px !important;
    border-radius: 40px !important;
  }
}

.product-detail-page .detail-section#specifications,
.product-detail-page .detail-section#video,
.product-detail-page .detail-section#documents {
  width: min(1496px, 81.3043478261%) !important;
  max-width: 1496px !important;
}

.product-detail-page .detail-section#video .detail-video,
.product-detail-page .detail-section#video .detail-video__trigger,
.product-detail-page .detail-section#documents .documents-grid,
.product-detail-page .detail-section#specifications .technical-specs.technical-specs--figma {
  width: 100% !important;
  max-width: none !important;
}

@media (max-width: 1200px) {
  .product-detail-page .detail-section#specifications,
  .product-detail-page .detail-section#video,
  .product-detail-page .detail-section#documents {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* RESOURCES — keep the five approved Frame 369 tags inside every card.
   The reference proportions are preserved, but the columns shrink together
   with the card content instead of retaining a fixed 608px track width. */
.resources-page .resource-card__tags {
  width: 100% !important;
  max-width: 608px !important;
  grid-template-columns:
    minmax(0, 1.43fr)
    minmax(0, 1fr)
    minmax(0, 1.45fr)
    minmax(0, 1fr)
    minmax(0, 1.02fr) !important;
}
.resources-page .resource-card__tags span {
  min-width: 0 !important;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========================================================================
   ABOUT US — exact three supplied reference blocks
   Scoped to: Proven in Practice / Cost-saving Reliability / 1973 timeline.
   These rules preserve the current i18n markup, so English and Czech both
   translate while the composition matches the approved supplied artwork.
   ======================================================================== */
@media (min-width: 761px) {
  .about-page .about-grid--intro > .about-proof {
    height: calc(448 / 1840 * 100cqw);
    min-height: 0;
  }

  .about-page .about-grid--intro > .about-reliability,
  .about-page .about-grid--intro > .about-reliability + .about-copy-card {
    height: calc(472 / 1840 * 100cqw);
    min-height: 0;
  }

  .about-page .about-grid--intro > .about-copy-card:nth-of-type(3),
  .about-page .about-timeline {
    height: calc(472 / 1840 * 100cqw);
    min-height: 0;
  }

  /* GROUP 88 — Proven in Practice */
  .about-page .about-proof > img {
    object-position: center center;
  }
  .about-page .about-proof__shade {
    background: linear-gradient(90deg, rgba(13,2,2,.82) 0%, rgba(13,2,2,.64) 39%, rgba(13,2,2,.16) 72%, rgba(13,2,2,.04) 100%);
  }
  .about-page .about-proof__sectors {
    left: calc(40 / 1840 * 100cqw);
    top: calc(72 / 1840 * 100cqw);
    gap: calc(30 / 1840 * 100cqw);
  }
  .about-page .about-proof__sectors > div {
    grid-template-columns: calc(80 / 1840 * 100cqw) minmax(0, 1fr);
    gap: calc(24 / 1840 * 100cqw);
  }
  .about-page .about-proof__sectors img {
    width: calc(80 / 1840 * 100cqw);
    height: calc(80 / 1840 * 100cqw);
    padding: calc(20 / 1840 * 100cqw);
    border: 1px solid rgba(250,250,250,.24);
    border-radius: 50%;
    filter: brightness(0) invert(1);
  }
  .about-page .about-proof__sectors span {
    gap: calc(6 / 1840 * 100cqw);
  }
  .about-page .about-proof__sectors strong {
    font-size: calc(32 / 1840 * 100cqw);
    line-height: .85;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .about-page .about-proof__sectors small {
    font-size: calc(20 / 1840 * 100cqw);
    line-height: .94;
    font-weight: 400;
  }
  .about-page .about-proof__stat {
    right: calc(48 / 1840 * 100cqw);
    top: calc(136 / 1840 * 100cqw);
  }
  .about-page .about-proof__stat strong {
    font-size: calc(112 / 1840 * 100cqw);
    line-height: .8;
    letter-spacing: -.055em;
  }
  .about-page .about-proof__stat span {
    margin-top: calc(13 / 1840 * 100cqw);
    font-size: calc(20 / 1840 * 100cqw);
    line-height: .92;
  }

  /* GROUP 89 — Cost-saving Reliability */
  .about-page .about-reliability > img {
    object-position: center center;
  }
  .about-page .about-reliability__shade {
    background: linear-gradient(90deg, rgba(13,2,2,.82) 0%, rgba(13,2,2,.60) 38%, rgba(13,2,2,.20) 73%, rgba(13,2,2,.04) 100%);
  }
  .about-page .about-reliability__list {
    left: calc(40 / 1840 * 100cqw);
    top: calc(84 / 1840 * 100cqw);
    gap: calc(32 / 1840 * 100cqw);
  }
  .about-page .about-reliability__list > div {
    grid-template-columns: calc(80 / 1840 * 100cqw) minmax(0, 1fr);
    gap: calc(24 / 1840 * 100cqw);
  }
  .about-page .about-reliability__list img {
    width: calc(80 / 1840 * 100cqw);
    height: calc(80 / 1840 * 100cqw);
    padding: 0;
    border: 0;
    border-radius: 0;
    filter: none;
  }
  .about-page .about-reliability__list span {
    gap: calc(7 / 1840 * 100cqw);
  }
  .about-page .about-reliability__list strong {
    font-size: calc(32 / 1840 * 100cqw);
    line-height: .85;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .about-page .about-reliability__list small {
    font-size: calc(20 / 1840 * 100cqw);
    line-height: 1;
    font-weight: 400;
  }

  /* GROUP 90 — 1973 timeline card */
  .about-page .about-timeline {
    grid-template-columns: 37.55% repeat(4, minmax(0, 1fr));
    gap: calc(8 / 1840 * 100cqw);
  }
  .about-page .about-timeline > article {
    border-radius: calc(24 / 1840 * 100cqw);
  }
  .about-page .about-timeline__highlight {
    position: relative;
    display: block !important;
    padding: 0;
  }
  .about-page .about-timeline__highlight img {
    position: absolute;
    top: calc(54 / 472 * 100%);
    left: 50%;
    width: 70%;
    height: auto;
    margin: 0;
    transform: translateX(-50%);
  }
  .about-page .about-timeline__highlight strong {
    position: absolute;
    left: 18%;
    top: 67%;
    margin: 0;
    font-size: calc(72 / 1840 * 100cqw);
    line-height: .85;
    letter-spacing: -.05em;
  }
  .about-page .about-timeline__highlight span {
    position: absolute;
    left: 18%;
    top: 84%;
    margin: 0;
    font-size: calc(20 / 1840 * 100cqw);
    line-height: .98;
  }
  .about-page .about-timeline > article:not(.about-timeline__highlight) span {
    font-size: calc(24 / 1840 * 100cqw);
  }
}


/* --------------------------------------------------------------------------
   RECOVERY BUILD 03_07 — unified footer, clean legal pages and About Us fixes
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(290px, 1fr) minmax(190px, .62fr) minmax(190px, .62fr) 170px !important;
  grid-template-areas: "brand company legal social" "copy copy copy copy" !important;
  column-gap: clamp(34px, 6vw, 118px) !important;
  row-gap: 0 !important;
  width: 100% !important;
  min-height: 303px !important;
  margin: 0 !important;
  padding: 34px 32px 30px !important;
  box-sizing: border-box !important;
  border-radius: 28px 28px 0 0 !important;
  background: #BF2121 !important;
  color: #FAFAFA !important;
  overflow: hidden !important;
}
.site-footer::before,
.site-footer::after { content: none !important; }
.site-footer__brand { grid-area: brand !important; position: static !important; width: auto !important; display: block !important; }
.site-footer__logo { display: block !important; width: min(226px, 100%) !important; min-width: 0 !important; transition: transform .2s ease, opacity .2s ease !important; }
.site-footer__logo img { display: block !important; width: 100% !important; height: auto !important; }
.site-footer__logo:hover,.site-footer__logo:focus-visible { opacity:.9 !important; transform:translateY(-2px) !important; }
.site-footer__tagline { display: block !important; margin: 14px 0 0 !important; color:#FAFAFA !important; font-size: 13px !important; line-height: 1.08 !important; font-weight: 400 !important; }
.site-footer__nav { grid-area: company / company / legal / legal !important; position:static !important; width:auto !important; display:grid !important; grid-template-columns: repeat(2, minmax(160px, 1fr)) !important; gap: clamp(46px, 8vw, 160px) !important; align-self:start !important; padding:0 !important; }
.site-footer__column { display:flex !important; flex-direction:column !important; align-items:flex-start !important; gap: 5px !important; }
.site-footer__column h3 { margin:0 0 6px !important; color:#FAFAFA !important; font-size:16px !important; line-height:1 !important; font-weight:700 !important; }
.site-footer__column a { color:#FAFAFA !important; font-size:16px !important; line-height:1.12 !important; text-decoration:none !important; transition:transform .2s ease, opacity .2s ease !important; }
.site-footer__column a:hover,.site-footer__column a:focus-visible { opacity:.78 !important; transform:translateX(3px) !important; }
.site-footer__socials { grid-area:social !important; position:static !important; display:flex !important; align-items:flex-start !important; justify-content:flex-end !important; gap:10px !important; margin:0 !important; padding-top:0 !important; }
.site-footer__socials > a { display:block !important; width:40px !important; min-width:40px !important; height:40px !important; min-height:40px !important; padding:0 !important; border:0 !important; border-radius:50% !important; background-color:transparent !important; background-image:url('../assets/footer/social-icons.svg') !important; background-repeat:no-repeat !important; background-size:460% 100% !important; transition:transform .2s ease, opacity .2s ease !important; }
.site-footer__socials > a:nth-child(1) { background-position:0% 50% !important; }
.site-footer__socials > a:nth-child(2) { background-position:33.333% 50% !important; }
.site-footer__socials > a:nth-child(3) { background-position:66.666% 50% !important; }
.site-footer__socials > a:hover,.site-footer__socials > a:focus-visible { opacity:.88 !important; transform:scale(1.08) !important; }
.site-footer__copy { grid-area:copy !important; position:static !important; align-self:end !important; margin: 0 !important; color:#FAFAFA !important; font-size:12px !important; line-height:1 !important; }

.legal-top { min-height: 100px !important; }
.legal-top .inner-top__title { display:none !important; }
.legal-content { width:min(1180px, calc(100% - 64px)) !important; margin: 70px auto 92px !important; color:#0D0202 !important; }
.legal-content__eyebrow { margin:0 0 18px !important; color:#BF2121 !important; font-size:14px !important; font-weight:800 !important; letter-spacing:.08em !important; }
.legal-content h1 { margin:0 0 24px !important; font-size:clamp(46px, 6vw, 86px) !important; line-height:.9 !important; }
.legal-content__intro { max-width:760px !important; margin:0 0 42px !important; font-size:20px !important; line-height:1.32 !important; }
.legal-content section { padding:28px 0 !important; border-top:1px solid rgba(13,2,2,.16) !important; }
.legal-content h2 { margin:0 0 10px !important; font-size:28px !important; line-height:1 !important; }
.legal-content section p { max-width:850px !important; margin:0 !important; font-size:17px !important; line-height:1.42 !important; }

@media (min-width:761px) {
  .about-page .about-hero__title { top:calc(124 / 1840 * 100cqw) !important; bottom:auto !important; }
  .about-page .about-hero__copy { left:calc(32 / 1840 * 100cqw) !important; right:auto !important; bottom:calc(30 / 1840 * 100cqw) !important; width:calc(870 / 1840 * 100cqw) !important; max-width:calc(870 / 1840 * 100cqw) !important; }
  .about-page .about-proof__shade { background:linear-gradient(90deg,rgba(0,0,0,.74) 0%,rgba(0,0,0,.58) 40%,rgba(0,0,0,.24) 73%,rgba(0,0,0,.08) 100%),linear-gradient(0deg,rgba(191,33,33,.50),rgba(191,33,33,.50)) !important; }
  .about-page .about-reliability__shade { background:linear-gradient(90deg,rgba(0,0,0,.72) 0%,rgba(0,0,0,.52) 42%,rgba(0,0,0,.22) 74%,rgba(0,0,0,.08) 100%),linear-gradient(0deg,rgba(191,33,33,.58),rgba(191,33,33,.58)) !important; }
  .about-page .about-grid--intro > .about-proof,.about-page .about-grid--intro > .about-proof + .about-copy-card { height:calc(436 / 1840 * 100cqw) !important; min-height:0 !important; }
  .about-page .about-proof + .about-copy-card,.about-page .about-proof + .about-copy-card + .about-copy-card { justify-content:flex-start !important; padding:calc(42 / 1840 * 100cqw) !important; text-align:center !important; }
  .about-page .about-proof + .about-copy-card h2,.about-page .about-proof + .about-copy-card + .about-copy-card h2 { margin:0 0 calc(22 / 1840 * 100cqw) !important; font-size:calc(104 / 1840 * 100cqw) !important; line-height:.85 !important; }
  .about-page .about-proof + .about-copy-card p,.about-page .about-proof + .about-copy-card + .about-copy-card p { max-width:calc(820 / 1840 * 100cqw) !important; font-size:calc(20 / 1840 * 100cqw) !important; line-height:.98 !important; }
  .about-page .about-proof + .about-copy-card p + p,.about-page .about-proof + .about-copy-card + .about-copy-card p + p { margin-top:calc(18 / 1840 * 100cqw) !important; }
  .about-page .about-accent { color:#BF2121 !important; }
  .about-page .about-timeline--interactive { display:flex !important; gap:calc(12 / 1840 * 100cqw) !important; height:calc(472 / 1840 * 100cqw) !important; min-height:0 !important; overflow:hidden !important; background:transparent !important; }
  .about-page .about-timeline--interactive .about-timeline__item { appearance:none !important; border:0 !important; padding:calc(28 / 1840 * 100cqw) !important; border-radius:calc(28 / 1840 * 100cqw) !important; background:#BF2121 !important; color:#FAFAFA !important; flex:0 0 calc(108 / 1840 * 100cqw) !important; display:flex !important; flex-direction:column !important; align-items:center !important; justify-content:center !important; cursor:pointer !important; transition:flex-basis .42s ease, background .25s ease !important; overflow:hidden !important; }
  .about-page .about-timeline--interactive .about-timeline__item.is-active { flex-basis:calc(520 / 1840 * 100cqw) !important; align-items:flex-start !important; justify-content:flex-start !important; background:#961A1A !important; }
  .about-page .about-timeline--interactive .about-timeline__item img { display:none !important; width:calc(160 / 1840 * 100cqw) !important; height:calc(148 / 1840 * 100cqw) !important; object-fit:contain !important; margin:0 0 auto !important; }
  .about-page .about-timeline--interactive .about-timeline__item.is-active img { display:block !important; }
  .about-page .about-timeline--interactive .about-timeline__item strong { font-size:calc(30 / 1840 * 100cqw) !important; line-height:1 !important; }
  .about-page .about-timeline--interactive .about-timeline__item:not(.is-active) strong { writing-mode:vertical-rl !important; transform:rotate(180deg) !important; }
  .about-page .about-timeline--interactive .about-timeline__item.is-active strong { margin-top:calc(12 / 1840 * 100cqw) !important; font-size:calc(64 / 1840 * 100cqw) !important; }
  .about-page .about-timeline--interactive .about-timeline__item span { display:none !important; }
  .about-page .about-timeline--interactive .about-timeline__item.is-active span { display:block !important; margin-top:calc(10 / 1840 * 100cqw) !important; color:#FAFAFA !important; font-size:calc(18 / 1840 * 100cqw) !important; line-height:1 !important; text-align:left !important; }
  .about-page .about-support--reference { display:grid !important; grid-template-columns:repeat(4,minmax(0,1fr)) calc(112 / 1840 * 100cqw) !important; gap:calc(16 / 1840 * 100cqw) !important; align-items:stretch !important; min-height:0 !important; margin-top:calc(24 / 1840 * 100cqw) !important; }
  .about-page .about-support--reference > article { display:block !important; height:auto !important; min-height:0 !important; padding:0 !important; overflow:visible !important; background:transparent !important; border:0 !important; border-radius:0 !important; box-shadow:none !important; }
  .about-page .about-support--reference > article img { display:block !important; width:100% !important; height:auto !important; border-radius:calc(24 / 1840 * 100cqw) !important; }
  .about-page .about-support--reference .about-support__vertical { display:flex !important; align-items:center !important; justify-content:center !important; margin:0 !important; color:#0D0202 !important; font-size:calc(46 / 1840 * 100cqw) !important; line-height:.86 !important; font-weight:900 !important; writing-mode:vertical-rl !important; transform:rotate(180deg) !important; text-align:center !important; }
}

@media (max-width:760px) {
  .site-footer { grid-template-columns:1fr !important; grid-template-areas:"brand" "company" "social" "copy" !important; min-height:0 !important; padding:28px 22px !important; gap:24px !important; border-radius:18px 18px 0 0 !important; }
  .site-footer__nav { grid-area:company !important; grid-template-columns:1fr 1fr !important; gap:24px !important; }
  .site-footer__socials { grid-area:social !important; justify-content:flex-start !important; }
  .site-footer__copy { grid-area:copy !important; }
  .legal-content { width:calc(100% - 40px) !important; margin:42px auto 60px !important; }
  .legal-content h1 { font-size:48px !important; }
  .legal-content__intro,.legal-content section p { font-size:16px !important; }
  .about-page .about-support--reference { display:grid !important; grid-template-columns:1fr !important; gap:12px !important; }
  .about-page .about-support--reference > article img { width:100% !important; height:auto !important; border-radius:18px !important; }
  .about-page .about-support--reference .about-support__vertical { writing-mode:initial !important; transform:none !important; justify-content:flex-start !important; font-size:32px !important; }
  .about-page .about-timeline--interactive { display:grid !important; grid-template-columns:1fr !important; height:auto !important; gap:10px !important; }
  .about-page .about-timeline--interactive .about-timeline__item { min-height:150px !important; border-radius:16px !important; background:#BF2121 !important; color:#FAFAFA !important; }
  .about-page .about-timeline--interactive .about-timeline__item:not(.is-active) strong { writing-mode:initial !important; transform:none !important; }
  .about-page .about-timeline--interactive .about-timeline__item.is-active { background:#961A1A !important; }
  .about-page .about-timeline--interactive .about-timeline__item img { display:none !important; }
  .about-page .about-timeline--interactive .about-timeline__item.is-active img { display:block !important; width:110px !important; height:100px !important; object-fit:contain !important; }
  .about-page .about-timeline--interactive .about-timeline__item span { display:block !important; }
}

/* FEROXO_FINAL_UNIFIED_FOOTER_AND_LEGAL_03_07 */
.site-footer.footer--unified {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(260px, 1.45fr) minmax(410px, 1fr) auto !important;
  align-items: start !important;
  gap: 32px !important;
  width: calc(100% - 32px) !important;
  max-width: 1840px !important;
  min-height: 303px !important;
  margin: 26px auto 16px !important;
  padding: 32px !important;
  border-radius: 30px !important;
  background: #BF2121 !important;
  background-image: none !important;
  color: #FFFFFF !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

.site-footer.footer--unified::before,
.site-footer.footer--unified::after {
  content: none !important;
  display: none !important;
}

.site-footer.footer--unified .site-footer__brand {
  position: static !important;
  display: block !important;
  width: auto !important;
}

.site-footer.footer--unified .site-footer__logo {
  display: block !important;
  width: 228px !important;
  min-width: 0 !important;
}

.site-footer.footer--unified .site-footer__logo img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

.site-footer.footer--unified .site-footer__tagline {
  display: block !important;
  margin: 22px 0 0 !important;
  color: #FFFFFF !important;
  font-size: 14px !important;
  line-height: 1.05 !important;
  font-weight: 400 !important;
}

.site-footer.footer--unified .site-footer__nav {
  position: static !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(160px, 1fr)) !important;
  gap: 130px !important;
  width: auto !important;
  padding: 0 !important;
  margin: 0 !important;
}

.site-footer.footer--unified .site-footer__column {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 7px !important;
}

.site-footer.footer--unified .site-footer__column h3 {
  display: block !important;
  margin: 0 0 4px !important;
  color: #FFFFFF !important;
  font-size: 16px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
}

.site-footer.footer--unified .site-footer__column a {
  display: block !important;
  color: #FFFFFF !important;
  font-size: 16px !important;
  line-height: 1.05 !important;
  text-decoration: none !important;
  transition: transform .2s ease, opacity .2s ease !important;
}

.site-footer.footer--unified .site-footer__column a:hover,
.site-footer.footer--unified .site-footer__column a:focus-visible {
  opacity: .76 !important;
  transform: translateX(3px) !important;
}

.site-footer.footer--unified .site-footer__socials {
  position: static !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
}

.site-footer.footer--unified .site-footer__socials > a {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  display: block !important;
  border-radius: 50% !important;
  transition: transform .2s ease, opacity .2s ease !important;
}

.site-footer.footer--unified .site-footer__socials > a:hover,
.site-footer.footer--unified .site-footer__socials > a:focus-visible {
  opacity: .88 !important;
  transform: scale(1.08) !important;
}

.site-footer.footer--unified .site-footer__copy {
  position: absolute !important;
  left: 32px !important;
  bottom: 32px !important;
  margin: 0 !important;
  color: #FFFFFF !important;
  font-size: 13px !important;
  line-height: 1 !important;
}

.legal-page-content {
  width: min(calc(100% - 64px), 1840px) !important;
  margin: 96px auto 0 !important;
  padding: 30px 0 80px !important;
  color: #0D0202 !important;
}

.legal-breadcrumb {
  display: flex !important;
  gap: 10px !important;
  margin-bottom: 58px !important;
  color: #0D0202 !important;
  font-size: 15px !important;
}

.legal-breadcrumb a {
  color: #BF2121 !important;
  text-decoration: none !important;
}

.legal-kicker {
  margin: 0 0 14px !important;
  color: #BF2121 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
}

.legal-page-content h1 {
  margin: 0 !important;
  color: #0D0202 !important;
  font-size: clamp(52px, 6vw, 108px) !important;
  line-height: .9 !important;
}

.legal-page-content .legal-lead {
  max-width: 820px !important;
  margin: 28px 0 10px !important;
  font-size: 20px !important;
  line-height: 1.3 !important;
}

.legal-page-content .legal-date {
  margin: 0 0 48px !important;
  color: rgba(13,2,2,.62) !important;
  font-size: 14px !important;
}

.legal-page-content section {
  max-width: 880px !important;
  margin: 0 0 30px !important;
}

.legal-page-content section h2 {
  margin: 0 0 10px !important;
  color: #0D0202 !important;
  font-size: 24px !important;
}

.legal-page-content section p {
  margin: 0 !important;
  color: #0D0202 !important;
  font-size: 17px !important;
  line-height: 1.45 !important;
}

@media (max-width: 760px) {
  .site-footer.footer--unified {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    gap: 28px !important;
    padding: 28px 22px 72px !important;
    border-radius: 20px !important;
  }

  .site-footer.footer--unified .site-footer__logo {
    width: 165px !important;
  }

  .site-footer.footer--unified .site-footer__nav {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }

  .site-footer.footer--unified .site-footer__column h3,
  .site-footer.footer--unified .site-footer__column a {
    font-size: 13px !important;
  }

  .site-footer.footer--unified .site-footer__socials > a {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
  }

  .site-footer.footer--unified .site-footer__copy {
    left: 22px !important;
    bottom: 24px !important;
    font-size: 10px !important;
  }

  .legal-page-content {
    width: calc(100% - 40px) !important;
    margin-top: 72px !important;
  }

  .legal-breadcrumb {
    margin-bottom: 34px !important;
  }
}
/* FEROXO_FINAL_UNIFIED_FOOTER_V2 */
.site-footer.footer--final {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(260px, 1.45fr) minmax(400px, 1fr) auto !important;
  align-items: start !important;
  gap: 32px !important;
  width: calc(100% - 32px) !important;
  max-width: 1840px !important;
  min-height: 303px !important;
  margin: 26px auto 16px !important;
  padding: 32px !important;
  border-radius: 30px !important;
  background: #BF2121 !important;
  color: #FFFFFF !important;
  overflow: hidden !important;
}

.site-footer.footer--final .site-footer__brand {
  position: static !important;
  display: block !important;
  width: auto !important;
}

.site-footer.footer--final .site-footer__brand > p:not(.site-footer__tagline) {
  display: none !important;
}

.site-footer.footer--final .site-footer__logo {
  display: block !important;
  width: 228px !important;
  min-width: 0 !important;
  transition: transform .2s ease, opacity .2s ease !important;
}

.site-footer.footer--final .site-footer__logo:hover {
  opacity: .9 !important;
  transform: translateY(-2px) !important;
}

.site-footer.footer--final .site-footer__logo img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

.site-footer.footer--final .site-footer__tagline {
  display: block !important;
  margin: 22px 0 0 !important;
  color: #FFFFFF !important;
  font-size: 14px !important;
  line-height: 1.05 !important;
}

.site-footer.footer--final .site-footer__nav {
  position: static !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(160px, 1fr)) !important;
  gap: 130px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-footer.footer--final .site-footer__column {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 7px !important;
}

.site-footer.footer--final .site-footer__column h3,
.site-footer.footer--final .site-footer__column a {
  color: #FFFFFF !important;
}

.site-footer.footer--final .site-footer__column h3 {
  margin: 0 0 4px !important;
  font-size: 16px !important;
  line-height: 1 !important;
}

.site-footer.footer--final .site-footer__column a {
  font-size: 16px !important;
  line-height: 1.05 !important;
  text-decoration: none !important;
  transition: transform .2s ease, opacity .2s ease !important;
}

.site-footer.footer--final .site-footer__column a:hover {
  opacity: .76 !important;
  transform: translateX(3px) !important;
}

.site-footer.footer--final .site-footer__socials {
  position: static !important;
  display: flex !important;
  gap: 10px !important;
  margin: 0 !important;
}

.site-footer.footer--final .site-footer__socials > a {
  display: block !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  border-radius: 50% !important;
  transition: transform .2s ease, opacity .2s ease !important;
}

.site-footer.footer--final .site-footer__socials > a:hover {
  opacity: .88 !important;
  transform: scale(1.08) !important;
}

.site-footer.footer--final .site-footer__copy {
  position: absolute !important;
  left: 32px !important;
  bottom: 32px !important;
  margin: 0 !important;
  color: #FFFFFF !important;
  font-size: 13px !important;
  line-height: 1 !important;
}

.legal-page .inner-top,
.legal-page [class*="inner-top"] {
  display: none !important;
}

@media (max-width: 760px) {
  .site-footer.footer--final {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    min-height: 0 !important;
    padding: 28px 22px 72px !important;
    border-radius: 20px !important;
  }

  .site-footer.footer--final .site-footer__logo {
    width: 165px !important;
  }

  .site-footer.footer--final .site-footer__nav {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }

  .site-footer.footer--final .site-footer__column h3,
  .site-footer.footer--final .site-footer__column a {
    font-size: 13px !important;
  }

  .site-footer.footer--final .site-footer__copy {
    left: 22px !important;
    bottom: 24px !important;
    font-size: 10px !important;
  }
}
/* FEROXO_FINAL_SUBMISSION_POLISH_03_07 */
.site-footer.footer--global,
.home-page .site-footer.footer--global {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(260px, 1.45fr) minmax(400px, 1fr) auto !important;
  align-items: start !important;
  gap: 32px !important;
  width: min(calc(100vw - 64px), 1840px) !important;
  height: 303px !important;
  min-height: 303px !important;
  margin: 26px auto 16px !important;
  padding: 32px !important;
  border: 0 !important;
  border-radius: 30px !important;
  background: #BF2121 !important;
  background-image: none !important;
  color: #FFFFFF !important;
  overflow: hidden !important;
  box-shadow: none !important;
}
.site-footer.footer--global::before,
.site-footer.footer--global::after,
.home-page .site-footer.footer--global::before,
.home-page .site-footer.footer--global::after { content: none !important; display: none !important; }
.site-footer.footer--global .site-footer__brand,
.home-page .site-footer.footer--global .site-footer__brand { position: static !important; display: block !important; width: auto !important; }
.site-footer.footer--global .site-footer__brand > p:not(.site-footer__tagline),
.home-page .site-footer.footer--global .site-footer__brand > p:not(.site-footer__tagline) { display: none !important; }
.site-footer.footer--global .site-footer__logo,
.home-page .site-footer.footer--global .site-footer__logo { display: block !important; width: 228px !important; min-width: 0 !important; transition: transform .2s ease, opacity .2s ease !important; }
.site-footer.footer--global .site-footer__logo img,
.home-page .site-footer.footer--global .site-footer__logo img { display: block !important; width: 100% !important; height: auto !important; }
.site-footer.footer--global .site-footer__logo:hover,
.site-footer.footer--global .site-footer__logo:focus-visible { opacity: .9 !important; transform: translateY(-2px) !important; }
.site-footer.footer--global .site-footer__tagline,
.home-page .site-footer.footer--global .site-footer__tagline { display: block !important; margin: 22px 0 0 !important; color: #FFFFFF !important; font-size: 14px !important; line-height: 1.05 !important; font-weight: 400 !important; }
.site-footer.footer--global .site-footer__nav,
.home-page .site-footer.footer--global .site-footer__nav { position: static !important; display: grid !important; grid-template-columns: repeat(2, minmax(160px, 1fr)) !important; gap: 130px !important; width: auto !important; padding: 0 !important; margin: 0 !important; }
.site-footer.footer--global .site-footer__column,
.home-page .site-footer.footer--global .site-footer__column { display: flex !important; flex-direction: column !important; align-items: flex-start !important; gap: 7px !important; }
.site-footer.footer--global .site-footer__column h3,
.site-footer.footer--global .site-footer__column a,
.home-page .site-footer.footer--global .site-footer__column h3,
.home-page .site-footer.footer--global .site-footer__column a { color: #FFFFFF !important; }
.site-footer.footer--global .site-footer__column h3,
.home-page .site-footer.footer--global .site-footer__column h3 { margin: 0 0 4px !important; font-size: 16px !important; line-height: 1 !important; font-weight: 700 !important; }
.site-footer.footer--global .site-footer__column a,
.home-page .site-footer.footer--global .site-footer__column a { font-size: 16px !important; line-height: 1.05 !important; text-decoration: none !important; transition: transform .2s ease, opacity .2s ease !important; }
.site-footer.footer--global .site-footer__column a:hover,
.site-footer.footer--global .site-footer__column a:focus-visible { opacity: .76 !important; transform: translateX(3px) !important; }
.site-footer.footer--global .site-footer__socials,
.home-page .site-footer.footer--global .site-footer__socials { position: static !important; display: flex !important; align-items: center !important; gap: 10px !important; margin: 0 !important; }
.site-footer.footer--global .site-footer__socials > a,
.home-page .site-footer.footer--global .site-footer__socials > a { display: block !important; width: 44px !important; height: 44px !important; min-width: 44px !important; min-height: 44px !important; border-radius: 50% !important; transition: transform .2s ease, opacity .2s ease !important; }
.site-footer.footer--global .site-footer__socials > a:hover,
.site-footer.footer--global .site-footer__socials > a:focus-visible { opacity: .88 !important; transform: scale(1.08) !important; }
.site-footer.footer--global .site-footer__copy,
.home-page .site-footer.footer--global .site-footer__copy { position: absolute !important; left: 32px !important; bottom: 32px !important; margin: 0 !important; color: #FFFFFF !important; font-size: 13px !important; line-height: 1 !important; }

.about-page .about-copy-card__accent { color: #EF4D4D !important; }
@media (min-width: 761px) {
  .about-page .about-proof + .about-copy-card,
  .about-page .about-proof + .about-copy-card + .about-copy-card { display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; text-align: center !important; padding: calc(38 / 1840 * 100cqw) !important; }
  .about-page .about-proof + .about-copy-card h2,
  .about-page .about-proof + .about-copy-card + .about-copy-card h2 { margin: 0 0 calc(22 / 1840 * 100cqw) !important; font-size: calc(104 / 1840 * 100cqw) !important; line-height: .85 !important; }
  .about-page .about-proof + .about-copy-card p,
  .about-page .about-proof + .about-copy-card + .about-copy-card p { max-width: calc(820 / 1840 * 100cqw) !important; font-size: calc(20 / 1840 * 100cqw) !important; line-height: .98 !important; }
  .about-page .about-proof + .about-copy-card p + p,
  .about-page .about-proof + .about-copy-card + .about-copy-card p + p { margin-top: calc(18 / 1840 * 100cqw) !important; }

  .about-page .about-timeline--interactive { display: flex !important; gap: calc(8 / 1840 * 100cqw) !important; height: calc(472 / 1840 * 100cqw) !important; min-height: 0 !important; overflow: hidden !important; }
  .about-page .about-timeline--interactive .about-timeline__item { flex: 1 1 0 !important; min-width: 0 !important; min-height: 0 !important; padding: 0 !important; border: 0 !important; border-radius: calc(24 / 1840 * 100cqw) !important; background: #C62023 !important; color: #FFFFFF !important; cursor: pointer !important; overflow: hidden !important; transition: flex-basis .35s ease, background .35s ease !important; }
  .about-page .about-timeline--interactive .about-timeline__item.is-active { flex: 0 0 39% !important; background: #A41B1D !important; }
  .about-page .about-timeline--interactive .about-timeline__item img { display: none !important; }
  .about-page .about-timeline--interactive .about-timeline__item strong { display: block !important; color: #FFFFFF !important; font-size: calc(40 / 1840 * 100cqw) !important; line-height: 1 !important; font-weight: 800 !important; }
  .about-page .about-timeline--interactive .about-timeline__item span { display: none !important; }
  .about-page .about-timeline--interactive .about-timeline__item:not(.is-active) { display: flex !important; align-items: center !important; justify-content: center !important; }
  .about-page .about-timeline--interactive .about-timeline__item:not(.is-active) strong { writing-mode: vertical-rl !important; transform: rotate(180deg) !important; font-size: calc(28 / 1840 * 100cqw) !important; }
  .about-page .about-timeline--interactive .about-timeline__item.is-active { display: grid !important; grid-template-rows: 1fr auto auto !important; align-items: end !important; justify-items: start !important; padding: calc(38 / 1840 * 100cqw) !important; }
  .about-page .about-timeline--interactive .about-timeline__item.is-active img { display: block !important; align-self: start !important; width: calc(145 / 1840 * 100cqw) !important; height: calc(145 / 1840 * 100cqw) !important; object-fit: contain !important; }
  .about-page .about-timeline--interactive .about-timeline__item.is-active strong { margin-top: auto !important; font-size: calc(66 / 1840 * 100cqw) !important; }
  .about-page .about-timeline--interactive .about-timeline__item.is-active span { display: block !important; margin-top: calc(10 / 1840 * 100cqw) !important; color: #FFFFFF !important; font-size: calc(20 / 1840 * 100cqw) !important; line-height: .94 !important; text-align: left !important; }
}

.industries__controls button,
.about-industries__controls button,
[data-industries-prev], [data-industries-next],
[data-about-industries-prev], [data-about-industries-next] { display: grid !important; place-items: center !important; padding: 0 0 .08em !important; color: #0D0202 !important; font-size: 28px !important; font-weight: 400 !important; line-height: 1 !important; opacity: 1 !important; visibility: visible !important; text-indent: 0 !important; }

.legal-page .inner-top__title,
.legal-page .inner-top__breadcrumbs,
.legal-page .inner-top .breadcrumbs,
.legal-page .breadcrumb:not(.legal-breadcrumb) { display: none !important; }

@media (max-width: 760px) {
  .site-footer.footer--global,
  .home-page .site-footer.footer--global { grid-template-columns: 1fr !important; height: auto !important; min-height: 0 !important; gap: 28px !important; padding: 28px 22px 72px !important; border-radius: 20px !important; }
  .site-footer.footer--global .site-footer__logo,
  .home-page .site-footer.footer--global .site-footer__logo { width: 165px !important; }
  .site-footer.footer--global .site-footer__nav,
  .home-page .site-footer.footer--global .site-footer__nav { grid-template-columns: 1fr 1fr !important; gap: 28px !important; }
  .site-footer.footer--global .site-footer__column h3,
  .site-footer.footer--global .site-footer__column a { font-size: 13px !important; }
  .site-footer.footer--global .site-footer__copy,
  .home-page .site-footer.footer--global .site-footer__copy { left: 22px !important; bottom: 24px !important; font-size: 10px !important; }
  .about-page .about-timeline--interactive { display: grid !important; grid-template-columns: 1fr 1fr !important; height: auto !important; gap: 12px !important; }
  .about-page .about-timeline--interactive .about-timeline__item { min-height: 180px !important; border: 0 !important; border-radius: 18px !important; background: #A41B1D !important; }
  .about-page .about-timeline--interactive .about-timeline__item img { display: block !important; width: 72px !important; height: 72px !important; object-fit: contain !important; margin: 20px auto 0 !important; }
  .about-page .about-timeline--interactive .about-timeline__item strong { display: block !important; margin: 14px 18px 0 !important; color: #FFFFFF !important; font-size: 32px !important; }
  .about-page .about-timeline--interactive .about-timeline__item span { display: block !important; margin: 4px 18px 20px !important; color: #FFFFFF !important; font-size: 12px !important; line-height: 1 !important; }
}
/* ABOUT TIMELINE — centered active card artwork */
@media (min-width: 761px) {
  /* Current expanded 1973 card */
  .about-page .about-timeline__highlight {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: calc(30 / 1840 * 100cqw) !important;
  }

  .about-page .about-timeline__highlight img {
    position: static !important;
    display: block !important;
    width: 62% !important;
    max-width: calc(230 / 1840 * 100cqw) !important;
    height: auto !important;
    margin: 0 0 calc(20 / 1840 * 100cqw) !important;
    transform: none !important;
  }

  .about-page .about-timeline__highlight strong {
    position: static !important;
    display: block !important;
    margin: 0 !important;
    font-size: calc(74 / 1840 * 100cqw) !important;
    line-height: .86 !important;
    letter-spacing: -.05em !important;
    text-align: center !important;
  }

  .about-page .about-timeline__highlight span {
    position: static !important;
    display: block !important;
    max-width: 88% !important;
    margin: calc(12 / 1840 * 100cqw) auto 0 !important;
    font-size: calc(21 / 1840 * 100cqw) !important;
    line-height: 1 !important;
    text-align: center !important;
  }

  /* Same layout whenever another timeline year is expanded */
  .about-page .about-timeline--interactive .about-timeline__item.is-active {
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: calc(30 / 1840 * 100cqw) !important;
  }

  .about-page .about-timeline--interactive .about-timeline__item.is-active img {
    position: static !important;
    display: block !important;
    width: 62% !important;
    max-width: calc(230 / 1840 * 100cqw) !important;
    height: auto !important;
    margin: 0 0 calc(20 / 1840 * 100cqw) !important;
    transform: none !important;
  }

  .about-page .about-timeline--interactive .about-timeline__item.is-active strong {
    margin: 0 !important;
    font-size: calc(74 / 1840 * 100cqw) !important;
    line-height: .86 !important;
    text-align: center !important;
  }

  .about-page .about-timeline--interactive .about-timeline__item.is-active span {
    margin: calc(12 / 1840 * 100cqw) auto 0 !important;
    text-align: center !important;
  }
}
/* ABOUT US exact Figma accent red */
.about-page .about-copy-card__accent {
  color: #BF2121 !important;
}
/* FEROXO_SINGLE_IDENTICAL_FOOTER_03_07 */
.site-footer.footer--single {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(270px, 1.45fr) minmax(400px, 1fr) auto !important;
  align-items: start !important;
  gap: 32px !important;
  width: calc(100% - 32px) !important;
  max-width: 1840px !important;
  min-height: 303px !important;
  margin: 26px auto 16px !important;
  padding: 32px !important;
  border-radius: 30px !important;
  background: #BF2121 !important;
  background-image: none !important;
  color: #FFFFFF !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

.site-footer.footer--single::before,
.site-footer.footer--single::after {
  display: none !important;
  content: none !important;
}

.site-footer.footer--single .site-footer__brand {
  position: static !important;
  display: block !important;
  width: auto !important;
}

.site-footer.footer--single .site-footer__logo {
  display: block !important;
  width: 228px !important;
  min-width: 0 !important;
  transition: transform .2s ease, opacity .2s ease !important;
}

.site-footer.footer--single .site-footer__logo:hover {
  opacity: .9 !important;
  transform: translateY(-2px) !important;
}

.site-footer.footer--single .site-footer__logo img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

.site-footer.footer--single .site-footer__tagline {
  display: block !important;
  margin: 22px 0 0 !important;
  color: #FFFFFF !important;
  font-size: 14px !important;
  line-height: 1.05 !important;
  font-weight: 400 !important;
}

.site-footer.footer--single .site-footer__nav {
  position: static !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(160px, 1fr)) !important;
  gap: 130px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-footer.footer--single .site-footer__column {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 7px !important;
}

.site-footer.footer--single .site-footer__column h3,
.site-footer.footer--single .site-footer__column a,
.site-footer.footer--single .site-footer__copy {
  color: #FFFFFF !important;
}

.site-footer.footer--single .site-footer__column h3 {
  margin: 0 0 4px !important;
  font-size: 16px !important;
  line-height: 1 !important;
}

.site-footer.footer--single .site-footer__column a {
  font-size: 16px !important;
  line-height: 1.05 !important;
  text-decoration: none !important;
  transition: transform .2s ease, opacity .2s ease !important;
}

.site-footer.footer--single .site-footer__column a:hover {
  opacity: .76 !important;
  transform: translateX(3px) !important;
}

.site-footer.footer--single .site-footer__socials {
  position: static !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
}

.site-footer.footer--single .site-footer__socials > a {
  display: block !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  border-radius: 50% !important;
  transition: transform .2s ease, opacity .2s ease !important;
}

.site-footer.footer--single .site-footer__socials > a:hover {
  opacity: .88 !important;
  transform: scale(1.08) !important;
}

.site-footer.footer--single .site-footer__copy {
  position: absolute !important;
  left: 32px !important;
  bottom: 32px !important;
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1 !important;
}

@media (max-width: 760px) {
  .site-footer.footer--single {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    min-height: 0 !important;
    padding: 28px 22px 72px !important;
    border-radius: 20px !important;
  }

  .site-footer.footer--single .site-footer__logo {
    width: 165px !important;
  }

  .site-footer.footer--single .site-footer__nav {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }

  .site-footer.footer--single .site-footer__column h3,
  .site-footer.footer--single .site-footer__column a {
    font-size: 13px !important;
  }

  .site-footer.footer--single .site-footer__copy {
    left: 22px !important;
    bottom: 24px !important;
    font-size: 10px !important;
  }
}
/* FEROXO_GLOBAL_ARROW_CONTROL_STYLE_03_07 */
.feroxo-arrow-control {
  font-family: Arial, sans-serif !important;
  font-size: clamp(30px, 2vw, 42px) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-indent: 0 !important;
}
/* FEROXO_REMOVE_DUPLICATE_FOOTER_TAGLINE */
.site-footer .site-footer__brand > p:nth-of-type(n+2) {
  display: none !important;
}
/* FEROXO_FINAL_VISIBLE_ARROW_STYLE */
.feroxo-arrow-control {
  display: grid !important;
  place-items: center !important;
  font-size: 0 !important;
  line-height: 1 !important;
  text-indent: 0 !important;
  color: #0D0202 !important;
}

.feroxo-arrow-control::before {
  display: block !important;
  font-family: Arial, sans-serif !important;
  font-size: clamp(30px, 2.15vw, 44px) !important;
  font-weight: 400 !important;
  line-height: .8 !important;
  color: #0D0202 !important;
}

.feroxo-arrow-prev::before {
  content: "\2039" !important;
}

.feroxo-arrow-next::before {
  content: "\203A" !important;
}

/* Keep only one footer tagline regardless of older markup. */
.site-footer .site-footer__brand > p:nth-of-type(n+2) {
  display: none !important;
}
/* FEROXO_HIDE_LEGACY_FOOTER_TAGLINE */
.site-footer [data-i18n="footer.tagline"]:not(.site-footer__tagline),
.site-footer .site-footer__brand > p:not(.site-footer__tagline) {
  display: none !important;
}
/* FEROXO FINAL LOCKED FOOTER AND TIMELINE 03_07 */
body .site-footer.footer--final-locked {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(270px, 1.45fr) minmax(400px, 1fr) auto !important;
  align-items: start !important;
  gap: 32px !important;
  width: calc(100% - 32px) !important;
  max-width: 1840px !important;
  min-height: 303px !important;
  margin: 26px auto 16px !important;
  padding: 32px !important;
  border-radius: 30px !important;
  background: #BF2121 !important;
  background-image: none !important;
  color: #FFFFFF !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

body .site-footer.footer--final-locked::before,
body .site-footer.footer--final-locked::after {
  content: none !important;
  display: none !important;
}

body .site-footer.footer--final-locked .site-footer__brand {
  position: static !important;
  display: block !important;
  width: auto !important;
}

body .site-footer.footer--final-locked .site-footer__brand > p:not(.site-footer__tagline) {
  display: none !important;
}

body .site-footer.footer--final-locked .site-footer__logo {
  display: block !important;
  width: 228px !important;
  min-width: 0 !important;
  transition: transform .2s ease, opacity .2s ease !important;
}

body .site-footer.footer--final-locked .site-footer__logo:hover,
body .site-footer.footer--final-locked .site-footer__logo:focus-visible {
  opacity: .9 !important;
  transform: translateY(-2px) !important;
}

body .site-footer.footer--final-locked .site-footer__logo img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  filter: none !important;
}

body .site-footer.footer--final-locked .site-footer__tagline {
  display: block !important;
  margin: 22px 0 0 !important;
  color: #FFFFFF !important;
  font-size: 14px !important;
  line-height: 1.05 !important;
  font-weight: 400 !important;
}

body .site-footer.footer--final-locked .site-footer__nav {
  position: static !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(160px, 1fr)) !important;
  gap: 130px !important;
  margin: 0 !important;
  padding: 0 !important;
}

body .site-footer.footer--final-locked .site-footer__column {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 7px !important;
}

body .site-footer.footer--final-locked .site-footer__column h3,
body .site-footer.footer--final-locked .site-footer__column a,
body .site-footer.footer--final-locked .site-footer__copy {
  color: #FFFFFF !important;
}

body .site-footer.footer--final-locked .site-footer__column h3 {
  margin: 0 0 4px !important;
  font-size: 16px !important;
  line-height: 1 !important;
}

body .site-footer.footer--final-locked .site-footer__column a {
  font-size: 16px !important;
  line-height: 1.05 !important;
  text-decoration: none !important;
  transition: transform .2s ease, opacity .2s ease !important;
}

body .site-footer.footer--final-locked .site-footer__column a:hover,
body .site-footer.footer--final-locked .site-footer__column a:focus-visible {
  opacity: .76 !important;
  transform: translateX(3px) !important;
}

body .site-footer.footer--final-locked .site-footer__socials {
  position: static !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
}

body .site-footer.footer--final-locked .site-footer__socials > a {
  display: block !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  border-radius: 50% !important;
  transition: transform .2s ease, opacity .2s ease !important;
}

body .site-footer.footer--final-locked .site-footer__socials > a:hover,
body .site-footer.footer--final-locked .site-footer__socials > a:focus-visible {
  opacity: .88 !important;
  transform: scale(1.08) !important;
}

body .site-footer.footer--final-locked .site-footer__copy {
  position: absolute !important;
  left: 32px !important;
  bottom: 32px !important;
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1 !important;
}

/* A self-contained timeline: no legacy classes, no cloned content and no old hover handlers. */
.about-page .about-timeline-final {
  display: flex !important;
  gap: clamp(8px, .45vw, 10px) !important;
  width: 100% !important;
  height: clamp(300px, 25.65vw, 472px) !important;
  margin: clamp(22px, 2vw, 36px) auto 0 !important;
  overflow: hidden !important;
}

.about-page .about-timeline-final__card {
  position: relative !important;
  display: block !important;
  flex: 1 1 0 !important;
  min-width: 0 !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: clamp(18px, 1.3vw, 24px) !important;
  background: #BF2121 !important;
  color: #FFFFFF !important;
  cursor: pointer !important;
  transition: flex-basis .45s cubic-bezier(.2,.8,.2,1), flex-grow .45s cubic-bezier(.2,.8,.2,1), background-color .25s ease !important;
}

.about-page .about-timeline-final__card.is-active {
  flex: 0 0 37.55% !important;
  background: #961A1A !important;
}

.about-page .about-timeline-final__card:focus-visible {
  outline: 3px solid #FFFFFF !important;
  outline-offset: -7px !important;
}

.about-page .about-timeline-final__compact-year {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  z-index: 2 !important;
  display: block !important;
  color: #FFFFFF !important;
  font-size: clamp(18px, 1.35vw, 27px) !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  writing-mode: vertical-rl !important;
  transform: translate(-50%, -50%) rotate(180deg) !important;
  transition: opacity .15s ease !important;
}

.about-page .about-timeline-final__card.is-active .about-timeline-final__compact-year {
  opacity: 0 !important;
}

.about-page .about-timeline-final__content {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(8px, .7vw, 14px) !important;
  padding: clamp(22px, 2vw, 38px) !important;
  text-align: center !important;
  opacity: 0 !important;
  transform: scale(.96) !important;
  pointer-events: none !important;
  transition: opacity .18s ease .12s, transform .32s cubic-bezier(.2,.8,.2,1) .08s !important;
}

.about-page .about-timeline-final__card.is-active .about-timeline-final__content {
  opacity: 1 !important;
  transform: none !important;
}

.about-page .about-timeline-final__content img {
  display: block !important;
  width: min(58%, 205px) !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 44% !important;
  object-fit: contain !important;
}

.about-page .about-timeline-final__content strong {
  display: block !important;
  margin: 0 !important;
  color: #FFFFFF !important;
  font-size: clamp(44px, 4.2vw, 78px) !important;
  font-weight: 800 !important;
  line-height: .85 !important;
  letter-spacing: -.05em !important;
}

.about-page .about-timeline-final__content > span:last-child {
  display: block !important;
  max-width: 90% !important;
  color: #FFFFFF !important;
  font-size: clamp(13px, 1.15vw, 21px) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-align: center !important;
}

/* Home hero and home news arrows sit on red controls, so their glyphs must remain white. */
.home-page .hero__side-arrow.feroxo-arrow-control,
.home-page .latest-news__arrow.feroxo-arrow-control {
  color: #FFFFFF !important;
}

.home-page .hero__side-arrow.feroxo-arrow-control::before,
.home-page .latest-news__arrow.feroxo-arrow-control::before {
  color: #FFFFFF !important;
}

@media (max-width: 760px) {
  body .site-footer.footer--final-locked {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    min-height: 0 !important;
    padding: 28px 22px 72px !important;
    border-radius: 20px !important;
  }

  body .site-footer.footer--final-locked .site-footer__logo {
    width: 165px !important;
  }

  body .site-footer.footer--final-locked .site-footer__nav {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }

  body .site-footer.footer--final-locked .site-footer__column h3,
  body .site-footer.footer--final-locked .site-footer__column a {
    font-size: 13px !important;
  }

  body .site-footer.footer--final-locked .site-footer__copy {
    left: 22px !important;
    bottom: 24px !important;
    font-size: 10px !important;
  }

  .about-page .about-timeline-final {
    height: 310px !important;
    gap: 8px !important;
    overflow-x: auto !important;
  }

  .about-page .about-timeline-final__card {
    flex: 0 0 76px !important;
  }

  .about-page .about-timeline-final__card.is-active {
    flex-basis: 230px !important;
  }

  .about-page .about-timeline-final__content img {
    width: min(62%, 150px) !important;
  }
}
/* FEROXO_CLEAN2_FOOTER_AND_TIMELINE_03_07 */
body .site-footer.footer--clean2 {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(270px, 1.45fr) minmax(400px, 1fr) auto !important;
  align-items: start !important;
  gap: 32px !important;
  width: calc(100% - 32px) !important;
  max-width: 1840px !important;
  min-height: 303px !important;
  margin: 26px auto 16px !important;
  padding: 32px !important;
  border: 0 !important;
  border-radius: 30px !important;
  background: #BF2121 !important;
  background-image: none !important;
  color: #FFFFFF !important;
  overflow: hidden !important;
  box-shadow: none !important;
}
body .site-footer.footer--clean2::before,
body .site-footer.footer--clean2::after { display:none !important; content:none !important; }
body .site-footer.footer--clean2 .site-footer__brand { position:static !important; display:block !important; width:auto !important; }
body .site-footer.footer--clean2 .site-footer__brand > *:not(.site-footer__logo):not(#feroxo-footer-tagline-clean2) { display:none !important; }
body .site-footer.footer--clean2 .site-footer__logo { display:block !important; width:228px !important; min-width:0 !important; transition:transform .2s ease, opacity .2s ease !important; }
body .site-footer.footer--clean2 .site-footer__logo:hover { opacity:.9 !important; transform:translateY(-2px) !important; }
body .site-footer.footer--clean2 .site-footer__logo img { display:block !important; width:100% !important; height:auto !important; filter:none !important; }
body .site-footer.footer--clean2 #feroxo-footer-tagline-clean2 { display:block !important; margin:22px 0 0 !important; color:#FFFFFF !important; font-size:14px !important; line-height:1.05 !important; font-weight:400 !important; }
body .site-footer.footer--clean2 .site-footer__nav { position:static !important; display:grid !important; grid-template-columns:repeat(2, minmax(160px, 1fr)) !important; gap:130px !important; margin:0 !important; padding:0 !important; }
body .site-footer.footer--clean2 .site-footer__column { display:flex !important; flex-direction:column !important; align-items:flex-start !important; gap:7px !important; }
body .site-footer.footer--clean2 .site-footer__column h3 { margin:0 0 4px !important; color:#FFFFFF !important; font-size:16px !important; line-height:1 !important; font-weight:700 !important; }
body .site-footer.footer--clean2 .site-footer__column a { color:#FFFFFF !important; font-size:16px !important; line-height:1.05 !important; text-decoration:none !important; transition:transform .2s ease, opacity .2s ease !important; }
body .site-footer.footer--clean2 .site-footer__column a:hover { opacity:.76 !important; transform:translateX(3px) !important; }
body .site-footer.footer--clean2 .site-footer__socials { position:static !important; display:flex !important; align-items:center !important; gap:10px !important; margin:0 !important; }
body .site-footer.footer--clean2 .site-footer__socials > a { display:block !important; width:44px !important; height:44px !important; min-width:44px !important; min-height:44px !important; border-radius:50% !important; transition:transform .2s ease, opacity .2s ease !important; }
body .site-footer.footer--clean2 .site-footer__socials > a:hover { opacity:.88 !important; transform:scale(1.08) !important; }
body .site-footer.footer--clean2 .site-footer__copy { position:absolute !important; left:32px !important; bottom:32px !important; margin:0 !important; color:#FFFFFF !important; font-size:13px !important; line-height:1 !important; }

/* Isolated timeline. Each active card uses a centered grid; it cannot inherit old left-aligned history styles. */
.about-page .about-timeline-clean2 { display:flex !important; gap:clamp(8px, .45vw, 10px) !important; width:100% !important; height:clamp(300px, 25.65vw, 472px) !important; margin:clamp(22px, 2vw, 36px) auto 0 !important; padding:0 !important; overflow:hidden !important; background:transparent !important; }
.about-page .about-timeline-clean2__card { position:relative !important; display:block !important; flex:1 1 0 !important; min-width:0 !important; height:100% !important; margin:0 !important; padding:0 !important; border:0 !important; border-radius:clamp(18px,1.3vw,24px) !important; background:#C62023 !important; color:#FFFFFF !important; cursor:pointer !important; overflow:hidden !important; transition:flex-basis .42s cubic-bezier(.2,.8,.2,1), background-color .25s ease !important; }
.about-page .about-timeline-clean2__card.is-active { flex:0 0 37.55% !important; background:#A41B1D !important; }
.about-page .about-timeline-clean2__card:focus-visible { outline:3px solid #FFFFFF !important; outline-offset:-7px !important; }
.about-page .about-timeline-clean2__compact { position:absolute !important; top:50% !important; left:50% !important; z-index:2 !important; color:#FFFFFF !important; font-size:clamp(18px,1.35vw,27px) !important; font-weight:800 !important; line-height:1 !important; writing-mode:vertical-rl !important; transform:translate(-50%,-50%) rotate(180deg) !important; opacity:1 !important; transition:opacity .15s ease !important; }
.about-page .about-timeline-clean2__card.is-active .about-timeline-clean2__compact { opacity:0 !important; }
.about-page .about-timeline-clean2__content { position:absolute !important; inset:0 !important; display:grid !important; grid-template-rows:minmax(0,1.25fr) auto minmax(0,.55fr) !important; align-items:center !important; justify-items:center !important; padding:clamp(22px,2vw,38px) !important; text-align:center !important; opacity:0 !important; transform:scale(.97) !important; pointer-events:none !important; transition:opacity .18s ease .12s, transform .3s ease .08s !important; }
.about-page .about-timeline-clean2__card.is-active .about-timeline-clean2__content { opacity:1 !important; transform:none !important; }
.about-page .about-timeline-clean2__content img { display:block !important; width:min(72%,245px) !important; max-width:100% !important; max-height:100% !important; height:auto !important; object-fit:contain !important; object-position:center !important; align-self:end !important; }
.about-page .about-timeline-clean2__content strong { display:block !important; margin:0 !important; color:#FFFFFF !important; font-size:clamp(52px,4.7vw,86px) !important; font-weight:800 !important; line-height:.86 !important; letter-spacing:-.055em !important; align-self:center !important; }
.about-page .about-timeline-clean2__content > span:last-child { display:block !important; max-width:92% !important; margin:0 !important; color:#FFFFFF !important; font-size:clamp(14px,1.18vw,22px) !important; font-weight:400 !important; line-height:1 !important; text-align:center !important; align-self:start !important; }

/* The home arrows are placed on red controls, so their glyph stays white. */
.home-page .hero__side-arrow.feroxo-arrow-control::before,
.home-page .latest-news__arrow.feroxo-arrow-control::before,
.home-page [data-hero-prev].feroxo-arrow-control::before,
.home-page [data-hero-next].feroxo-arrow-control::before { color:#FFFFFF !important; }

@media (max-width:760px) {
  body .site-footer.footer--clean2 { grid-template-columns:1fr !important; gap:28px !important; min-height:0 !important; padding:28px 22px 72px !important; border-radius:20px !important; }
  body .site-footer.footer--clean2 .site-footer__logo { width:165px !important; }
  body .site-footer.footer--clean2 .site-footer__nav { grid-template-columns:1fr 1fr !important; gap:28px !important; }
  body .site-footer.footer--clean2 .site-footer__column h3, body .site-footer.footer--clean2 .site-footer__column a { font-size:13px !important; }
  body .site-footer.footer--clean2 .site-footer__copy { left:22px !important; bottom:24px !important; font-size:10px !important; }
  .about-page .about-timeline-clean2 { height:310px !important; gap:8px !important; overflow-x:auto !important; }
  .about-page .about-timeline-clean2__card { flex:0 0 76px !important; }
  .about-page .about-timeline-clean2__card.is-active { flex-basis:230px !important; }
  .about-page .about-timeline-clean2__content img { width:min(70%,150px) !important; }
}
/* FEROXO_SOLID_TIMELINE_AND_FOOTER_LOCK_STYLE */
.site-footer.footer--final-locked .site-footer__brand > :not(.site-footer__logo):not(.site-footer__tagline),
.site-footer.footer--final-locked .site-footer__tagline ~ .site-footer__tagline {
  display: none !important;
}

.about-page .about-timeline-solid {
  display: flex !important;
  align-items: stretch !important;
  gap: clamp(10px, .65vw, 14px) !important;
  width: 100% !important;
  height: clamp(360px, 25.65vw, 472px) !important;
  margin: clamp(22px, 2vw, 36px) auto 0 !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.about-page .about-timeline-solid__card {
  position: relative !important;
  display: block !important;
  flex: 1 1 0 !important;
  min-width: 0 !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: clamp(18px, 1.3vw, 24px) !important;
  background: #BF2121 !important;
  color: #FFFFFF !important;
  cursor: pointer !important;
  transition: flex-basis .38s ease, flex-grow .38s ease, background-color .2s ease !important;
}

.about-page .about-timeline-solid__card.is-active {
  flex: 0 0 38.5% !important;
  background: #A0191C !important;
}

.about-page .about-timeline-solid__card:focus-visible {
  outline: 3px solid #FFFFFF !important;
  outline-offset: -8px !important;
}

.about-page .about-timeline-solid__compact {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  display: block !important;
  color: #FFFFFF !important;
  font-size: clamp(18px, 1.45vw, 28px) !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  writing-mode: vertical-rl !important;
  transform: translate(-50%, -50%) rotate(180deg) !important;
  opacity: 1 !important;
  transition: opacity .12s ease !important;
}

.about-page .about-timeline-solid__card.is-active .about-timeline-solid__compact {
  opacity: 0 !important;
}

.about-page .about-timeline-solid__detail {
  position: absolute !important;
  inset: 0 !important;
  display: grid !important;
  grid-template-rows: auto auto auto !important;
  justify-items: center !important;
  align-content: center !important;
  gap: clamp(10px, .9vw, 18px) !important;
  padding: clamp(24px, 2vw, 40px) !important;
  text-align: center !important;
  opacity: 0 !important;
  transform: scale(.97) !important;
  pointer-events: none !important;
  transition: opacity .14s ease, transform .28s ease !important;
}

.about-page .about-timeline-solid__card.is-active .about-timeline-solid__detail {
  opacity: 1 !important;
  transform: scale(1) !important;
}

.about-page .about-timeline-solid__detail img {
  display: block !important;
  width: min(62%, 235px) !important;
  max-width: 100% !important;
  max-height: 45% !important;
  height: auto !important;
  object-fit: contain !important;
}

.about-page .about-timeline-solid__detail strong {
  display: block !important;
  margin: 0 !important;
  color: #FFFFFF !important;
  font-size: clamp(52px, 4.6vw, 86px) !important;
  font-weight: 800 !important;
  line-height: .85 !important;
  letter-spacing: -.05em !important;
}

.about-page .about-timeline-solid__detail > span:last-child {
  display: block !important;
  max-width: 94% !important;
  color: #FFFFFF !important;
  font-size: clamp(15px, 1.28vw, 23px) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-align: center !important;
}

@media (max-width: 760px) {
  .about-page .about-timeline-solid {
    height: 310px !important;
    gap: 8px !important;
    overflow-x: auto !important;
  }

  .about-page .about-timeline-solid__card {
    flex: 0 0 76px !important;
  }

  .about-page .about-timeline-solid__card.is-active {
    flex-basis: 230px !important;
  }

  .about-page .about-timeline-solid__detail img {
    width: min(62%, 150px) !important;
  }
}
/* FEROXO_TIMELINE_EQUAL_HEIGHT_FINAL */
@media (min-width: 761px) {
  .about-page .about-timeline-solid {
    display: flex !important;
    align-items: stretch !important;
    height: clamp(360px, 25.65vw, 472px) !important;
    min-height: clamp(360px, 25.65vw, 472px) !important;
    max-height: clamp(360px, 25.65vw, 472px) !important;
  }

  .about-page .about-timeline-solid__card,
  .about-page .about-timeline-solid__card.is-active {
    align-self: stretch !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .about-page .about-timeline-solid__card {
    transition:
      flex-basis .42s ease,
      flex-grow .42s ease,
      background-color .2s ease !important;
  }

  .about-page .about-timeline-solid__card:hover {
    filter: none !important;
    transform: none !important;
  }
}
/* FEROXO_TIMELINE_FIXED_HEIGHT_CLICK_ONLY */
@media (min-width: 761px) {
  .about-page [data-final-timeline] {
    align-items: stretch !important;
    height: clamp(360px, 25.65vw, 472px) !important;
    min-height: clamp(360px, 25.65vw, 472px) !important;
    max-height: clamp(360px, 25.65vw, 472px) !important;
  }

  .about-page [data-final-timeline-card] {
    align-self: stretch !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: 100% !important;
    box-sizing: border-box !important;
  }

  .about-page [data-final-timeline-card]:hover {
    transform: none !important;
    filter: none !important;
  }
}
/* FEROXO_TIMELINE_TRUE_EQUAL_HEIGHT_03_07 */
@media (min-width: 761px) {
  .about-page .about-timeline-solid {
    height: clamp(360px, 25.65vw, 472px) !important;
    min-height: clamp(360px, 25.65vw, 472px) !important;
    max-height: clamp(360px, 25.65vw, 472px) !important;
    align-items: stretch !important;
  }

  .about-page .about-timeline-solid > .about-timeline-solid__card,
  .about-page .about-timeline-solid > [data-final-timeline-card] {
    align-self: stretch !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    box-sizing: border-box !important;
  }

  .about-page .about-timeline-solid > .about-timeline-solid__card.is-active,
  .about-page .about-timeline-solid > [data-final-timeline-card].is-active {
    align-self: stretch !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
    box-sizing: border-box !important;
  }
}
/* FEROXO_TIMELINE_ALIGN_WITH_ENGINEERING_CARD */
@media (min-width: 761px) {
  .about-page .about-timeline-solid {
    align-self: stretch !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .about-page .about-timeline-solid__card,
  .about-page .about-timeline-solid__card.is-active {
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
  }
}
/* FEROXO_ENGINEERING_TIMELINE_NO_OFFSET */
@media (min-width: 761px) {
  .about-page .about-grid--intro > .about-timeline-clean2 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    align-self: stretch !important;
    justify-self: stretch !important;
  }

  .about-page .about-grid--intro > .about-timeline-clean2,
  .about-page .about-grid--intro > .about-timeline-clean2 > .about-timeline-clean2__card {
    box-sizing: border-box !important;
  }
}


/* FEROXO_SERVICE_PAGE_03_07 */
.service-page {
  background: #FAFAFA;
  color: #0D0202;
}

.service-page .site-nav__link.is-current {
  color: #BF2121;
  text-decoration: underline;
  text-underline-offset: .32em;
  text-decoration-thickness: 2px;
}

.service-hero,
.service-main {
  width: min(1840px, calc(100vw - 80px));
}

.service-hero {
  container-type: inline-size;
  position: relative;
  min-height: clamp(300px, 33cqw, 607px);
  margin: 32px auto 0;
  overflow: hidden;
  border-radius: clamp(18px, 1.3vw, 28px);
  background: #0D0202;
}

.service-hero__image,
.service-hero__shade {
  position: absolute;
  inset: 0;
}

.service-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 53%;
  filter: saturate(1.04) contrast(1.02);
}

.service-hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13,2,2,.90) 0%, rgba(13,2,2,.72) 34%, rgba(13,2,2,.40) 65%, rgba(13,2,2,.16) 100%),
    linear-gradient(0deg, rgba(13,2,2,.45) 0%, rgba(13,2,2,.18) 45%, rgba(13,2,2,.24) 100%);
}

.service-page .service-hero .site-header {
  z-index: 5;
}

.service-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(82px, 7.2cqw, 132px) clamp(24px, 2cqw, 50px) clamp(88px, 9cqw, 165px);
  max-width: 1280px;
}

.service-hero__content h1 {
  margin: 0 0 clamp(12px, 1.1cqw, 22px);
  color: #FFFFFF;
  font-size: clamp(54px, 7.75cqw, 142px);
  line-height: .86;
  letter-spacing: -.065em;
  text-transform: uppercase;
  font-weight: 800;
}

.service-hero__content p {
  margin: 0;
  max-width: clamp(440px, 46cqw, 850px);
  color: #FFFFFF;
  font-size: clamp(14px, 1.12cqw, 22px);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.service-hero__content p + p {
  margin-top: clamp(8px, .72cqw, 14px);
}

.service-hero__badges {
  position: absolute;
  left: clamp(22px, 2cqw, 48px);
  right: clamp(22px, 2cqw, 48px);
  bottom: clamp(18px, 1.6cqw, 34px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1cqw, 20px);
}

.service-hero__badges article {
  min-height: clamp(58px, 5.8cqw, 108px);
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.3cqw, 24px);
  padding: clamp(10px, 1.4cqw, 26px) clamp(14px, 1.55cqw, 30px);
  color: #FFFFFF;
  border: 1px solid rgba(250,250,250,.24);
  border-radius: clamp(12px, .8cqw, 16px);
  background: rgba(13, 2, 2, .18);
  box-shadow: inset 0 1px 18px rgba(255,255,255,.05);
  backdrop-filter: blur(5px);
}

.service-hero__badges img {
  width: clamp(30px, 3cqw, 56px);
  height: clamp(30px, 3cqw, 56px);
  object-fit: contain;
  flex: 0 0 auto;
}

.service-hero__badges strong {
  font-size: clamp(15px, 1.35cqw, 25px);
  line-height: .92;
  letter-spacing: -.045em;
  text-transform: uppercase;
  font-weight: 800;
}

.service-main {
  margin: clamp(24px, 2cqw, 40px) auto 0;
  display: grid;
  gap: clamp(18px, 1.5cqw, 28px);
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(18px, 1.5cqw, 28px);
}

.service-image-card,
.service-map-card,
.service-copy-card,
.service-parts-panel,
.service-tech-note,
.service-process,
.service-industries article,
.service-faq-list details {
  border: 1px solid rgba(13,2,2,.14);
  border-radius: clamp(16px, 1.2vw, 24px);
  overflow: hidden;
  background: #FAFAFA;
}

.service-image-card,
.service-map-card {
  min-height: clamp(220px, 15vw, 360px);
  margin: 0;
}

.service-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-map-card {
  display: grid;
  place-items: center;
  padding: clamp(20px, 2vw, 42px);
}

.service-map-card img {
  width: min(88%, 760px);
  height: auto;
  display: block;
}

.service-copy-card {
  min-height: clamp(220px, 15vw, 360px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(18px, 2vw, 42px);
  text-align: center;
}

.service-copy-card h2,
.service-process h2 {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.065em;
  color: #0D0202;
}

.service-copy-card h2 {
  font-size: clamp(48px, 5.15vw, 98px);
  line-height: .82;
}

.service-copy-card p {
  width: min(100%, 720px);
  margin: clamp(12px, 1.1vw, 22px) auto 0;
  color: #0D0202;
  font-size: clamp(14px, .92vw, 18px);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.service-copy-card span {
  color: #BF2121;
}

.service-coverage-card h2,
.service-expertise-card h2 {
  font-size: clamp(47px, 4.45vw, 86px);
}

.service-stock-card h2 {
  font-size: clamp(52px, 4.8vw, 92px);
}

.service-expertise-card p {
  max-width: 660px;
}

.service-parts-panel {
  position: relative;
  min-height: clamp(220px, 15vw, 360px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  gap: clamp(14px, 1.3vw, 22px) clamp(18px, 2vw, 42px);
  padding: clamp(24px, 2.4vw, 50px);
  color: #FFFFFF;
  background: #0D0202;
}

.service-parts-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(13,2,2,.90), rgba(13,2,2,.62)), var(--parts-bg);
  background-size: cover;
  background-position: center;
  filter: saturate(1.08);
}

.service-part-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: clamp(34px, 3vw, 58px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(12px, 1.1vw, 20px);
}

.service-part-item span {
  width: clamp(34px, 3vw, 58px);
  height: clamp(34px, 3vw, 58px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(250,250,250,.22);
  border-radius: 999px;
  background: rgba(13,2,2,.18);
}

.service-part-item img {
  width: 56%;
  height: 56%;
  object-fit: contain;
  filter: invert(1);
}

.service-part-item strong {
  display: block;
  font-size: clamp(18px, 1.4vw, 27px);
  line-height: .92;
  letter-spacing: -.05em;
  text-transform: uppercase;
  font-weight: 800;
}

.service-part-item small {
  display: block;
  margin-top: 4px;
  color: rgba(250,250,250,.82);
  font-size: clamp(10px, .72vw, 14px);
  line-height: 1;
}

.service-industries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1vw, 22px);
}

.service-industries article {
  position: relative;
  min-height: clamp(105px, 7.4vw, 175px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: clamp(12px, 1vw, 22px);
  color: #FFFFFF;
  background-image: linear-gradient(0deg, rgba(13,2,2,.58), rgba(13,2,2,.10)), var(--industry-img);
  background-size: cover;
  background-position: center;
}

.service-industries span {
  font-size: clamp(19px, 1.45vw, 30px);
  line-height: .92;
  letter-spacing: -.045em;
  font-weight: 800;
  text-transform: uppercase;
}

.service-tech-note {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  padding: 12px clamp(18px, 1.6vw, 30px);
  color: #0D0202;
}

.service-tech-note span {
  flex: 0 0 auto;
  opacity: .72;
}

.service-tech-note p {
  margin: 0;
  font-size: clamp(11px, .72vw, 14px);
  line-height: 1.1;
  letter-spacing: -.02em;
}

.service-faq-title {
  min-height: clamp(150px, 10vw, 230px);
}

.service-faq-title h2 {
  font-size: clamp(62px, 5.1vw, 98px);
}

.service-faq-list {
  display: grid;
  gap: clamp(10px, .75vw, 16px);
}

.service-faq-list details {
  padding: 0;
}

.service-faq-list summary {
  min-height: clamp(58px, 4.4vw, 78px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(20px, 2vw, 34px);
  cursor: pointer;
  list-style: none;
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 800;
  text-transform: uppercase;
}

.service-faq-list summary::-webkit-details-marker {
  display: none;
}

.service-faq-list summary::after {
  content: "⌄";
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1;
  transition: transform .2s ease;
}

.service-faq-list details[open] summary::after {
  transform: rotate(180deg);
}

.service-faq-list details p {
  margin: 0;
  padding: 0 clamp(20px, 2vw, 34px) clamp(18px, 1.6vw, 28px);
  color: rgba(13,2,2,.78);
  font-size: clamp(13px, .86vw, 16px);
  line-height: 1.25;
  letter-spacing: -.02em;
}

.service-process {
  position: relative;
  padding: clamp(30px, 3.2vw, 62px) clamp(24px, 3vw, 64px) clamp(46px, 4.2vw, 78px);
  overflow: visible;
  text-align: center;
}

.service-process h2 {
  font-size: clamp(50px, 5.45vw, 104px);
  line-height: .88;
}

.service-process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.4vw, 48px);
  margin-top: clamp(28px, 3vw, 58px);
}

.service-process__steps::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: clamp(13px, 1.2vw, 23px);
  border-top: 1px dashed rgba(191,33,33,.32);
  z-index: 0;
}

.service-process__steps article {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.service-process__steps img {
  width: clamp(50px, 4.4vw, 86px);
  height: clamp(50px, 4.4vw, 86px);
  object-fit: contain;
}

.service-process__steps strong {
  margin-top: clamp(16px, 1.2vw, 24px);
  color: #0D0202;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 800;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.service-process__steps p {
  margin: 6px 0 clamp(28px, 2.2vw, 42px);
  color: #0D0202;
  font-size: clamp(11px, .76vw, 14px);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.service-process__steps em {
  position: relative;
  z-index: 1;
  width: clamp(26px, 1.8vw, 36px);
  height: clamp(26px, 1.8vw, 36px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #BF2121;
  color: #FFFFFF;
  font-size: clamp(11px, .72vw, 13px);
  font-style: normal;
  font-weight: 800;
}

.service-contact-button {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  min-width: clamp(150px, 11vw, 215px);
  border: 0;
  border-radius: 999px;
  padding: clamp(12px, .85vw, 16px) clamp(28px, 2vw, 40px);
  background: #BF2121;
  color: #FFFFFF;
  font-size: clamp(13px, .82vw, 16px);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(191,33,33,.2);
}

.service-page .site-footer {
  margin-top: clamp(52px, 5vw, 90px);
}

.service-request-dialog {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  padding: clamp(16px, 3vw, 54px);
  overflow: auto;
}

.service-request-dialog.is-open {
  display: block;
}

.service-request-dialog__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13,2,2,.64);
}

.service-request-card {
  position: relative;
  z-index: 1;
  width: min(1720px, 100%);
  min-height: min(760px, calc(100vh - 96px));
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(30px, 4vw, 78px);
  padding: clamp(38px, 5vw, 92px);
  background: #FAFAFA;
  border: 1px solid rgba(13,2,2,.82);
  border-radius: clamp(22px, 2vw, 44px);
  box-shadow: 0 32px 90px rgba(13,2,2,.24);
}

.service-request-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(13,2,2,.22);
  border-radius: 50%;
  background: #FAFAFA;
  color: #0D0202;
  font-size: 26px;
  cursor: pointer;
}

.service-request-card__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-request-card__intro h2 {
  margin: 0;
  color: #0D0202;
  font-size: clamp(74px, 8.3vw, 160px);
  line-height: .88;
  letter-spacing: -.075em;
  font-weight: 800;
  text-transform: uppercase;
}

.service-request-card__intro p {
  width: min(100%, 650px);
  margin: clamp(28px, 3vw, 56px) 0 0;
  color: #0D0202;
  font-size: clamp(20px, 1.45vw, 32px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.service-request-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-request-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 1.6vw, 30px);
}

.service-request-form input,
.service-request-form select,
.service-request-form textarea {
  width: 100%;
  border: 2px solid rgba(13,2,2,.84);
  border-radius: 999px;
  padding: 0 clamp(22px, 1.7vw, 34px);
  min-height: clamp(58px, 5vw, 92px);
  background: #FAFAFA;
  color: #0D0202;
  font-size: clamp(18px, 1.25vw, 27px);
  line-height: 1;
  letter-spacing: -.04em;
  outline: none;
}

.service-request-form select,
.service-request-form textarea {
  grid-column: 1 / -1;
}

.service-request-form textarea {
  min-height: clamp(150px, 13vw, 260px);
  padding-top: clamp(22px, 1.8vw, 34px);
  border-radius: clamp(20px, 1.3vw, 28px);
  resize: vertical;
}

.service-request-form__bottom {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 38px);
  margin-top: clamp(24px, 2.5vw, 48px);
}

.service-request-form__bottom button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: clamp(17px, 1.4vw, 26px) clamp(34px, 2.6vw, 58px);
  background: #BF2121;
  color: #FFFFFF;
  font-size: clamp(18px, 1.15vw, 25px);
  font-weight: 700;
  cursor: pointer;
}

.service-request-form__bottom p {
  margin: 0;
  color: #0D0202;
  font-size: clamp(13px, .9vw, 18px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

@media (max-width: 900px) {
  .service-hero,
  .service-main {
    width: min(100% - 28px, 720px);
  }

  .service-hero {
    min-height: auto;
  }

  .service-hero__content {
    padding: 112px 20px 250px;
  }

  .service-hero__content h1 {
    font-size: clamp(44px, 13vw, 78px);
  }

  .service-hero__content p {
    max-width: 100%;
    font-size: 15px;
  }

  .service-hero__badges,
  .service-grid,
  .service-industries,
  .service-process__steps,
  .service-request-card,
  .service-request-form__grid {
    grid-template-columns: 1fr;
  }

  .service-hero__badges {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 0 18px 18px;
    margin-top: -220px;
  }

  .service-copy-card,
  .service-image-card,
  .service-map-card,
  .service-parts-panel {
    min-height: auto;
  }

  .service-copy-card h2,
  .service-coverage-card h2,
  .service-stock-card h2,
  .service-expertise-card h2 {
    font-size: clamp(44px, 14vw, 72px);
  }

  .service-parts-panel {
    grid-template-columns: 1fr;
  }

  .service-process__steps::after {
    display: none;
  }

  .service-contact-button {
    position: static;
    transform: none;
    margin-top: 28px;
  }

  .service-request-card {
    padding: 34px 22px;
    min-height: auto;
  }

  .service-request-card__intro h2 {
    font-size: clamp(56px, 17vw, 88px);
  }

  .service-request-form__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* FEROXO_SERVICE_CERTIFICATES_FIX_03_07 */
.service-page .service-parts-panel--fixed {
  min-height: clamp(240px, 15.7vw, 378px) !important;
  isolation: isolate;
  background: #0D0202 !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}

.service-page .service-parts-panel--fixed::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(13,2,2,.94) 0%, rgba(13,2,2,.72) 42%, rgba(13,2,2,.62) 100%),
    var(--parts-bg);
  background-size: cover;
  background-position: center;
  filter: blur(2.4px) saturate(1.24) contrast(1.1);
  transform: scale(1.035);
}

.service-page .service-parts-panel--fixed::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 26%, rgba(191,33,33,.34) 0 8%, rgba(191,33,33,.13) 16%, transparent 31%),
    radial-gradient(circle at 55% 18%, rgba(255,255,255,.17) 0 5%, rgba(191,33,33,.35) 10%, transparent 26%),
    radial-gradient(circle at 76% 52%, rgba(191,33,33,.36) 0 6%, rgba(191,33,33,.14) 14%, transparent 30%),
    linear-gradient(90deg, rgba(80,0,0,.35), rgba(13,2,2,.08));
  mix-blend-mode: screen;
}

.service-page .service-parts-panel--fixed .service-part-item {
  z-index: 2;
  gap: clamp(13px, 1.1vw, 22px);
}

.service-page .service-parts-panel--fixed .service-part-item span {
  border-color: rgba(250,250,250,.23);
  background: rgba(13,2,2,.34);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.03),
    0 0 30px rgba(191,33,33,.24);
  backdrop-filter: blur(4px);
}

.service-page .service-parts-panel--fixed .service-part-item img {
  width: 54%;
  height: 54%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .96;
}

.service-page .service-parts-panel--fixed .service-part-item strong {
  color: #FFFFFF;
  text-shadow: 0 1px 14px rgba(13,2,2,.35);
}

.service-page .service-parts-panel--fixed .service-part-item small {
  color: rgba(250,250,250,.78);
}

.certifications-page {
  background: #FAFAFA;
  color: #0D0202;
}

.certifications-hero,
.certifications-main,
.certifications-page .site-footer {
  width: min(1840px, calc(100vw - 80px));
  margin-left: auto;
  margin-right: auto;
}

.certifications-hero {
  position: relative;
  min-height: clamp(210px, 13vw, 255px);
  margin-top: 32px;
  border-radius: clamp(18px, 1.2vw, 26px);
  background: #BF2121;
  overflow: hidden;
}

.certifications-page .certifications-hero .site-header {
  position: relative;
  z-index: 2;
}

.certifications-hero h1 {
  position: absolute;
  left: clamp(40px, 3.95vw, 72px);
  right: clamp(40px, 3.95vw, 72px);
  bottom: clamp(14px, 1.1vw, 24px);
  margin: 0;
  color: #FFFFFF;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(78px, 7.6vw, 140px);
  line-height: .85;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 700;
}

.certifications-main {
  margin-top: clamp(30px, 2vw, 42px);
}

.certificates-showcase {
  border: 1px solid rgba(13,2,2,.14);
  border-radius: clamp(16px, 1.2vw, 24px);
  overflow: hidden;
  background: #FAFAFA;
}

.certificate-slide {
  display: none;
  grid-template-columns: minmax(0, 2fr) minmax(360px, .92fr);
  min-height: clamp(420px, 31vw, 560px);
}

.certificate-slide.is-active {
  display: grid;
}

.certificate-image,
.certificate-content {
  min-width: 0;
}

.certificate-image {
  margin: 0;
  display: grid;
  place-items: center;
  padding: clamp(24px, 2.2vw, 40px);
  border-right: 1px solid rgba(13,2,2,.14);
  background: #FAFAFA;
}

.certificate-image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: clamp(360px, 25vw, 470px);
  object-fit: contain;
}

.certificate-image--portrait img {
  max-height: clamp(390px, 27vw, 520px);
}

.certificate-image--landscape img {
  width: min(100%, 720px);
  max-height: clamp(320px, 22vw, 420px);
}

.certificate-content {
  position: relative;
  padding: clamp(24px, 2vw, 34px) clamp(26px, 2vw, 34px) clamp(26px, 2.1vw, 36px) clamp(48px, 3vw, 56px);
}

.certificate-arrows {
  position: absolute;
  top: clamp(24px, 1.8vw, 30px);
  right: clamp(22px, 1.7vw, 28px);
  display: flex;
  gap: 8px;
}

.certificate-arrows button {
  width: clamp(34px, 2.2vw, 42px);
  height: clamp(34px, 2.2vw, 42px);
  border: 1px solid rgba(13,2,2,.42);
  border-radius: 999px;
  background: transparent;
  color: #0D0202;
  font-size: clamp(22px, 1.55vw, 28px);
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.certificate-arrows button:hover {
  background: #BF2121;
  border-color: #BF2121;
  color: #FFFFFF;
}

.certificate-content h2 {
  width: calc(100% - 92px);
  margin: 0 0 clamp(18px, 1.35vw, 22px);
  color: #0D0202;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(26px, 1.9vw, 36px);
  line-height: .92;
  letter-spacing: -.03em;
  text-transform: uppercase;
  font-weight: 800;
}

.certificate-content p {
  margin: 0 0 clamp(16px, 1vw, 20px);
  color: #0D0202;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(14px, .84vw, 16px);
  line-height: 1.12;
  letter-spacing: 0;
}

.certificate-content p:last-child {
  margin-bottom: 0;
}

.certifications-page .site-footer {
  margin-top: clamp(36px, 3vw, 58px);
}

@media (max-width: 980px) {
  .certifications-hero,
  .certifications-main,
  .certifications-page .site-footer,
  .service-hero,
  .service-main {
    width: min(100% - 28px, 1840px);
  }

  .certificate-slide,
  .certificate-slide.is-active {
    grid-template-columns: 1fr;
  }

  .certificate-image {
    border-right: 0;
    border-bottom: 1px solid rgba(13,2,2,.14);
  }

  .certificate-content h2 {
    width: calc(100% - 100px);
  }
}

@media (max-width: 700px) {
  .certifications-hero {
    min-height: 190px;
    margin-top: 16px;
  }

  .certifications-hero h1 {
    font-size: clamp(42px, 15vw, 68px);
  }

  .certificate-content {
    padding: 28px 22px 34px;
  }

  .certificate-arrows {
    position: static;
    margin-bottom: 18px;
  }

  .certificate-content h2 {
    width: 100%;
  }
}


/* FEROXO_SERVICE_REQUEST_FRAME425_FINAL_14_07 */
.service-request-dialog {
  padding:
    clamp(28px, 3.96vw, 76px)
    clamp(28px, 3.9vw, 75px) !important;
  place-items: center !important;
}

.service-request-dialog.is-open {
  display: grid !important;
}

.service-request-dialog__backdrop {
  background: #FAFAFA !important;
}

.service-request-card {
  position: relative !important;
  isolation: isolate;
  width: min(1768px, calc(100vw - 80px)) !important;
  height: min(618px, calc(100vh - 150px)) !important;
  min-height: 560px !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 14px !important;
  padding: 36px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #FAFAFA !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.service-request-card__outline {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.service-request-card__outline path {
  fill: none;
  stroke: #0D0202;
  stroke-width: 1.35;
  vector-effect: non-scaling-stroke;
}

.service-request-close {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  z-index: 4 !important;
  width: 60px !important;
  height: 60px !important;
  border: 1px solid rgba(13, 2, 2, .055) !important;
  border-radius: 50% !important;
  background: rgba(250, 250, 250, .96) !important;
  color: rgba(13, 2, 2, .10) !important;
  font-size: 28px !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  transition:
    color .18s ease,
    border-color .18s ease;
}

.service-request-close:hover,
.service-request-close:focus-visible {
  color: rgba(13, 2, 2, .68) !important;
  border-color: rgba(13, 2, 2, .24) !important;
}

.service-request-card__intro {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: block !important;
  padding-top: 6px;
}

.service-request-card__intro h2 {
  margin: 0 !important;
  color: #0D0202 !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: clamp(92px, 6.88vw, 132px) !important;
  line-height: .84 !important;
  letter-spacing: -.066em !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
}

.service-request-card__intro p {
  width: min(100%, 820px) !important;
  margin: 27px 0 0 !important;
  color: #0D0202 !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: clamp(20px, 1.46vw, 28px) !important;
  line-height: .97 !important;
  letter-spacing: -.035em !important;
}

.service-request-form {
  position: static !important;
  z-index: 2;
  min-width: 0;
  display: block !important;
  align-self: start !important;
}

.service-request-form__grid {
  position: relative;
  z-index: 2;
  display: grid !important;
  grid-template-columns:
    repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.service-request-form input,
.service-request-form select,
.service-request-form textarea {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 59px !important;
  height: 59px !important;
  border: 1.35px solid #0D0202 !important;
  border-radius: 999px !important;
  padding: 0 36px !important;
  background-color: #FAFAFA !important;
  color: #0D0202 !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: clamp(17px, 1.04vw, 20px) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: -.025em !important;
  outline: none !important;
}

.service-request-form input::placeholder,
.service-request-form textarea::placeholder {
  color: #0D0202 !important;
  opacity: 1 !important;
}

.service-request-form select {
  grid-column: 1 / -1 !important;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 62px !important;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 18 12'%3E%3Cpath d='M3 3.25 9 9l6-5.75' fill='none' stroke='%230D0202' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 34px center;
  background-size: 12px auto;
}

.service-request-form textarea {
  grid-column: 1 / -1 !important;
  min-height: 156px !important;
  height: 156px !important;
  padding-top: 19px !important;
  border-radius: 20px !important;
  resize: none !important;
}

.service-request-form__bottom {
  position: absolute !important;
  left: 55px !important;
  bottom: 18px !important;
  z-index: 3 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 !important;
}

.service-request-form__bottom button {
  width: 216px !important;
  height: 60px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #BF2121 !important;
  color: #FFFFFF !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 21px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

.service-request-form__bottom p {
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: 390px !important;
  margin: 0 !important;
  color: #0D0202 !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
}

.service-request-form__bottom a {
  color: inherit;
  text-decoration: none;
}

body
.site-footer.footer--service-exact
.site-footer__logo img {
  filter: brightness(0) invert(1) !important;
}

@media (max-width: 1100px) {
  .service-request-dialog {
    padding: 24px 18px !important;
  }

  .service-request-card {
    width: min(760px, 100%) !important;
    height: auto !important;
    min-height: 0 !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 34px 24px 118px !important;
    border: 1px solid #0D0202 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
  }

  .service-request-card__outline {
    display: none !important;
  }

  .service-request-card__intro {
    padding-top: 0 !important;
  }

  .service-request-card__intro h2 {
    font-size: clamp(56px, 14vw, 92px) !important;
  }

  .service-request-card__intro p {
    margin-top: 20px !important;
    font-size: 18px !important;
    line-height: 1.05 !important;
  }

  .service-request-form__bottom {
    left: 24px !important;
    right: 24px !important;
    bottom: 28px !important;
    gap: 22px !important;
  }

  .service-request-form__bottom p {
    max-width: none !important;
    white-space: normal !important;
  }
}

@media (max-width: 620px) {
  .service-request-form__grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .service-request-form input,
  .service-request-form select,
  .service-request-form textarea {
    grid-column: 1 !important;
    min-height: 52px !important;
    height: 52px !important;
    padding-left: 22px !important;
    padding-right: 22px !important;
    font-size: 16px !important;
  }

  .service-request-form select {
    padding-right: 50px !important;
    background-position: right 22px center;
  }

  .service-request-form textarea {
    min-height: 136px !important;
    height: 136px !important;
    padding-top: 17px !important;
  }

  .service-request-card {
    padding-bottom: 154px !important;
  }

  .service-request-form__bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }

  .service-request-form__bottom button {
    width: 100% !important;
    height: 54px !important;
  }

  .service-request-form__bottom p {
    font-size: 13px !important;
  }
}
/* END_FEROXO_SERVICE_REQUEST_FRAME425_FINAL_14_07 */


/* FINAL: Make Request bottom row alignment */
@media (min-width: 761px) {
  .request-modal .request-form__bottom {
    display: flex !important;
    align-items: center !important;
    transform: translate(42px, -10px) !important;
  }

  .request-modal .request-form__bottom > button {
    flex: 0 0 auto !important;
    align-self: center !important;
    margin: 0 !important;
    transform: none !important;
  }

  .request-modal .request-form__privacy {
    position: relative !important;
    left: 18px !important;
    align-self: center !important;
    margin: 0 !important;
    transform: none !important;
  }
}

/* FINAL: center Make Request button inside the lower tab */
@media (min-width: 761px) {
  .request-modal .request-form__bottom > button {
    transform: translateX(-18px) !important;
  }
}


/* FEROXO_CUSTOMER_QA_LOCK_2026_08_19 */
/* One navigation system everywhere. */
@media (min-width: 761px) {
  body .site-header .site-nav__link,
  body .home-page .site-header .site-nav__link,
  body .inner-top .site-nav__link,
  body .article-top .site-nav__link,
  body .detail-top .site-nav__link,
  body .about-page .site-nav__link {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    min-height: 28px !important;
    padding: 0 0 5px !important;
    color: #0D0202 !important;
    font-family: Inter, Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }
  body .site-header .site-nav__link:hover,
  body .site-header .site-nav__link:focus-visible { color: #BF2121 !important; }
  body .site-header .site-nav__link.is-current { color: #BF2121 !important; font-weight: 700 !important; text-decoration: none !important; }
  body .site-header .site-nav__link.is-current::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: #BF2121 !important;
  }
}

/* Font-glyph arrows are replaced by geometry, so they stay optically centered. */
[data-hero-prev], [data-hero-next],
[data-industries-prev], [data-industries-next],
[data-about-industries-prev], [data-about-industries-next],
[data-certificate-prev], [data-certificate-next],
.product-gallery-v2__arrow {
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  text-indent: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
}
[data-hero-prev]::before, [data-industries-prev]::before, [data-about-industries-prev]::before,
[data-certificate-prev]::before, .product-gallery-v2__arrow--prev::before,
[data-hero-next]::before, [data-industries-next]::before, [data-about-industries-next]::before,
[data-certificate-next]::before, .product-gallery-v2__arrow--next::before {
  content: '' !important;
  display: block !important;
  box-sizing: border-box !important;
  width: 10px !important;
  height: 10px !important;
  border-top: 2px solid currentColor !important;
  border-right: 2px solid currentColor !important;
  margin: 0 !important;
}
[data-hero-prev]::before, [data-industries-prev]::before, [data-about-industries-prev]::before,
[data-certificate-prev]::before, .product-gallery-v2__arrow--prev::before { transform: translateX(1px) rotate(-135deg) !important; }
[data-hero-next]::before, [data-industries-next]::before, [data-about-industries-next]::before,
[data-certificate-next]::before, .product-gallery-v2__arrow--next::before { transform: translateX(-1px) rotate(45deg) !important; }
button:disabled { cursor: default !important; opacity: .42 !important; }

/* Strength cards change only by intentional click/focus; transitions are calmer. */
.home-page .strength-card {
  transition: flex-basis .38s cubic-bezier(.2,.8,.2,1), flex-grow .38s cubic-bezier(.2,.8,.2,1), opacity .2s ease !important;
}
.home-page .strength-card__content {
  transition: opacity .22s ease .08s, transform .32s cubic-bezier(.2,.8,.2,1) !important;
}

/* Cleaner request modal close control. */
body .request-modal .modal__close,
body .home-page .request-modal .modal__close {
  top: 14px !important;
  right: 14px !important;
  display: grid !important;
  place-items: center !important;
  width: 42px !important;
  height: 42px !important;
  padding: 0 !important;
  border: 1px solid rgba(13,2,2,.12) !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.96) !important;
  color: #0D0202 !important;
  box-shadow: 0 8px 28px rgba(13,2,2,.12) !important;
  font-size: 25px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  transition: color .2s ease, border-color .2s ease, transform .2s ease, background .2s ease !important;
}
body .request-modal .modal__close:hover,
body .request-modal .modal__close:focus-visible {
  color: #BF2121 !important;
  border-color: rgba(191,33,33,.35) !important;
  background: #FFFFFF !important;
  transform: rotate(5deg) scale(1.04) !important;
}

/* About / Complete Support is real HTML now, therefore fully EN/CZ translatable. */
.about-page .about-support--reference {
  align-items: stretch !important;
}
.about-page .about-support--reference .about-support__card {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  min-width: 0 !important;
  min-height: clamp(285px, 22vw, 410px) !important;
  padding: clamp(24px, 2.1vw, 38px) !important;
  overflow: hidden !important;
  border-radius: clamp(18px, 1.3vw, 24px) !important;
  background: #BF2121 !important;
  color: #FFFFFF !important;
}
.about-page .about-support--reference .about-support__card h3 {
  margin: 0 0 18px !important;
  color: #FFFFFF !important;
  font-size: clamp(22px, 1.65vw, 32px) !important;
  font-weight: 800 !important;
  line-height: .94 !important;
  letter-spacing: -.035em !important;
}
.about-page .about-support--reference .about-support__card p {
  margin: 0 !important;
  color: rgba(255,255,255,.93) !important;
  font-size: clamp(14px, 1vw, 18px) !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
}
.about-page .about-support--reference .about-support__card > img {
  display: block !important;
  width: clamp(58px, 5.4vw, 92px) !important;
  height: clamp(58px, 5.4vw, 92px) !important;
  margin: clamp(28px, 3vw, 52px) 0 0 auto !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) !important;
  opacity: .98 !important;
}

/* Technical note belongs to the expertise card instead of floating between sections. */
.service-page .service-tech-note--inline {
  display: grid !important;
  grid-template-columns: 28px minmax(0,1fr) !important;
  gap: 12px !important;
  align-items: start !important;
  width: 100% !important;
  margin: clamp(20px, 2vw, 30px) 0 0 !important;
  padding: 16px 18px !important;
  border: 1px solid rgba(191,33,33,.18) !important;
  border-radius: 14px !important;
  background: rgba(191,33,33,.055) !important;
}
.service-page .service-tech-note--inline > span {
  display: grid !important;
  place-items: center !important;
  width: 26px !important;
  height: 26px !important;
  border-radius: 50% !important;
  background: #BF2121 !important;
  color: #FFFFFF !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}
.service-page .service-tech-note--inline p {
  margin: 1px 0 0 !important;
  color: #0D0202 !important;
  font-size: clamp(13px, .9vw, 16px) !important;
  line-height: 1.35 !important;
}

/* Contact keeps its geometry before/after images and scripts finish loading. */
.contact-page .contact-layout-v2 { align-items: stretch !important; }
.contact-page .contact-map-v2 { min-height: 0 !important; aspect-ratio: 908 / 416 !important; overflow: hidden !important; }
.contact-page .contact-map-v2 > img { display: block !important; width: 100% !important; height: 100% !important; object-fit: cover !important; }

@media (max-width: 760px) {
  body .site-header.is-menu-open .site-nav__link,
  body .home-page .site-header.is-menu-open .site-nav__link,
  body .inner-top .site-nav__link,
  body .article-top .site-nav__link,
  body .detail-top .site-nav__link {
    font-size: 14px !important;
    font-weight: 600 !important;
  }
  .about-page .about-support--reference .about-support__card { min-height: 250px !important; }
  .about-page .about-support--reference .about-support__card > img { width: 66px !important; height: 66px !important; }
}
