:root {
  --color-brand-red: #ce251e;
  --color-brand-red-dark: #b70f16;
  --color-ink: #222529;
  --color-muted: #697079;
  --color-soft: #eef1f4;
  --color-surface: #ffffff;
  --color-dark: #222529;
  --color-dark-2: #171a1e;
  --container: 1680px;
  --container-narrow: 1440px;
  --chrome-edge: max(60px, calc((100vw - 1800px) / 2));
  --section-y: 120px;
  --radius: 4px;
  --shadow-soft: 0 24px 70px rgb(18 23 31 / 14%);
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color-scheme: light;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-ink);
  background: #fff;
}

@font-palette-values --icon-ink {
  font-family: "iconfont";
  override-colors:
    0 #333333, 1 #333333, 2 #333333, 3 #333333, 4 #333333, 5 #333333,
    6 #333333, 7 #333333, 8 #333333, 9 #333333, 10 #333333, 11 #333333,
    12 #333333, 13 #333333, 14 #333333, 15 #333333;
}

@font-palette-values --icon-red {
  font-family: "iconfont";
  override-colors:
    0 #ce251e, 1 #ce251e, 2 #ce251e, 3 #ce251e, 4 #ce251e, 5 #ce251e,
    6 #ce251e, 7 #ce251e, 8 #ce251e, 9 #ce251e, 10 #ce251e, 11 #ce251e,
    12 #ce251e, 13 #ce251e, 14 #ce251e, 15 #ce251e;
}

@font-palette-values --icon-white {
  font-family: "iconfont";
  override-colors:
    0 #ffffff, 1 #ffffff, 2 #ffffff, 3 #ffffff, 4 #ffffff, 5 #ffffff,
    6 #ffffff, 7 #ffffff, 8 #ffffff, 9 #ffffff, 10 #ffffff, 11 #ffffff,
    12 #ffffff, 13 #ffffff, 14 #ffffff, 15 #ffffff;
}

@font-palette-values --icon-muted {
  font-family: "iconfont";
  override-colors:
    0 #b7b7b7, 1 #b7b7b7, 2 #b7b7b7, 3 #b7b7b7, 4 #b7b7b7, 5 #b7b7b7,
    6 #b7b7b7, 7 #b7b7b7, 8 #b7b7b7, 9 #b7b7b7, 10 #b7b7b7, 11 #b7b7b7,
    12 #b7b7b7, 13 #b7b7b7, 14 #b7b7b7, 15 #b7b7b7;
}

@font-palette-values --icon-arrow-muted {
  font-family: "iconfont";
  override-colors:
    0 #d9d9d9, 1 #d9d9d9, 2 #d9d9d9, 3 #d9d9d9, 4 #d9d9d9, 5 #d9d9d9,
    6 #d9d9d9, 7 #d9d9d9, 8 #d9d9d9, 9 #d9d9d9, 10 #d9d9d9, 11 #d9d9d9,
    12 #d9d9d9, 13 #d9d9d9, 14 #d9d9d9, 15 #d9d9d9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #fff;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgb(215 25 32 / 62%);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--color-brand-red);
  color: #fff;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-y);
}

.section--dark {
  background: var(--color-dark);
  color: #fff;
}

.section-copy,
.section-heading {
  position: relative;
}

.section-heading--center {
  text-align: center;
}

