

body {
  font-family: "Montserrat", "Segoe UI", system-ui, sans-serif;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: max(560px, calc(88vh - var(--header-height, 96px)));
  background: var(--bg-dark);
}

.hero__layout {
  display: grid;

  grid-template-columns: minmax(260px, 1fr) minmax(50vw, 1fr);
  align-items: stretch;
  min-height: inherit;
  position: relative;
}

.hero__copy {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: clamp(72px, 10vh, 120px) clamp(20px, 3vw, 40px) clamp(64px, 8vh, 100px)
    max(32px, calc((100vw - var(--container)) / 2 + 32px));
  background: var(--bg-dark);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: min(100%, 820px);
  width: 100%;
}

.hero__title {
  margin: 0 0 clamp(20px, 3vh, 32px);
  font-family: "Furore", "Arial Black", system-ui, sans-serif;
  font-size: clamp(2.25rem, 5.8vw, 4rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
}

.hero__title-line {
  display: block;
  white-space: nowrap;
}

@media (max-width: 1440px) {
  .hero__title {
    font-size: clamp(2rem, 4.45vw, 3.4rem);
  }
}

.hero__lead {
  display: flex;
  align-items: stretch;
  gap: clamp(14px, 2vw, 22px);
  margin: 0 0 clamp(28px, 4vh, 40px);
}

.hero__lead-bar {
  flex: 0 0 3px;
  width: 3px;
  min-height: 100%;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 0.15em;
  box-shadow: 0 0 12px rgba(0, 80, 255, 0.55);
}

.hero__text {
  margin: 0;
  flex: 1;
  max-width: none;
  font-family: "Furore", "Arial Black", system-ui, sans-serif;
  font-size: clamp(0.8125rem, 1.15vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.62;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
}

.hero__text-row {
  display: inline;
}

@media (min-width: 769px) {
  .hero__text-row {
    display: block;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero__text {
    font-size: 0.78rem;
    letter-spacing: 0.045em;
  }
}

.hero__cta.btn {
  border-radius: 10px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  box-shadow:
    0 0 0 1px rgba(0, 80, 255, 0.35),
    0 12px 40px rgba(0, 80, 255, 0.35);
}

.hero__cta.btn:hover {
  box-shadow:
    0 0 0 1px rgba(0, 80, 255, 0.5),
    0 14px 44px rgba(0, 80, 255, 0.45);
}

.hero__media {
  position: relative;
  min-height: 280px;
  background: var(--bg-dark);
  z-index: 0;
  overflow: hidden;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #040b1e 0%,
    rgba(4, 11, 30, 0.97) 8%,
    rgba(4, 11, 30, 0.75) 22%,
    rgba(4, 11, 30, 0.4) 42%,
    rgba(4, 11, 30, 0.12) 62%,
    transparent 82%
  );
}

.hero__media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.08);
  transform-origin: 65% 50%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-family: inherit;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transform: translateY(0);
  box-shadow:
    0 0 0 1px rgba(0, 80, 255, 0.25),
    0 12px 30px rgba(0, 80, 255, 0.12);
  transition:
    background 0.2s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
  filter: saturate(1);
}

.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  filter: saturate(1.08);
  box-shadow:
    0 0 0 1px rgba(0, 80, 255, 0.55),
    0 16px 44px rgba(0, 80, 255, 0.22),
    0 12px 34px rgba(0, 0, 0, 0.22);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 12px 30px rgba(0, 0, 0, 0.12);
  filter: saturate(1);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
  filter: saturate(1.05);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55),
    0 16px 44px rgba(0, 0, 0, 0.18);
}

.btn--outline:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn--outline {
    transition: none;
    transform: none;
    filter: none;
  }
}

.section {
  padding: 80px 0;
}

.section__title {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
}

.section__title--blue {
  color: var(--accent);
}

.section__title--dark {
  color: var(--text-dark);
}

.section__subtitle {
  margin: 0 0 48px;
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted-dark);
}

.page-main {
  padding-top: var(--header-height, 96px);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.8125rem;
}

.quality-page .btn {
  box-shadow: none;
  transition: background-color 0.15s ease;
  transform: none;
  filter: none;
}

.quality-page .btn:hover,
.quality-page .btn:active {
  transform: none;
  filter: none;
  box-shadow: none;
  background: #0046e0;
}

.quality-page .btn--outline {
  color: var(--text-dark);
  border-color: rgba(0, 40, 120, 0.2);
  box-shadow: none;
  background: transparent;
}

.quality-page .btn--outline:hover,
.quality-page .btn--outline:active {
  background: rgba(0, 40, 120, 0.04);
  border-color: rgba(0, 40, 120, 0.28);
  box-shadow: none;
  transform: none;
  filter: none;
}

.quality-hero {
  padding: 48px 0 56px;
  background:
    radial-gradient(ellipse 90% 120% at 8% 0%, rgba(0, 80, 255, 0.22), transparent 62%),
    var(--bg-dark);
  color: #fff;
}

.quality-hero .container {
  width: 100%;
  max-width: var(--container);
}

.quality-hero__title {
  margin: 0 0 24px;
  font-family: "Furore", "Arial Black", system-ui, sans-serif;
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quality-hero__title-blue {
  display: block;
  color: var(--accent);
}

.quality-hero__title-rest {
  display: block;
  color: #fff;
}

.quality-hero__lead {
  display: flex;
  align-items: stretch;
  gap: 18px;
  margin: 0;
}

.quality-hero__lead-bar {
  flex: 0 0 3px;
  width: 3px;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(0, 80, 255, 0.55);
}

.quality-hero__lead-text {
  margin: 0;
  flex: 1;
  min-width: 0;
  width: 100%;
  max-width: none;
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  overflow-wrap: anywhere;
}

.quality-hero__lead-row {
  display: inline;
}

@media (min-width: 769px) {
  .quality-hero__lead-row {
    display: block;
  }
}

.quality-body {
  padding: 48px 0 80px;
  background: var(--bg-white);
  overflow-x: clip;
}

.quality-body > .container {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.quality-body > .container > * {
  min-width: 0;
}

.quality-body--single > .container {
  grid-template-columns: 1fr;
}

.quality-nav {
  position: sticky;
  top: calc(var(--header-height, 96px) + 24px);
  padding: 20px 0;
}

.quality-nav__title {
  margin: 0 0 14px;
  font-family: "Furore", "Arial Black", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
}

.quality-nav__list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.quality-nav__link {
  display: block;
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--text-dark);
  text-decoration: none;
  border-left: 2px solid transparent;
  padding-left: 12px;
  margin-left: -12px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.quality-nav__link:hover,
.quality-nav__link:focus-visible {
  color: var(--accent);
  border-left-color: var(--accent);
}

.quality-nav__link.is-active {
  color: var(--accent);
  border-left-color: var(--accent);
  font-weight: 600;
}

.quality-sections {
  display: flex;
  flex-direction: column;
  gap: 56px;
  min-width: 0;
}

.quality-section {
  min-width: 0;
  scroll-margin-top: calc(var(--header-height, 96px) + 20px);
}

.quality-section__head {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 40, 120, 0.1);
}

.quality-section__title {
  margin: 0 0 10px;
  font-family: "Furore", "Arial Black", system-ui, sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-dark);
  overflow-wrap: anywhere;
}

.quality-section__lead {
  margin: 0;
  max-width: 720px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted-dark);
  overflow-wrap: anywhere;
}

.quality-section__docs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.policy-prose {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.policy-prose > * + * {
  margin-top: 1rem;
}

.policy-prose__subheading {
  margin: 1.5rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-dark);
}

.policy-prose__subheading:first-child {
  margin-top: 0;
}

.policy-prose__list {
  margin: 0;
  padding-left: 1.35rem;
}

.policy-prose__list li + li {
  margin-top: 0.5rem;
}

.policy-prose__definitions {
  margin: 0;
}

.policy-prose__def {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 40, 120, 0.08);
}

.policy-prose__def:first-child {
  padding-top: 0;
}

.policy-prose__def:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.policy-prose__def dt {
  margin: 0 0 6px;
  font-weight: 600;
  color: var(--text-dark);
}

.policy-prose__def dd {
  margin: 0;
  color: var(--text-muted-dark);
}

.policy-prose__contact {
  margin-top: 1.5rem;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: #f4f7fc;
  border: 1px solid rgba(0, 40, 120, 0.08);
}

.policy-prose__contact > * + * {
  margin-top: 0.5rem;
}

.policy-prose__contact-name {
  margin: 0 0 0.25rem;
  font-weight: 600;
  color: var(--text-dark);
}

.policy-prose__contact a {
  color: var(--accent);
  text-decoration: none;
}

.policy-prose__contact a:hover {
  text-decoration: underline;
}

.quality-doc {
  display: grid;
  grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  min-width: 0;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #f4f7fc;
  border: 1px solid rgba(0, 40, 120, 0.08);
}

.quality-doc__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
}

.quality-doc__preview {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(0, 40, 120, 0.06);
  border-radius: var(--radius);
  background: #fff;
}

.quality-doc__thumb {
  display: block;
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  object-position: top center;
  border-radius: 4px;
}

.quality-doc__title {
  margin: 0 0 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-dark);
  overflow-wrap: anywhere;
}

.quality-doc__meta {
  flex: 1;
  margin: 0;
  display: grid;
  gap: 14px;
  min-width: 0;
}

.quality-doc__meta-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px 16px;
  min-width: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.quality-doc__meta-row--wide {
  grid-template-columns: 88px minmax(0, 1fr);
}

.quality-doc__meta dt {
  margin: 0;
  font-weight: 600;
  color: var(--text-muted-dark);
}

.quality-doc__meta dd {
  margin: 0;
  min-width: 0;
  color: var(--text-dark);
  overflow-wrap: anywhere;
}

