@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/montserrat-v29-cyrillic_latin-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("../font/montserrat-v29-cyrillic_latin-600.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url("../font/montserrat-v29-cyrillic_latin-800.woff2") format("woff2");
}

@font-face {
  font-family: "fontello";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/fontello.woff2?33463596") format("woff2");
}

:root {
  --orange: #ff7f00;
  --orange-hover: #ff941f;
  --ink: #111214;
  --charcoal: #18191b;
  --muted: #62666c;
  --line: #e4e5e7;
  --paper: #fff;
  --soft: #f5f5f4;
  --success: #3da56a;
  --danger: #d45353;
  --header-height: 76px;
  --container: 1360px;
  --radius: 14px;
  --shadow: 0 16px 42px rgb(0 0 0 / 10%);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  -webkit-text-size-adjust: 100%;
  background: var(--ink);
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.page-scroll-disabled {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgb(255 127 0 / 50%);
  outline-offset: 3px;
}

::selection {
  color: #fff;
  background: var(--orange);
}

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

.section-padding {
  padding-block: clamp(76px, 8vw, 120px);
}

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

[class^="icon-"]::before,
[class*=" icon-"]::before {
  display: inline-block;
  width: 1em;
  font-family: "fontello";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.icon-phone::before { content: "\e800"; }
.icon-location::before { content: "\e801"; }
.icon-globe::before { content: "\e802"; }
.icon-ok-circled::before { content: "\e803"; }
.icon-basket::before { content: "\e805"; }
.icon-headphones::before { content: "\e806"; }
.icon-wrench::before { content: "\e807"; }
.icon-twitter::before { content: "\f099"; }
.icon-facebook::before { content: "\f09a"; }
.icon-mail-alt::before { content: "\f0e0"; }
.icon-linkedin::before { content: "\f0e1"; }
.icon-youtube-play::before { content: "\f16a"; }
.icon-instagram::before { content: "\f16d"; }
.icon-cube::before { content: "\f1b2"; }

.section-title {
  max-width: 920px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}

.section-title.text-left {
  margin-inline: 0;
  text-align: left;
}

.title-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.2vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.045em;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 25px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .045em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s, border-color .25s, color .25s, box-shadow .25s;
}

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

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

.btn--primary {
  color: #161616;
  background: var(--orange);
  box-shadow: 0 12px 28px rgb(255 127 0 / 22%);
}

.btn--primary:hover {
  background: var(--orange-hover);
  box-shadow: 0 16px 34px rgb(255 127 0 / 28%);
}

.btn--outline {
  color: #fff;
  background: rgb(10 10 10 / 34%);
  border-color: var(--orange);
}

.btn--outline:hover {
  color: var(--ink);
  background: var(--orange);
}

.btn:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
}

.btn.is-loading::after {
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border: 2px solid currentcolor;
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  animation: spin .75s linear infinite;
}

@keyframes spin {
  to { transform: rotate(1turn); }
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  padding: 0;
  background: rgb(10 10 11 / 92%);
  border-bottom: 1px solid rgb(255 255 255 / 7%);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s, background-color .25s;
}

.header.is-scrolled {
  padding: 0;
  background: rgb(10 10 11 / 97%);
  box-shadow: 0 8px 28px rgb(0 0 0 / 25%);
}

