/* Source: styles.css */
:root {
  --white: #ffffff;
  --gold: #c0942d;
  --header-bg: rgba(15, 21, 33, 0.25);
  --content-width: 1600px;
  --side-padding: clamp(24px, 8.333vw, 160px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #090f16;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
}

main {
  overflow: hidden;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 100svh;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero__background {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--header-bg);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
}

.header__line {
  display: block;
  width: 100%;
  height: 1px;
  flex: 0 0 1px;
}

.header__inner {
  width: min(var(--content-width), calc(100% - 64px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: block;
  width: 132px;
  height: 76px;
  flex: 0 0 132px;
}

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

.navigation {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2.604vw, 50px);
  padding-inline: 32px;
}

.navigation a,
.language {
  font-size: 16px;
  font-weight: 500;
  line-height: 22.95px;
  text-decoration: none;
  white-space: nowrap;
}

.navigation a {
  position: relative;
}

.navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease;
}

.navigation a:hover::after,
.navigation a:focus-visible::after {
  right: 0;
}

.languages {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px 8px;
  flex: 0 0 44px;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.header.is-menu-open .menu-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.header.is-menu-open .menu-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.language {
  min-width: 56px;
  height: 28px;
  padding: 2px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
}

.language--active {
  border-color: var(--gold);
}

.hero__content {
  position: absolute;
  z-index: 1;
  top: 264px;
  left: var(--side-padding);
  padding-top: 10px;
}

.hero__content h1 {
  max-width: 820px;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: 0;
}

.hero__content p {
  width: 558px;
  margin: 50px 0 0;
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
}

section.hero .hero__content.hero__content--updated {
  top: 50%;
  bottom: auto;
  left: var(--side-padding);
  width: min(760px, calc(100% - (2 * var(--side-padding))));
  padding: 0;
  text-align: left;
  transform: translateY(-50%);
}

section.hero .hero__content.hero__content--updated h1 {
  max-width: none;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 2.083vw, 40px);
  font-weight: 500;
  line-height: 1.2;
}

section.hero .hero__content.hero__content--updated p {
  width: min(680px, 100%);
  margin: 30px 0 0;
}

@media (max-width: 860px) {
  section.hero .hero__content.hero__content--updated {
    bottom: clamp(48px, 10vh, 80px);
    width: calc(100% - 48px);
  }

  section.hero .hero__content.hero__content--updated h1 {
    font-size: clamp(28px, 5vw, 34px);
  }

  section.hero .hero__content.hero__content--updated p {
    margin-top: 22px;
    font-size: clamp(17px, 3.2vw, 21px);
  }
}

@media (max-width: 560px) {
  section.hero .hero__content.hero__content--updated {
    bottom: 44px;
    width: calc(100% - 32px);
  }

  section.hero .hero__content.hero__content--updated h1 {
    font-size: 26px;
    line-height: 1.18;
  }

  section.hero .hero__content.hero__content--updated p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.35;
  }
}

.about {
  min-height: 752px;
  padding: 160px var(--side-padding) 70px;
  background: #ffffff;
  color: #0f1521;
}

.hero-cta {
  position: absolute;
  width: 100%;
  z-index: 2;
  /* left: 50%; */
  bottom: 0;
  padding: 0;
  background: white;
  /* transform: translateX(-50%); */
  display: flex;
  align-content: center;
  justify-content: center;
}

@media (max-width: 560px) {
  .hero-cta {
    /*padding: 0 20px 28px;*/
  }
}

.about__inner {
  width: min(var(--content-width), 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.188px;
  background: #ffffff;
  border: 1px solid var(--gold);
}

.section-label span {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5.745px 14.875px 7.005px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.95px;
  white-space: nowrap;
}

.about__layout {
  width: 100%;
  height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 1066.667px) minmax(0, 483px);
  gap: 50px;
}

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

.about__headline {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f1521;
  border: 1px solid #0f1521;
  color: #ffffff;
}

.about__headline h2 {
  margin: 0;
  font-size: 55px;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
}

.about__image {
  position: relative;
  overflow: hidden;
  border: 1px solid #0f1521;
}

.about__image img {
  position: absolute;
  top: 0;
  left: -2.5%;
  width: 105%;
  height: 100%;
  object-fit: cover;
}

.about__description {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
}

.about__description p {
  width: 452.377px;
  margin: 0 0 0 auto;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.about__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
}

.about__line--top {
  top: 0;
}

.about__line--bottom {
  bottom: 0;
}

.metrics-section {
  min-height: 285px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  background: #ffffff;
  color: #0f1521;
}

.marquee {
  width: 100%;
  height: 70px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gold);
}

.marquee__track {
  width: max-content;
  display: flex;
  flex: none;
  will-change: transform;
  animation: marquee-scroll 24s linear infinite;
}

.marquee__group {
  display: flex;
  flex: none;
  align-items: center;
  gap: 60px;
  padding-right: 60px;
}

.marquee__group span {
  flex: none;
  font-size: 25px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}

.metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 114px;
  white-space: nowrap;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 30px;
}

.metric-item strong {
  font-size: 70px;
  font-weight: 500;
  line-height: normal;
}

.metric-item span {
  font-size: 30px;
  font-weight: 400;
  line-height: normal;
}

.metrics-section__line {
  display: block;
  width: 100%;
  height: 1px;
}

.products-section {
  padding: 160px var(--side-padding);
  background: #ffffff;
  color: #0f1521;
}