.quality-doc__scope {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quality-doc__scope-line {
  margin: 0;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.quality-doc__badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0d5c2e;
  background: rgba(13, 92, 46, 0.1);
}

.quality-doc__actions {
  margin-top: auto;
  padding-top: 24px;
}

.quality-page .quality-doc__btn {
  min-width: 180px;
  min-height: 48px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
}

.doc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.doc-lightbox[hidden] {
  display: none;
}

.doc-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 11, 30, 0.88);
  backdrop-filter: blur(6px);
}

.doc-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(960px, 100%);
  max-height: calc(100vh - 48px);
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.doc-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(4, 11, 30, 0.06);
  color: var(--text-dark);
  cursor: pointer;
}

.doc-lightbox__close:hover {
  background: rgba(4, 11, 30, 0.1);
  color: var(--text-dark);
}

.doc-lightbox__title {
  margin: 0 48px 8px 0;
  padding-right: 40px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.doc-lightbox__hint {
  margin: 0 0 10px;
  font-size: 0.8125rem;
  color: var(--text-muted-dark);
}

.doc-lightbox__viewer {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 0;
}

.doc-lightbox__frame {
  flex: 1;
  min-width: 0;
  min-height: 0;
  border-radius: var(--radius);
  background: #f0f3f9;
}

.doc-lightbox--fit {
  padding: 0;
}

.doc-lightbox--fit .doc-lightbox__dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: 100vh;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.doc-lightbox--fit .doc-lightbox__title,
.doc-lightbox--fit .doc-lightbox__hint,
.doc-lightbox--fit .doc-lightbox__counter {
  display: none !important;
}

.doc-lightbox--fit .doc-lightbox__close {
  position: fixed;
  top: max(14px, env(safe-area-inset-top, 0px));
  right: max(14px, env(safe-area-inset-right, 0px));
  z-index: 4;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text-dark);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.doc-lightbox--fit .doc-lightbox__close:hover,
.doc-lightbox--fit .doc-lightbox__close:focus-visible {
  background: #fff;
  color: var(--accent);
}

.doc-lightbox--fit .doc-lightbox__viewer {
  position: absolute;
  inset: 0;
  z-index: 1;
  gap: clamp(8px, 2vw, 20px);
  padding: 16px clamp(12px, 3vw, 28px);
  cursor: zoom-out;
}

.doc-lightbox--fit .doc-lightbox__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
  cursor: zoom-out;
}

.doc-lightbox--fit .doc-lightbox__nav,
.doc-lightbox--fit .doc-lightbox__close {
  cursor: pointer;
}

.doc-lightbox--document .doc-lightbox__viewer {
  align-items: stretch;
  overflow: hidden;
}

.doc-lightbox--document .doc-lightbox__frame {
  flex: 1 1 auto;
  align-self: stretch;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(22, 34, 62, 0.28) rgba(22, 34, 62, 0.08);
}

.doc-lightbox--document .doc-lightbox__frame::-webkit-scrollbar {
  width: 8px;
}

.doc-lightbox--document .doc-lightbox__frame::-webkit-scrollbar-track {
  background: rgba(22, 34, 62, 0.08);
  border-radius: 999px;
}

.doc-lightbox--document .doc-lightbox__frame::-webkit-scrollbar-thumb {
  background: rgba(22, 34, 62, 0.28);
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.doc-lightbox--document .doc-lightbox__frame::-webkit-scrollbar-thumb:hover {
  background: rgba(22, 34, 62, 0.4);
}

.doc-lightbox__nav {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text-dark);
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.doc-lightbox__nav[hidden] {
  display: none !important;
}

.doc-lightbox__nav:hover,
.doc-lightbox__nav:focus-visible {
  border-color: rgba(0, 80, 255, 0.35);
  color: var(--accent);
}

.doc-lightbox__counter {
  margin: 10px 0 0;
  color: var(--text-muted-dark);
  font-size: 0.8125rem;
  text-align: center;
}

.doc-lightbox__counter[hidden] {
  display: none !important;
}

.doc-lightbox--fit .doc-lightbox__img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(var(--doc-lightbox-img-max-w, 96vw), 100%);
  max-height: var(--doc-lightbox-img-max-h, 92vh);
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
  outline: none;
  cursor: default;
  user-select: var(--product-photo-user-select);
  -webkit-user-select: var(--product-photo-user-select);
  -webkit-user-drag: none;
  -webkit-touch-callout: var(--product-photo-touch-callout);
}

.doc-lightbox--document .doc-lightbox__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.product-hero.quality-hero {
  padding: clamp(20px, 3.2vw, 48px) 0 clamp(24px, 4vw, 56px);
  background:
    radial-gradient(ellipse 80% 120% at 12% 0%, rgba(0, 80, 255, 0.28), transparent 64%),
    linear-gradient(135deg, rgba(0, 80, 255, 0.1), transparent 42%),
    var(--bg-dark);
}

.product-hero .product-summary__eyebrow {
  margin-bottom: clamp(8px, 1.1vw, 10px);
  font-size: clamp(0.6875rem, 0.22vw + 0.625rem, 0.75rem);
}

.product-hero.product-hero--compact {
  padding: clamp(20px, 3vw, 28px) 0 clamp(14px, 2vw, 20px);
}

.product-hero--compact .product-breadcrumbs {
  margin-bottom: 0;
}

.product-sections {
  gap: 28px;
}

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

.product-top__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 3.6vw, 52px);
  padding: clamp(20px, 3.2vw, 30px);
  border: 1px solid rgba(4, 11, 30, 0.06);
  border-radius: 18px;
  background: #fff;
}

.product-top__visual,
.product-top__body {
  min-width: 0;
}

.product-top__visual {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: auto;
  padding: 0;
  overflow: visible;
  border: none;
  box-shadow: none;
}

.product-top__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: clamp(4px, 0.8vw, 10px) clamp(4px, 1vw, 10px) clamp(10px, 1vw, 14px) 0;
}

.product-top__title {
  margin: 0 0 14px;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}

.product-top__prose .product-prose {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: #2f3640;
}

.product-top__prose .product-prose p {
  margin: 0;
}

.product-top__prose .product-prose p + p {
  margin-top: 0.85em;
}

.product-top__prose > *:first-child {
  margin-top: 0;
}

.product-top__prose > *:last-child {
  margin-bottom: 0;
}

.product-top .product-showcase--panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  min-height: 0;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-top .product-showcase--panel .product-showcase__frame--carousel {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.product-top .product-showcase--panel .product-showcase__stage {
  position: relative;
  flex: 0 0 auto;
  min-height: clamp(280px, 32vw, 420px);
  aspect-ratio: 1.22 / 1;
  max-height: none;
  overflow: hidden;
  padding: clamp(18px, 2.4vw, 28px);
  box-sizing: border-box;
  border: none;
  border-radius: 12px;
  box-shadow: none;
}

.product-top .product-showcase--panel .product-showcase__controls {
  flex: 0 0 auto;
  margin: clamp(18px, 2.2vw, 24px) 0 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border-top: none;
}

.product-top .product-showcase--panel .product-showcase__main {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
}

.product-top .product-showcase--panel .product-showcase__main-img,
.product-top .product-showcase--panel .product-media-btn img {
  width: calc(100% - clamp(12px, 2vw, 26px));
  height: calc(100% - clamp(12px, 2vw, 26px));
  max-height: none;
  margin: auto;
  object-fit: contain;
  object-position: center center;
}

.product-top .product-media-btn__hint {
  display: none;
}

.product-top .product-thumbstrip {
  gap: clamp(10px, 1.4vw, 14px);
}

.product-top .product-thumbstrip__nav {
  width: 48px;
  height: 48px;
  border-color: rgba(4, 11, 30, 0.1);
  color: rgba(4, 11, 30, 0.45);
}

.product-top .product-thumbstrip__nav svg {
  width: 16px;
  height: 16px;
}

.product-top .product-thumbstrip__list {
  gap: 10px;
  justify-content: center;
}

.product-top .product-thumbstrip__item {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  padding: 6px;
  border: 1px solid rgba(4, 11, 30, 0.12);
  border-radius: 8px;
  background: #fff;
}

.product-top .product-thumbstrip__item.is-active {
  border-color: #1e7bff;
  box-shadow: none;
}

.product-top .product-thumbstrip__index {
  margin-top: clamp(14px, 1.8vw, 18px);
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  font-weight: 500;
  color: rgba(4, 11, 30, 0.38);
}

.product-top .product-thumbstrip__index [data-showcase-current] {
  color: #1e7bff;
}

.product-top .product-showcase__model-label {
  right: clamp(14px, 2vw, 22px);
  bottom: clamp(14px, 2vw, 22px);
  min-height: 38px;
  padding: 0 12px;
  font-size: 0.775rem;
  font-weight: 600;
  border: 1px solid rgba(0, 40, 120, 0.1);
  font-family: "Montserrat", system-ui, sans-serif;
}

.product-details {
  display: grid;
  gap: 24px;
  min-width: 0;
}

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

.product-summary {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #f4f7fc;
  border: 1px solid rgba(0, 40, 120, 0.08);
}

.product-summary .quality-section__head {
  margin-bottom: 20px;
}

.product-summary__eyebrow,
.product-cta__eyebrow {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(6px, 0.9vw, 10px);
  max-width: min(100%, 52rem);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: clamp(30px, 3.6vw, 34px);
  padding: clamp(5px, 0.7vw, 7px) clamp(10px, 1.1vw, 12px);
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 40, 120, 0.1);
  color: var(--text-dark);
  font-size: clamp(0.75rem, 0.22vw + 0.68rem, 0.875rem);
  font-weight: 600;
  line-height: 1.3;
}

.product-info-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(0, 40, 120, 0.1);
  box-shadow: 0 16px 44px rgba(4, 11, 30, 0.06);
}

.product-info-card__head {
  margin-bottom: 18px;
}

.product-info-card__title {
  margin: 0;
  font-family: "Furore", "Arial Black", system-ui, sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.product-info-card__list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-info-card__list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-muted-dark);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.product-info-card__list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(0, 80, 255, 0.1);
}