.header__container {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.header__logo {
  display: inline-flex;
  min-width: 238px;
  align-items: center;
  gap: 14px;
}

.logo__img {
  width: 130px;
  height: 35px;
}

.logo__descriptor {
  max-width: 118px;
  color: rgb(255 255 255 / 55%);
  font-size: .62rem;
  line-height: 1.35;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav__link {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 10px 11px;
  color: rgb(255 255 255 / 88%);
  border-radius: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .035em;
  text-transform: uppercase;
  transition: color .25s, background-color .25s, transform .25s var(--ease), box-shadow .25s;
}

.nav__link::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: translateX(-50%);
  transition: width .3s var(--ease);
}

.nav__link:hover,
.nav__link:focus {
  color: var(--orange);
  background: transparent;
  outline: none;
}

.nav__link:hover::after,
.nav__link:focus::after {
  width: 100%;
}

.nav__link[aria-current="true"] {
  color: #fff;
  background: rgb(255 255 255 / 7%);
}

.nav__link--highlight {
  margin-left: 9px;
  padding-inline: 18px;
  color: var(--ink);
  background: var(--orange);
}

.nav__link--highlight::after {
  display: none;
}

.nav__link--highlight:hover,
.nav__link--highlight:focus,
.nav__link--highlight[aria-current="true"] {
  color: var(--ink);
  background: var(--orange-hover);
}

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.nav__toggle-icon,
.nav__toggle-icon::before,
.nav__toggle-icon::after {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  content: "";
  transition: transform .25s var(--ease), opacity .2s;
}

.nav__toggle-icon {
  position: relative;
  display: block;
  margin: auto;
}

.nav__toggle-icon::before { transform: translateY(-7px); }
.nav__toggle-icon::after { transform: translateY(7px); }
.nav__toggle.is-active .nav__toggle-icon { background: transparent; }
.nav__toggle.is-active .nav__toggle-icon::before { transform: rotate(45deg); }
.nav__toggle.is-active .nav__toggle-icon::after { transform: rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 54px) 0 72px;
  overflow: hidden;
  color: #fff;
  background: #050607;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("../assets/images/hero-bg-nano-v5.jpeg");
  background-image: image-set(
    url("../assets/images/hero-bg-nano-v5.avif") type("image/avif"),
    url("../assets/images/hero-bg-nano-v5.webp") type("image/webp"),
    url("../assets/images/hero-bg-nano-v5.jpeg") type("image/jpeg")
  );
  background-color: #000;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  animation: hero-breathe 18s ease-in-out infinite alternate;
  transform-origin: 30% 48%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 2%) 0%, rgb(0 0 0 / 4%) 43%, rgb(0 0 0 / 58%) 70%, rgb(0 0 0 / 94%) 100%),
    linear-gradient(0deg, rgb(0 0 0 / 34%) 0%, transparent 42%);
}

.hero__container {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
}

.hero__content {
  width: min(44vw, 570px);
  max-width: 570px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 16px;
  margin-bottom: 22px;
  color: #0a0a0a;
  background: var(--orange);
  border: 0;
  border-radius: 4px;
  box-shadow: 0 10px 28px rgb(242 133 33 / 24%);
  font-size: clamp(.82rem, 1vw, .96rem);
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero__title {
  max-width: 570px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.55rem, 4vw, 4.1rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.hero__title-accent {
  color: var(--orange);
}

.hero__description {
  max-width: 540px;
  margin: 25px 0 0;
  color: rgb(255 255 255 / 74%);
  font-size: clamp(.98rem, 1.35vw, 1.12rem);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__btn {
  min-width: 230px;
}

.scroll-indicator {
  position: absolute;
  z-index: 3;
  bottom: 25px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: rgb(255 255 255 / 55%);
  transform: translateX(-50%);
  opacity: 1;
}

.mouse {
  position: relative;
  width: 24px;
  height: 38px;
  border: 2px solid rgb(255 255 255 / 48%);
  border-radius: 14px;
}

.mouse-wheel {
  position: absolute;
  top: 7px;
  left: 9px;
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: var(--orange);
  animation: wheel 1.8s infinite;
}

.scroll-indicator__text {
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@keyframes hero-breathe {
  to { transform: scale(1.035); }
}

@keyframes wheel {
  0% { opacity: 0; transform: translateY(-2px); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

/* About */
.about-section {
  background: var(--paper);
}

.about-section__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.about-section__image-wrapper {
  position: relative;
}

.about-section__image-wrapper::before {
  position: absolute;
  z-index: 0;
  inset: 28px -20px -20px 28px;
  border: 1px solid rgb(255 127 0 / 40%);
  border-radius: var(--radius);
  content: "";
}

.about-section__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-section__subtitle {
  margin: 0 0 22px;
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -.035em;
}

.about-section__content > p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.72;
}

.about-section__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 34px;
  border-block: 1px solid var(--line);
}

.stat-item {
  padding: 28px 15px 28px 0;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

.stat-item__number {
  color: var(--orange);
  font-size: inherit;
  font-weight: 800;
}

.stat-item__label {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
}

/* Services */
.services-section {
  background: var(--soft);
}

.services-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid #dcdcdc;
}

.service-card {
  min-height: 290px;
  padding: 40px 30px;
  border-right: 1px solid #dcdcdc;
  transition: color .3s, background-color .3s, transform .3s var(--ease);
}

.service-card:last-child {
  border-right: 0;
}

.service-card:hover {
  color: #fff;
  background: var(--ink);
  transform: translateY(-6px);
}

.service-card__icon {
  margin-bottom: 26px;
  color: var(--orange);
  font-size: 3rem;
  line-height: 1;
}

.service-card__title {
  margin: 0 0 16px;
  font-size: 1.13rem;
  line-height: 1.35;
}

.service-card__description {
  margin: 0;
  color: var(--muted);
  font-size: .89rem;
  line-height: 1.65;
}

.service-card:hover .service-card__description {
  color: rgb(255 255 255 / 68%);
}

/* Dealer */
.dealer-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #101112;
}

.dealer-section__background {
  position: absolute;
  inset: -4%;
  background: url("../assets/images/dealer.webp") center / cover no-repeat;
  opacity: .88;
}

.dealer-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(9 10 11 / 70%), rgb(9 10 11 / 48%) 56%, rgb(9 10 11 / 62%));
}

.dealer-section__container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .72fr);
  align-items: center;
  gap: clamp(44px, 8vw, 120px);
}

