:root {
  color-scheme: light;
  --orange: #f47a00;
  --orange-bright: #ff6600;
  --black: #050505;
  --frame: #242424;
  --gray: #8b8b8b;
  --card: #c3c3c3;
  --white: #ffffff;
  --motion-duration: 1600ms;
  --motion-easing: cubic-bezier(0.22, 0.78, 0.18, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  background: var(--black);
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
}

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

button {
  font: inherit;
}

.presentation {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: var(--black);
}

.presentation__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 2px solid var(--frame);
  background: var(--black);
  isolation: isolate;
  touch-action: pan-y;
}

.bookend,
.mvc3code {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.bookend.is-active,
.mvc3code.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bookend {
  display: grid;
  background: var(--orange-bright);
  place-items: center;
}

.bookend.is-entering-next,
.mvc3code.is-entering-next {
  animation: page-enter-next 760ms var(--motion-easing) both;
}

.bookend.is-entering-prev,
.mvc3code.is-entering-prev {
  animation: page-enter-prev 760ms var(--motion-easing) both;
}

.bookend.is-leaving-next,
.mvc3code.is-leaving-next {
  animation: page-leave-next 760ms var(--motion-easing) both;
}

.bookend.is-leaving-prev,
.mvc3code.is-leaving-prev {
  animation: page-leave-prev 760ms var(--motion-easing) both;
}

@keyframes page-enter-next {
  from {
    opacity: 0;
    transform: translate3d(7%, 0, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes page-enter-prev {
  from {
    opacity: 0;
    transform: translate3d(-7%, 0, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes page-leave-next {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    opacity: 0;
    transform: translate3d(-4%, 0, 0) scale(0.985);
  }
}

@keyframes page-leave-prev {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    opacity: 0;
    transform: translate3d(4%, 0, 0) scale(0.985);
  }
}

.cover__content {
  width: min(565px, calc(100vw - 64px));
  max-height: calc(100dvh - 64px);
  transform: translateY(8vh);
}

.cover__logo-link {
  display: block;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.cover__logo-link:hover,
.cover__logo-link:focus,
.cover__logo-link:focus-visible,
.cover__logo-link:active,
.cover__logo-link:visited {
  border: 0;
  outline: 0;
  box-shadow: none;
}

.cover__logo {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  user-select: none;
  -webkit-user-drag: none;
}

.cover h1 {
  margin: clamp(28px, 5vh, 48px) 0 0;
  color: var(--white);
  font-size: clamp(30px, min(3.8vw, 6.8vh), 42px);
  font-weight: 800;
  line-height: 1.37;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-shadow: 3px 3px 2px rgb(0 0 0 / 45%);
}

.cover h1 span {
  display: block;
}

.contacts__content {
  width: min(495px, calc(100vw - 64px));
  color: var(--white);
  font-size: clamp(15px, 1.55vw, 18px);
  font-weight: 700;
  line-height: 1.2;
  transform: translate(6.5vw, 8vh);
}

.contacts__logo {
  display: block;
  width: min(327px, 72%);
  height: auto;
  aspect-ratio: 3.75 / 1;
  margin: 0 0 18px;
  user-select: none;
  -webkit-user-drag: none;
}

.contacts h2 {
  margin: 0 0 clamp(32px, 5.6vh, 46px);
  font-size: inherit;
  line-height: inherit;
}

.contacts address {
  margin: 0;
  font-style: normal;
}

.contacts a {
  color: inherit;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

.contacts__rule {
  width: 100%;
  height: 5px;
  margin: 14px 0 17px;
  background: var(--white);
}

.mvc3code {
  --mvc3-tab-width: 5.3cqw;
  --mvc3-tab-active-width: 8.5cqw;
  --mvc3-panel-width: calc(100cqw - var(--mvc3-tab-active-width) - var(--mvc3-tab-width) * 3);
  display: block;
  margin: 0;
  padding: 0;
  background: #000;
  container-type: inline-size;
}

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

.mvc3code__slider {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
  touch-action: pan-y;
}

.mvc3code__item {
  position: relative;
  display: flex;
  flex: 0 0 var(--mvc3-tab-width);
  height: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  transition: flex-basis var(--motion-duration) var(--motion-easing);
}

.mvc3code__item.is-active {
  flex-basis: calc(100% - var(--mvc3-tab-width) * 3);
}

.mvc3code__tab {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 var(--mvc3-tab-width);
  height: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-right: 1px solid rgb(255 255 255 / 20%);
  border-radius: 0;
  outline: 0;
  background: var(--mvc3-tab-bg);
  color: #fff;
  cursor: pointer;
  appearance: none;
  transition:
    flex-basis var(--motion-duration) var(--motion-easing),
    filter 180ms ease;
}

.mvc3code__item--lineup {
  --mvc3-tab-bg: var(--orange);
}

.mvc3code__item--mvc3 {
  --mvc3-tab-bg: var(--black);
}

.mvc3code__item--mvc3l {
  --mvc3-tab-bg: var(--gray);
}

.mvc3code__item--mvc3bl {
  --mvc3-tab-bg: var(--orange);
}

.mvc3code__item.is-active .mvc3code__tab {
  flex-basis: var(--mvc3-tab-active-width);
}

.mvc3code__tab span {
  display: block;
  flex: 0 0 auto;
  width: max-content;
  max-width: calc(42cqw - 2.8cqw);
  overflow: hidden;
  font-size: clamp(7px, 1.32cqw, 19px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-overflow: clip;
  white-space: nowrap;
  transform: rotate(-90deg);
  transform-origin: center;
}

.mvc3code__tab:hover {
  filter: brightness(1.08);
}

.mvc3code__tab:focus-visible,
.detail-trigger:focus-visible,
.slide-nav:focus-visible,
.detail-view__close:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -5px;
}

.mvc3code__panel {
  position: relative;
  flex: 0 0 var(--mvc3-panel-width);
  width: var(--mvc3-panel-width);
  height: 100%;
  min-width: var(--mvc3-panel-width);
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  contain: layout paint;
}

.mvc3code__canvas {
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 1;
}

.mvc3code__item.is-entering .mvc3code__canvas {
  animation: mvc3-content-enter var(--motion-duration) both;
  transform-origin: left center;
}

.mvc3code__item.is-leaving .mvc3code__canvas {
  animation: mvc3-content-leave var(--motion-duration) both;
  transform-origin: right center;
}

.mvc3code__slider.is-moving-prev .mvc3code__item.is-entering .mvc3code__canvas {
  animation-name: mvc3-content-enter-prev;
  transform-origin: right center;
}

.mvc3code__slider.is-moving-prev .mvc3code__item.is-leaving .mvc3code__canvas {
  animation-name: mvc3-content-leave-prev;
  transform-origin: left center;
}

@keyframes mvc3-content-enter {
  0% {
    opacity: 0.9;
    transform: translate3d(2.2cqw, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mvc3-content-leave {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0.88;
    transform: translate3d(-1.2cqw, 0, 0);
  }
}

@keyframes mvc3-content-enter-prev {
  0% {
    opacity: 0.9;
    transform: translate3d(-2.2cqw, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mvc3-content-leave-prev {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0.88;
    transform: translate3d(1.2cqw, 0, 0);
  }
}

.mvc3code__intro {
  display: grid;
  grid-template-columns: 60% 40%;
  background: var(--black);
}

.mvc3code__intro-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 0;
  height: 100%;
  padding: 2.6cqw 3.7cqw 2.5cqw;
  background: var(--black);
  color: #fff;
}

.mvc3code__brand {
  display: block;
  width: 12.9cqw;
  height: 3.45cqw;
  min-height: 20px;
  margin: 0;
  object-fit: contain;
  object-position: left center;
  user-select: none;
  -webkit-user-drag: none;
}

.mvc3code__eyebrow {
  margin: 2.8cqw 0 0;
  color: var(--orange);
  font-size: clamp(7px, 1.35cqw, 19px);
  font-weight: 900;
  line-height: 1.29;
}

.mvc3code__intro h2 {
  margin: 3.7cqw 0 0;
  color: #fff;
  font-size: clamp(32px, 4.05cqw, 58px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.025em;
}

.mvc3code__lead {
  max-width: 33cqw;
  margin: 5.6cqw 0 0;
  color: #fff;
  font-size: clamp(7px, 1.35cqw, 19px);
  font-weight: 900;
  line-height: 1.29;
}

.mvc3code__series {
  margin: 3.6cqw 0 0;
  color: var(--orange);
  font-size: clamp(8px, 1.82cqw, 26px);
  font-weight: 900;
  line-height: 1.03;
  text-transform: uppercase;
}

.mvc3code__intro-media {
  display: grid;
  min-width: 0;
  overflow: hidden;
  background: var(--orange);
  place-items: center;
}

.mvc3code__intro-media img {
  display: block;
  width: 125%;
  max-width: none;
  height: 100%;
  margin: 0;
  border: 0;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.mvc3code__product-slide {
  display: grid;
  grid-template-columns: 60% 40%;
  background: #ddd;
}

.mvc3code__specs {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 4.15cqw 2.5cqw 3.2cqw;
  overflow: hidden;
  background: #ddd;
}

.mvc3code__specs h2 {
  min-height: 5.2cqw;
  margin: 0;
  color: #070707;
  font-size: clamp(8px, 1.82cqw, 26px);
  font-weight: 900;
  line-height: 1.03;
}

.mvc3code__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15cqw;
  margin-top: 3.5cqw;
}

.mvc3code__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  aspect-ratio: 1 / 1;
  padding: 1.5cqw 1.25cqw 1.15cqw;
  overflow: hidden;
  background: var(--card);
  color: #111;
}

.mvc3code__card--accent {
  background: #e9822d;
  color: #fff;
}

.mvc3code__card strong {
  display: block;
  max-width: 100%;
  margin: 0;
  font-size: clamp(8px, 2.05cqw, 29px);
  font-weight: 900;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.mvc3code__card span {
  display: block;
  max-width: 100%;
  margin-top: auto;
  color: #595959;
  font-size: clamp(5px, 0.83cqw, 12px);
  font-weight: 700;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.mvc3code__card--accent span {
  color: #fff;
}

.mvc3code__card--poles strong {
  font-size: clamp(7px, 1.64cqw, 24px);
  line-height: 1.18;
}

.mvc3code__product {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 2.2cqw 1.4cqw 4.3cqw;
  overflow: hidden;
  background: #000;
}

.mvc3code__product img {
  display: block;
  width: 108%;
  max-width: none;
  height: 100%;
  margin: 0;
  border: 0;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.mvc3code__item--mvc3l .mvc3code__product img {
  width: 118%;
  height: 108%;
}

.mvc3code__item--mvc3bl .mvc3code__product img {
  width: 102%;
  height: 96%;
}

.mvc3code__product figcaption {
  position: absolute;
  right: 0.8cqw;
  bottom: 2.4cqw;
  left: 0.8cqw;
  margin: 0;
  color: #fff;
  font-size: clamp(4px, 0.72cqw, 11px);
  font-weight: 700;
  line-height: 1.12;
  text-align: center;
}

.detail-trigger {
  align-self: flex-start;
  margin: auto 0 0;
  padding: 10px 0 4px;
  border: 0;
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  font-size: clamp(14px, 1.35cqw, 20px);
  font-weight: 900;
  line-height: 1.1;
  text-align: left;
}

.detail-trigger:hover {
  color: #b45400;
}

.detail-trigger--dark {
  color: #d8d8d8;
}

.detail-trigger--dark:hover {
  color: #fff;
}

.slide-nav {
  position: absolute;
  top: 50%;
  z-index: 50;
  display: grid;
  width: 46px;
  height: 76px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 38%);
  border-radius: 4px;
  background: rgb(0 0 0 / 50%);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition:
    opacity 180ms ease,
    background 180ms ease;
  place-items: center;
}

.presentation[data-current-slide="0"] .slide-nav--next,
.presentation[data-current-slide="5"] .slide-nav--prev {
  opacity: 0.72;
  pointer-events: auto;
}

.slide-nav:hover {
  background: rgb(0 0 0 / 76%);
  opacity: 1;
}

.slide-nav svg,
.detail-view__close svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.slide-nav--prev {
  left: max(10px, env(safe-area-inset-left));
}

.slide-nav--next {
  right: max(10px, env(safe-area-inset-right));
}

.slide-nav:disabled {
  opacity: 0;
  pointer-events: none;
}

.presentation.is-detail-open .slide-nav {
  opacity: 0;
  pointer-events: none;
}

.detail-view {
  position: absolute;
  inset: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ececec;
  color: #111;
  transform-origin: center;
}

.detail-view[hidden] {
  display: none;
}

.mvc3code__slider.is-detail-open .mvc3code__item.is-active .mvc3code__canvas {
  animation: scene-move-behind 560ms cubic-bezier(0.55, 0, 0.2, 1) both;
}

.detail-view.is-opening {
  animation: detail-arrive 620ms cubic-bezier(0.18, 0.8, 0.2, 1) both;
}

.detail-view.is-closing {
  animation: detail-depart 430ms cubic-bezier(0.55, 0, 0.3, 1) both;
}

.mvc3code__slider.is-detail-closing .mvc3code__item.is-active .mvc3code__canvas {
  animation: scene-return 430ms cubic-bezier(0.18, 0.8, 0.2, 1) both;
}

@keyframes scene-move-behind {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  55% {
    opacity: 0.68;
    transform: translate3d(0, 0, 0) scale(0.78);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 0, -1px) scale(0.64);
  }
}

@keyframes detail-arrive {
  0%,
  32% {
    opacity: 0;
    transform: translate3d(0, 30px, 0) scale(0.88);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes detail-depart {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 20px, 0) scale(0.86);
  }
}

@keyframes scene-return {
  from {
    opacity: 0;
    transform: translate3d(0, 0, -1px) scale(0.64);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.detail-view__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex: 0 0 auto;
  min-height: 96px;
  padding: 18px clamp(22px, 4vw, 64px);
  background: #090909;
  color: #fff;
}

.detail-view__kicker {
  margin: 0 0 4px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.detail-view__header h2 {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 36px);
  font-weight: 900;
  line-height: 1.06;
}

.detail-view__close {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 11px 14px;
  border: 2px solid var(--orange);
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.detail-view__close:hover {
  background: var(--orange);
}

.detail-view__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.price-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 3.5vw, 54px);
  border-bottom: 1px solid #b5b5b5;
  background: #d3d3d3;
  font-size: 13px;
  font-weight: 800;
}

.price-table-wrap {
  min-width: 100%;
  overflow: auto;
}

.price-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  background: #f5f5f5;
  font-size: clamp(11px, 1.05vw, 15px);
  font-variant-numeric: tabular-nums;
}

.price-table th,
.price-table td {
  padding: 11px 12px;
  border-right: 1px solid #c1c1c1;
  border-bottom: 1px solid #c1c1c1;
  text-align: left;
  vertical-align: top;
}

.price-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.price-table tbody tr:nth-child(even) {
  background: #e3e3e3;
}

.price-table tbody tr:hover {
  background: #ffd3ad;
}

.price-table__number {
  width: 46px;
  text-align: center !important;
}

.price-table__article {
  display: block;
  margin-top: 5px;
  color: #555;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.84em;
  overflow-wrap: anywhere;
}

.price-table__price {
  color: #000;
  font-size: 1.05em;
  font-weight: 900;
  white-space: nowrap;
}

.certificate-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px clamp(18px, 3.5vw, 54px);
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 22px;
  padding: 24px clamp(18px, 3.5vw, 54px) 48px;
  background: #d7d7d7;
}

.certificate-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  background: #fff;
  box-shadow: 0 12px 28px rgb(0 0 0 / 18%);
}

.certificate-card img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
}

.certificate-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding: 12px 14px;
  border-top: 5px solid var(--orange);
  color: #111;
  font-size: 13px;
  font-weight: 900;
}

.certificate-card a {
  flex: 0 0 auto;
  color: #a34700;
  text-underline-offset: 3px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

@media (min-width: 721px) {
  .cover__logo {
    transform: translateY(-8px);
  }
}

@media (max-width: 720px) {
  .presentation__viewport {
    border-width: 0;
  }

  .cover__content {
    width: calc(100vw - 42px);
    max-width: 440px;
    max-height: calc(100dvh - 48px);
    transform: none;
  }

  .cover h1 {
    margin-top: clamp(26px, 5.5vh, 44px);
    font-size: clamp(23px, min(6.2vw, 4.5vh), 30px);
    line-height: 1.35;
  }

  .contacts__content {
    width: calc(100vw - 82px);
    max-width: 495px;
    font-size: clamp(14px, 4.2vw, 18px);
    transform: translateX(23px);
  }

  .contacts__logo {
    width: min(327px, 86%);
  }

  .contacts h2 {
    margin-bottom: clamp(22px, 4.5vh, 36px);
  }

  .mvc3code__item {
    display: none;
  }

  .mvc3code__item.is-active {
    display: block;
    flex: 0 0 100%;
    width: 100%;
  }

  .mvc3code__item.is-active .mvc3code__tab {
    display: none;
  }

  .mvc3code__panel {
    width: 100%;
    min-width: 100%;
    height: 100%;
  }

  .mvc3code__intro {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 61%) minmax(0, 39%);
  }

  .mvc3code__intro-copy {
    padding: max(34px, env(safe-area-inset-top)) 30px 22px;
  }

  .mvc3code__brand {
    width: 150px;
    min-width: 0;
  }

  .mvc3code__eyebrow {
    margin-top: 22px;
    font-size: 10px;
  }

  .mvc3code__intro h2 {
    margin-top: 26px;
    font-size: clamp(36px, 11vw, 52px);
  }

  .mvc3code__lead {
    max-width: 100%;
    margin-top: 24px;
    font-size: clamp(13px, 3.8vw, 17px);
  }

  .mvc3code__series {
    margin-top: 20px;
    font-size: clamp(16px, 4.8vw, 22px);
  }

  .mvc3code__intro-media img {
    width: 88%;
    height: 92%;
  }

  .mvc3code__product-slide {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 66%) minmax(0, 34%);
  }

  .mvc3code__specs {
    padding: max(28px, env(safe-area-inset-top)) 22px 16px;
    overflow: auto;
  }

  .mvc3code__specs h2 {
    min-height: 0;
    padding-right: 22px;
    font-size: clamp(18px, 5.2vw, 25px);
  }

  .mvc3code__cards {
    gap: 8px;
    margin-top: 18px;
  }

  .mvc3code__card {
    min-height: 88px;
    aspect-ratio: auto;
    padding: 11px 10px;
  }

  .mvc3code__card strong,
  .mvc3code__card--poles strong {
    font-size: clamp(15px, 4.5vw, 20px);
    line-height: 1.05;
  }

  .mvc3code__card span {
    margin-top: 10px;
    font-size: clamp(8px, 2.4vw, 11px);
  }

  .mvc3code__product {
    padding: 4px 42px 24px;
  }

  .mvc3code__product img,
  .mvc3code__item--mvc3l .mvc3code__product img,
  .mvc3code__item--mvc3bl .mvc3code__product img {
    width: 100%;
    height: 100%;
  }

  .mvc3code__product figcaption {
    bottom: 10px;
    font-size: 8px;
  }

  .detail-trigger {
    margin-top: 16px;
    padding-top: 7px;
    font-size: clamp(14px, 4vw, 17px);
  }

  .detail-trigger--dark {
    margin-top: auto;
  }

  .slide-nav {
    top: 50%;
    bottom: auto;
    width: 46px;
    height: 76px;
    border-radius: 4px;
    transform: translateY(-50%);
  }

  .slide-nav--prev {
    left: max(12px, env(safe-area-inset-left));
  }

  .slide-nav--next {
    right: max(12px, env(safe-area-inset-right));
  }

  .detail-view__header {
    min-height: 82px;
    padding: 12px 14px;
  }

  .detail-view__header h2 {
    font-size: clamp(18px, 5.3vw, 24px);
  }

  .detail-view__close {
    width: 46px;
    height: 46px;
    padding: 0;
    justify-content: center;
  }

  .detail-view__close span {
    display: none;
  }

  .price-meta,
  .certificate-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 10px 14px;
  }

  .price-table-wrap {
    min-width: 0;
    padding: 12px 12px calc(20px + env(safe-area-inset-bottom));
    overflow: visible;
  }

  .price-table {
    display: block;
    width: 100%;
    min-width: 0;
    border-collapse: separate;
    background: transparent;
    font-size: 13px;
  }

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

  .price-table tbody {
    display: grid;
    gap: 12px;
  }

  .price-table tbody tr,
  .price-table tbody tr:nth-child(even),
  .price-table tbody tr:hover {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "number price"
      "series characteristic"
      "current poles"
      "product product";
    overflow: hidden;
    border: 1px solid #b9b9b9;
    border-top: 4px solid var(--orange);
    background: #f7f7f7;
  }

  .price-table td {
    min-width: 0;
    padding: 8px 10px;
    border-right: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
    overflow-wrap: anywhere;
  }

  .price-table td::before {
    display: block;
    margin-bottom: 3px;
    color: #666;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.055em;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .price-table td:nth-child(1) {
    grid-area: number;
    width: auto;
    background: #171717;
    color: #fff;
    text-align: left !important;
  }

  .price-table td:nth-child(1)::before {
    content: "№";
    color: #bdbdbd;
  }

  .price-table td:nth-child(2) {
    grid-area: series;
  }

  .price-table td:nth-child(2)::before {
    content: "Серия";
  }

  .price-table td:nth-child(3) {
    grid-area: characteristic;
    border-right: 0;
  }

  .price-table td:nth-child(3)::before {
    content: "Хар-ка";
  }

  .price-table td:nth-child(4) {
    grid-area: current;
  }

  .price-table td:nth-child(4)::before {
    content: "Ток";
  }

  .price-table td:nth-child(5) {
    grid-area: poles;
    border-right: 0;
  }

  .price-table td:nth-child(5)::before {
    content: "Полюса";
  }

  .price-table td:nth-child(6) {
    grid-area: product;
    border-right: 0;
    border-bottom: 0;
  }

  .price-table td:nth-child(6)::before {
    content: "Наименование / артикул";
  }

  .price-table td:nth-child(7) {
    grid-area: price;
    border-right: 0;
    background: var(--orange);
    color: #000;
    font-size: 16px;
    text-align: right;
  }

  .price-table td:nth-child(7)::before {
    content: "Цена";
    color: #4a2500;
  }

  .price-table__article {
    margin-top: 4px;
  }

  .certificate-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 18px 76px;
  }
}

@media (max-width: 900px) and (max-height: 560px) and (orientation: landscape) {
  .mvc3code__intro,
  .mvc3code__product-slide {
    grid-template-columns: 60% 40%;
    grid-template-rows: 1fr;
  }

  .mvc3code__intro-copy {
    padding: 20px 54px 16px;
  }

  .mvc3code__brand {
    width: 120px;
  }

  .mvc3code__eyebrow {
    margin-top: 12px;
  }

  .mvc3code__intro h2 {
    margin-top: 14px;
    font-size: 32px;
  }

  .mvc3code__lead {
    margin-top: 14px;
    font-size: 11px;
  }

  .mvc3code__series {
    margin-top: 12px;
    font-size: 14px;
  }

  .mvc3code__specs {
    padding: 18px 24px 12px 52px;
  }

  .mvc3code__specs h2 {
    font-size: 15px;
  }

  .mvc3code__cards {
    gap: 7px;
    margin-top: 10px;
  }

  .mvc3code__card {
    min-height: 68px;
    padding: 7px;
  }

  .mvc3code__card strong,
  .mvc3code__card--poles strong {
    font-size: 13px;
  }

  .mvc3code__card span {
    margin-top: 5px;
    font-size: 7px;
  }

  .detail-trigger {
    margin-top: 8px;
    padding-top: 4px;
    font-size: 11px;
  }

  .mvc3code__product {
    padding: 4px 16px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