.product-showcase {
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(0, 40, 120, 0.1);
  box-shadow: 0 12px 36px rgba(4, 11, 30, 0.05);
}

.product-showcase__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.product-showcase__title {
  margin: 0;
  font-family: "Furore", "Arial Black", system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.product-showcase__meta {
  flex-shrink: 0;
  color: var(--text-muted-dark);
  font-size: 0.8125rem;
  font-weight: 500;
}

.product-showcase__frame:not(.product-showcase__frame--carousel) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

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

.product-showcase--panel {
  display: block;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.product-showcase__frame--stacked {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.product-showcase__frame--carousel {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.product-showcase__frame--carousel .product-showcase__stage {
  order: 0;
  background: #fff;
}

.product-showcase__controls {
  margin: 14px 16px 16px;
  padding: 14px 16px 12px;
  background: #f0f2f5;
  border-radius: 8px;
}

.product-thumbstrip {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2.6vw, 30px);
  width: 100%;
}

.product-thumbstrip__list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

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

.product-thumbstrip__nav {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(4, 11, 30, 0.12);
  border-radius: 50%;
  background: #fff;
  color: rgba(4, 11, 30, 0.55);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.product-thumbstrip__nav:hover:not(:disabled),
.product-thumbstrip__nav:focus-visible:not(:disabled) {
  border-color: rgba(0, 123, 255, 0.35);
  color: #007bff;
}

.product-thumbstrip__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.product-thumbstrip__item {
  display: flex;
  flex: 0 0 124px;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 108px;
  margin: 0;
  padding: 10px;
  box-sizing: border-box;
  border: 2px solid rgba(4, 11, 30, 0.1);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.product-thumbstrip__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.product-thumbstrip__item.is-active,
.product-thumbstrip__item:hover,
.product-thumbstrip__item:focus-visible {
  border-color: #007bff;
}

.product-thumbstrip__index {
  width: 100%;
  margin: 24px 0 0;
  padding: 0;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  color: rgba(4, 11, 30, 0.45);
  font-variant-numeric: tabular-nums;
}

.product-thumbstrip__index [data-showcase-current] {
  color: #1e7bff;
}

.product-showcase__carousel {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 10px;
}

.product-showcase__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(4, 11, 30, 0.12);
  border-radius: 50%;
  background: #fff;
  color: rgba(4, 11, 30, 0.55);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.product-showcase__nav:hover:not(:disabled),
.product-showcase__nav:focus-visible:not(:disabled) {
  border-color: rgba(0, 123, 255, 0.35);
  color: #007bff;
}

.product-showcase__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.product-showcase__controls .product-showcase__thumbs,
.product-showcase__frame--carousel .product-showcase__thumbs {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  max-height: none;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0;
  padding: 2px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.product-showcase__controls .product-showcase__thumbs::-webkit-scrollbar,
.product-showcase__frame--carousel .product-showcase__thumbs::-webkit-scrollbar {
  display: none;
}

.product-showcase__controls .product-showcase__thumb,
.product-showcase__frame--carousel .product-showcase__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  margin: 0;
  padding: 4px;
  box-sizing: border-box;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.product-showcase__controls .product-showcase__thumb img,
.product-showcase__frame--carousel .product-showcase__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #fff;
}

.product-showcase__controls .product-showcase__thumb.is-active,
.product-showcase__frame--carousel .product-showcase__thumb.is-active {
  border-color: #007bff;
  box-shadow: none;
}

.product-showcase__controls .product-showcase__thumb:hover,
.product-showcase__controls .product-showcase__thumb:focus-visible,
.product-showcase__frame--carousel .product-showcase__thumb:hover,
.product-showcase__frame--carousel .product-showcase__thumb:focus-visible {
  border-color: #007bff;
  box-shadow: none;
}

.product-showcase__3d {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #2b3144;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  pointer-events: auto;
  box-shadow: 0 6px 18px rgba(4, 11, 30, 0.18);
}

a.product-showcase__3d:hover,
a.product-showcase__3d:focus-visible {
  color: #fff;
  background: #353d54;
}

.product-showcase__3d-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.product-showcase__model-label {
  position: absolute;
  right: clamp(24px, 3vw, 38px);
  bottom: clamp(24px, 3vw, 36px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: #1e7bff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}

.product-showcase__model-label[hidden] {
  display: none;
}

.product-showcase__frame--rail {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
}

.product-showcase__rail {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  min-width: 0;
  padding: 0 10px 0 0;
}

.product-showcase__frame--rail .product-showcase__thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.product-showcase__frame--rail .product-showcase__thumb {
  width: 100%;
  margin: 0;
  border-radius: 2px;
}

.product-showcase__frame--rail .product-showcase__thumb img {
  display: block;
  width: 100%;
  height: 64px;
  object-fit: contain;
  background: #fff;
}

.product-showcase__index {
  margin: 0;
  padding-top: 4px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: center;
  color: var(--text-muted-dark);
  font-variant-numeric: tabular-nums;
}

.product-showcase__index-sep {
  margin: 0 0.15em;
  opacity: 0.45;
}

.product-showcase--panel .product-showcase__frame:not(.product-showcase__frame--rail):not(.product-showcase__frame--carousel) {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-showcase--panel .product-showcase__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(4, 11, 30, 0.1);
  border-radius: 2px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.product-showcase--panel .product-showcase__main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.product-showcase--panel .product-showcase__main-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.product-showcase--panel .product-showcase__frame:not(.product-showcase__frame--rail):not(.product-showcase__frame--carousel) .product-showcase__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
  gap: 8px;
  width: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.product-showcase--panel .product-showcase__frame:not(.product-showcase__frame--carousel) .product-showcase__thumb {
  width: 100%;
  margin: 0;
}

.product-showcase--panel .product-showcase__frame:not(.product-showcase__frame--rail):not(.product-showcase__frame--carousel) .product-showcase__thumb img {
  display: block;
  width: 100%;
  height: 56px;
  object-fit: contain;
  background: #fff;
  border-radius: 2px;
}

.product-showcase--panel .product-showcase__frame--carousel .product-showcase__thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  margin: 0;
}

.product-showcase__stage {
  min-width: 0;
  border-radius: var(--radius);
  background: #eef2f8;
  border: 1px solid rgba(0, 40, 120, 0.08);
  overflow: hidden;
}

.product-showcase__main {
  min-height: 200px;
}

.product-showcase__main-img {
  display: block;
  width: 100%;
  max-height: min(52vh, 520px);
  margin: 0 auto;
  object-fit: contain;
}

.product-showcase--wide .product-showcase__main-img {
  max-height: none;
}

.product-showcase__frame--rail .product-showcase__thumbs,
.product-showcase__frame--stacked .product-showcase__thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 76px;
  max-height: min(52vh, 520px);
  overflow: auto;
  padding: 2px;
  -webkit-overflow-scrolling: touch;
}

.product-showcase__thumb {
  flex: 0 0 auto;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #eef2f8;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.product-showcase__thumb img {
  display: block;
  width: 100%;
  height: 56px;
  object-fit: contain;
}

.product-showcase__thumb:hover,
.product-showcase__thumb:focus-visible {
  border-color: rgba(0, 80, 255, 0.35);
}

.product-showcase__thumb.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 80, 255, 0.12);
}

.product-showcase__caption {
  margin: 12px 0 0;
  color: var(--text-muted-dark);
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
}

.product-media-btn {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
  position: relative;
}

.product-media-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius);
}

.product-media-btn img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-page .product-media-btn img,
.product-page .product-showcase__main-img,
.product-page .product-thumbstrip__item img,
.product-page .product-showcase__thumb img,
.product-page .product-gallery-grid__frame img,
.product-page .product-figure__img {
  user-select: var(--product-photo-user-select);
  -webkit-user-select: var(--product-photo-user-select);
  -webkit-user-drag: none;
  -webkit-touch-callout: var(--product-photo-touch-callout);
  pointer-events: var(--product-photo-img-pointer-events);
}

.product-media-btn__hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(7, 17, 38, 0.78);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}

.product-media-btn:hover .product-media-btn__hint,
.product-media-btn:focus-visible .product-media-btn__hint {
  opacity: 1;
  transform: translateY(0);
}

.product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(4px, 0.55vw, 8px);
  margin: 0 0 clamp(12px, 1.6vw, 18px);
  max-width: min(100%, 62rem);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.6875rem, 0.32vw + 0.625rem, 0.8125rem);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.product-breadcrumbs a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.15s ease;
}

.product-breadcrumbs a:hover,
.product-breadcrumbs a:focus-visible {
  color: #fff;
}

.product-hero .product-hero__title {
  margin-bottom: clamp(14px, 1.8vw, 24px);
  max-width: min(100%, 58rem);
  font-size: clamp(1.125rem, 1.05vw + 0.82rem, 2.125rem);
  line-height: 1.16;
  letter-spacing: 0.012em;
  text-transform: none;
  text-wrap: balance;
  overflow-wrap: normal;
  hyphens: manual;
}

.product-info-card--compact {
  padding-bottom: 0;
  box-shadow: none;
  border: none;
  background: transparent;
}

.product-info-card--compact .product-info-card__head {
  margin-bottom: 0;
}

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

.product-nav .product-nav__heading {
  margin: 0 0 14px;
  padding: 0;
  margin-left: 0;
  border-left: none;
  font-family: "Furore", "Arial Black", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
}

.product-nav .product-nav__heading:hover,
.product-nav .product-nav__heading:focus-visible,
.product-nav .product-nav__heading.is-active {
  border-left: none;
  color: var(--accent);
  font-weight: 400;
}

.product-nav__label {
  margin: 0 0 8px;
  padding-left: 12px;
  font-family: "Furore", "Arial Black", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
}

.product-body {
  padding: 48px 0 80px;
  background: var(--bg-white);
}