.dealer-section__title h2,
.contact-section .section-title h2 {
  color: #fff;
}

.dealer-section__content > p {
  max-width: 720px;
  color: rgb(255 255 255 / 72%);
  line-height: 1.7;
}

.dealer-section__features-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.dealer-section__features-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  line-height: 1.5;
}

.dealer-section__features-list i {
  color: var(--orange);
}

.dealer-section__form-wrapper,
.contact-form-wrapper,
.contact-card {
  position: relative;
}

.dealer-form__glass-bg,
.contact-form__glass-bg,
.contact-card__glass-bg {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 5%);
  box-shadow: 0 22px 60px rgb(0 0 0 / 26%);
  backdrop-filter: blur(14px);
}

.dealer-form__glass-bg {
  border-color: rgb(255 255 255 / 24%);
  background: rgb(240 240 245 / 15%);
  box-shadow: 0 22px 70px rgb(0 0 0 / 30%);
}

.dealer-form,
.contact-form__form,
.contact-card__content {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4vw, 44px);
}

.dealer-form__title,
.contact-form__title,
.contact-card__title {
  margin: 0 0 28px;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  letter-spacing: -.025em;
}

/* Product and news rails */
.product-categories {
  background: #fff url("../assets/images/category-background-pattern.webp") center / cover no-repeat;
}

.swiper {
  overflow: visible;
}

.swiper-wrapper {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  gap: 18px;
  padding: 4px 3px 26px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
}

.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-wrapper.is-drag-enabled {
  cursor: grab;
}

.swiper-wrapper.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
  user-select: none;
}

.swiper-wrapper.is-dragging a {
  pointer-events: none;
}

.product-categories .swiper-wrapper {
  grid-auto-columns: calc((100% - 54px) / 4);
}

.swiper-slide {
  min-width: 0;
  scroll-snap-align: start;
}

.category-card,
.news-card {
  display: block;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgb(17 18 20 / 9%);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgb(0 0 0 / 7%);
  transition: transform .3s var(--ease), box-shadow .3s;
}

.category-card:hover,
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgb(0 0 0 / 12%);
}

.category-card__image,
.news-card__image-link {
  position: relative;
  display: block;
  overflow: hidden;
}

.category-card__image {
  aspect-ratio: 3 / 2;
}

.category-card img,
.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}

.category-card:hover img,
.news-card:hover img {
  transform: scale(1.045);
}

.category-card__hover-text {
  position: absolute;
  inset: auto 16px 14px;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s, transform .25s;
}

.category-card:hover .category-card__hover-text {
  opacity: 1;
  transform: translateY(0);
}

.category-card__title {
  position: relative;
  padding: 20px 50px 20px 20px;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.35;
}