.products-section__inner {
  width: min(var(--content-width), 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.products-section__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.products-section__header h2 {
  width: min(1319px, 100%);
  margin: 0;
  font-size: 55px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}

.products-section__catalog {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

.products-section__intro {
  width: min(1080px, 100%);
  margin: 0;
  font-size: 30px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

.products-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 280px);
  justify-content: center;
  align-items: start;
  gap: 50px;
}

.product-card {
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  text-align: center;
}

.product-card__image {
  display: block;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
}

.product-card__copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.product-card h3,
.product-card p {
  width: 100%;
  margin: 0;
}

.product-card h3 {
  font-size: 25px;
  font-weight: 500;
  line-height: 28px;
}

.product-card p {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}

.price-button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 3px 3px 3px 15px;
  overflow: hidden;
  background: #0f1521;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.95px;
  text-decoration: none;
}

.price-button span {
  padding-right: 15px;
  white-space: nowrap;
}

.price-button img {
  display: block;
  width: 38.25px;
  height: 38.25px;
  transition: transform 180ms ease;
}

.price-button:hover img,
.price-button:focus-visible img {
  transform: translateX(3px);
}

.advantages-section {
  padding: 100px var(--side-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 55px;
  background: #0f1521;
  color: #ffffff;
}

.advantages-section__header {
  width: min(var(--content-width), 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
}

.advantages-section__header h2 {
  width: min(1540px, 100%);
  margin: 0;
  font-size: 55px;
  font-weight: 500;
  line-height: normal;
}

.advantages-section__header p {
  width: min(1080px, 100%);
  margin: 0;
  font-size: 30px;
  font-weight: 400;
  line-height: normal;
}

.advantages-grid {
  width: min(var(--content-width), 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
}

.advantage-card {
  height: 190px;
  padding: 32px 38px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}

.advantage-card__heading {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.advantage-card h3,
.advantage-card p {
  margin: 0;
}

.advantage-card h3 {
  font-size: 25px;
  font-weight: 500;
  line-height: 28px;
}

.advantage-card p {
  max-width: 655px;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}

.advantage-card__heading img {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  object-fit: contain;
  transform: none;
}

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

.why-section {
  padding: 160px var(--side-padding);
  background: #ffffff;
  color: #0f1521;
}

.why-section__inner {
  width: min(var(--content-width), 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.why-section__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}

.why-section__header h2 {
  width: min(1540px, 100%);
  margin: 0;
  font-size: 55px;
  font-weight: 500;
  line-height: normal;
}

.why-carousel {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-carousel__viewport {
  width: 100%;
  overflow: hidden;
  outline: none;
}

.why-carousel__viewport:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 8px;
}

.why-carousel__track {
  display: flex;
  align-items: center;
  gap: 165px;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.why-carousel__page {
  width: 100%;
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 75px;
}

.why-card {
  position: relative;
  height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
}

.why-card__line {
  position: absolute;
  z-index: 2;
  left: 0;
  width: 100%;
  height: 1px;
}

.why-card__line--top {
  top: 0;
}

.why-card__line--bottom {
  bottom: 0;
}

.why-card__media,
.why-card__copy {
  width: 100%;
  height: 300px;
  flex: 0 0 300px;
}

.why-card__media {
  position: relative;
  overflow: hidden;
}

.why-card__crop {
  position: absolute;
  max-width: none;
}

.why-card__crop--1 {
  top: -4.36%;
  left: -9.86%;
  width: 117.67%;
  height: 113.7%;
}

.why-card__crop--2 {
  top: -2.42%;
  left: -15.5%;
  width: 115.71%;
  height: 111.8%;
}

.why-card__crop--4 {
  top: -3.25%;
  left: -0.98%;
  width: 110.22%;
  height: 106.5%;
}

.why-card__crop--6 {
  top: -7.63%;
  left: -1.69%;
  width: 113.46%;
  height: 109.75%;
}

.why-card__crop--cover {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-card__copy {
  padding: 60px 40px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.why-card h3,
.why-card p {
  margin: 0;
}

.why-card h3 {
  font-size: 25px;
  font-weight: 500;
  line-height: 28px;
}

.why-card p {
  max-width: 384px;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.why-carousel__controls {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  height: 44px;
}

.why-carousel__controls button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.why-carousel__controls button svg {
  width: 20px;
  height: 37px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 4.25;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.why-carousel__controls button:hover {
  color: #0f1521;
  transform: translateY(-2px);
}

.why-carousel__controls button:focus-visible {
  outline: 2px solid #0f1521;
  outline-offset: 4px;
}

.process-section {
  padding: 160px var(--side-padding);
  background: #ffffff;
  color: #0f1521;
}

.process-section__inner {
  width: min(var(--content-width), 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.process-section__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}

.process-section__header h2 {
  margin: 0;
  font-size: 55px;
  font-weight: 500;
  line-height: normal;
}

.process-list {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
  list-style: none;
}

.process-list__line {
  display: block;
  width: 100%;
  height: 1px;
}

.process-list li {
  width: 100%;
  min-height: 49px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 120px;
}

.process-list__number {
  font-size: 40px;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
}

.process-list__number i {
  color: var(--gold);
  font-style: normal;
}

.process-list p {
  margin: 0;
  font-size: 30px;
  font-weight: 400;
  line-height: normal;
}

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

@media (max-width: 1440px) {
  :root {
    --side-padding: clamp(48px, 5vw, 72px);
  }

  .about__layout {
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    gap: 36px;
  }

  .about__headline {
    padding: 30px;
    overflow: hidden;
  }

  .about__headline h2 {
    max-width: 100%;
    font-size: clamp(30px, 2.8vw, 40px);
    line-height: 1.08;
    white-space: normal;
  }

  .about__description p {
    width: 100%;
    font-size: 22px;
    line-height: 1.15;
  }

  .metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: calc(100% - (2 * var(--side-padding)));
    gap: 40px;
    white-space: normal;
  }

  .metric-item {
    min-width: 0;
    gap: 20px;
  }

  .metric-item strong {
    font-size: 58px;
  }

  .metric-item span {
    font-size: 24px;
    line-height: 1.15;
  }

  .products-grid {
    grid-template-columns: repeat(3, 280px);
    gap: 80px 40px;
  }
}

@media (max-width: 1200px) {
  .header__inner {
    width: calc(100% - 48px);
  }

  .navigation {
    gap: 22px;
    padding-inline: 20px;
  }

  .navigation a,
  .language {
    font-size: 14px;
  }

  .language {
    min-width: 50px;
  }

  .languages {
    gap: 10px;
  }

  .hero__content {
    top: 230px;
  }

  .hero__content h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .hero__content p {
    width: 500px;
    margin-top: 38px;
    font-size: 21px;
  }

  .about {
    min-height: auto;
    padding-block: 110px;
  }

  .about__layout {
    height: auto;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
  }

  .about__feature,
  .about__description {
    height: 360px;
  }

  .about__headline h2 {
    font-size: clamp(28px, 3.4vw, 38px);
  }

  .about__description p {
    width: calc(100% - 20px);
    font-size: clamp(18px, 2vw, 22px);
  }

  .metrics {
    gap: 32px;
  }

  .metric-item {
    gap: 18px;
  }

  .metric-item strong {
    font-size: 54px;
  }

  .metric-item span {
    font-size: 22px;
  }

  .products-section {
    padding-block: 110px;
  }

  .products-section__header h2 {
    font-size: 48px;
  }

  .products-section__intro {
    font-size: 24px;
  }

  .products-grid {
    grid-template-columns: repeat(3, 280px);
    gap: 80px 24px;
  }

  .advantages-section {
    padding-block: 110px;
    gap: 80px;
  }

  .advantages-section__header h2 {
    font-size: 48px;
  }

  .advantages-section__header p {
    font-size: 24px;
  }

  .advantage-card {
    height: 220px;
    padding: 40px;
  }

  .advantage-card p {
    font-size: 16px;
  }

  .why-section {
    padding-block: 110px;
  }

  .why-section__header h2 {
    font-size: 48px;
  }

  .why-carousel__page {
    display: contents;
  }

  .why-carousel__track {
    gap: 32px;
  }

  .why-card {
    flex: 0 0 100%;
  }

  .process-section {
    padding-block: 110px;
  }

  .process-section__inner {
    gap: 90px;
  }

  .process-section__header h2 {
    font-size: 48px;
  }

  .process-list li {
    gap: 80px;
  }

  .process-list p {
    font-size: 24px;
  }
}

@media (max-width: 1100px) {
  .about__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .about__headline {
    padding: 40px;
  }

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

  .about__description {
    height: auto;
    min-height: 250px;
    padding-block: 48px;
  }

  .about__description p {
    width: 100%;
    font-size: 22px;
    line-height: 1.25;
  }

  .metrics {
    gap: 24px;
  }

  .metric-item {
    gap: 14px;
  }

  .metric-item strong {
    font-size: 48px;
  }

  .metric-item span {
    font-size: 19px;
  }
}

@media (max-width: 860px) {
  .header {
    height: 100px;
    justify-content: flex-start;
  }

  .header__line:last-child {
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .header__inner {
    position: relative;
    width: calc(100% - 40px);
    height: 98px;
    align-items: center;
    padding-top: 0;
  }

  .logo {
    width: 104px;
    height: 60px;
    flex-basis: 104px;
  }

  .navigation {
    position: absolute;
    z-index: 20;
    top: 99px;
    left: -20px;
    width: calc(100% + 40px);
    max-height: 0;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0 20px;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(15, 21, 33, .97);
    opacity: 0;
    visibility: hidden;
    transition: max-height 260ms ease, padding 260ms ease, opacity 180ms ease, visibility 180ms ease, border-color 180ms ease;
  }

  .header.is-menu-open .navigation {
    max-height: 360px;
    padding: 20px 20px 24px;
    border-bottom-color: rgba(255, 255, 255, .45);
    opacity: 1;
    visibility: visible;
  }

  .navigation a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    font-size: 15px;
  }

  .navigation a:last-child {
    border-bottom: 0;
  }

  .navigation a::after {
    bottom: 5px;
  }

  .languages {
    margin-left: auto;
    padding-top: 0;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: 12px;
  }

  .hero__background {
    object-position: 58% center;
  }

  .hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 11, 17, 0.52) 0%, rgba(5, 11, 17, 0.12) 88%);
  }

  .hero__content {
    top: 196px;
    right: 24px;
  }

  .hero__content h1 {
    max-width: 680px;
    font-size: clamp(27px, 4.5vw, 34px);
    line-height: 1.22;
  }

  .hero__content p {
    width: min(520px, 100%);
    margin-top: 34px;
    font-size: clamp(18px, 3vw, 22px);
    line-height: 1.3;
  }

  .about {
    padding: 88px 24px;
  }

  .about__inner {
    gap: 48px;
  }

  .about__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about__feature {
    height: 360px;
  }

  .about__description {
    height: auto;
    min-height: 240px;
    padding-block: 42px;
  }

  .about__description p {
    width: 100%;
    line-height: 1.2;
  }

  .metrics-section {
    min-height: auto;
    padding-top: 88px;
    gap: 48px;
  }

  .marquee {
    height: 82px;
  }

  .marquee__track {
    animation-duration: 20s;
  }

  .marquee__group,
  .metrics {
    gap: 40px;
  }

  .marquee__group {
    padding-right: 40px;
  }

  .marquee__group span {
    font-size: 24px;
  }

  .metrics {
    display: flex;
    width: 100%;
    padding-inline: 24px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .metric-item {
    flex: 1 1 280px;
  }

  .products-section {
    padding: 88px 24px;
  }

  .products-section__inner,
  .products-section__header {
    gap: 48px;
  }

  .products-section__header h2 {
    font-size: 38px;
  }

  .products-section__catalog {
    gap: 72px;
  }

  .products-section__intro {
    font-size: 22px;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 280px));
    gap: 70px 32px;
  }

  .product-card {
    width: 100%;
    gap: 38px;
  }

  .product-card__image {
    width: min(240px, 100%);
    height: auto;
    aspect-ratio: 1;
  }

  .product-card__copy {
    gap: 20px;
  }

  .advantages-section {
    padding: 88px 24px;
    gap: 64px;
  }

  .advantages-section__header {
    gap: 48px;
  }

  .advantages-section__header h2 {
    font-size: 38px;
  }

  .advantages-section__header p {
    font-size: 22px;
  }

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

  .advantage-card {
    height: auto;
    min-height: 200px;
  }

  .why-section {
    padding: 88px 24px;
  }

  .why-section__inner,
  .why-section__header {
    gap: 64px;
  }

  .why-section__header h2 {
    font-size: 38px;
  }

  .why-carousel {
    gap: 64px;
  }

  .why-card__copy {
    padding-inline: 34px;
  }

  .process-section {
    padding: 88px 24px;
  }

  .process-section__inner {
    gap: 72px;
  }

  .process-section__header {
    gap: 48px;
  }

  .process-section__header h2 {
    font-size: 38px;
  }

  .process-list {
    gap: 38px;
  }

  .process-list li {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 30px;
  }

  .process-list__number {
    font-size: 34px;
  }

  .process-list p {
    font-size: 22px;
  }
}

@media (max-width: 560px) {
  .header__inner {
    width: calc(100% - 28px);
  }

  .navigation {
    left: -14px;
    width: calc(100% + 28px);
    gap: 0;
  }

  .navigation a {
    font-size: 15px;
  }

  .languages {
    gap: 7px;
  }

  .language {
    min-width: 43px;
    height: 25px;
    padding-inline: 6px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    margin-left: 8px;
  }

  .hero {
    min-height: 680px;
  }

  .hero__background {
    object-position: 61% center;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(5, 11, 17, 0.72) 0%, rgba(5, 11, 17, 0.22) 100%);
  }

  .hero__content {
    top: 174px;
    left: 20px;
    right: 20px;
  }

  .hero__content h1 {
    font-size: clamp(25px, 7.4vw, 31px);
  }

  .hero__content p {
    margin-top: 28px;
    font-size: clamp(17px, 5vw, 20px);
  }

  .desktop-break {
    display: none;
  }

  .about {
    padding: 72px 20px;
  }

  .about__inner {
    gap: 38px;
  }

  .section-label span {
    height: 30px;
    padding: 4px 12px;
    font-size: 14px;
  }

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

  .about__headline,
  .about__image {
    height: 300px;
  }

  .about__headline {
    justify-content: flex-start;
    padding-inline: 28px;
  }

  .about__headline h2 {
    font-size: clamp(38px, 11vw, 50px);
    line-height: 1.08;
  }

  .about__description {
    min-height: 260px;
  }

  .about__description p {
    font-size: 19px;
  }

  .metrics-section {
    padding-top: 72px;
    gap: 38px;
  }

  .marquee {
    height: 72px;
  }

  .marquee__track {
    animation-duration: 16s;
  }

  .marquee__group,
  .metrics {
    gap: 30px;
  }

  .marquee__group {
    padding-right: 30px;
  }

  .marquee__group span {
    font-size: 20px;
  }

  .metrics {
    padding-inline: 20px;
  }

  .metric-item {
    flex-basis: 100%;
    gap: 20px;
  }

  .metric-item strong {
    min-width: 104px;
    font-size: 52px;
  }

  .metric-item span {
    font-size: 20px;
  }

  .products-section {
    padding: 72px 20px;
  }

  .products-section__inner,
  .products-section__header {
    gap: 38px;
  }

  .products-section__header h2 {
    font-size: 32px;
    line-height: 1.16;
  }

  .products-section__header h2 br {
    display: none;
  }

  .products-section__catalog {
    gap: 58px;
  }

  .products-section__intro {
    font-size: 19px;
    line-height: 1.3;
  }

  .products-grid {
    grid-template-columns: 1fr;
    row-gap: 64px;
  }

  .product-card {
    max-width: 330px;
    margin-inline: auto;
  }

  .product-card__image {
    width: 260px;
  }

  .product-card h3 {
    font-size: 23px;
  }

  .product-card p {
    font-size: 17px;
  }

  .advantages-section {
    padding: 72px 20px;
    gap: 52px;
  }

  .advantages-section__header {
    gap: 38px;
  }

  .advantages-section__header h2 {
    font-size: 32px;
    line-height: 1.16;
  }

  .advantages-section__header h2 br {
    display: none;
  }

  .advantages-section__header p {
    font-size: 19px;
    line-height: 1.3;
  }

  .advantage-card {
    min-height: 220px;
    padding: 30px 26px;
    gap: 24px;
  }

  .advantage-card h3 {
    font-size: 22px;
    line-height: 26px;
  }

  .advantage-card p {
    font-size: 16px;
    line-height: 1.3;
  }

  .advantage-card__heading img {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .why-section {
    padding: 72px 20px;
  }

  .why-section__inner,
  .why-section__header {
    gap: 52px;
  }

  .why-section__header h2 {
    font-size: 32px;
    line-height: 1.16;
  }

  .why-carousel {
    gap: 52px;
  }

  .why-carousel__track {
    gap: 24px;
  }

  .why-card {
    height: 520px;
  }

  .why-card__media {
    height: 240px;
    flex-basis: 240px;
  }

  .why-card__copy {
    height: 280px;
    flex-basis: 280px;
    padding: 42px 26px 0;
    gap: 24px;
  }

  .why-card h3 {
    font-size: 22px;
    line-height: 26px;
  }

  .why-card p {
    font-size: 17px;
    line-height: 1.3;
  }

  .process-section {
    padding: 72px 20px;
  }

  .process-section__inner {
    gap: 60px;
  }

  .process-section__header {
    gap: 38px;
  }

  .process-section__header h2 {
    font-size: 32px;
    line-height: 1.16;
  }

  .process-list {
    gap: 30px;
  }

  .process-list li {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 20px;
  }

  .process-list__number {
    font-size: 29px;
  }

  .process-list p {
    font-size: 18px;
    line-height: 1.3;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .navigation a::after {
    transition: none;
  }

  .navigation,
  .menu-toggle span {
    transition: none;
  }

  .marquee__track {
    animation: none;
    transform: translateX(0);
    will-change: auto;
  }

  .why-carousel__track {
    transition: none;
  }
}

/* Source: partners.css */
.partners-section {
  overflow: hidden;
  padding: 160px 0;
  background: var(--white, #fff);
  color: #0f1521;
}

.contact-form__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.site-footer__social[aria-disabled="true"] {
  cursor: default;
}

.partners-section__content {
  width: min(var(--content-width, 1600px), calc(100% - (2 * var(--side-padding, 160px))));
  margin: 0 auto;
}

.partners-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.partners-section__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 7px 18px;
  border: 1px solid #c0942d;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.43;
  text-align: center;
}

.partners-section__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 55px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.partners-section__description {
  max-width: 1080px;
  margin: 60px auto 0;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.18;
  text-align: center;
}

.partners-strip {
  display: flex;
  width: max-content;
  margin-top: 100px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.partners-strip__cell {
  display: flex;
  flex: 0 0 320px;
  width: 320px;
  height: 200px;
  align-items: center;
  justify-content: center;
  border: 1px solid #0f1521;
}

.partners-strip__cell + .partners-strip__cell {
  margin-left: -1px;
}

.partner-logo {
  display: block;
  flex: none;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter 300ms ease;
}

.partner-logo--celanese {
  width: 250px;
  max-width: 82%;
  height: auto;
}

.partner-logo--clariant {
  width: 205px;
  height: 48px;
}

.partner-logo--humon {
  width: 170px;
  height: 54px;
}

.partner-logo--zhongtai {
  width: 205px;
  height: 53px;
}

.partner-logo--zhongtian {
  width: 250px;
  height: 55px;
}

.partners-strip__cell:hover .partner-logo,
.partners-strip__cell:focus-within .partner-logo {
  filter: grayscale(0);
}

@media (max-width: 1799px) {
  .partners-section__content {
    width: calc(100% - (2 * var(--side-padding, 72px)));
  }

  .partners-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    margin-left: 0;
    padding-inline: var(--side-padding, 72px);
    border-top: 1px solid #0f1521;
    border-bottom: 1px solid #0f1521;
    transform: none;
  }

  .partners-strip__cell {
    position: relative;
    width: auto;
    min-width: 0;
    height: 170px;
    flex-basis: auto;
    border: 0;
  }

  .partners-strip__cell:not(.partners-strip__cell--empty)::after,
  .partners-strip__cell--empty + .partners-strip__cell::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 1px;
    width: 1px;
    background: #0f1521;
  }

  .partners-strip__cell:not(.partners-strip__cell--empty)::after {
    right: -1px;
  }

  .partners-strip__cell--empty + .partners-strip__cell::before {
    left: 0;
  }

  .partners-strip__cell--empty {
    display: none;
  }

  .partner-logo--zhongtian {
    transform: scale(.84);
  }

  .partner-logo--clariant,
  .partner-logo--zhongtai {
    transform: scale(.9);
  }
}

@media (max-width: 1200px) {
  .partners-section {
    padding: 120px 0;
  }

  .partners-section__content {
    width: calc(100% - 96px);
  }

  .partners-section__title {
    font-size: 48px;
  }

  .partners-section__description {
    font-size: 25px;
  }

  .partners-strip__cell {
    width: auto;
    height: 160px;
    flex-basis: auto;
  }
}

@media (max-width: 860px) {
  .partners-section {
    padding: 96px 0;
  }

  .partners-section__content {
    width: calc(100% - 48px);
  }

  .partners-section__header {
    gap: 40px;
  }

  .partners-section__title {
    font-size: 40px;
  }

  .partners-section__description {
    margin-top: 40px;
    font-size: 22px;
    line-height: 1.3;
  }

  .partners-section__description br {
    display: none;
  }

  .partners-strip {
    display: flex;
    width: 100%;
    margin-top: 64px;
    margin-left: 0;
    padding: 0 24px 12px;
    transform: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .partners-strip__cell {
    flex-basis: 240px;
    width: 240px;
    height: 150px;
    scroll-snap-align: start;
  }

  .partners-strip__cell--empty {
    display: none;
  }

  .partner-logo--zhongtian {
    transform: scale(.82);
  }

  .partner-logo--clariant,
  .partner-logo--zhongtai {
    transform: scale(.88);
  }
}

@media (max-width: 560px) {
  .partners-section {
    padding: 72px 0;
  }

  .partners-section__content {
    width: calc(100% - 40px);
  }

  .partners-section__label {
    min-height: 38px;
    padding: 6px 14px;
    font-size: 14px;
  }

  .partners-section__title {
    font-size: 32px;
    line-height: 1.08;
  }

  .partners-section__description {
    font-size: 18px;
  }

  .partners-strip {
    margin-top: 48px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .partners-strip__cell {
    flex-basis: 220px;
    width: 220px;
    height: 138px;
  }
}

/* Source: contact.css */
.contact-section {
  padding: 160px var(--side-padding, 160px);
  background: var(--white, #fff);
  color: #0f1521;
}

.contact-form {
  display: grid;
  grid-template-columns: 650px minmax(0, 790px);
  grid-template-rows: minmax(630px, auto);
  column-gap: 160px;
  width: min(var(--content-width, 1600px), 100%);
  margin: 0 auto;
}

.contact-form__copy {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

.contact-form__label {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 7px 18px;
  border: 1px solid #c0942d;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.43;
}

.contact-form__title {
  margin: 60px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 55px;
  font-weight: 500;
  line-height: 1;
}

.contact-form__description {
  max-width: 651px;
  margin: 60px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.08;
}

.contact-form__fields {
  display: flex;
  grid-column: 2;
  grid-row: 1;
  flex-direction: column;
  gap: 20px;
}

.contact-form__field {
  display: block;
}

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

.contact-form__field input,
.contact-form__field textarea {
  display: block;
  width: 100%;
  border: 1px solid #0f1521;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #0f1521;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form__field input {
  height: 75px;
  padding: 0 25px;
}

.contact-form__field textarea {
  min-height: 232px;
  padding: 24px 25px;
  resize: vertical;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #0f1521;
  opacity: 1;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: #c0942d;
  box-shadow: inset 0 0 0 1px #c0942d;
}

.contact-form__field input:user-invalid,
.contact-form__field textarea:user-invalid {
  border-color: #9f3027;
}

.contact-form__field input.is-invalid,
.contact-form__field textarea.is-invalid {
  border-color: #9f3027;
  box-shadow: inset 0 0 0 1px #9f3027;
}

.contact-form__field-error {
  display: block;
  min-height: 18px;
  margin-top: 7px;
  color: #9f3027;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.contact-form__field-error:empty {
  display: none;
}

.contact-form__footer {
  display: flex;
  position: relative;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  align-items: center;
  gap: 20px;
  min-height: 42px;
}

.price-button,
.contact-form__submit {
  display: inline-flex;
  flex: none;
  min-height: 44px;
  align-items: center;
  padding: 3px 3px 3px 15px;
  border: 0;
  border-radius: 0;
  background: #0f1521;
  color: #fff;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.95px;
  text-decoration: none;
  transition: background-color 180ms ease;
}

.price-button span,
.contact-form__submit span {
  padding-right: 15px;
  white-space: nowrap;
}

.price-button img,
.contact-form__submit img {
  display: block;
  width: 38.25px;
  height: 38.25px;
  margin-left: 0;
  transition: transform 180ms ease;
}

.price-button:hover,
.price-button:focus-visible,
.contact-form__submit:hover:not(:disabled),
.contact-form__submit:focus-visible {
  background: #c0942d;
}

.price-button:hover img,
.price-button:focus-visible img,
.contact-form__submit:hover:not(:disabled) img,
.contact-form__submit:focus-visible img {
  transform: none;
}

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

.contact-form__submit:disabled {
  cursor: wait;
  opacity: .72;
}

.contact-form__agreement {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.43;
}

.contact-form__agreement a {
  color: inherit;
  font-weight: 500;
  text-decoration: none;
}

.contact-form__agreement a:hover {
  color: #c0942d;
}

.contact-form__status {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  margin: 0;
  color: #0f1521;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.contact-form__status.is-success {
  color: #39753f;
}

.contact-form__status.is-error {
  color: #9f3027;
}

.privacy-modal {
  width: min(760px, calc(100% - 48px));
  max-width: none;
  padding: 0;
  overflow: visible;
  border: 1px solid #c0942d;
  background: #fff;
  color: #0f1521;
  box-shadow: 0 32px 90px rgba(4, 9, 16, .32);
}

.privacy-modal::backdrop {
  background: rgba(15, 21, 33, .68);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.privacy-modal[open] {
  animation: privacy-modal-in 220ms ease-out;
}

.privacy-modal__panel {
  position: relative;
  padding: 64px 58px 66px;
}

.privacy-modal__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 5px;
  background: #c0942d;
}

.privacy-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #0f1521;
  background: transparent;
  color: #0f1521;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.privacy-modal__close span {
  position: absolute;
  top: 19px;
  left: 10px;
  width: 20px;
  height: 1px;
  background: currentColor;
}

.privacy-modal__close span:first-child {
  transform: rotate(45deg);
}

.privacy-modal__close span:last-child {
  transform: rotate(-45deg);
}

.privacy-modal__close:hover,
.privacy-modal__close:focus-visible {
  border-color: #c0942d;
  background: #c0942d;
  color: #fff;
}

.privacy-modal__close:focus-visible {
  outline: 2px solid #c0942d;
  outline-offset: 4px;
}

.privacy-modal__label {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 5px 13px;
  border: 1px solid #c0942d;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.privacy-modal__title {
  max-width: calc(100% - 36px);
  margin: 38px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.12;
}

.privacy-modal__text {
  margin: 30px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

@keyframes privacy-modal-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }

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

@media (max-width: 1400px) {
  .contact-form {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    grid-template-rows: minmax(600px, auto);
    column-gap: 60px;
  }

  .contact-form__title {
    margin-top: 44px;
    font-size: 44px;
    line-height: 1.05;
  }

  .contact-form__description {
    margin-top: 44px;
    font-size: 22px;
    line-height: 1.25;
  }

  .contact-form__field input,
  .contact-form__field textarea {
    font-size: 22px;
  }

  .contact-form__field input {
    height: 68px;
  }

  .contact-form__field textarea {
    min-height: 208px;
  }

  .contact-form__footer {
    gap: 16px;
  }

  .contact-form__agreement {
    font-size: 13px;
  }
}

@media (max-width: 1200px) {
  .contact-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .contact-form {
    grid-template-rows: minmax(570px, auto);
    column-gap: 56px;
  }

  .contact-form__title {
    font-size: 40px;
  }

  .contact-form__description {
    font-size: 21px;
  }

  .contact-form__field input,
  .contact-form__field textarea {
    font-size: 21px;
  }

  .contact-form__field input {
    height: 66px;
  }

  .contact-form__field textarea {
    min-height: 210px;
  }

  .contact-form__agreement {
    font-size: 13px;
  }
}

@media (max-width: 1100px) {
  .contact-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 56px;
  }

  .contact-form__copy {
    max-width: 720px;
  }

  .contact-form__title {
    font-size: 44px;
  }

  .contact-form__description {
    max-width: 680px;
    font-size: 22px;
  }

  .contact-form__footer {
    align-self: stretch;
    flex-wrap: wrap;
  }

  .contact-form__status {
    position: static;
    flex-basis: 100%;
  }
}

@media (max-width: 860px) {
  .contact-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 56px;
  }

  .contact-form__title {
    margin-top: 40px;
    font-size: 40px;
  }

  .contact-form__description {
    max-width: 680px;
    margin-top: 40px;
    line-height: 1.25;
  }

  .contact-form__footer {
    align-self: stretch;
    flex-wrap: wrap;
  }

  .contact-form__status {
    position: static;
    flex-basis: 100%;
  }
}

@media (max-width: 560px) {
  .contact-section {
    padding: 72px 20px;
  }

  .contact-form {
    gap: 44px;
  }

  .contact-form__label {
    min-height: 38px;
    padding: 6px 14px;
    font-size: 14px;
  }

  .contact-form__title {
    font-size: 34px;
    line-height: 1.06;
  }

  .contact-form__description {
    font-size: 18px;
  }

  .contact-form__fields {
    gap: 14px;
  }

  .contact-form__field input,
  .contact-form__field textarea {
    padding-right: 18px;
    padding-left: 18px;
    font-size: 18px;
  }

  .contact-form__field input {
    height: 58px;
  }

  .contact-form__field textarea {
    min-height: 170px;
    padding-top: 18px;
  }

  .contact-form__footer {
    align-items: flex-start;
    gap: 16px;
  }

  .contact-form__agreement {
    font-size: 12px;
  }

  .privacy-modal {
    width: calc(100% - 32px);
  }

  .privacy-modal__panel {
    padding: 54px 24px 38px;
  }

  .privacy-modal__close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .privacy-modal__close span {
    top: 17px;
    left: 9px;
    width: 18px;
  }

  .privacy-modal__title {
    margin-top: 30px;
    font-size: 28px;
  }

  .privacy-modal__text {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .price-button,
  .contact-form__submit,
  .price-button img,
  .contact-form__submit img,
  .contact-form__field input,
  .contact-form__field textarea,
  .privacy-modal__close {
    transition: none;
  }

  .privacy-modal[open] {
    animation: none;
  }
}

/* Source: footer.css */
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  padding: 160px var(--side-padding, 160px) 30px;
  background: #0f1521;
  color: #fff;
}

.site-footer__content {
  display: grid;
  grid-template-columns: 211px 330px 215px 54px 610px 180px;
  width: min(var(--content-width, 1600px), 100%);
  min-height: 179px;
}

.site-footer__brand {
  display: block;
  grid-column: 1;
  align-self: start;
  width: 211px;
  height: 121px;
}

.site-footer__brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__nav {
  display: flex;
  grid-column: 3;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.site-footer__nav a,
.site-footer__contacts a {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer__nav a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.43;
}

.site-footer__nav a:hover,
.site-footer__contacts a:hover {
  color: #c0942d;
}

.site-footer__contacts {
  display: flex;
  grid-column: 5;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__contacts h2 {
  margin: 0 0 21px;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 28px;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 26px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.43;
}

.site-footer__contact span {
  font-weight: 300;
  opacity: .72;
}

.site-footer__contact a {
  font-weight: 400;
}

.site-footer__socials {
  display: flex;
  grid-column: 6;
  align-items: flex-start;
  justify-content: flex-end;
  /*gap: 20px;*/
}

.site-footer__social {
  display: block;
  width: 30px;
  height: 30px;
  opacity: .78;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-footer__social img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__social:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.site-footer__social:focus-visible {
  outline: 2px solid #c0942d;
  outline-offset: 4px;
  opacity: 1;
}

.site-footer__legal {
  width: min(var(--content-width, 1600px), 100%);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.43;
  text-align: center;
}

.site-footer__legal p {
  margin: 0;
}

@media (max-width: 1919px) {
  .site-footer__content {
    grid-template-columns: 211px minmax(80px, 1fr) 180px minmax(60px, .35fr) minmax(250px, 1fr) 180px;
  }
}

@media (max-width: 1200px) {
  .site-footer {
    gap: 80px;
    padding-top: 120px;
  }

  .site-footer__content {
    grid-template-columns: 180px minmax(60px, 1fr) 170px minmax(50px, .5fr) minmax(220px, 1fr);
  }

  .site-footer__brand {
    width: 180px;
    height: 104px;
  }

  .site-footer__socials {
    grid-column: 5;
    align-self: end;
    justify-content: flex-start;
  }

  .site-footer__legal {
    font-size: 14px;
  }
}

@media (max-width: 860px) {
  .site-footer {
    gap: 64px;
    padding-top: 96px;
  }

  .site-footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 56px 40px;
  }

  .site-footer__brand,
  .site-footer__nav,
  .site-footer__contacts,
  .site-footer__socials {
    grid-column: auto;
  }

  .site-footer__content,
  .site-footer__brand,
  .site-footer__nav,
  .site-footer__contacts,
  .site-footer__socials {
    align-self: start;
  }
}

@media (max-width: 560px) {
  .site-footer {
    align-items: flex-start;
    gap: 56px;
    padding: 72px 20px 24px;
  }

  .site-footer__content {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .site-footer__brand {
    width: 170px;
    height: 98px;
  }

  .site-footer__contacts h2 {
    margin-bottom: 20px;
  }

  .site-footer__socials {
    align-self: start;
  }

  .site-footer__legal {
    font-size: 12px;
    text-align: left;
  }

  .site-footer__legal p + p {
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__nav a,
  .site-footer__contacts a,
  .site-footer__social {
    transition: none;
  }
}

/* Source: compact.css */
/* Compact responsive layer for laptops, scaled displays and smaller screens. */

@media (min-width: 861px) and (max-width: 1799px) {
  :root {
    --side-padding: clamp(56px, 6vw, 108px);
  }

  .header {
    height: 108px;
  }

  .logo {
    width: 100px;
    height: 58px;
    flex-basis: 100px;
  }

  .navigation {
    gap: clamp(24px, 2vw, 34px);
    padding-inline: 24px;
  }

  .navigation a,
  .language {
    font-size: 14px;
    line-height: 20px;
  }

  .languages {
    gap: 12px;
  }

  .language {
    min-width: 48px;
    height: 26px;
    padding: 2px 8px;
  }

  section.hero .hero__content.hero__content--updated {
    bottom: clamp(72px, 11vh, 118px);
    width: min(880px, calc(100% - 64px));
  }

  section.hero .hero__content.hero__content--updated h1 {
    font-size: clamp(32px, 2.15vw, 36px);
  }

  section.hero .hero__content.hero__content--updated p {
    width: min(720px, 100%);
    margin-top: 22px;
    font-size: clamp(18px, 1.3vw, 21px);
  }

  .hero-cta {
    /*padding-bottom: 30px;*/
  }

  .about {
    min-height: 0;
    padding-top: 110px;
    padding-bottom: 56px;
  }

  .about__inner {
    gap: 42px;
  }

  .about__layout,
  .about__feature,
  .about__description {
    height: 350px;
  }

  .about__layout {
    grid-template-columns: minmax(0, 2.15fr) minmax(320px, .85fr);
    gap: 40px;
  }

  .about__headline h2 {
    font-size: 44px;
    line-height: 1.05;
  }

  .about__description p {
    width: 100%;
    font-size: 20px;
    line-height: 1.18;
  }

  .metrics-section {
    min-height: 240px;
    gap: 36px;
  }

  .marquee {
    height: 60px;
    margin-bottom: 6px;
  }

  .marquee__group span {
    font-size: 21px;
  }

  .metrics {
    width: min(1320px, calc(100% - (2 * var(--side-padding))));
    gap: clamp(54px, 6vw, 96px);
  }

  .metric-item {
    gap: 22px;
  }

  .metric-item strong {
    font-size: 52px;
  }

  .metric-item span {
    font-size: 20px;
    line-height: 1.15;
  }

  .products-section,
  .advantages-section,
  .why-section,
  .process-section {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .products-section__inner,
  .why-section__inner,
  .process-section__inner {
    gap: 66px;
  }

  .products-section__header,
  .advantages-section__header,
  .why-section__header,
  .process-section__header {
    gap: 36px;
  }

  .products-section__header h2,
  .advantages-section__header h2,
  .why-section__header h2,
  .process-section__header h2 {
    font-size: 44px;
    line-height: 1.08;
  }

  .products-section__catalog {
    gap: 44px;
  }

  .products-section__intro,
  .advantages-section__header p {
    max-width: 940px;
    font-size: 21px;
    line-height: 1.28;
  }

  .products-grid {
    align-items: start;
    gap: clamp(20px, 2vw, 34px);
  }

  .product-card {
    width: 100%;
    height: auto;
    min-width: 0;
  }

  .product-card__image {
    width: min(100%, 240px);
    height: auto;
    aspect-ratio: 1;
    margin-inline: auto;
  }

  .product-card__copy {
    width: 100%;
    margin-top: 22px;
    gap: 10px;
  }

  .product-card h3 {
    font-size: 20px;
    line-height: 1.2;
  }

  .product-card p {
    font-size: 15px;
    line-height: 1.35;
  }

  .advantages-section {
    gap: 44px;
  }

  .advantages-grid {
    gap: 1px;
  }

  .advantage-card {
    height: 200px;
    min-height: 200px;
    padding: 28px 32px;
    gap: 18px;
  }

  .advantage-card h3 {
    font-size: 21px;
    line-height: 1.18;
  }

  .advantage-card p {
    font-size: 16px;
    line-height: 1.35;
  }

  .advantage-card__heading img {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .why-carousel {
    height: auto;
    gap: 28px;
  }

  .why-carousel__viewport,
  .why-carousel__page,
  .why-card {
    height: 560px;
  }

  .why-card__media,
  .why-card__copy {
    height: 50%;
    min-height: 0;
    flex: 0 0 50%;
  }

  .why-card__copy {
    padding: 30px;
  }

  .why-card h3 {
    font-size: 21px;
    line-height: 1.2;
  }

  .why-card p {
    font-size: 16px;
    line-height: 1.35;
  }

  .why-carousel__controls {
    margin-top: 0;
  }

  .process-list {
    height: auto;
  }

  .process-list li {
    min-height: 112px;
    padding-block: 22px;
  }

  .process-list__number {
    font-size: 32px;
  }

  .process-list p {
    font-size: 22px;
    line-height: 1.25;
  }

  .partners-section {
    min-height: 0;
    padding-top: 110px;
  }

  .partners-section__content {
    padding-bottom: 76px;
  }

  .partners-section__title {
    font-size: 44px;
    line-height: 1.05;
  }

  .partners-section__description {
    margin-top: 44px;
    font-size: 21px;
    line-height: 1.3;
  }

  .partners-strip,
  .partners-strip__cell {
    height: 132px;
    min-height: 132px;
  }

  .partner-logo {
    max-width: 68%;
    max-height: 48px;
  }

  .contact-section {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .contact-form {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    grid-template-rows: auto;
    column-gap: 56px;
    min-height: 0;
  }

  .contact-form__title {
    margin-top: 42px;
    font-size: 44px;
    line-height: 1.04;
  }

  .contact-form__description {
    margin-top: 38px;
    font-size: 20px;
    line-height: 1.28;
  }

  .contact-form__fields {
    gap: 14px;
  }

  .contact-form__field input,
  .contact-form__field textarea {
    font-size: 18px;
  }

  .contact-form__field input {
    height: 58px;
  }

  .contact-form__field textarea {
    min-height: 174px;
    padding-top: 18px;
  }

  .contact-form__footer {
    gap: 16px;
  }

  .site-footer {
    min-height: 400px;
    height: auto;
    padding: 64px var(--side-padding) 28px;
  }

  .site-footer__content {
    min-height: 260px;
  }

  .site-footer__brand {
    width: 120px;
  }

  .site-footer__contacts h2 {
    font-size: 21px;
  }

  .site-footer__contact,
  .site-footer__nav a,
  .site-footer__contacts a {
    font-size: 14px;
  }

  .site-footer__social {
    width: 38px;
    height: 38px;
  }
}

@media (min-width: 1280px) and (max-width: 1799px) {
  .products-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1101px) and (max-width: 1440px) {
  :root {
    --side-padding: clamp(48px, 5vw, 72px);
  }

  .header {
    height: 94px;
  }

  .logo {
    width: 88px;
    height: 51px;
    flex-basis: 88px;
  }

  .navigation {
    gap: clamp(18px, 1.65vw, 24px);
    padding-inline: 18px;
  }

  .navigation a,
  .language {
    font-size: 13px;
  }

  .languages {
    gap: 8px;
  }

  .language {
    min-width: 43px;
    height: 25px;
    padding-inline: 6px;
  }

  section.hero .hero__content.hero__content--updated {
    bottom: clamp(62px, 10vh, 82px);
    width: min(780px, calc(100% - 56px));
  }

  section.hero .hero__content.hero__content--updated h1 {
    font-size: 30px;
  }

  section.hero .hero__content.hero__content--updated p {
    width: min(650px, 100%);
    font-size: 18px;
  }

  .about {
    padding-top: 86px;
    padding-bottom: 48px;
  }

  .about__inner {
    gap: 36px;
  }

  .about__layout,
  .about__feature,
  .about__description {
    height: 310px;
  }

  .about__layout {
    gap: 32px;
  }

  .about__headline h2 {
    font-size: 36px;
  }

  .about__description p {
    font-size: 18px;
  }

  .metrics-section {
    min-height: 214px;
    gap: 30px;
  }

  .marquee {
    height: 54px;
  }

  .marquee__group span {
    font-size: 18px;
  }

  .metric-item strong {
    font-size: 44px;
  }

  .metric-item span {
    font-size: 17px;
  }

  .products-section,
  .advantages-section,
  .why-section,
  .process-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .products-section__inner,
  .why-section__inner,
  .process-section__inner,
  .advantages-section {
    gap: 36px;
  }

  .products-section__header h2,
  .advantages-section__header h2,
  .why-section__header h2,
  .process-section__header h2 {
    font-size: 38px;
  }

  .products-section__intro,
  .advantages-section__header p {
    max-width: 820px;
    font-size: 18px;
  }

  .product-card__image {
    max-width: 218px;
  }

  .product-card h3 {
    font-size: 18px;
  }

  .product-card p {
    font-size: 14px;
  }

  .advantage-card {
    height: 175px;
    min-height: 175px;
    padding: 23px 27px;
    gap: 16px;
  }

  .why-carousel__viewport,
  .why-carousel__page,
  .why-card {
    height: 500px;
  }

  .why-card__copy {
    padding: 25px;
  }

  .process-list li {
    min-height: 94px;
    padding-block: 18px;
  }

  .process-list__number {
    font-size: 29px;
  }

  .process-list p {
    font-size: 18px;
  }

  .partners-section {
    padding-top: 86px;
  }

  .partners-section__content {
    padding-bottom: 60px;
  }

  .partners-section__title {
    font-size: 38px;
  }

  .partners-section__description {
    margin-top: 34px;
    font-size: 18px;
  }

  .partners-strip,
  .partners-strip__cell {
    height: 118px;
    min-height: 118px;
  }

  .contact-section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .contact-form__title {
    font-size: 38px;
  }

  .contact-form__description {
    font-size: 18px;
  }

  .contact-form__field input,
  .contact-form__field textarea {
    font-size: 17px;
  }

  .contact-form__field input {
    height: 54px;
  }

  .contact-form__field textarea {
    min-height: 154px;
  }

  .site-footer {
    min-height: 350px;
    padding-top: 52px;
  }

  .site-footer__content {
    min-height: 230px;
  }
}

@media (min-width: 861px) and (max-width: 1279px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 42px;
  }
}

@media (max-width: 1100px) {
  :root {
    --side-padding: clamp(32px, 5vw, 52px);
  }

  .header {
    height: 88px;
    justify-content: flex-start;
  }

  .header__inner {
    position: relative;
    width: calc(100% - (2 * var(--side-padding)));
    height: 87px;
  }

  .header__line:last-child {
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .logo {
    width: 82px;
    height: 48px;
    flex-basis: 82px;
  }

  .navigation {
    position: absolute;
    top: 87px;
    left: 50%;
    width: 100vw;
    max-height: 0;
    padding: 0 var(--side-padding);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(15, 21, 33, .98);
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    transform: translateX(-50%);
    transition: max-height 220ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  .header.is-menu-open .navigation {
    max-height: 360px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .navigation a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    font-size: 14px;
  }

  .navigation a:last-child {
    border-bottom: 0;
  }

  .navigation a::after {
    display: none;
  }

  .languages {
    margin-left: auto;
    gap: 8px;
  }

  .language {
    min-width: 42px;
    height: 25px;
    font-size: 12px;
  }

  .menu-toggle {
    display: flex;
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    margin-left: 12px;
  }

  section.hero .hero__content.hero__content--updated {
    bottom: clamp(54px, 8vh, 72px);
    width: calc(100% - (2 * var(--side-padding)));
  }

  section.hero .hero__content.hero__content--updated h1 {
    font-size: clamp(27px, 3.7vw, 31px);
  }

  section.hero .hero__content.hero__content--updated p {
    width: min(620px, 100%);
    font-size: clamp(16px, 2.4vw, 18px);
  }

  .about {
    padding: 72px var(--side-padding) 46px;
  }

  .about__inner {
    gap: 34px;
  }

  .about__layout {
    height: auto;
    gap: 30px;
  }

  .about__feature {
    height: 300px;
  }

  .about__description {
    height: auto;
    min-height: 180px;
  }

  .about__headline h2 {
    font-size: 34px;
  }

  .about__description p {
    font-size: 18px;
  }

  .metrics-section {
    min-height: 210px;
    gap: 28px;
  }

  .marquee {
    height: 52px;
  }

  .marquee__group span {
    font-size: 17px;
  }

  .metrics {
    width: calc(100% - (2 * var(--side-padding)));
  }

  .metric-item strong {
    font-size: 40px;
  }

  .metric-item span {
    font-size: 15px;
  }

  .products-section,
  .advantages-section,
  .why-section,
  .process-section {
    padding: 72px var(--side-padding);
  }

  .products-section__inner,
  .why-section__inner,
  .process-section__inner,
  .advantages-section {
    gap: 36px;
  }

  .products-section__header h2,
  .advantages-section__header h2,
  .why-section__header h2,
  .process-section__header h2 {
    font-size: 34px;
  }

  .products-section__intro,
  .advantages-section__header p {
    font-size: 17px;
  }

  .product-card__image {
    max-width: 220px;
  }

  .advantage-card {
    height: 185px;
    min-height: 185px;
    padding: 22px 24px;
    gap: 16px;
  }

  .why-carousel__viewport,
  .why-carousel__page,
  .why-card {
    height: 460px;
  }

  .process-list li {
    min-height: 88px;
    padding-block: 16px;
  }

  .process-list p {
    font-size: 17px;
  }

  .partners-section {
    padding-top: 72px;
  }

  .partners-section__content {
    padding-bottom: 48px;
  }

  .partners-section__title,
  .contact-form__title {
    font-size: 34px;
  }

  .partners-section__description,
  .contact-form__description {
    font-size: 17px;
  }

  .partners-strip,
  .partners-strip__cell {
    height: 108px;
    min-height: 108px;
  }

  .contact-section {
    padding: 72px var(--side-padding);
  }

  .contact-form {
    gap: 40px;
  }

  .contact-form__title {
    margin-top: 34px;
  }

  .contact-form__description {
    margin-top: 30px;
  }

  .contact-form__field input {
    height: 54px;
  }

  .contact-form__field textarea {
    min-height: 150px;
  }

  .site-footer {
    min-height: 0;
    padding: 52px var(--side-padding) 26px;
  }

  .site-footer__content {
    min-height: 0;
  }
}

@media (max-width: 860px) {
  :root {
    --side-padding: clamp(20px, 5vw, 38px);
  }

  .header,
  .header__inner {
    height: 82px;
  }

  .header__inner {
    width: calc(100% - (2 * var(--side-padding)));
  }

  .navigation {
    top: 81px;
  }

  .about,
  .products-section,
  .advantages-section,
  .why-section,
  .process-section,
  .contact-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about__headline h2,
  .products-section__header h2,
  .advantages-section__header h2,
  .why-section__header h2,
  .process-section__header h2,
  .partners-section__title,
  .contact-form__title {
    font-size: clamp(29px, 5vw, 34px);
  }

  .products-section__inner,
  .products-section__catalog,
  .why-section__inner,
  .process-section__inner,
  .advantages-section {
    gap: 42px;
  }

  .product-card {
    height: auto;
  }

  .product-card__image {
    width: min(100%, 250px);
    height: auto;
    aspect-ratio: 1;
    margin-inline: auto;
  }

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

  .product-card h3 {
    font-size: 18px;
  }

  .product-card p {
    font-size: 14px;
    line-height: 1.35;
  }

  .advantage-card {
    min-height: 180px;
    padding: 22px;
    gap: 16px;
  }

  .advantage-card h3 {
    font-size: 19px;
  }

  .advantage-card p {
    font-size: 15px;
  }

  .why-carousel__viewport,
  .why-carousel__page,
  .why-card {
    height: 420px;
  }

  .why-carousel {
    height: auto;
    gap: 24px;
  }

  .why-card__media,
  .why-card__copy {
    height: 50%;
    min-height: 0;
    flex: 0 0 50%;
  }

  .why-carousel__controls {
    margin-top: 0;
  }

  .why-card__copy {
    padding: 22px;
  }

  .why-card h3 {
    font-size: 19px;
  }

  .why-card p {
    font-size: 15px;
  }

  .process-list__number {
    font-size: 26px;
  }

  .process-list p {
    font-size: 16px;
  }

  .partners-section {
    padding-top: 64px;
  }

  .partners-section__content {
    padding-bottom: 42px;
  }

  .partners-strip {
    display: flex;
    height: 116px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .partners-strip::-webkit-scrollbar {
    display: none;
  }

  .partners-strip__cell {
    flex: 0 0 min(44vw, 190px);
    width: min(44vw, 190px);
    height: 116px;
    min-height: 116px;
    scroll-snap-align: start;
  }

  .partners-strip__cell--empty {
    display: none;
  }

  .partner-logo {
    max-width: 72%;
    max-height: 46px;
  }

  .contact-form {
    gap: 36px;
  }

  .contact-form__field input,
  .contact-form__field textarea {
    font-size: 16px;
  }

  .contact-form__field input {
    height: 52px;
  }

  .contact-form__field textarea {
    min-height: 140px;
  }

  .site-footer {
    padding-top: 48px;
    padding-bottom: 24px;
  }
}

@media (max-width: 560px) {
  section.hero .hero__content.hero__content--updated {
    bottom: 38px;
  }

  section.hero .hero__content.hero__content--updated h1 {
    font-size: 23px;
  }

  section.hero .hero__content.hero__content--updated p {
    margin-top: 16px;
    font-size: 15px;
  }

  .about__feature {
    height: auto;
  }

  .about__headline,
  .about__image {
    min-height: 210px;
  }

  .metrics {
    gap: 14px;
  }

  .metric-item strong {
    font-size: 34px;
  }

  .metric-item span {
    font-size: 14px;
  }

  .products-grid {
    row-gap: 34px;
  }

  .product-card__image {
    max-width: 230px;
  }

  .why-carousel__viewport,
  .why-carousel__page,
  .why-card {
    height: 390px;
  }

  .contact-form__footer {
    gap: 14px;
  }

  .site-footer__brand {
    width: 104px;
  }
}

@media (min-width: 861px) and (max-height: 800px) {
  .header {
    height: 88px;
  }

  section.hero .hero__content.hero__content--updated {
    bottom: 52px;
  }

  .about,
  .products-section,
  .advantages-section,
  .why-section,
  .process-section,
  .contact-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .partners-section {
    padding-top: 72px;
  }
}

/* Compact process route */
.process-section {
  padding-block: clamp(76px, 7vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(192, 148, 45, .13), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f5ef 100%);
}

.process-section__inner {
  gap: clamp(48px, 5vw, 76px);
}

.process-list {
  position: relative;
  height: auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.process-list::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 27px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, rgba(192, 148, 45, .4), var(--gold), rgba(192, 148, 45, .4));
}

.process-list__line {
  display: none;
}

.process-list li {
  position: relative;
  z-index: 1;
  width: auto;
  min-height: 0;
  padding: 0 clamp(12px, 1.3vw, 26px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  transition: transform 220ms ease;
}

.process-list__number {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(192, 148, 45, .72);
  border-radius: 50%;
  background: #0f1521;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 56px;
  font-size: 17px;
  letter-spacing: .04em;
  box-shadow: 0 0 0 8px #f8f6f1;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.process-list p {
  max-width: 300px;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.42;
}

.process-list li:hover {
  transform: translateY(-5px);
}

.process-list li:hover .process-list__number {
  border-color: var(--gold);
  background: var(--gold);
}

.process-list li:hover .process-list__number i {
  color: #ffffff;
}

@media (max-width: 1100px) {
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .process-list::before {
    display: none;
  }

  .process-list li {
    min-height: 142px;
    padding: 22px;
    border: 1px solid rgba(15, 21, 33, .16);
    border-top: 3px solid var(--gold);
    background: rgba(255, 255, 255, .78);
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    text-align: left;
  }

  .process-list__number {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    box-shadow: none;
    font-size: 15px;
  }

  .process-list p {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .process-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-list li {
    min-height: 0;
    padding: 18px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 15px;
  }

  .process-list__number {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .navigation {
    transition: none;
  }
}
section.hero .hero__content.hero__content--updated {
  top: 50%;
  bottom: auto;
  left: var(--side-padding);
  text-align: left;
  transform: translateY(-50%);
}

section.hero .hero__content.hero__content--updated p {
  margin-left: 0;
  margin-right: 0;
}

/* Source: scroll-animations.css */
.scroll-reveal {
  --reveal-delay: 0ms;
}

.reveal-enabled .scroll-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 1250ms cubic-bezier(.22, 1, .36, 1) calc(var(--reveal-delay) + 120ms),
    transform 1250ms cubic-bezier(.22, 1, .36, 1) calc(var(--reveal-delay) + 120ms);
  will-change: opacity, transform;
}

.reveal-enabled .scroll-reveal--heading {
  transform: translateY(16px);
}

.reveal-enabled .scroll-reveal--card {
  transform: translateY(20px) scale(.988);
}

.reveal-enabled .scroll-reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-enabled .scroll-reveal,
  .reveal-enabled .scroll-reveal--heading,
  .reveal-enabled .scroll-reveal--card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.site-footer__brand img {
  display: block;
  width: 100px;
  height: auto;
}