.product-gallery-grid,
.service-gallery {
  margin: 0 0 28px;
}

.product-gallery-grid__list,
.service-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-gallery-grid__item,
.service-gallery__item {
  min-width: 0;
}

.product-gallery-grid__btn {
  width: 100%;
  height: 100%;
}

.product-gallery-grid__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 12px;
  border-radius: var(--radius);
  background: #eef2f8;
  border: 1px solid rgba(0, 40, 120, 0.1);
}

.product-gallery-grid__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.service-gallery__heading {
  margin-bottom: 18px;
}

.service-gallery__btn {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 1px solid rgba(0, 40, 120, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: #eef2f8;
}

.service-gallery__btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.service-gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 11, 30, 0.38);
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-gallery__btn:hover .service-gallery__overlay,
.service-gallery__btn:focus-visible .service-gallery__overlay {
  opacity: 1;
}

.service-gallery__model-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(4, 11, 30, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}

.product-top__visual .service-gallery {
  margin-bottom: 0;
}

.product-prose {
  color: var(--text-muted-dark);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.product-prose > *:first-child {
  margin-top: 0;
}

.product-prose > *:last-child {
  margin-bottom: 0;
}

.product-prose h2 {
  margin: 32px 0 16px;
  font-family: "Furore", "Arial Black", system-ui, sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.product-prose p {
  margin: 0 0 16px;
}

.product-prose ul,
.product-prose ol {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding-left: 22px;
}

.product-prose li {
  padding-left: 4px;
}

.product-spec {
  margin: 0 0 32px;
  min-width: 0;
}

.product-spec__title,
.product-details__heading {
  margin: 0 0 16px;
  font-family: "Furore", "Arial Black", system-ui, sans-serif;
  font-size: clamp(1.0625rem, 1.9vw, 1.375rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.product-table-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid rgba(0, 40, 120, 0.12);
  border-radius: var(--radius);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 80, 255, 0.45) rgba(0, 40, 120, 0.08);
}

.product-table-wrap::-webkit-scrollbar {
  height: 8px;
}

.product-table-wrap::-webkit-scrollbar-track {
  background: rgba(0, 40, 120, 0.06);
  border-radius: 999px;
}

.product-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 80, 255, 0.45);
  border-radius: 999px;
}

.product-table-wrap table {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  background: #fff;
  color: var(--text-dark);
}

.product-table-wrap th,
.product-table-wrap td {
  padding: 11px 12px;
  border: 1px solid rgba(0, 40, 120, 0.1);
  text-align: center;
  vertical-align: middle;
  font-size: 0.875rem;
  line-height: 1.4;
  hyphens: manual;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-table-wrap th {
  background: #f4f7fc;
  color: var(--text-dark);
  font-weight: 700;
}

.product-spec-table tbody tr:first-child td {
  background: #f4f7fc;
  color: var(--text-dark);
  font-weight: 700;
}

.product-table-wrap td:first-child,
.product-table-wrap th:first-child {
  width: 52px;
  min-width: 52px;
  color: var(--accent);
  font-weight: 700;
  text-align: center;
}

.product-spec-table td:nth-child(2) {
  min-width: 12.5rem;
  text-align: left;
  font-weight: 500;
  hyphens: none;
  white-space: normal;
}

.product-spec-table td:nth-child(n + 3),
.product-spec-table th:nth-child(n + 3) {
  text-align: center;
  white-space: nowrap;
}

.product-spec-table td[rowspan]:not(:first-child),
.product-spec-table td[colspan]:not(:first-child):not(:nth-child(2)) {
  text-align: center;
  vertical-align: middle;
}

.product-spec-table__section {
  font-weight: 700;
  color: var(--text-dark);
  background: #f8fafd;
  text-align: left !important;
}

.product-spec-table__sub {
  padding-left: 22px !important;
  color: var(--text-muted-dark);
  font-weight: 500;
  text-align: left !important;
}

.product-spec-table__value {
  font-variant-numeric: tabular-nums;
}

.product-spec-table--ugop td:first-child {
  width: auto;
  min-width: 0;
  color: var(--text-dark);
  font-weight: 500;
  text-align: left;
}

.product-spec-table--ugop td:nth-child(2),
.product-spec-table--ugop td:nth-child(3) {
  width: auto;
  min-width: 7.5rem;
  text-align: center;
  font-weight: 500;
}

.product-spec-table--ugop tbody tr:first-child td,
.product-spec-table--ugop tbody tr:nth-child(2) td {
  text-align: center;
  font-weight: 700;
  background: #f4f7fc;
}

.product-spec-table--ugop td[colspan="2"]:not(:first-child) {
  text-align: center;
}

.product-table-wrap .product-spec-table--nozzles {
  min-width: 100%;
}

.product-table-wrap .product-spec-table--nozzles .product-spec-table__col-name {
  width: 24%;
}

.product-table-wrap .product-spec-table--nozzles .product-spec-table__col-power {
  width: 11%;
}

.product-table-wrap .product-spec-table--nozzles .product-spec-table__col-dim {
  width: 8.125%;
}

.product-table-wrap .product-spec-table--nozzles td,
.product-table-wrap .product-spec-table--nozzles th {
  overflow-wrap: anywhere;
  word-break: normal;
}

.product-table-wrap .product-spec-table--nozzles td:first-child,
.product-table-wrap .product-spec-table--nozzles th:first-child {
  width: auto;
  min-width: 0;
  text-align: center;
}

.product-table-wrap .product-spec-table--nozzles td:nth-child(2) {
  width: auto;
  min-width: 0;
  text-align: center;
  font-weight: 500;
  hyphens: manual;
}

.product-table-wrap .product-spec-table--nozzles tbody tr:first-child td,
.product-table-wrap .product-spec-table--nozzles tbody tr:nth-child(2) td {
  text-align: center;
  font-weight: 700;
  background: #f4f7fc;
  white-space: normal;
}

.product-table-wrap .product-spec-table--nozzles tbody tr:nth-child(n + 3) td:first-child {
  text-align: left;
  color: var(--accent);
  font-weight: 700;
}

.product-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 80, 255, 0.26), transparent 42%),
    #071126;
  color: #fff;
}