.watermark {
  position: relative;
  z-index: 0;
  margin: 0 0 -18px;
  color: rgb(215 25 32 / 8%);
  font-family: var(--font-display);
  font-size: clamp(54px, 5.7vw, 110px);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.watermark--light {
  color: rgb(255 255 255 / 13%);
}

.watermark--dark {
  color: rgb(255 255 255 / 6%);
}

h1,
h2,
h3,
p {
  margin-block-start: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 1280px;
  margin: 0 auto 14px;
  font-size: clamp(44px, 3.8vw, 72px);
}

h2 {
  margin-block-end: 18px;
  font-size: clamp(42px, 3.4vw, 64px);
}

h3 {
  margin-block-end: 16px;
  font-size: clamp(22px, 1.55vw, 30px);
  line-height: 1.25;
}

p {
  color: var(--color-muted);
}

.lead {
  color: var(--color-ink);
  font-size: clamp(20px, 1.45vw, 28px);
  font-weight: 800;
  line-height: 1.28;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: currentColor;
  font-palette: --icon-ink;
  font-size: 1em;
  line-height: 1;
}

.button--red .iconfont,
.button--dark .iconfont,
.button--dark-outline .iconfont,
.button--ghost .iconfont {
  font-palette: --icon-white;
}

.button .iconfont {
  font-size: 18px;
}

.button:hover {
  transform: translateY(-2px);
}

.button--red {
  background: var(--color-brand-red);
  color: #fff;
}

.button--red:hover {
  background: var(--color-brand-red-dark);
}

.button--with-dot::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.button--ghost {
  border-color: rgb(255 255 255 / 42%);
  color: #fff;
}

.button--dark,
.button--light,
.button--dark-outline {
  background: #fff;
  color: var(--color-ink);
}

.button--dark {
  background: var(--color-dark);
  color: #fff;
}

.button--dark-outline {
  border-color: rgb(255 255 255 / 26%);
  background: transparent;
  color: #fff;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 30px;
  z-index: 100;
  width: min(calc(100% - var(--chrome-edge) - var(--chrome-edge)), 1800px);
  margin-inline: auto;
}

.site-header__bar {
  display: grid;
  min-height: 80px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 30px;
  border-radius: 4px;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 18px 50px rgb(0 0 0 / 10%);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__mark {
  width: 197px;
  height: auto;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-item,
.submenu-item {
  position: relative;
}

.primary-nav a,
.nav-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  color: #16191d;
  font-size: 16px;
  font-weight: 700;
}

.primary-nav .iconfont {
  margin-top: 8px;
  color: #333;
  font-size: 12px;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.nav-item:focus-within > .nav-link,
.nav-item:hover > .nav-link {
  color: var(--color-brand-red);
}

.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 5;
  display: grid;
  min-width: 230px;
  padding: 10px 0;
  border: 1px solid rgb(0 0 0 / 7%);
  border-radius: 4px;
  background: rgb(255 255 255 / 98%);
  box-shadow: 0 24px 60px rgb(0 0 0 / 14%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.submenu::before {
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
  content: "";
}

.submenu a {
  justify-content: space-between;
  min-height: 42px;
  padding: 0 18px;
  color: #25292e;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.submenu .iconfont {
  margin-top: 0;
  font-size: 12px;
}

.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu--nested {
  top: -10px;
  left: calc(100% + 8px);
}

.submenu--nested::before {
  inset: 0 auto 0 -10px;
  width: 10px;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button,
.language-button,
.menu-toggle {
  border: 0;
  background: transparent;
  color: var(--color-ink);
}

.icon-button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
}

.language-button {
  display: inline-flex;
  min-width: 88px;
  height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
}

.icon-button .iconfont {
  color: var(--color-brand-red);
  font-palette: --icon-red;
  font-size: 24px;
}

.language-button .iconfont {
  color: #333;
  font-palette: --icon-ink;
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 1000px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

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

.hero__media {
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 620ms ease,
    transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__image.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__shade {
  background:
    linear-gradient(180deg, rgb(0 38 80 / 30%) 0%, rgb(0 38 80 / 8%) 40%, rgb(0 0 0 / 30%) 100%),
    rgb(0 0 0 / 15%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 86px;
}

.hero-panel {
  display: none;
}

.hero-panel.is-active {
  display: block;
  animation: hero-panel-in 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-panel h2 {
  max-width: 1280px;
  margin: 0 auto 14px;
  font-size: clamp(44px, 3.8vw, 72px);
}

.hero__eyebrow {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 18px;
  border-radius: 3px;
  background: rgb(255 255 255 / 18%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.hero p {
  color: #fff;
}

.hero-panel > p:not(.hero__eyebrow) {
  margin-bottom: 32px;
  font-size: clamp(18px, 1.45vw, 28px);
  font-weight: 700;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible,
.hero-arrow:active {
  border: 1px solid var(--color-brand-red);
  background: var(--color-brand-red);
  color: #fff;
}

.hero-arrow:active {
  transform: translateY(-50%) scale(0.92);
}

.hero-arrow .iconfont {
  color: currentColor;
  font-palette: --icon-white;
  font-size: 34px;
}

.hero-arrow:hover .iconfont,
.hero-arrow:focus-visible .iconfont,
.hero-arrow:active .iconfont {
  font-palette: --icon-white;
}

.hero-arrow--left {
  left: var(--chrome-edge);
}

.hero-arrow--right {
  right: var(--chrome-edge);
}

.hero__progress {
  position: absolute;
  left: var(--chrome-edge);
  right: var(--chrome-edge);
  bottom: 70px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 2px;
  background: rgb(255 255 255 / 24%);
}

.hero__progress span {
  background: transparent;
}

.hero__progress .is-active {
  background: var(--color-brand-red);
}

.hero__contact {
  position: absolute;
  left: var(--chrome-edge);
  right: var(--chrome-edge);
  bottom: 24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.hero__contact span::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--color-brand-red);
  content: "";
}

@keyframes hero-panel-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about {
  --about-gradient-height: 300px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff0ef 0%, #fff 100%) top center / 100% var(--about-gradient-height) no-repeat,
    url("./images/about-map-background.svg") right var(--about-gradient-height) / min(1276px, 78vw) auto no-repeat,
    #fff;
  padding-bottom: 0;
}

.about__grid {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(420px, 760px) 1fr;
  align-items: center;
  gap: 72px;
}

.about__copy p:not(.watermark, .lead) {
  max-width: 760px;
}

.about-visual {
  position: relative;
  container-type: inline-size;
  height: clamp(500px, 33vw, 560px);
  min-height: 0;
}

.about-keyword {
  position: absolute;
  display: block;
  margin: 0;
}

.about-keyword img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 32px rgb(30 36 48 / 10%));
}

.about-keyword figcaption {
  color: var(--color-brand-red);
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 56px);
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-keyword--innovation {
  left: 22%;
  top: 0;
  width: clamp(110px, 22%, 190px);
}

.about-keyword--innovation figcaption {
  position: absolute;
  left: 68%;
  top: -3%;
  font-size: clamp(17px, 3.2cqw, 26px);
}

.about-keyword--smart {
  right: 1%;
  top: 4%;
  width: clamp(132px, 29%, 246px);
}

.about-keyword--smart figcaption {
  position: absolute;
  right: 82%;
  top: 55%;
}

.about-keyword--quality {
  right: 7%;
  bottom: 1%;
  width: clamp(126px, 28%, 240px);
}

.about-keyword--quality figcaption {
  position: absolute;
  left: 2%;
  top: 63%;
  font-size: clamp(24px, 2.2vw, 42px);
}

.about-keyword--craft {
  left: 3%;
  top: 40%;
  width: clamp(90px, 18%, 160px);
}

.about-keyword--craft figcaption {
  position: absolute;
  left: 68%;
  top: 84%;
  font-size: clamp(24px, 2.2vw, 42px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  padding-block: 72px 58px;
  border-top: 1px solid #e7e8eb;
}

.stats article {
  text-align: center;
}

.stats strong {
  display: block;
  color: var(--color-ink);
  font-size: clamp(36px, 3.1vw, 60px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.stats b {
  color: var(--color-brand-red);
  font-size: 0.75em;
}

.stats span {
  display: block;
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.strength {
  display: grid;
  height: 840px;
  grid-template-columns: minmax(0, 75%) minmax(360px, 25%);
  background: #111;
  color: #fff;
  overflow: hidden;
}

.strength__main,
.strength-panel,
.strength-card {
  position: relative;
  overflow: hidden;
}

.strength-panel,
.strength-panel > img,
.strength-card img {
  position: absolute;
  inset: 0;
}

.strength-panel {
  clip-path: inset(0 0 0 8%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(34px);
  transition:
    clip-path 700ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 520ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.strength-panel.is-active {
  clip-path: inset(0);
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.strength-panel > img,
.strength-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strength-panel > img {
  transform: scale(1.06);
  transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.strength-panel.is-active > img {
  transform: scale(1);
}

.strength-panel.is-active .strength__copy {
  animation: strength-copy-in 680ms cubic-bezier(0.22, 1, 0.36, 1) 90ms both;
}

.strength-panel.is-active .line-icon {
  animation: strength-icon-in 560ms cubic-bezier(0.22, 1, 0.36, 1) 40ms both;
}

.strength-panel.is-active .button {
  animation: strength-button-in 520ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
}

.strength__overlay {
  position: absolute;
  inset: 0;
  display: none;
  background:
    linear-gradient(90deg, rgb(15 22 29 / 72%) 0%, rgb(15 22 29 / 34%) 48%, rgb(15 22 29 / 78%) 100%),
    rgb(0 0 0 / 22%);
}

.strength__copy {
  position: absolute;
  left: max(60px, calc((100vw - var(--container)) / 2));
  bottom: 116px;
  max-width: 1180px;
  padding-right: 48px;
}

.strength__copy p:not(.watermark) {
  max-width: 1200px;
  color: rgb(255 255 255 / 78%);
}

.line-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  margin-bottom: 36px;
  color: #fff;
  font-palette: --icon-white;
  font-size: 54px;
}

.strength__cards {
  display: grid;
  min-height: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.strength-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 5%), rgb(0 0 0 / 68%));
  content: "";
}

.strength-card {
  display: block;
  min-width: 0;
  padding: 0;
  border: 0;
  background: #111;
  color: #fff;
  cursor: pointer;
  transform: translateX(0);
  transition:
    filter 360ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.strength-card[hidden] {
  display: none;
}

.strength.is-switching .strength-card:not([hidden]) {
  animation: strength-card-in 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.strength.is-switching .strength-card:not([hidden]) img {
  animation: strength-card-image-in 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.strength-card span {
  position: absolute;
  left: 50%;
  bottom: 52px;
  z-index: 1;
  width: min(150px, calc(100% - 32px));
  transform: translateX(-50%);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
}

.strength-card--factory span {
  width: min(104px, calc(100% - 32px));
}

.strength-card .iconfont {
  display: flex;
  margin: 0 auto 22px;
  color: #fff;
  font-palette: --icon-white;
  font-size: 56px;
}

@keyframes strength-copy-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes strength-icon-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.88);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes strength-button-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes strength-card-in {
  from {
    filter: brightness(0.82);
    transform: translateX(28px);
  }

  to {
    filter: brightness(1);
    transform: translateX(0);
  }
}

@keyframes strength-card-image-in {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .strength-panel,
  .strength-panel > img,
  .strength-card {
    transition: none;
  }

  .strength-panel,
  .strength-panel.is-active,
  .strength-panel > img,
  .strength-panel.is-active > img,
  .strength-panel.is-active .strength__copy,
  .strength-panel.is-active .line-icon,
  .strength-panel.is-active .button,
  .strength.is-switching .strength-card:not([hidden]),
  .strength.is-switching .strength-card:not([hidden]) img {
    animation: none;
    clip-path: inset(0);
    transform: none;
  }
}

.products {
  --products-dark-height: 900px;
  --products-art-x: clamp(520px, 37.14vw, 713px);
  --products-art-size: 912px 484px;
  --product-stage-offset: clamp(58px, 4.4vw, 80px);
  --product-stack-space: 150px;
  --product-arrow-space: 64px;
  padding-top: 60px;
  padding-bottom: 0;
  overflow: hidden;
  background: #fff;
  color: #fff;
}

.products::before {
  position: absolute;
  inset: 0 0 auto;
  height: var(--products-dark-height);
  background:
    url("./images/product-range-background.svg") var(--products-art-x) 0 / var(--products-art-size) no-repeat,
    var(--color-dark);
  content: "";
}

.products__intro {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.products__intro p {
  color: rgb(255 255 255 / 72%);
}

.products .watermark {
  margin-bottom: -26px;
  color: rgb(255 255 255 / 4%);
  font-size: clamp(74px, 6.9vw, 132px);
  -webkit-text-stroke: 1px rgb(255 255 255 / 3%);
  text-shadow:
    0 1px 0 rgb(255 255 255 / 4%),
    0 18px 40px rgb(0 0 0 / 10%);
}

.product-tabs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(var(--chrome-edge), 1fr)
    repeat(7, minmax(0, calc((100vw - var(--chrome-edge) - var(--chrome-edge)) / 7)))
    minmax(var(--chrome-edge), 1fr);
  margin-top: 10px;
  border-top: 1px solid rgb(255 255 255 / 9%);
  border-bottom: 1px solid rgb(255 255 255 / 9%);
  background: rgb(255 255 255 / 3%);
}

.product-tabs::before,
.product-tabs::after {
  display: block;
  content: "";
}

.product-tabs button {
  position: relative;
  display: flex;
  min-height: 108px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: #b7b7b7;
  font-weight: 800;
}

.product-tabs button::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 28px;
  background: rgb(255 255 255 / 10%);
  content: "";
  transform: translateY(-50%);
}

.product-tabs button:last-of-type::after {
  content: none;
}

.product-tabs .iconfont {
  color: #b7b7b7;
  font-palette: --icon-muted;
  font-size: 36px;
  transition: color 180ms ease;
}

.product-tabs button.is-active {
  background: var(--color-brand-red);
  color: #fff;
}

.product-tabs button.is-active .iconfont {
  color: #fff;
  font-palette: --icon-white;
}

.product-mobile-switcher {
  display: none;
}

.product-showcase {
  position: relative;
  z-index: 1;
  width: min(calc(100% - var(--chrome-edge) - var(--chrome-edge)), 1800px);
  margin-top: 72px;
  margin-inline: auto;
}

.product-stage {
  position: relative;
  width: min(1510px, calc(100% - var(--product-stage-offset) - var(--product-stack-space) - var(--product-arrow-space)));
  min-height: 536px;
  margin-left: var(--product-stage-offset);
}

.product-card {
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--stack-z, 1);
  width: 100%;
  min-height: 496px;
  display: grid;
  grid-template-columns: minmax(360px, 640px) 1fr;
  gap: 72px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgb(222 226 231 / 92%);
  border-bottom-color: rgb(195 202 211 / 95%);
  border-radius: 8px;
  background: #fff;
  box-shadow:
    16px 0 34px rgb(18 23 31 / 10%),
    -6px 0 18px rgb(18 23 31 / 4%);
  color: var(--color-ink);
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(var(--stack-x, 0), var(--stack-y, 0), 0);
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 360ms ease,
    box-shadow 360ms ease;
}

.product-card.is-active {
  display: grid;
  pointer-events: auto;
}

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

.product-card.is-stacked {
  box-shadow:
    14px 0 28px rgb(18 23 31 / 9%),
    -4px 0 14px rgb(18 23 31 / 4%);
}

.product-card.is-stack-hidden {
  display: none;
}

.product-card.is-stacked::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 60%), rgb(248 249 251 / 78%)),
    linear-gradient(90deg, rgb(255 255 255 / 10%), rgb(34 37 41 / 8%));
  content: "";
}

.product-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card__body {
  padding: 36px 52px 36px 0;
}

.pill {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 7px 14px;
  border: 1px solid #f1c9cb;
  color: var(--color-brand-red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-list {
  display: grid;
  gap: 14px;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.spec-list li {
  color: var(--color-muted);
}

.spec-list li::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 2px;
  background: var(--color-brand-red);
  content: "";
}

.slider-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #fff;
  transform: translateY(-50%);
}

.slider-arrow .iconfont {
  color: #fff;
  font-palette: --icon-white;
  font-size: 34px;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.slider-arrow--left {
  left: 0;
}

.slider-arrow--left .iconfont {
  font-palette: --icon-white;
}

.slider-arrow--right {
  right: 0;
}

.slider-arrow:hover .iconfont,
.slider-arrow:focus-visible .iconfont,
.slider-arrow:active .iconfont {
  color: var(--color-brand-red);
  font-palette: --icon-red;
}

.slider-arrow:active .iconfont {
  transform: scale(0.92);
}

.cases {
  background:
    linear-gradient(180deg, #f8f9fa, #fff),
    var(--color-soft);
}

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

.case-panel {
  margin-top: 58px;
  padding: 68px 72px;
  background:
    linear-gradient(135deg, rgb(34 37 41 / 95%), rgb(34 37 41 / 86%)),
    var(--color-dark);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.case-panel p {
  color: rgb(255 255 255 / 72%);
}

.case-media {
  position: relative;
}

.case-media__image {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  transition:
    opacity 220ms ease,
    transform 360ms ease;
}

.case-media.is-switching .case-media__image {
  opacity: 0.42;
  transform: scale(1.012);
}

.case-media__controls {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 136px 80px 112px;
  width: 328px;
  height: 100px;
  align-items: center;
  border-radius: 36px 0 0;
  background: rgb(206 37 30 / 88%);
  color: #fff;
  overflow: hidden;
}

.case-media__controls button {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 0;
}

.case-media__controls button .iconfont {
  font-palette: --icon-white;
  font-size: 40px;
  line-height: 1;
}

.case-media__controls button:last-child {
  justify-self: end;
}

.case-media__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-family: "Barlow", var(--font-body);
  line-height: 36px;
  white-space: nowrap;
}

.case-media__count-current,
.case-media__count-separator {
  color: #fff;
  font-size: 32px;
}

.case-media__count-current {
  font-weight: 500;
}

.case-media__count-separator {
  font-weight: 100;
}

.case-media__count-total {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}

.applications {
  background: #fff;
  padding-bottom: 0;
}

.applications .section-heading {
  margin-bottom: 72px;
}

.applications .section-heading p:not(.watermark) {
  color: var(--color-muted);
  font-weight: 700;
}

.application-carousel {
  --application-feature-width: min(44vw, 760px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.62fr) var(--application-feature-width) minmax(180px, 0.62fr);
  align-items: center;
  gap: clamp(28px, 4.2vw, 80px);
  min-height: clamp(320px, 25.4vw, 430px);
  padding-inline: clamp(18px, 2.5vw, 48px);
}

.application-card {
  position: relative;
  grid-row: 1;
  height: clamp(320px, 25.4vw, 430px);
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  transition:
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 360ms ease;
}

.application-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.application-card--featured img {
  transform: scale(1.25);
  transform-origin: center top;
}

.application-card.is-left {
  grid-column: 1;
  opacity: 0.58;
  transform: translateX(-18px);
}

.application-card.is-active {
  z-index: 1;
  grid-column: 2;
  opacity: 1;
  transform: translateX(0) scale(1);
  box-shadow: var(--shadow-soft);
}

.application-card.is-right {
  grid-column: 3;
  opacity: 0.58;
  transform: translateX(18px);
}

.application-card--side,
.application-card--featured {
  opacity: 1;
}

.application-caption {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 28px;
  z-index: 2;
  padding: 26px 38px;
  border-radius: 8px;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 18px 48px rgb(18 23 31 / 12%);
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translateY(18px);
  transition:
    opacity 320ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.application-caption h3 {
  margin-bottom: 12px;
  color: var(--color-brand-red);
  font-size: clamp(18px, 1.28vw, 24px);
}

.application-caption p {
  max-width: 860px;
  margin: 0 auto;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.application-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #d9d9d9;
  touch-action: manipulation;
  transform: translateY(-50%);
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.application-arrow:hover,
.application-arrow:focus-visible,
.application-arrow:active {
  color: var(--color-brand-red);
  transform: translateY(-50%) scale(1.04);
}

.application-arrow:active {
  transform: translateY(-50%) scale(0.94);
}

.application-arrow .iconfont {
  color: currentColor;
  font-palette: --icon-arrow-muted;
  font-size: 46px;
  pointer-events: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.application-arrow:hover .iconfont,
.application-arrow:focus-visible .iconfont,
.application-arrow:active .iconfont {
  font-palette: --icon-red;
}

.application-arrow--left {
  left: calc(50% - (var(--application-feature-width) / 2) - 66px);
}

.application-arrow--right {
  right: calc(50% - (var(--application-feature-width) / 2) - 66px);
}

.application-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  height: 3px;
  margin: 56px 0 0;
  background: #eceef0;
}

.application-progress span {
  background: transparent;
  transition: background 240ms ease;
}

.application-progress .is-active {
  background: var(--color-brand-red);
}

.quote-strip {
  display: flex;
  min-height: 178px;
  align-items: center;
  justify-content: center;
  gap: 88px;
  margin-top: 64px;
  border-top: 1px solid #eceef0;
  border-bottom: 5px solid var(--color-brand-red);
}

.quote-strip p {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(24px, 1.8vw, 34px);
  font-weight: 900;
}

.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-dark);
  color: #fff;
}

.service__image img {
  width: 100%;
  height: 720px;
  object-fit: cover;
}

.service__content {
  display: flex;
  min-height: 720px;
  flex-direction: column;
  justify-content: center;
  padding: 80px min(6.25vw, 120px);
  background:
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px) 0 0 / 160px 160px,
    var(--color-dark);
}

.service__content p:not(.watermark) {
  color: rgb(255 255 255 / 72%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 4px;
  margin-top: 68px;
}

.service-grid article {
  display: grid;
  min-height: 150px;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 28px;
  padding: 32px 40px;
  background: rgb(255 255 255 / 6%);
  color: #b7b7b7;
}

.service-grid article.is-active {
  background: var(--color-brand-red);
  color: #fff;
}

.service-grid h3 {
  margin: 0;
  font-size: 24px;
}

.service-icon {
  width: 56px;
  height: 56px;
  color: currentColor;
  font-palette: --icon-muted;
  font-size: 52px;
}

.service-grid article.is-active .service-icon {
  color: #fff;
  font-palette: --icon-white;
}

.news {
  background: #fff;
}

.news__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 72px;
}

.news__grid {
  display: grid;
  grid-template-columns: 528px 1fr 400px;
  gap: 80px;
  align-items: start;
}

.featured-news {
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.featured-news__image {
  position: relative;
}

.featured-news__image img {
  width: 100%;
  aspect-ratio: 528 / 396;
  object-fit: cover;
}

.featured-news__image span {
  position: absolute;
  left: 32px;
  top: 0;
  display: grid;
  width: 60px;
  height: 64px;
  place-items: center;
  background: var(--color-brand-red);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-news__body {
  padding: 36px 40px 42px;
}

.news time,
.featured-news time {
  display: block;
  margin-bottom: 18px;
  color: var(--color-brand-red);
  font-size: 14px;
  font-weight: 900;
}

.news-list {
  display: grid;
  gap: 72px;
}

.news-list article {
  padding-bottom: 48px;
  border-bottom: 1px solid #e4e7ea;
}

.news-list p {
  margin-bottom: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-ink);
  font-weight: 900;
}

.text-link::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-brand-red);
  content: "";
}

.text-link .iconfont {
  color: currentColor;
  font-palette: --icon-ink;
  font-size: 28px;
}

.news-thumbs {
  display: grid;
  gap: 80px;
}

.news-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 10px 28px rgb(0 0 0 / 10%);
}

.site-footer {
  position: relative;
  overflow: hidden;
  min-height: 777px;
  padding-block: 80px 26px;
  background: var(--color-dark);
  color: #fff;
}

.site-footer::before {
  position: absolute;
  left: 90px;
  top: -52px;
  color: rgb(255 255 255 / 2.2%);
  font-family: var(--font-display);
  font-size: min(29vw, 560px);
  font-style: italic;
  font-weight: 900;
  line-height: 0.75;
  white-space: pre;
  content: "WEI\A   HUA";
  pointer-events: none;
}

.footer-brand-row {
  position: relative;
  z-index: 1;
}

.footer-logo {
  display: block;
  width: min(437px, 100%);
  min-height: 80px;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(130px, 1fr) minmax(130px, 1fr) minmax(300px, 350px) minmax(480px, 480px);
  gap: clamp(40px, 3.2vw, 64px);
  align-items: start;
  margin-top: 48px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.site-footer h2 {
  margin: 0 0 30px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 24px;
  font-style: italic;
  font-weight: 800;
  line-height: 36px;
  text-transform: uppercase;
}

.message-form h2 {
  color: var(--color-brand-red);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
  align-content: start;
  font-style: normal;
}

.site-footer a,
.site-footer span {
  color: #b7b7b7;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-products .is-active {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-brand-red);
}

.footer-products .is-active .iconfont {
  color: var(--color-brand-red);
  font-palette: --icon-red;
  font-size: 16px;
  line-height: 1;
}

.footer-contact {
  grid-template-rows: auto;
}

.footer-contact__email {
  color: #fff;
  font-weight: 800;
}

.footer-contact span:last-of-type {
  white-space: normal;
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 16px;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #3e4247;
  border-radius: 50%;
  color: var(--color-brand-red);
}

.footer-social a.is-active {
  border-color: rgb(206 37 30 / 60%);
}

.footer-social .iconfont {
  color: var(--color-brand-red);
  font-palette: --icon-red;
  font-size: 24px;
  line-height: 1;
}

.message-form {
  display: grid;
  gap: 12px;
}

.message-form label {
  display: grid;
  gap: 6px;
}

.message-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.message-form input,
.message-form textarea {
  width: 100%;
  border: 0;
  border-radius: 4px;
  background: #383b3e;
  color: #fff;
  padding: 14px 16px;
  font-size: 16px;
  line-height: 24px;
}

.message-form input {
  height: 52px;
}

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

.message-form input::placeholder,
.message-form textarea::placeholder {
  color: #b7b7b7;
  text-transform: uppercase;
}

.message-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  margin-top: 12px;
  border-radius: 4px;
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
}

.message-form button .iconfont {
  color: #fff;
  font-palette: --icon-white;
  font-size: 18px;
  line-height: 1;
}

.form-status {
  margin: 0;
  color: rgb(255 255 255 / 72%);
  font-size: 13px;
  line-height: 18px;
}

.floating-contact {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 120;
  display: grid;
  width: 48px;
  background: #fff;
  box-shadow: 0 12px 34px rgb(20 25 34 / 16%);
  transform: translateY(-50%);
}

.floating-contact__item,
.floating-contact__backtop {
  display: grid;
  width: 48px;
  min-height: 54px;
  place-items: center;
  align-content: center;
  gap: 3px;
  border: 0;
  border-bottom: 1px solid #e5e8ec;
  background: #fff;
  color: var(--color-brand-red);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.floating-contact__item:hover,
.floating-contact__item:focus-visible,
.floating-contact__item:active {
  background: var(--color-brand-red);
  color: #fff;
  transform: translateX(-2px);
}

.floating-contact__item--primary {
  min-height: 58px;
  background: #fff;
  color: var(--color-brand-red);
}

.floating-contact__item .iconfont,
.floating-contact__backtop .iconfont {
  color: currentColor;
  font-size: 19px;
  line-height: 1;
}

.floating-contact__item .iconfont {
  font-palette: --icon-red;
}

.floating-contact__item:hover .iconfont,
.floating-contact__item:focus-visible .iconfont,
.floating-contact__item:active .iconfont,
.floating-contact__item--primary:hover .iconfont,
.floating-contact__item--primary:focus-visible .iconfont,
.floating-contact__item--primary:active .iconfont {
  font-palette: --icon-white;
}

.floating-contact__backtop {
  min-height: 42px;
  border-bottom: 0;
  background: #f4f5f6;
  color: #333;
}

.floating-contact__backtop:hover,
.floating-contact__backtop:focus-visible {
  background: var(--color-brand-red);
  color: #fff;
}

.floating-contact__backtop .iconfont {
  font-palette: --icon-ink;
  font-size: 18px;
}

.floating-contact__backtop:hover .iconfont,
.floating-contact__backtop:focus-visible .iconfont {
  font-palette: --icon-white;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  margin-top: 24px;
  color: #999;
}

.footer-bottom::before {
  margin-right: auto;
  color: #999;
  font-size: 14px;
  line-height: 24px;
  content: "Copyright © Henan Weihua Heavy Machinery Co.,LTD. All Rights Reserved.";
}

.footer-bottom a {
  color: #999;
  font-size: 16px;
  line-height: 24px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom a:last-child {
  color: var(--color-brand-red);
}

@media (min-width: 1800px) {
  .footer-grid {
    grid-template-columns: 200px 200px 350px 480px;
    gap: 150px;
  }
}

@media (max-width: 1439px) {
  :root {
    --container: 1180px;
    --chrome-edge: 24px;
    --section-y: 88px;
  }

  .site-header {
    width: calc(100% - var(--chrome-edge) - var(--chrome-edge));
  }

  .site-header__bar {
    gap: 20px;
  }

  .brand__mark {
    width: 156px;
  }

  .primary-nav a {
    padding-inline: 10px;
    font-size: 14px;
  }

  .hero {
    min-height: 820px;
  }

  .about__grid,
  .cases__grid,
  .product-card {
    gap: 44px;
  }

  .about__grid {
    grid-template-columns: minmax(390px, 0.9fr) minmax(380px, 1fr);
  }

  .strength {
    height: 680px;
    grid-template-columns: minmax(0, 75%) minmax(280px, 25%);
  }

  .news__grid {
    grid-template-columns: 0.9fr 1fr 280px;
    gap: 42px;
  }

  .footer-grid {
    grid-template-columns: minmax(120px, 1fr) minmax(120px, 1fr) minmax(260px, 350px) minmax(420px, 480px);
    gap: clamp(32px, 3vw, 52px);
  }
}

@media (max-width: 1100px) {
  :root {
    --chrome-edge: 18px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .site-header {
    position: fixed;
    top: 16px;
    width: calc(100% - var(--chrome-edge) - var(--chrome-edge));
  }

  .site-header__bar {
    position: relative;
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 68px;
    padding-inline: 18px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav,
  .header-actions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: none;
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .primary-nav {
    flex-direction: column;
    max-height: min(68vh, 640px);
    overflow-y: auto;
    padding: 12px;
  }

  .primary-nav a {
    width: 100%;
    min-height: 44px;
    justify-content: space-between;
  }

  .nav-item,
  .submenu-item {
    width: 100%;
  }

  .submenu {
    position: static;
    min-width: 0;
    padding: 0 0 4px 16px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .submenu::before {
    content: none;
  }

  .submenu a {
    min-height: 38px;
    padding-inline: 12px;
    color: #4d535a;
    font-size: 13px;
  }

  .submenu--nested {
    padding-left: 18px;
  }

  .header-actions {
    top: calc(100% + min(68vh, 640px) + 12px);
    justify-content: flex-start;
    padding: 12px 20px 20px;
  }

  .site-header.is-open .primary-nav,
  .site-header.is-open .header-actions {
    display: flex;
  }

  .hero {
    min-height: 760px;
  }

  .hero-arrow {
    width: 46px;
    height: 46px;
  }

  .hero-arrow--left {
    left: var(--chrome-edge);
  }

  .hero-arrow--right {
    right: var(--chrome-edge);
  }

  .hero__contact {
    flex-direction: column;
    left: 24px;
    right: 24px;
    gap: 8px;
  }

  .hero__progress {
    left: 24px;
    right: 24px;
    bottom: 114px;
  }

  .about__grid,
  .product-card,
  .cases__grid,
  .service,
  .news__grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    height: clamp(380px, 52vw, 500px);
    min-height: 0;
    overflow: visible;
  }

  .about-keyword--innovation {
    left: 22%;
    top: 0;
    width: clamp(140px, 19%, 190px);
  }

  .about-keyword--smart {
    right: 4%;
    top: 0;
    width: clamp(160px, 22%, 220px);
  }

  .about-keyword--quality {
    right: 7%;
    bottom: 0;
    width: clamp(160px, 22%, 220px);
  }

  .about-keyword--craft {
    left: 4%;
    top: 42%;
    width: clamp(120px, 16%, 160px);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .strength {
    height: auto;
    grid-template-columns: 1fr;
  }

  .strength__main {
    min-height: 640px;
  }

  .strength__cards {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    min-height: 320px;
  }

  .strength-card {
    min-height: 360px;
  }

  .product-tabs {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .product-mobile-switcher {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    align-items: center;
    gap: 12px;
    width: min(calc(100% - 36px), 520px);
    margin: 28px auto 0;
    padding: 8px;
    border: 1px solid rgb(255 255 255 / 14%);
    border-radius: 8px;
    background: rgb(255 255 255 / 6%);
    backdrop-filter: blur(6px);
  }

  .product-mobile-switcher__arrow {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #fff;
  }

  .product-mobile-switcher__arrow:hover,
  .product-mobile-switcher__arrow:focus-visible,
  .product-mobile-switcher__arrow:active {
    background: var(--color-brand-red);
  }

  .product-mobile-switcher__arrow .iconfont {
    color: currentColor;
    font-palette: --icon-white;
    font-size: 28px;
    pointer-events: none;
  }

  .product-mobile-switcher__current {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
  }

  .product-mobile-switcher__current .iconfont {
    color: #fff;
    font-palette: --icon-white;
    font-size: 34px;
  }

  .products {
    --products-art-x: min(54vw, 520px);
    --products-art-size: 780px auto;
  }

  .product-stage {
    width: 100%;
    min-height: auto;
    margin-left: 0;
  }

  .product-card {
    position: relative;
    min-height: 0;
    transform: none !important;
  }

  .product-card.is-stacked {
    display: none;
  }

  .product-card[aria-hidden="true"] {
    display: none;
  }

  .product-card__body {
    padding: 20px 16px 24px;
  }

  .slider-arrow {
    display: none;
  }

  .application-carousel {
    --application-feature-width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-inline: 18px;
  }

  .application-card {
    height: clamp(260px, 70vw, 340px);
  }

  .application-card.is-left,
  .application-card.is-right {
    display: none;
  }

  .application-card.is-active {
    grid-column: 1;
  }

  .application-arrow {
    width: 46px;
    height: 46px;
  }

  .application-arrow--left {
    left: 30px;
  }

  .application-arrow--right {
    right: 30px;
  }

  .application-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px 16px;
  }

  .application-caption h3 {
    margin-bottom: 6px;
    font-size: 16px;
  }

  .application-caption p {
    font-size: 12px;
    line-height: 1.45;
  }

  .application-progress {
    margin-top: 24px;
  }

  .quote-strip {
    flex-direction: column;
    gap: 20px;
    padding: 42px 18px;
    text-align: center;
  }

  .service__image img,
  .service__content {
    min-height: auto;
    height: auto;
  }

  .news-thumbs {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 64px;
    margin-top: 72px;
  }

  .message-form {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  :root {
    --chrome-edge: 10px;
    --section-y: 64px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .watermark {
    margin-bottom: -10px;
    font-size: clamp(44px, 16vw, 70px);
  }

  .button {
    width: 100%;
  }

  .button-row {
    width: 100%;
  }

  .site-header {
    top: 10px;
    width: calc(100% - var(--chrome-edge) - var(--chrome-edge));
  }

  .floating-contact {
    display: none;
  }

  .brand__mark {
    width: 138px;
  }

  .hero {
    min-height: clamp(740px, 88svh, 780px);
    align-items: start;
    text-align: left;
  }

  .hero__content {
    padding-top: clamp(156px, 18svh, 188px);
    padding-bottom: 150px;
    padding-inline: 68px;
  }

  .hero h1,
  .hero-panel h2 {
    margin-inline: 0;
  }

  .hero__eyebrow {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero-panel > p:not(.hero__eyebrow) {
    margin-bottom: 24px;
  }

  .hero-panel .button {
    width: min(100%, 320px);
  }

  .hero__progress {
    left: var(--chrome-edge);
    right: var(--chrome-edge);
    bottom: 136px;
  }

  .hero__contact {
    left: var(--chrome-edge);
    right: var(--chrome-edge);
    bottom: 24px;
    gap: 10px;
    font-size: 14px;
    line-height: 1.4;
  }

  .about__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-visual {
    height: clamp(330px, 88vw, 400px);
    margin-top: 16px;
  }

  .about-keyword--innovation {
    left: 10%;
    top: 0;
    width: clamp(96px, 28%, 122px);
  }

  .about-keyword--smart {
    right: 0;
    top: 6%;
    width: clamp(118px, 36%, 150px);
  }

  .about-keyword--quality {
    right: 4%;
    bottom: 0;
    width: clamp(116px, 35%, 150px);
  }

  .about-keyword--craft {
    left: 2%;
    top: 44%;
    width: clamp(82px, 25%, 112px);
  }

  .about-keyword figcaption {
    font-size: clamp(22px, 8vw, 34px);
  }

  .about-keyword--quality figcaption {
    right: 0;
    left: auto;
    font-size: clamp(20px, 7vw, 30px);
  }

  .stats {
    grid-template-columns: 1fr;
    padding-block: 44px;
  }

  .strength__copy {
    left: 18px;
    right: 18px;
    bottom: 48px;
    padding-right: 0;
  }

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

  .strength-card {
    min-height: 320px;
  }

  .products__intro,
  .news__heading {
    flex-direction: column;
    align-items: stretch;
  }

  .products {
    --products-art-x: 185px;
    --products-art-size: 620px auto;
  }

  .product-card {
    padding: 10px;
  }

  .case-panel {
    padding: 34px 24px;
  }

  .case-media img {
    min-height: 320px;
  }

  .case-media__controls {
    grid-template-columns: 84px 56px 80px;
    width: 220px;
    height: 64px;
    border-radius: 24px 0 0;
  }

  .case-media__controls button .iconfont {
    font-size: 28px;
  }

  .case-media__count {
    gap: 7px;
    line-height: 28px;
  }

  .case-media__count-current,
  .case-media__count-separator {
    font-size: 24px;
  }

  .case-media__count-total {
    font-size: 18px;
  }

  .application-card--featured div {
    padding: 22px;
  }

  .service__content {
    padding: 64px 18px;
  }

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

  .service-grid article {
    grid-template-columns: 54px 1fr;
    padding: 24px;
  }

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

  .site-footer {
    min-height: auto;
    padding-block: 56px 28px;
  }

  .site-footer::before {
    left: 12px;
    top: 20px;
    font-size: 42vw;
  }

  .footer-logo {
    width: min(288px, 100%);
    min-height: auto;
  }

  .footer-grid {
    gap: 36px;
    margin-top: 56px;
    padding-bottom: 34px;
  }

  .message-form {
    grid-column: auto;
  }

  .footer-bottom {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 24px;
  }

  .footer-bottom::before {
    flex-basis: 100%;
  }
}