.category-card__title::after {
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--orange);
  font-size: 1.55rem;
  content: "›";
  transform: translateY(-52%);
}

.swiper-pagination {
  display: none;
}

/* Service */
.site-service-section {
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #0c0d0e;
}

.site-service-section__background-image {
  position: absolute;
  inset: -4% 0;
  background: url("../assets/images/service.webp") center / cover no-repeat;
  opacity: .78;
}

.site-service-section__background-overlay {
  position: absolute;
  inset: 0;
  background: rgb(7 8 9 / 60%);
}

.site-service-section__text-content {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 760px);
  margin-inline: auto;
  text-align: center;
}

.site-service-section .section-title {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.site-service-section .section-title h2 {
  color: #fff;
}

.site-service-section .section-title .title-tag::after {
  left: 50%;
  transform: translateX(-50%);
}

.site-service-section__description {
  max-width: 640px;
  margin-inline: auto;
  color: rgb(255 255 255 / 88%);
  font-size: 1.05rem;
  line-height: 1.72;
  text-align: center;
}

.site-service-section__features {
  display: grid;
  max-width: 680px;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 0;
  margin: 36px auto;
  list-style: none;
  text-align: left;
}

.solutions-list__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 8px 0;
}

.solutions-list__icon {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 1.75rem;
  line-height: 1;
}

.solutions-list__text h4 {
  margin: 0;
  font-size: 1.03rem;
  font-weight: 600;
  line-height: 1.45;
}

/* News */
.news-section {
  overflow: hidden;
  background: var(--soft);
}

.news-slider__navigation,
.product-slider__navigation {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin: -36px 0 22px;
}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  inset: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.5rem;
  line-height: 1;
}

.swiper-button-prev::after { content: "‹"; }
.swiper-button-next::after { content: "›"; }

.swiper-button-prev:disabled,
.swiper-button-next:disabled {
  cursor: default;
  opacity: .34;
}

.news-section .swiper-wrapper {
  grid-auto-columns: calc((100% - 36px) / 3);
}

.news-card__image-link {
  aspect-ratio: 16 / 10;
}

.news-card__content {
  padding: 25px;
}

.news-card__date {
  color: var(--orange);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.news-card__title {
  margin: 12px 0;
  font-size: 1.15rem;
  line-height: 1.4;
}

.news-card__excerpt {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.6;
}

.news-card__read-more {
  display: inline-block;
  margin-top: 20px;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 700;
}

/* Contact */
.contact-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #101112;
}

.contact-section__background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 20%, rgb(255 127 0 / 12%), transparent 30%),
    linear-gradient(rgb(7 8 9 / 82%), rgb(7 8 9 / 88%)),
    url("../assets/images/hero-bg-legacy.webp") center / cover no-repeat;
}

.contact-section__container {
  position: relative;
}

.contact-section__grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 20px;
}

.contact-card,
.contact-form-wrapper {
  min-height: 100%;
}

.contact-card__list {
  display: grid;
  gap: 21px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-card__item {
  display: flex;
  gap: 20px;
  color: rgb(255 255 255 / 74%);
  font-size: .9rem;
  line-height: 1.6;
}

.contact-card__icon {
  flex: 0 0 30px;
  color: var(--orange);
  font-size: 1.5rem;
  text-align: center;
}

.contact-card__text a:hover {
  color: var(--orange);
}

.contact-card__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.social-link {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: rgb(255 255 255 / 72%);
  font-size: 1.35rem;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 50%;
  transition: color .2s, background-color .2s, border-color .2s;
}

.social-link:hover {
  color: var(--ink);
  background: var(--orange);
  border-color: var(--orange);
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: rgb(255 255 255 / 70%);
  font-size: .72rem;
  font-weight: 600;
}

.form-input,
.form-textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: #fff;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 9px;
  outline: 0;
  background: rgb(0 0 0 / 22%);
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgb(255 255 255 / 36%);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--orange);
  background: rgb(0 0 0 / 34%);
  box-shadow: 0 0 0 3px rgb(255 127 0 / 12%);
}

.form-input.is-invalid,
.form-textarea.is-invalid,
.form-consent.is-invalid {
  border-color: var(--danger);
}