.product-cta__title {
  margin: 0 0 10px;
  font-family: "Furore", "Arial Black", system-ui, sans-serif;
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.product-cta__text {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.product-cta__btn {
  white-space: nowrap;
}

.product-nav__sublist {
  margin: 0 0 10px 0;
  padding: 0 0 0 16px;
  list-style: none;
  border-left: 1px solid rgba(0, 40, 120, 0.1);
}

.product-nav__sublink {
  display: block;
  padding: 6px 0 6px 12px;
  color: var(--text-dark);
  text-decoration: none;
  font-family: "Montserrat", "Segoe UI", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
  text-transform: none;
  transition: color 0.15s ease;
}

.product-nav__sublink:hover,
.product-nav__sublink:focus-visible,
.product-nav__sublink.is-active {
  color: var(--accent);
}

.product-nav__sublink.is-active {
  font-weight: 500;
}

.product-nav__heading-desktop {
  display: block;
}

.product-nav__trigger {
  display: none;
}

.product-nav__trigger-label {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.product-nav__trigger-icon {
  flex: 0 0 auto;
  width: 10px;
  height: 6px;
  color: var(--text-muted-dark);
  transition: transform 0.2s ease, color 0.15s ease;
}

.product-nav__group--expandable.is-open .product-nav__trigger-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

@media (max-width: 1024px) {
  .quality-body > .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .quality-nav {
    position: static;
    padding: 0 0 12px;
    border-bottom: 1px solid rgba(0, 40, 120, 0.1);
  }

  .quality-nav__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .quality-nav__link {
    flex: 0 0 auto;
    padding: 8px 14px;
    margin-left: 0;
    border-left: 1px solid rgba(0, 40, 120, 0.12);
    border-radius: 999px;
    font-size: 0.875rem;
    white-space: nowrap;
  }

  .quality-nav__link:hover,
  .quality-nav__link:focus-visible {
    border-left-color: rgba(0, 80, 255, 0.35);
  }

  .quality-nav__link.is-active {
    border-color: rgba(0, 80, 255, 0.45);
    background: rgba(0, 80, 255, 0.08);
    color: var(--accent);
    font-weight: 600;
  }

  .product-nav.product-nav .product-nav__heading-desktop {
    display: none;
  }

  .product-nav.product-nav .product-nav__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 12px 14px;
    border: 1px solid rgba(0, 40, 120, 0.12);
    border-radius: var(--radius);
    background: #f4f7fc;
    color: var(--text-muted-dark);
    font-family: "Furore", "Arial Black", system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
  }

  .product-nav.product-nav .product-nav__trigger:hover,
  .product-nav.product-nav .product-nav__trigger:focus-visible {
    border-color: rgba(0, 80, 255, 0.35);
    color: var(--accent);
    outline: none;
  }

  .product-nav.product-nav .product-nav__group--expandable.is-open .product-nav__trigger {
    border-color: rgba(0, 80, 255, 0.45);
    background: rgba(0, 80, 255, 0.08);
    color: var(--accent);
  }

  .product-nav.product-nav .product-nav__group--expandable:not(.is-open) .product-nav__sublist {
    display: none;
  }

  .product-nav.product-nav .product-nav__sublist {
    display: grid;
    gap: 2px;
    margin-top: 8px;
    padding-left: 12px;
  }
}

@media (max-width: 768px) {
  .quality-page .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .quality-hero {
    padding: 28px 0 36px;
  }

  .quality-body {
    padding-top: 32px;
    padding-bottom: 56px;
  }

  .quality-doc {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
  }

  .quality-doc__preview {
    max-width: none;
    margin: 0;
  }

  .quality-doc__thumb {
    max-height: 280px;
  }

  .quality-doc__meta-row,
  .quality-doc__meta-row--wide {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px 12px;
    font-size: 0.9375rem;
  }

  .quality-doc__title {
    font-size: 1.125rem;
  }

  .quality-page .quality-doc__btn {
    width: 100%;
    min-width: 0;
  }

  .product-summary,
  .product-info-card,
  .product-showcase:not(.product-showcase--panel),
  .product-cta {
    padding: 20px;
  }

  .product-top__shell {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 18px;
    border-radius: 16px;
  }

  .product-top__body {
    padding: 0 2px 4px;
  }

  .product-top__title {
    margin-bottom: 12px;
    font-size: 1.0625rem;
  }

  .product-top__prose .product-prose {
    font-size: 0.9375rem;
    line-height: 1.72;
  }

  .product-top__prose .product-prose p + p {
    margin-top: 0.8em;
  }

  .product-top .product-showcase--panel .product-showcase__stage {
    min-height: min(320px, 58vh);
    aspect-ratio: 1 / 1;
    padding: 18px;
  }

  .product-top .product-showcase--panel .product-showcase__controls {
    margin-top: 18px;
  }

  .product-thumbstrip {
    gap: 10px;
  }

  .product-thumbstrip__nav {
    width: 44px;
    height: 44px;
  }

  .product-thumbstrip__item,
  .product-showcase--panel .product-showcase__frame--carousel .product-showcase__thumb {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
    padding: 5px;
  }

  .product-thumbstrip__index {
    margin-top: 14px;
    font-size: 1.125rem;
  }

  .product-showcase__model-label {
    right: 16px;
    bottom: 16px;
    min-height: 38px;
    padding: 0 18px;
    font-size: 0.875rem;
  }

  .product-showcase__frame--carousel .product-showcase__thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
  }

  .product-showcase:not(.product-showcase--panel) .product-showcase__frame {
    grid-template-columns: 1fr;
  }

  .product-showcase:not(.product-showcase--panel) .product-showcase__thumbs {
    flex-direction: row;
    width: 100%;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .product-showcase:not(.product-showcase--panel) .product-showcase__thumb {
    width: 72px;
  }

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

  .product-cta__btn {
    width: 100%;
  }

  .product-gallery-grid__list,
  .service-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .doc-lightbox--document {
    padding: 12px;
  }

  .doc-lightbox--document .doc-lightbox__dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
    padding: 16px;
  }

  .doc-lightbox--fit .doc-lightbox__viewer {
    padding: 12px 8px;
    gap: 8px;
  }

  .doc-lightbox__nav {
    width: 38px;
    height: 38px;
  }

}

.production {
  background: var(--bg-white);
  color: var(--text-dark);
}

.production__title {
  margin: 0 0 16px;
  font-family: "Furore", "Arial Black", system-ui, sans-serif;
  font-size: clamp(1.875rem, 3.8vw, 2.75rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (min-width: 769px) {
  .production__title {
    white-space: nowrap;
  }
}

.production__subtitle {
  margin: 0 0 48px;
  max-width: 720px;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: clamp(0.9375rem, 1.15vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-muted-dark);
}

.production__subtitle-row {
  display: block;
}

@media (max-width: 768px) {
  .production__subtitle-row {
    display: inline;
  }
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 200px 200px 180px 160px;
  gap: 16px;
}

.production-card {
  --production-card-pad: clamp(18px, 1.7vw, 24px);
  --production-arrow-size: clamp(38px, 3.6vw, 58px);
  --production-arrow-icon-size: clamp(32px, 3.1vw, 50px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: var(--production-card-pad);
  padding-right: calc(var(--production-card-pad) + var(--production-arrow-size) + 10px);
  padding-bottom: calc(var(--production-card-pad) + var(--production-arrow-size));
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  min-height: 160px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.production-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.production-card__title {
  margin: 0;
  font-family: "Furore", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  max-width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.production-card__title-line {
  display: block;
}

.production-card__desc {
  margin: 10px 0 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  text-transform: none;
  letter-spacing: 0.01em;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.production-card__arrow {
  position: absolute;
  right: var(--production-card-pad);
  bottom: var(--production-card-pad);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--production-arrow-size);
  height: var(--production-arrow-size);
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.95);
  pointer-events: none;
  transition: transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  will-change: transform, opacity;
}

.production-card__arrow svg {
  display: block;
  width: var(--production-arrow-icon-size);
  height: var(--production-arrow-icon-size);
}

.production-card:hover .production-card__arrow {
  color: #fff;
  animation: production-arrow-repeat 0.95s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.production-card:focus-visible .production-card__arrow {
  color: #fff;
  animation: production-arrow-repeat 0.95s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes production-arrow-repeat {
  0% {
    opacity: 0.95;
    transform: translateX(0);
  }

  42% {
    opacity: 1;
    transform: translateX(8px);
  }

  72% {
    opacity: 0;
    transform: translateX(18px);
  }

  73% {
    opacity: 0;
    transform: translateX(-6px);
  }

  100% {
    opacity: 0.95;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .production-card:hover .production-card__arrow,
  .production-card:focus-visible .production-card__arrow {
    animation: production-arrow-repeat 1.2s linear infinite;
  }
}

.production-card--mech {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
  justify-content: flex-end;
  background: #1a1a2e url("../images/mechanical_processing.webp") center / cover no-repeat;
}

.production-card--mech::before,
.production-card--ground::before,
.production-card--hardware::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  pointer-events: none;
}

.production-card--mech .production-card__title,
.production-card--mech .production-card__desc,
.production-card--ground .production-card__title,
.production-card--ground .production-card__desc,
.production-card--hardware .production-card__title,
.production-card--hardware .production-card__desc {
  position: relative;
  z-index: 1;
}

.production-card--mech .production-card__title {
  font-size: 30px;
}

.production-card--gas {
  grid-column: 5 / 7;
  grid-row: 1;
  background: var(--accent);
}

.production-card--ground {
  grid-column: 5 / 7;
  grid-row: 2;
  background-color: var(--bg-dark);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.production-card--dies {
  grid-column: 1 / 4;
  grid-row: 3;
  background: var(--accent);
}

.production-card--hardware {
  grid-column: 4 / 7;
  grid-row: 3;
  background-color: var(--bg-dark);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.production-card--repair {
  grid-column: 1 / 4;
  grid-row: 4;
  background: var(--bg-navy);
}

.production-card--surplus {
  grid-column: 4 / 7;
  grid-row: 4;
  background: var(--accent);
}

.partners {
  padding-block: 56px;
  background: #f4f7fc;
}

.partners__title {
  margin-bottom: 32px;
}

.partners__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.partners__logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.partners__item:hover .partners__logo,
.partners__item:focus-within .partners__logo {
  filter: grayscale(0%);
  opacity: 1;
}

.quality-sections--single {
  width: 100%;
}

.hero-trust {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.hero-trust__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
}

.hero-trust__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-trust__item {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.hero-trust__label {
  font-family: "Furore", sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-trust__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-trust__link {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.hero-trust__link:hover {
  color: var(--accent);
}

.not-found-hero__title {
  text-transform: none;
  letter-spacing: 0.01em;
}

.not-found-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn--ghost,
.btn.btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: transparent;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: none;
  filter: none;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.btn--ghost:hover,
.btn.btn--ghost:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(0, 80, 255, 0.42),
    0 14px 40px rgba(0, 80, 255, 0.22),
    0 10px 28px rgba(0, 0, 0, 0.24);
  filter: none;
}

.product-nav__heading.is-active {
  color: var(--accent);
}

.experience {
  --experience-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--experience-height);
  padding: 72px 0;
  color: #ffffff;
  background-color: #070c1b;
  overflow: hidden;
}

.experience__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.experience__photo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: #070c1b;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 769px) {
  .experience__photo {
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: var(--experience-height);
    background-position: 68% center;
  }

  .experience__photo.lazy-bg {
    background-position: 68% center;
  }
}

.experience__photo.lazy-bg:not(.lazy-bg--loaded) {
  background-image: none;
}

.experience__base {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #0b1020;
  opacity: 0.78;
}

.experience__fade {
  position: absolute;
  inset: 0;
  z-index: 2;
}

@media (min-width: 769px) {
  .experience__fade {
    background: linear-gradient(
      90deg,
      #0b1020 0%,
      rgba(11, 16, 32, 0.98) 14%,
      rgba(11, 16, 32, 0.88) 24%,
      rgba(11, 16, 32, 0.62) 36%,
      rgba(11, 16, 32, 0.28) 48%,
      rgba(11, 16, 32, 0.08) 58%,
      transparent 70%
    );
  }
}

.experience__inner {
  position: relative;
  z-index: 3;
  width: 100%;
}

.experience__copy {
  max-width: 810px;
}

.experience__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 40px;
  font-family: "Furore", "Arial Black", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.experience__title-line,
.experience__title-accent {
  display: block;
  width: fit-content;
  max-width: 100%;
  font-family: inherit;
  font-size: clamp(2.375rem, 4.2vw, 3.5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.04em;
}

.experience__title-line {
  margin: 0 0 8px;
  color: #ffffff;
}

.experience__title-accent {
  margin: 0;
  color: var(--accent);
}

.experience__text p {
  margin: 0 0 28px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(1.0625rem, 1.15vw, 1.1875rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #ffffff;
}

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

.lazy-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.trust {
  --trust-content-left: max(32px, calc((100vw - var(--container)) / 2 + 32px));
  background: #f4f7fc;
  overflow: hidden;
}

.trust__wrap {
  position: relative;
  width: 100%;
  min-height: clamp(500px, 34.8vw, 668px);
  margin: 0 auto;
}

.trust__container {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
}

.trust__copy-col {
  display: flex;
  align-items: center;
  position: relative;
  width: min(100%, 760px);
  padding: clamp(56px, 6vw, 88px) 0;
}

.trust__copy-inner {
  max-width: 760px;
  width: 100%;
}

.trust__title {
  margin: 0 0 clamp(20px, 2.5vw, 32px);
  font-family: "Furore", "Arial Black", sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.08;
  text-wrap: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.trust__title-line {
  display: inline;
  color: #000000;
}

.trust__title-accent {
  display: inline;
  color: #0050FF;
}

.trust__text p {
  margin: 0 0 22px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: 0.01em;
  color: #12151c;
  -webkit-font-smoothing: antialiased;
}

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

.trust__accent {
  color: #0050FF;
  font-weight: 700;
}

.trust__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.trust__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: none;
}

.trust__media-img {
  position: absolute;
  top: 82%;
  left: calc(var(--trust-content-left) + 784px);
  transform: translateY(-50%);
  width: clamp(760px, 62vw, 1190px);
  height: auto;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: none;
}

@media (min-width: 1600px) {
  .trust__media-img {
    width: 1190px;
  }
}

@media (min-width: 1025px) and (max-width: 1399px) {
  .trust__copy-col {
    width: min(100%, 560px);
  }

  .trust__copy-inner {
    max-width: 560px;
  }

  .trust__media-img {
    left: calc(var(--trust-content-left) + 584px);
  }
}

.page-careers .footer {
  display: none;
}

.page-main.careers-page {
  padding-top: var(--header-height, 96px);
  min-height: 100dvh;
}

.careers-full {
  position: relative;
  width: 100%;
  min-height: calc(100dvh - var(--header-height, 96px));
  overflow: hidden;
  background: #000a26;
}

.careers-full__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: calc(100dvh - var(--header-height, 96px));
  padding-top: clamp(40px, 6vh, 72px);
  padding-bottom: clamp(40px, 6vh, 72px);
}

.careers-full__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  width: 100%;
}

.careers-full__hero {
  display: flex;
  align-items: center;
}

.careers-full__hero-inner {
  width: 100%;
}

.careers-full__eyebrow {
  margin: 0 0 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6ea2ff;
}

.careers-full__title {
  margin: 0 0 clamp(18px, 2.5vh, 28px);
  font-family: "Furore", "Arial Black", system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.65rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.careers-full__title-line {
  display: block;
}

.careers-full__lead {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin: 0 0 clamp(28px, 4vh, 40px);
}

.careers-full__lead-bar {
  flex: 0 0 3px;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(0, 80, 255, 0.55);
}

.careers-full__lead-text {
  margin: 0;
  max-width: 36em;
  font-size: clamp(0.9375rem, 1.1vw, 1rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.careers-full__contacts {
  margin: 0;
  padding: 0;
}

.careers-full__contacts-row {
  display: grid;
  grid-template-columns: minmax(72px, 88px) 1fr;
  gap: 8px 20px;
  align-items: baseline;
  margin-bottom: 14px;
  max-width: 36em;
}

.careers-full__contacts-row:last-child {
  margin-bottom: 0;
}

.careers-full__contacts-label {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.careers-full__contacts-value {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.careers-full__contacts-link {
  font-size: inherit;
  line-height: inherit;
  color: rgba(255, 255, 255, 0.92);
}

.careers-full__contacts-link {
  text-decoration: none;
}

.careers-full__contacts-link:hover {
  color: #fff;
  text-decoration: underline;
}

.careers-full__stage-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 33.333%;
  pointer-events: none;
}

.careers-full__stage-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.careers-full::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    #000a26 0%,
    #000a26 24%,
    rgba(0, 10, 38, 0.98) 30%,
    rgba(0, 10, 38, 0.82) 36%,
    rgba(0, 10, 38, 0.48) 44%,
    rgba(0, 10, 38, 0.18) 52%,
    transparent 62%
  );
  pointer-events: none;
}

.careers-full::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 33.333%;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 10, 38, 0.72) 0%,
      rgba(0, 10, 38, 0.48) 22%,
      rgba(0, 10, 38, 0.32) 55%,
      rgba(0, 10, 38, 0.28) 100%
    ),
    linear-gradient(
      180deg,
      rgba(4, 11, 30, 0.42) 0%,
      rgba(4, 11, 30, 0.08) 38%,
      rgba(4, 11, 30, 0.38) 100%
    );
  pointer-events: none;
}

.careers-full__main {
  min-width: 0;
}

.careers-full__aside-note {
  margin: clamp(20px, 3vh, 28px) 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.careers-full__aside-link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.careers-full__aside-link:hover {
  color: #6ea2ff;
  text-decoration: underline;
}

.contact-section {
  padding: 80px 0;
  background: var(--bg-dark);
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(280px, 38%) 1fr;
  align-items: stretch;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.contact-box--solo {
  grid-template-columns: 1fr;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 100%;
  padding: clamp(44px, 5vw, 56px) clamp(32px, 4vw, 44px) clamp(44px, 5vw, 56px)
    clamp(44px, 5vw, 56px);
  background: var(--accent);
  color: #fff;
  text-align: left;
}

.contact-panel__title {
  margin: 0 0 48px;
  font-family: "Furore", "Montserrat", sans-serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-panel__title-line {
  display: block;
}

.contact-panel__list {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.contact-panel__row {
  margin-bottom: 28px;
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

.contact-panel__row:last-child {
  margin-bottom: 0;
}

.contact-panel__term {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
}

.contact-panel__text,
.contact-panel__link {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.55;
  color: #fff;
  text-decoration: none;
}

.contact-panel__link:hover {
  color: #fff;
  opacity: 0.85;
  text-decoration: underline;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 100%;
  padding: clamp(36px, 4vw, 48px) clamp(28px, 4vw, 52px);
  background: #000a26;
}

.form-alert {
  margin-bottom: 18px;
  padding: 10px 14px 10px 16px;
  border: none;
  border-left: 3px solid rgba(255, 255, 255, 0.24);
  border-radius: 0 6px 6px 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.04);
}

.form-alert--success {
  border-left-color: var(--accent-blue);
  background: rgba(0, 80, 255, 0.08);
}

.form-alert--error {
  border-left-color: #ff7a7a;
  background: rgba(255, 122, 122, 0.06);
}

.contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form__extras {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.form-field {
  display: block;
  width: 100%;
  min-width: 0;
  margin: 0;
}

.form-field input,
.form-field textarea {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 0 14px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
  opacity: 1;
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: rgba(255, 255, 255, 0.75);
}

.form-field input:focus::placeholder,
.form-field textarea:focus::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-field textarea {
  width: 100%;
  max-width: 100%;
  min-height: 0;
  resize: none;
  overflow-x: hidden;
  overflow-y: hidden;
  white-space: pre-wrap;
  word-wrap: break-word;
  box-sizing: border-box;
}

.form-field--area {
  margin-top: 0;
}

.form-field--invalid input,
.form-field--invalid textarea {
  border-bottom-color: #ff7a7a;
}

.form-field__error {
  display: block;
  min-height: 1.1rem;
  margin: 6px 0 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: #ff9a9a;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.form-field--invalid .form-field__error {
  opacity: 1;
}

.form-field__error--consent {
  display: none !important;
  min-height: 0;
}

.form-consent--invalid .form-consent__box {
  border-color: #ff7a7a;
  animation: consent-error-pulse 1.2s ease-out infinite;
}

@keyframes consent-error-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 122, 122, 0.55);
  }

  70% {
    box-shadow: 0 0 0 7px rgba(255, 122, 122, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 122, 122, 0);
  }
}

.form-consent {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0;
  cursor: pointer;
  user-select: none;
}

.form-consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.form-consent__box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.form-consent__box {
  position: relative;
}

.form-consent input:checked + .form-consent__box {
  background: var(--accent);
  border-color: var(--accent);
}

.form-consent input:checked + .form-consent__box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-consent input:focus-visible + .form-consent__box {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.form-consent__text {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.35;
}

.form-consent__link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-prose__links {
  margin: 0;
  padding-left: 1.2em;
}

.product-prose__links-title {
  margin: 0 0 12px;
  font-size: 1.125rem;
}

.product-prose__links a {
  color: var(--accent);
}

.contact-form__submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 36px;
}

.form-upload {
  margin: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px dashed rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transform: translateY(0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
  filter: saturate(1);
}

.form-upload:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
  filter: saturate(1.05);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.form-upload__input {
  display: none;
}

.form-upload__icon {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.85;
}

.form-upload--filled {
  border-style: solid;
  border-color: rgba(56, 132, 255, 0.75);
  color: #fff;
  background: rgba(0, 80, 255, 0.1);
}

.form-upload--filled .form-upload__text {
  max-width: min(240px, 100%);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-upload--filled .form-upload__icon {
  opacity: 1;
  color: #6aa8ff;
}

.contact-form__submit {
  min-width: 160px;
  min-height: 48px;
  padding: 0 32px;
  border: none;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transform: translateY(0);
  box-shadow:
    0 0 0 1px rgba(0, 80, 255, 0.25),
    0 12px 30px rgba(0, 80, 255, 0.12);
  transition:
    background 0.2s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
  filter: saturate(1);
}

.contact-form__submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  filter: saturate(1.08);
  box-shadow:
    0 0 0 1px rgba(0, 80, 255, 0.55),
    0 18px 50px rgba(0, 80, 255, 0.22),
    0 12px 34px rgba(0, 0, 0, 0.22);
}

.contact-form__submit:active {
  transform: translateY(0);
}

.contact-form__submit:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.footer {
  padding: 72px 0 28px;
  background: var(--bg-dark);
  border-top: 1px solid var(--surface-border);
  color: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto auto auto;
  column-gap: 40px;
  row-gap: 0;
  align-items: stretch;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__brand-mark {
  grid-column: 1 / span 3;
  grid-row: 1;
  margin-bottom: 36px;
}

.footer__block {
  display: contents;
}

.footer__block--contacts .footer__contacts,
.footer__block--nav .footer__menu,
.footer__block--services .footer__menu,
.footer__block--products .footer__menu,
.footer__block--map .footer__map-body {
  align-self: start;
}

.footer__block--contacts .footer__head {
  grid-column: 1 / span 3;
  grid-row: 2;
}

.footer__block--contacts .footer__rule {
  grid-column: 1 / span 3;
  grid-row: 3;
}

.footer__block--contacts .footer__contacts {
  grid-column: 1 / span 3;
  grid-row: 4;
}

.footer__block--nav .footer__head {
  grid-column: 4 / span 2;
  grid-row: 2;
}

.footer__block--nav .footer__rule {
  grid-column: 4 / span 2;
  grid-row: 3;
}

.footer__block--nav .footer__menu {
  grid-column: 4 / span 2;
  grid-row: 4;
}

.footer__block--services .footer__head {
  grid-column: 6 / span 2;
  grid-row: 2;
}

.footer__block--services .footer__rule {
  grid-column: 6 / span 2;
  grid-row: 3;
}

.footer__block--services .footer__menu {
  grid-column: 6 / span 2;
  grid-row: 4;
}

.footer__block--products .footer__head {
  grid-column: 8 / span 2;
  grid-row: 2;
}

.footer__block--products .footer__rule {
  grid-column: 8 / span 2;
  grid-row: 3;
}

.footer__block--products .footer__menu {
  grid-column: 8 / span 2;
  grid-row: 4;
}

.footer__block--map .footer__head {
  grid-column: 10 / span 3;
  grid-row: 2;
}

.footer__block--map .footer__rule {
  grid-column: 10 / span 3;
  grid-row: 3;
}

.footer__block--map .footer__map-body {
  grid-column: 10 / span 3;
  grid-row: 4;
}

.footer__head {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding-bottom: 18px;
  box-sizing: border-box;
}

.footer__rule {
  align-self: center;
  width: 100%;
  height: 1px;
  margin: 0 0 22px;
  background: rgba(255, 255, 255, 0.08);
}

.footer__logo.logo {
  margin: 0 0 16px;
}

.footer__logo .logo__img {
  max-width: 220px;
}

.footer__tagline {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

.footer__contacts {
  list-style: none;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.footer__contact-item {
  margin-bottom: 14px;
}

.footer__contact-item:last-child {
  margin-bottom: 0;
}

.footer__contact-term {
  display: block;
  margin-bottom: 6px;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.45);
}

.footer__contact-value,
.footer__contact-link {
  display: block;
  min-width: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  overflow-wrap: anywhere;
}

.footer__contact-link {
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__contact-link:hover {
  color: #0050FF;
}

.footer__heading {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.footer__block--map .footer__heading {
  white-space: nowrap;
}

.footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__menu li {
  display: flex;
  align-items: center;
  min-height: 22px;
}

.footer__menu a {
  display: block;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer__menu a:link,
.footer__menu a:visited {
  color: rgba(255, 255, 255, 0.65);
}

.footer__menu a:hover {
  color: #0050FF;
  transform: translateX(4px);
}

.footer__block--services .footer__menu a:hover,
.footer__block--products .footer__menu a:hover {
  color: #0050FF;
}

.footer__map-body {
  min-width: 0;
}

.footer__map {
  width: 100%;
  height: 176px;
  margin: 0 0 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0a1228;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.footer__map iframe {
  display: block;
  width: 100%;
  height: 176px;
  border: 0;
  filter: grayscale(0.15) contrast(1.04) brightness(0.94);
}

.footer__map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.footer__map-link:link,
.footer__map-link:visited {
  color: rgba(255, 255, 255, 0.5);
}

.footer__map-link:hover {
  color: #0050FF;
  gap: 10px;
}

.footer__map-arrow {
  font-size: 14px;
  line-height: 1;
}

.footer__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding-top: 26px;
}

.footer__copyright {
  margin: 0;
  justify-self: start;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.38);
}

.footer__top {
  justify-self: center;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__top:link,
.footer__top:visited {
  color: rgba(255, 255, 255, 0.42);
}

.footer__top:hover {
  color: #0050FF;
}

.footer__legal {
  justify-self: end;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__legal:link,
.footer__legal:visited {
  color: rgba(255, 255, 255, 0.38);
}

.footer__legal:hover {
  color: #0050FF;
}

@media (max-width: 1024px) {
  .production-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .production-card--mech {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 220px;
  }

  .production-card--gas,
  .production-card--ground,
  .production-card--dies,
  .production-card--hardware,
  .production-card--repair,
  .production-card--surplus {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-trust__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust__wrap {
    min-height: 400px;
  }

  .trust__copy-col {
    width: min(100%, 560px);
    padding-right: 20px;
  }

  .trust__media-img {
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    transform: translate(30%, 40%);
    width: clamp(520px, 66vw, 680px);
  }

  .experience__title-line,
  .experience__title-accent {
    font-size: 42px;
  }

  .contact-box,
  .careers-full__layout {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: clamp(36px, 5vw, 48px) clamp(28px, 4vw, 40px);
  }

  .contact-panel__title {
    margin-bottom: clamp(28px, 4vw, 40px);
  }

  .contact-form {
    padding: clamp(32px, 4vw, 44px) clamp(28px, 4vw, 40px);
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    column-gap: 32px;
    row-gap: 32px;
  }

  .footer__block {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .footer__brand-mark,
  .footer__block--contacts,
  .footer__block--contacts .footer__head,
  .footer__block--contacts .footer__rule,
  .footer__block--contacts .footer__contacts,
  .footer__block--nav,
  .footer__block--nav .footer__head,
  .footer__block--nav .footer__rule,
  .footer__block--nav .footer__menu,
  .footer__block--services,
  .footer__block--services .footer__head,
  .footer__block--services .footer__rule,
  .footer__block--services .footer__menu,
  .footer__block--products,
  .footer__block--products .footer__head,
  .footer__block--products .footer__rule,
  .footer__block--products .footer__menu,
  .footer__block--map,
  .footer__block--map .footer__head,
  .footer__block--map .footer__rule,
  .footer__block--map .footer__map-body {
    grid-column: auto;
    grid-row: auto;
  }

  .footer__brand-mark,
  .footer__block--contacts,
  .footer__block--map {
    grid-column: 1 / -1;
  }

  .footer__block--nav {
    grid-column: 1;
  }

  .footer__block--services {
    grid-column: 2;
  }

  .footer__block--products {
    grid-column: 1 / -1;
  }

  .footer__head {
    min-height: auto;
    padding-bottom: 18px;
  }

  .footer__tagline {
    margin: 16px 0 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .experience__photo {
    background-position: 72% center;
  }

  .experience__fade {
    background: linear-gradient(
      90deg,
      #0b1020 0%,
      rgba(11, 16, 32, 0.98) 18%,
      rgba(11, 16, 32, 0.84) 30%,
      rgba(11, 16, 32, 0.52) 42%,
      rgba(11, 16, 32, 0.18) 54%,
      transparent 66%
    );
  }

  .hero {
    min-height: max(520px, calc(78vh - var(--header-height, 96px)));
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(44vw, 0.92fr);
  }

  .hero__copy {
    padding: clamp(52px, 8vh, 84px) 24px clamp(44px, 6vh, 72px) 32px;
  }

  .hero__title {
    margin-bottom: 18px;
    font-size: clamp(1.85rem, 4.45vw, 2.8rem);
  }

  .hero__text {
    font-size: 0.8rem;
    line-height: 1.5;
    letter-spacing: 0.045em;
  }

  .hero__media-video {
    object-position: 64% center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    min-height: clamp(620px, calc(100svh - var(--header-height, 80px)), 660px);
    background: #030918;
    isolation: isolate;
  }

  .hero__layout {
    display: block;
    grid-template-columns: 1fr;
    min-height: inherit;
  }

  .hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 0;
    height: 100%;
    aspect-ratio: auto;
  }

  .hero__media-video {
    transform: translateY(12px) scale(1.08);
    transform-origin: 62% top;
    object-position: 66% top;
    filter: saturate(0.96) contrast(1.04) brightness(0.9);
  }

  .hero__media::after {
    display: block;
    background:
      radial-gradient(circle at 78% 68%, rgba(255, 158, 56, 0.22) 0%, rgba(255, 158, 56, 0.08) 22%, transparent 46%),
      linear-gradient(90deg, rgba(3, 9, 24, 0.98) 0%, rgba(3, 9, 24, 0.74) 48%, rgba(3, 9, 24, 0.35) 100%),
      linear-gradient(180deg, #020716 0%, rgba(3, 9, 24, 0.96) 23%, rgba(3, 9, 24, 0.78) 52%, rgba(3, 9, 24, 0.26) 82%, rgba(3, 9, 24, 0.1) 100%);
  }

  .hero__copy {
    min-height: inherit;
    align-items: flex-start;
    padding: clamp(168px, 27svh, 228px) 16px clamp(48px, 8svh, 72px);
    background: transparent;
  }

  .hero__inner {
    max-width: 520px;
  }

  .hero__title {
    max-width: 11.2em;
    margin-bottom: 16px;
    font-size: clamp(1.55rem, 6.6vw, 2.25rem);
    line-height: 1.08;
    letter-spacing: 0.035em;
  }

  .hero__lead {
    gap: 10px;
    max-width: 32rem;
    margin-bottom: 24px;
  }

  .hero__lead-bar {
    flex-basis: 2px;
    width: 2px;
    box-shadow: 0 0 16px rgba(0, 80, 255, 0.62);
  }

  .hero__text {
    font-family: "Montserrat", "Segoe UI", system-ui, sans-serif;
    font-size: clamp(0.8125rem, 3.2vw, 0.9375rem);
    font-weight: 700;
    line-height: 1.58;
    letter-spacing: 0.025em;
    color: rgba(255, 255, 255, 0.9);
  }

  .hero__cta.btn {
    display: inline-flex;
    justify-content: center;
    width: min(100%, 348px);
    min-height: 54px;
    padding: 15px 24px;
    border-radius: 12px;
    font-size: 0.98rem;
    box-shadow:
      0 0 0 1px rgba(68, 117, 255, 0.36),
      0 14px 34px rgba(0, 80, 255, 0.28);
  }

  .section {
    padding: 56px 0;
  }

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

  .production-card--dies,
  .production-card--hardware {
    grid-column: 1;
  }

  .experience {
    --experience-height: auto;
    position: relative;
    isolation: isolate;
    min-height: 0;
    padding: 0;
    display: block;
    background: #070c1b;
  }

  .experience__photo {
    inset: auto;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: clamp(210px, 42vw, 260px);
    min-height: 0;
    background-position: 58% top;
    filter: saturate(0.96) contrast(1.04) brightness(0.82);
  }

  .experience__photo.lazy-bg {
    background-position: 58% top;
  }

  .experience__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    min-height: 0;
  }

  .experience__base {
    opacity: 1;
    background-color: transparent;
    background: linear-gradient(
      180deg,
      rgba(7, 12, 27, 0.48) 0%,
      rgba(7, 12, 27, 0.7) 44%,
      #070c1b 78%,
      #070c1b 100%
    );
  }

  .experience__fade {
    background:
      linear-gradient(90deg, rgba(7, 12, 27, 0.9) 0%, rgba(7, 12, 27, 0.34) 100%),
      linear-gradient(180deg, rgba(7, 12, 27, 0.12) 0%, #070c1b 74%);
  }

  .experience__inner {
    position: relative;
    z-index: 3;
    margin-top: 0;
    padding-top: clamp(166px, 34vw, 210px);
    padding-bottom: 56px;
  }

  .experience__copy {
    max-width: none;
  }

  .experience__title-line,
  .experience__title-accent {
    font-size: clamp(1.75rem, 7.8vw, 2.4rem);
  }

  .experience__title {
    margin-bottom: 28px;
  }

  .experience__text {
    max-width: 100%;
  }

  .experience__text p {
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.72;
    margin-bottom: 24px;
  }

  .trust__wrap {
    position: relative;
    isolation: isolate;
    min-height: 0;
    overflow: hidden;
  }

  .trust__container {
    min-height: 0;
  }

  .trust__copy-col {
    width: 100%;
    padding: 48px 0 48px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
  }

  .trust__copy-inner {
    max-width: none;
  }

  .trust__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: 100%;
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }

  .trust__media::after {
    background: linear-gradient(
      90deg,
      #f4f7fc 0%,
      rgba(244, 247, 252, 0.96) 26%,
      rgba(244, 247, 252, 0.84) 44%,
      rgba(244, 247, 252, 0.58) 62%,
      rgba(244, 247, 252, 0.28) 78%,
      rgba(244, 247, 252, 0.1) 100%
    );
  }

  .trust__media-img {
    position: absolute;
    right: 0;
    left: auto;
    top: 50%;
    bottom: auto;
    transform: translate(40%, -30%);
    width: clamp(300px, 92vw, 500px);
    max-width: none;
    height: auto;
    margin: 0;
    object-fit: contain;
    object-position: left center;
    opacity: 0.62;
    filter: blur(1.5px) brightness(1.12) saturate(0.82);
  }

  .trust__title {
    margin-bottom: 24px;
    font-size: clamp(1.5rem, 7vw, 2.25rem);
    text-wrap: balance;
    white-space: normal;
  }

  .trust__text p {
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 20px;
  }

  .page-main.careers-page {
    min-height: auto;
  }

  .page-careers .footer {
    display: block;
  }

  .careers-full,
  .careers-full__inner {
    min-height: auto;
  }

  .careers-full__inner {
    padding-top: 40px;
    padding-bottom: 48px;
  }

  .careers-full__layout {
    grid-template-columns: 1fr;
  }

  .careers-full__hero {
    padding: 0 0 32px;
  }

  .careers-full__title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .careers-full__stage-bg {
    left: 0;
    top: 28%;
  }

  .careers-full::before {
    background:
      linear-gradient(180deg, #000a26 0%, #000a26 22%, rgba(0, 10, 38, 0.92) 34%, rgba(0, 10, 38, 0.45) 48%, transparent 62%);
  }

  .careers-full::after {
    left: 0;
    top: 28%;
    background:
      linear-gradient(180deg, rgba(0, 10, 38, 0.55) 0%, rgba(0, 10, 38, 0.35) 45%, rgba(0, 10, 38, 0.42) 100%),
      linear-gradient(90deg, rgba(0, 10, 38, 0.35) 0%, rgba(0, 10, 38, 0.22) 100%);
  }

  .footer {
    padding: 48px 0 20px;
  }

  .footer__grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-bottom: 36px;
  }

  .footer__brand-mark,
  .footer__block {
    grid-column: auto;
    grid-row: auto;
    margin-bottom: 0;
  }

  .footer__block {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .footer__brand-mark {
    margin-bottom: 0;
  }

  .footer__block--contacts .footer__head,
  .footer__block--contacts .footer__rule,
  .footer__block--contacts .footer__contacts,
  .footer__block--nav .footer__head,
  .footer__block--nav .footer__rule,
  .footer__block--nav .footer__menu,
  .footer__block--services .footer__head,
  .footer__block--services .footer__rule,
  .footer__block--services .footer__menu,
  .footer__block--products .footer__head,
  .footer__block--products .footer__rule,
  .footer__block--products .footer__menu,
  .footer__block--map .footer__head,
  .footer__block--map .footer__rule,
  .footer__block--map .footer__map-body {
    grid-column: auto;
    grid-row: auto;
  }

  .footer__contacts {
    max-width: none;
  }

  .footer__head {
    min-height: auto;
    padding-bottom: 14px;
  }

  .footer__block--map .footer__heading {
    white-space: normal;
  }

  .footer__tagline {
    margin: 16px 0 0;
  }

  .footer__bar {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer__copyright,
  .footer__top,
  .footer__legal {
    justify-self: center;
  }

  .contact-section {
    padding: 56px 0;
  }

  .contact-box {
    grid-template-columns: 1fr;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
  }

  .contact-panel {
    align-items: flex-start;
    text-align: left;
    padding: clamp(28px, 7vw, 36px) clamp(20px, 5vw, 28px);
  }

  .contact-panel__title {
    margin-bottom: clamp(24px, 6vw, 32px);
    line-height: 1.06;
  }

  .contact-panel__row {
    margin-bottom: 20px;
  }

  .contact-panel__text,
  .contact-panel__link {
    overflow-wrap: anywhere;
  }

  .contact-form {
    padding: clamp(28px, 7vw, 36px) clamp(20px, 5vw, 28px) clamp(32px, 8vw, 40px);
  }

  .form-alert {
    margin-bottom: 16px;
    padding: 12px 14px 12px 16px;
    font-size: 0.875rem;
  }

  .contact-form__fields {
    gap: 20px;
  }

  .form-field input,
  .form-field textarea {
    padding: 12px 0 14px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .form-field--area textarea {
    min-height: 96px;
    padding-top: 10px;
    line-height: 1.55;
  }

  .contact-form__extras {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    margin-top: 28px;
  }

  .form-upload {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 10px;
  }

  .form-consent {
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  .form-consent__text {
    flex: 1;
    min-width: 0;
    line-height: 1.5;
  }

  .contact-form__submit-row {
    justify-content: stretch;
    padding-top: 28px;
    margin-top: 4px;
  }

  .contact-form__submit {
    width: 100%;
    min-height: 54px;
    border-radius: 10px;
    font-size: 1rem;
  }
}

.section__title,
.production__title {
  font-size: clamp(1.55rem, 3.15vw, 2.75rem);
}

.section__subtitle,
.production__subtitle {
  font-size: clamp(0.9rem, 1.05vw, 1.0625rem);
}

.production-card__title {
  font-size: clamp(1rem, 1.38vw, 1.25rem);
}

.production-card--mech .production-card__title {
  font-size: clamp(1.25rem, 2.1vw, 1.875rem);
}

.production-card__desc {
  font-size: clamp(0.875rem, 0.98vw, 0.9375rem);
}

.experience__title-line,
.experience__title-accent {
  font-size: clamp(1.75rem, 4.1vw, 3.5rem);
}

.experience__text p,
.trust__text p {
  font-size: clamp(0.9375rem, 1.08vw, 1.125rem);
}

.trust__title {
  font-size: clamp(1.5rem, 3.75vw, 3.5rem);
}

.contact-panel__title {
  font-size: clamp(1.75rem, 3.35vw, 2.875rem);
}

.contact-panel__term,
.form-consent__text {
  font-size: clamp(0.75rem, 0.82vw, 0.8125rem);
}

.contact-panel__text,
.contact-panel__link,
.form-field input,
.form-field textarea,
.contact-form__submit {
  font-size: clamp(0.875rem, 0.95vw, 0.9375rem);
}

.form-alert,
.form-upload {
  font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
}

.footer__tagline,
.footer__contact-term,
.footer__map-link,
.footer__copyright,
.footer__legal {
  font-size: clamp(0.75rem, 0.86vw, 0.8125rem);
}

.footer__contact-value,
.footer__contact-link,
.footer__menu a {
  font-size: clamp(0.875rem, 0.98vw, 0.9375rem);
}

.footer__heading,
.footer__top {
  font-size: clamp(0.6875rem, 0.76vw, 0.75rem);
}

@media (max-width: 768px) and (max-height: 700px) {
  .hero {
    min-height: clamp(540px, calc(100svh - var(--header-height, 80px)), 620px);
  }

  .hero__copy {
    padding-top: clamp(132px, 22svh, 172px);
    padding-bottom: 40px;
  }

  .hero__title {
    margin-bottom: 14px;
    font-size: clamp(1.5rem, 6.2vw, 2.05rem);
  }

  .hero__lead {
    margin-bottom: 20px;
  }
}

@media (max-width: 400px) {
  .hero__cta.btn {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 14px 24px;
    font-size: 0.96rem;
  }
  .footer__map-body {
    width: 100%;
  }

}