.form-select {
  appearance: auto;
}

.form-error-message {
  display: block;
  min-height: 16px;
  margin-top: 5px;
  color: #ff9d9d;
  font-size: .68rem;
}

.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 9px;
  margin: 2px 0 18px;
  color: rgb(255 255 255 / 58%);
  font-size: .68rem;
  line-height: 1.5;
}

.form-consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--orange);
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  font-size: .76rem;
  line-height: 1.5;
}

.form-status.is-success { color: #8ee2ae; }
.form-status.is-error { color: #ff9d9d; }

.demo-form-notice {
  margin: 12px 0 0;
  color: rgb(255 255 255 / 50%);
  font-size: .6rem;
  line-height: 1.5;
}

/* Dealer form fields */
.dealer-form .form-input,
.dealer-form .form-textarea {
  color: #fff;
}

/* Footer */
.footer {
  color: rgb(255 255 255 / 64%);
  background: #070708;
}

.footer__container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: clamp(30px, 5vw, 70px);
  padding-block: 72px;
}

.footer__column {
  min-width: 0;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 22px;
}

.footer__tagline {
  color: #fff;
  font-weight: 600;
  line-height: 1.55;
}

.footer__description {
  font-size: .8rem;
  line-height: 1.65;
}

.footer__tax-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 600;
}

.footer__title {
  margin: 0 0 20px;
  color: #fff;
  font-size: .86rem;
  text-transform: uppercase;
}

.footer__list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
  font-size: .76rem;
  line-height: 1.55;
}

.footer__list a:hover {
  color: var(--orange);
}

.footer__column--stores > p {
  margin: 0 0 10px;
  color: rgb(255 255 255 / 78%);
  font-size: .72rem;
}

.footer__bottom {
  padding-block: 20px;
  border-top: 1px solid rgb(255 255 255 / 8%);
  text-align: center;
}

.footer__bottom p {
  margin: 0;
  font-size: .66rem;
  line-height: 1.6;
}

/* Modal */
.news-dialog {
  position: fixed;
  inset: 50% auto auto 50%;
  width: min(900px, calc(100% - 32px));
  max-height: min(88vh, 900px);
  padding: 0;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  border: 0;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 90px rgb(0 0 0 / 42%);
  transform: translate(-50%, -50%);
}

.news-dialog::backdrop {
  background: rgb(0 0 0 / 76%);
  backdrop-filter: blur(5px);
}

.news-dialog__close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #fff;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 50%;
  background: rgb(0 0 0 / 55%);
  cursor: pointer;
}

.news-dialog__scroll {
  max-height: min(88vh, 900px);
  overflow-y: auto;
}

.news-dialog .news-article-full__image {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
}

.news-dialog .news-article-full__title,
.news-dialog .news-article-full__content {
  width: min(100% - 48px, 760px);
  margin-inline: auto;
}

.news-dialog .news-article-full__title {
  margin-top: 34px;
  font-size: clamp(1.65rem, 3.6vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -.035em;
}

.news-dialog .news-article-full__content {
  padding-bottom: 44px;
  color: var(--muted);
  line-height: 1.72;
}

.news-dialog .news-article-full__content a {
  color: var(--orange);
  font-weight: 600;
}

.news-dialog .js-close-news-modal,
.news-dialog [itemprop="publisher"] {
  display: none;
}

.is-parallax-layer {
  animation: none !important;
  transform-origin: center;
  will-change: transform;
}

.hero__background.is-parallax-layer {
  transform-origin: 30% 48%;
}

/* Motion */
.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-hero-content > .js-reveal-child.reveal-ready.is-visible {
  opacity: 1;
}

@media (max-width: 1180px) {
  .nav__toggle {
    position: relative;
    display: block;
  }

  .nav__list {
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: min(350px, 92vw);
    height: calc(100svh - var(--header-height));
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgb(10 10 11 / 99%);
    box-shadow: -20px 20px 60px rgb(0 0 0 / 38%);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform .32s var(--ease), visibility .32s;
  }

  .nav__list.is-active {
    transform: translateX(0);
    visibility: visible;
  }

  .nav__link {
    padding: 15px;
    font-size: .9rem;
  }

  .nav__link--highlight {
    margin: 12px 0 0;
    text-align: center;
  }

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

  .service-card:nth-child(2) {
    border-right: 0;
  }

  .service-card:nth-child(-n+2) {
    border-bottom: 1px solid #dcdcdc;
  }

  .product-categories .swiper-wrapper {
    grid-auto-columns: calc((100% - 36px) / 3);
  }

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

@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgb(0 0 0 / 4%), rgb(0 0 0 / 40%) 54%, rgb(0 0 0 / 94%));
  }

  .about-section__grid,
  .dealer-section__container,
  .contact-section__grid {
    grid-template-columns: 1fr;
  }

  .about-section__image-wrapper {
    max-width: 700px;
  }

  .dealer-section__form-wrapper {
    max-width: 680px;
  }

  .news-section .swiper-wrapper,
  .product-categories .swiper-wrapper {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .site-service-section__background-overlay {
    background: rgb(7 8 9 / 78%);
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 66px;
  }

  .container,
  .site-service-section__text-content {
    width: min(100% - 32px, var(--container));
  }

  .section-padding {
    padding-block: 68px;
  }

  .header__logo {
    min-width: 0;
  }

  .logo__img {
    width: 118px;
    height: auto;
  }

  .logo__descriptor {
    display: none;
  }

  .hero {
    min-height: max(760px, 100svh);
    align-items: end;
    padding: calc(var(--header-height) + 45px) 0 78px;
  }

  .hero__background {
    background-image: url("../assets/images/hero-bg-nano-v5.jpeg");
    background-image: image-set(
      url("../assets/images/hero-bg-nano-v5.avif") type("image/avif"),
      url("../assets/images/hero-bg-nano-v5.webp") type("image/webp"),
      url("../assets/images/hero-bg-nano-v5.jpeg") type("image/jpeg")
    );
    background-position: left top;
    background-size: auto 58%;
    transform-origin: 35% 24%;
  }

  .hero__overlay {
    background: linear-gradient(0deg, rgb(0 0 0 / 98%) 6%, rgb(0 0 0 / 90%) 43%, rgb(0 0 0 / 20%) 72%, rgb(0 0 0 / 8%) 100%);
  }

  .hero__container {
    display: block;
  }

  .hero__content {
    width: auto;
    max-width: 620px;
    margin-inline: auto;
    text-align: center;
  }

  .hero__title {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .hero__description {
    font-size: .9rem;
    line-height: 1.62;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .btn--primary:first-child {
    display: inline-flex;
  }

  .hero__btn {
    width: 100%;
    min-width: 0;
  }

  .scroll-indicator {
    display: none;
  }

  .about-section__image-wrapper::before {
    inset: 14px -8px -8px 14px;
  }

  .about-section__stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding-block: 16px;
    border-bottom: 1px solid var(--line);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .services-section__grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #dcdcdc;
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .dealer-form,
  .contact-form__form,
  .contact-card__content {
    padding: 24px 18px;
  }

  .news-section .swiper-wrapper,
  .product-categories .swiper-wrapper {
    grid-auto-columns: 86%;
  }

  .news-slider__navigation,
  .product-slider__navigation {
    margin-top: -20px;
  }

  .site-service-section {
    min-height: auto;
  }

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

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__container {
    grid-template-columns: 1fr;
    padding-block: 56px;
  }

  .news-dialog .news-article-full__title,
  .news-dialog .news-article-full__content {
    width: min(100% - 32px, 760px);
  }
}

@media (max-width: 640px) and (max-height: 700px) {
  .hero {
    min-height: 100svh;
    padding: calc(var(--header-height) + 14px) 0 22px;
  }

  .hero__badge {
    min-height: 34px;
    padding: 7px 12px;
    margin-bottom: 12px;
    font-size: .76rem;
  }

  .hero__title {
    font-size: clamp(2rem, 10vw, 2.55rem);
  }

  .hero__description {
    margin-top: 14px;
    font-size: .8rem;
    line-height: 1.46;
  }

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

  .hero__btn {
    min-height: 46px;
    padding-block: 10px;
  }

  .scroll-indicator {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}
