:root {
  --color-bg: #fff4e8;
  --color-primary: #023670;
  --color-accent: #01b9bf;
  --color-text: #252525;
  --color-white: #ffffff;

  --font-family: "Fixel Display", sans-serif;
  --container-width: 1300px;
  --container-padding: 20px;
}

html.lenis,
html.lenis body {
  height: auto;
}

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

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

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

html,
body {
  overflow-x: clip;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg);
}

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

h2 {
  font-family: var(--font-family);
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 1.2;
}

.header__nav-link.is-active {
  color: var(--color-primary);
}

.header__nav-link:active,
.header__nav-link:focus {
  color: var(--color-primary);
}


.header__nav-link.is-active:hover {
  color: var(--color-primary);
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.79);
  box-shadow: 0 72px 20px 0 rgba(0, 0, 0, 0.00), 0 46px 19px 0 rgba(0, 0, 0, 0.01), 0 26px 16px 0 rgba(0, 0, 0, 0.05), 0 12px 12px 0 rgba(0, 0, 0, 0.09), 0 3px 6px 0 rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(2px);
  padding: 12px 0;
  transition: all 0.3s ease;
}

.header__container {
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.header__nav {
  display: none;
}

.header__btn {
  display: none;
}

.header__logo {
  width: 141px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__lang {
  position: relative;
  padding: 8px 16px;
  border-radius: 43px;
  background: #E4E4E4;
  cursor: pointer;
  margin-left: auto;
  margin-right: 40px;
}

.header__lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header__lang-current,
.header__lang-code {
  display: inline-block;
  width: 22px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  position: relative;
  top:2px;
}

.header__lang-flag-box {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 22px;
	height: auto;
}

.header__lang-flag {
	display: block;
	width: auto;
	height: 12px;
	border-radius: 2px;
}

.header__lang-icon {
  display: block;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.header__lang.is-open .header__lang-icon {
  transform: rotate(180deg);
}

.header__lang-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  min-width: 100%;
  margin: 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  list-style: none;
  border-radius: 15px;
  background: #E4E4E4;
  box-shadow: 0 72px 20px 0 rgba(0, 0, 0, 0.00), 0 46px 19px 0 rgba(0, 0, 0, 0.01), 0 26px 16px 0 rgba(0, 0, 0, 0.05), 0 12px 12px 0 rgba(0, 0, 0, 0.09), 0 3px 6px 0 rgba(0, 0, 0, 0.10);
  padding: 0 16px 8px 16px;
  border-radius: 0 0 15px 15px;
}

.header__lang.is-open {
  border-radius: 15px 15px 0 0;
}

.header__lang.is-open .header__lang-list {
  display: flex;
}

.header__lang-option {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease;
}

.header__lang-option:hover {
  color: var(--color-accent);
}

.header__burger {
  width: 32px;
  height: 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.header__burger-line {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: #023670;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center center;
}

.header__burger-line:nth-child(3) {
  transform-origin: center center;
}

.header__burger.is-active .header__burger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.header__burger.is-active .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger.is-active .header__burger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .header {
  z-index: 201;
}

.modal {
  position: fixed;
  top: 62px;
  left: 0;
  width: 100%;
  height: calc(100vh - 62px);
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.3s;
}

.modal.is-open {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s linear 0s;
}

.modal.is-closing {
  pointer-events: none;
}

.modal.is-closing .modal__overlay {
  opacity: 0;
}

.modal.is-closing .modal__content {
  transform: translateX(100%);
}

.modal.is-closing .modal__inner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.12s ease;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.is-open .modal__overlay {
  opacity: 1;
}

.modal__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 360px;
  height: 100%;
  background: var(--color-white);
  box-shadow: 0 72px 20px 0 rgba(0, 0, 0, 0.00), 0 46px 19px 0 rgba(0, 0, 0, 0.01), 0 26px 16px 0 rgba(0, 0, 0, 0.05), 0 12px 12px 0 rgba(0, 0, 0, 0.09), 0 3px 6px 0 rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(2px);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.modal.is-open .modal__content {
  transform: translateX(0);
}

.modal__inner {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 24px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  justify-content: safe center;
  min-height: 0;
}

.modal__close {
  display: none;
}

body.menu-open .header {
  box-shadow: none;
  background: #fff;
}

.modal__nav {
  margin-bottom: 40px;
}

.modal__nav-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.modal__nav-link {
  color: var(--color-text);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: max-content;
}

.modal__nav-link::after {
  content: '';
  width: 0;
  height: 3px;
  background: #023670;
  transition: width 0.2s ease;
}

.modal__nav-link:hover {
  color: #023670;
}

.modal__nav-link:hover::after,
.modal__nav-link.is-active::after {
  width: 100%;
}

.modal__btn {
  display: flex;
  min-width: 192px;
  width: max-content;
  min-height: 44px;
  padding: 4px;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 43px;
  border: 2px solid var(--color-accent);
  background: var(--color-accent);
  transition: all 0.2s ease;
}

.modal__btn:hover {
  background: var(--color-white);
  color: var(--color-accent);
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 150;
  display: block;
  line-height: 0;
  transition: bottom 0.2s ease;
}

.whatsapp.is-shifted {
  bottom: 90px;
}

.whatsapp__icon {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 150;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background 0.2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-white);
  color: var(--color-accent);
  box-shadow: inset 0 0 0 2px var(--color-accent);
}

.scroll-top__icon {
  display: block;
}

.hero {
  position: relative;
  padding-top: 16px;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
}

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

.hero__decor-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
}

.hero__decor-blob--1 {
  top: 8%;
  left: -12%;
  width: 280px;
  height: 280px;
  background: rgba(1, 185, 191, 0.35);
}

.hero__decor-blob--2 {
  top: 42%;
  right: -18%;
  width: 320px;
  height: 320px;
  background: rgba(2, 54, 112, 0.2);
}

.hero__decor-blob--3 {
  bottom: -8%;
  left: 28%;
  width: 240px;
  height: 240px;
  background: rgba(1, 185, 191, 0.28);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero .hero__inner {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  align-items: center;
}

.hero__title-line,
.hero__title-accent {
  display: block;
}

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

.hero__title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title-block,
.hero__description,
.hero__btn {
  opacity: 0;
}

.hero.is-animated .hero__title-block {
  animation: heroSlideLeft 2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero.is-animated .hero__description {
  animation: heroSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 1s;
}

.hero.is-animated .hero__btn {
  animation: heroSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 1.3s;
}

@keyframes heroSlideLeft {
  from {
    opacity: 0;
    transform: translate3d(-80px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__title-block,
  .hero__description,
  .hero__btn {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

.hero__media {
  display: none;
}

.hero__image--mobile {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__media--mobile {
  aspect-ratio: 172/159;
  object-fit: contain;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero__title {
  position: relative;
  color: var(--color-primary);
  text-align: center;
  font-size: clamp(32px, 2.8vw, 48px);
  font-weight: 700;
  line-height: 110%;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.hero__description {
  color: var(--color-text);
  text-align: center;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 140%;
  max-width: 90%;
}

.hero__btn {
  display: flex;
  padding: 18px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 43px;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.hero__btn:hover,
.hero__btn:focus,
.hero__btn:active {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.about,
.products,
.applications,
.faq,
.partnership,
.contacts {
  scroll-margin-top: 62px;
}

.about {
  padding: 40px 20px;
  background: var(--color-primary);
  overflow: hidden;
}

.about .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.about__content {
  min-width: 280px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
}


.about__title {
  color: var(--color-accent);
  position: relative;
}

.about__title::after {
  content: "";
  background: var(--color-accent);
  width: 40px;
  height: 4px;
  position: absolute;
  bottom: -22px;
  left: 0;
}

.about__text {
  display: flex;
  flex-direction: column;
  color: var(--color-white);
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  gap: 24px;
}

.about__slider {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  height: fit-content;
}

.about__slider .swiper-slide {
  height: 457px;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.about__slide {
  display: flex;
  width: 100%;
  height: 100%;
}

.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.about__slider .about__pagination .swiper-pagination-bullet {
  width: 17px;
  height: 17px;
  background: var(--color-white);
  border-radius: 50%;
  margin: 0;
}

.about__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-accent);
}

.products {
  padding: 40px 20px;
  overflow: hidden;
}

.products__title {
  margin: 0 auto 48px auto;
  text-align: center;
  position: relative;
  width: max-content;
  color: var(--color-primary);
}

.products__title::after {
  content: "";
  background: var(--color-primary);
  width: 40px;
  height: 4px;
  position: absolute;
  bottom: -16px;
  left: 0;
}

.products__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.products__group-title {
  display: flex;
  padding: 8px 16px;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 700;
  line-height: 1;
  min-height: 33px;
  text-transform: uppercase;
}

.products__group .products__list {
  display: flex;
  gap: 16px;
  width: calc(100% + 40px);
  margin-right: -20px;
  padding-left: 20px;
  margin-left: -20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.products__group .products__item {
  width: 140px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.products__row .products__item {
  width: 140px;
}

.products__item-media {
  display: flex;
  position: relative;
  width: 140px;
  height: 200px;
  aspect-ratio: 7/10;
  border-radius: 16px;
  overflow: hidden;
}

.products__item-img--default {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products__item-img--hover,
.products__item-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s;
  opacity: 0;
}

.products__item:hover .products__item-img--hover,
.products__item:hover .products__item-video {
  opacity: 1;
}

.products__item-title {
  text-align: center;
  color: var(--color-text);
  text-align: center;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 600;
  line-height: 120%;
  transition: color 0.4s;
}

.products__item:hover .products__item-title {
  color: var(--color-accent);
}

.products__group--dessert {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  min-width: 280px;
  flex: 1;
}

.products__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}

.products__group--dessert .products__list {
  display: flex;
  max-width: 320px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.products__group--solutions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  min-width: 280px;
  flex: 1;
}

.products__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  cursor: pointer;
}

.product-popup {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.25s;
}

.product-popup.is-open,
.product-popup.is-closing {
  visibility: visible;
  transition: visibility 0s linear 0s;
}

.product-popup.is-open {
  pointer-events: auto;
}

.product-popup.is-closing {
  pointer-events: none;
}

.product-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.product-popup.is-open .product-popup__overlay {
  opacity: 1;
}

.product-popup.is-closing .product-popup__overlay {
  opacity: 0;
}

.product-popup__close {
  margin-left: auto;
  flex-shrink: 0;
}

.product-popup__media {
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
  height: 420px;
}

.product-popup__image,
.product-popup__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.product-popup__content-body--content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 10px;
}

.product-popup__title br {
  display: none;
}

.product-popup__btn {
  display: flex;
  padding: 18px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 43px;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.product-popup__btn:hover,
.product-popup__btn:focus,
.product-popup__btn:active {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.product-popup__title {
  color: #023670;
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 600;
  line-height: 1;
}

.product-popup__content-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.product-popup__content-body--description {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #252525;
  text-align: justify;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.products__item-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  overflow: hidden;
  border-radius: 16px;
}

.product-popup__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow: hidden;
  border-radius: 29px;
  background: #F0F0F0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  min-height: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-popup.is-open .product-popup__content {
  opacity: 1;
  transform: translateY(0);
}

.product-popup.is-closing .product-popup__content {
  opacity: 0;
  transform: translateY(16px);
}

body.product-popup-open {
  overflow: hidden;
}

.products__row .products__item-media {
  width: 140px;
  height: 140px;
  aspect-ratio: 1/1;
  border-radius: 140px;
}

.products__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}

.products__footer img {
  width: 46px;
  height: 52px;
  object-fit: contain;
}

.products__footer-text {
  color: var(--color-text);
  text-align: center;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 400;
  line-height: 1.4;
}

.products__btn {
  display: flex;
  padding: 18px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 43px;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.products__btn:hover,
.products__btn:focus,
.products__btn:active {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.products .container {
  max-width: 768px;
}

.why-choose {
  padding: 40px 20px;
  background: var(--color-primary);
}

.why-choose .container {
  gap: 48px;
  display: flex;
  flex-direction: column;
}

.why-choose__title {
  color: var(--color-accent);
  position: relative;
}

.why-choose__title::after {
  content: "";
  background: var(--color-accent);
  width: 40px;
  height: 4px;
  position: absolute;
  bottom: -16px;
  left: 0;
}

.why-choose__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  align-self: stretch;
}

.why-choose__mission {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
  align-self: stretch;
}

.why-choose__mission-title {
  color: var(--color-white);
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 600;
  line-height: 1;
}

.why-choose__mission-text {
  color: var(--color-white);
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.8;
}

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

.why-choose__values-title {
  color: var(--color-white);
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 600;
  line-height: 1;
}

.why-choose__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-self: stretch;
  justify-content: center;
}

.why-choose__item {
  padding: 20px 8px;
  border-radius: 16px;
  background: var(--color-accent);
  width: calc(50% - 8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-height: 146px;
}

.why-choose__item-icon {
  width: 54px;
  height: 54px;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.why-choose__item-title {
  color: var(--color-white);
  text-align: center;
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 600;
  line-height: 18px;
}

.applications {
  padding: 40px 20px;
}

.applications .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
  align-self: stretch;
}

.applications__title {
  color: var(--color-primary);
  position: relative;
}

.applications__title::after {
  content: "";
  background: var(--color-primary);
  width: 40px;
  height: 4px;
  position: absolute;
  bottom: -16px;
  left: 0;
}

.applications__list {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-self: stretch;
  flex-wrap: wrap;
}

.applications__item {
  min-width: 280px;
  width: calc(50% - 8px);
  flex: 1;
  border-radius: 16px;
  display: flex;
  padding: 20px 8px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  background: var(--color-white);
  box-shadow: 0 72px 20px 0 rgba(0, 0, 0, 0.00), 0 46px 19px 0 rgba(0, 0, 0, 0.01), 0 26px 16px 0 rgba(0, 0, 0, 0.05), 0 12px 12px 0 rgba(0, 0, 0, 0.09), 0 3px 6px 0 rgba(0, 0, 0, 0.10);
}

.applications__item img {
  width: 56px;
  height: 56px;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.applications__item--content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.applications__item-title {
  color: var(--color-primary);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.applications__item-text {
  color: var(--color-text);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq__question-text {
  color: var(--color-white);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 600;
  line-height: 1.3;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
}

.faq__question-icon {
  display: block;
  flex-shrink: 0;
  transform: rotate(90deg);
  transition: transform 0.35s ease;
  width: 31px;
  height: 28px;
}

.faq__item.is-open .faq__question-icon {
  transform: rotate(-90deg);
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
  min-height: 0;
}

.faq__answer-content {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  margin-top: 14px;
  color: var(--color-white);
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.8;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq {
  padding: 40px 20px;
  background: var(--color-primary);
}

.faq .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 43px;
}

.faq__title {
  max-width: 78%;
  margin: 0 auto;
  color: var(--color-accent);
  position: relative;
}

.faq__title::after {
  content: "";
  background: var(--color-accent);
  width: 40px;
  height: 4px;
  position: absolute;
  bottom: -16px;
  left: 0;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 29px;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
}

.partnership {
  padding: 40px 20px;
}

.partnership .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.partnership__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partnership__description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.partnership__title {
  color: var(--color-primary);
  position: relative;
  margin: 0 auto 48px auto;
}

.partnership__title::after {
  content: "";
  background: var(--color-primary);
  width: 40px;
  height: 4px;
  position: absolute;
  bottom: -16px;
  left: 0;
}

.partnership__description h3 {
  color: var(--color-primary);
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 600;
  line-height: 1.5;
}

.partnership__description-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: justify;
  color: var(--color-text);
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.38;
}

.partnership__btn {
  display: flex;
  padding: 18px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 43px;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 600;
  line-height: 1;
  width: auto;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.partnership__btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.partnership__content .partnership__btn {
  display: none;
}

.partnership__media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.partnership__media-image2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 30px;
  aspect-ratio: 5/1;
  object-fit: contain;
}

.footer {
  padding: 24px 20px;
  background: #002956;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.footer__text {
  color: var(--color-white);
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
}

.footer__list {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.footer__developer a {
  color: var(--color-white);
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
}

.footer__developer a span {
  text-decoration: underline;
}

.contacts {
  padding: 40px 20px;
  background: var(--color-primary);
}

.contacts .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.contacts__title {
  color: var(--color-accent);
  position: relative;
}

.contacts__title::after {
  content: "";
  background: var(--color-accent);
  width: 40px;
  height: 4px;
  position: absolute;
  bottom: -16px;
  left: 0;
}

.contacts__body {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
}

.contacts__form {
  min-width: 280px;
  flex: 1;
}

.contacts__content {
  min-width: 280px;
  flex: 1;
}

.contacts__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contacts__form input,
.contacts__form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px 10px 17px;
  border-radius: 54px;
  border: 1px solid #D3D3D3;
  background: rgba(255, 255, 255, 0.69);
  color: #262626;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.contacts__form textarea {
  min-height: 93px;
  padding: 15px 12px 10px 17px;
  resize: none;
  border-radius: 27px;
}

.contacts__form input::placeholder,
.contacts__form textarea::placeholder {
  color: #262626;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.contacts__form input:focus,
.contacts__form textarea:focus {
  outline: none;
  border-color: #D3D3D3;
  background: var(--color-white);
}

.contacts__btn {
  width: 100%;
  display: flex;
  padding: 14px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 43px;
  border: 2px solid #01B9BF;
  color: #01B9BF;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.contacts__btn:hover {
  background: #01B9BF;
  color: var(--color-white);
  border-color: #01B9BF;
}


.contacts__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contacts__content img {
  display: none;
}

.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contacts__link {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 600;
  line-height: 35px;
}

.contacts__content address {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.contacts__link.contacts__link--email {
	text-decoration: underline;
}





@media (min-width: 1280px) {
  .about,
  .products,
  .applications,
  .faq,
  .partnership,
  .contacts {
    scroll-margin-top: 96px;
  }

  .header {
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 20px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .header__logo {
    width: 181px;
    height: 45px;
  }

  .header__container {
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.79);
    box-shadow: 0 72px 20px 0 rgba(0, 0, 0, 0.00), 0 46px 19px 0 rgba(0, 0, 0, 0.01), 0 26px 16px 0 rgba(0, 0, 0, 0.05), 0 12px 12px 0 rgba(0, 0, 0, 0.09), 0 3px 6px 0 rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(2px);
    padding: 9px 18px;
  }

  .header__burger {
    display: none;
  }

  .header__lang {
    margin-right: 0;
    margin-left: 37px;
  }

  .header__nav {
    display: block;
    margin-right: 37px;
    margin-left: auto;
  }

  .header__nav-list {
    display: flex;
    align-items: center;
    gap: 37px;
  }

  .header__nav-link {
    color: var(--color-text);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
    transition: color 0.2s ease;
  }

  .header__nav-link.is-active {
    color: #023670;
  }

  .header__nav-link:hover {
    color: #01b9bf;
  }


  .header__nav-link::after {
    content: '';
    width: 0;
    height: 3px;
    background: #023670;
    transition: width 0.2s ease;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
  }

  .header__nav-link.is-active::after {
    width: 100%;
  }

  .header__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 192px;
    width: max-content;
    height: 44px;
    padding: 4px;
    border-radius: 43px;
    border: 2px solid var(--color-accent);
    background: var(--color-accent);
    transition: all 0.2s ease;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
  }

  .hero {
    padding-top: 0;
  }

  .header__btn:hover {
    background: var(--color-white);
    color: var(--color-accent);
  }

  .hero__media--mobile {
    display: none;
  }

  .hero .container {
    align-items: center;
    justify-content: flex-start;
    position: relative;
  }

  .hero__content {
    align-items: flex-start;
    max-width: 481px;
    position: relative;
    z-index: 2;
    gap: 0;
    padding-top: 125px;
    padding-bottom: 64px;
  }

  .hero__title {
    align-items: flex-start;
    margin-bottom: 32px;
  }

  .hero__title-block {
    align-items: flex-start;
  }

  .hero__description {
    text-align: left;
    margin-bottom: 40px;
  }

  .hero__media {
    display: block;
    position: absolute;
    right: 105px;
    bottom: 0;
    top: -16px;
    z-index: 1;
  }

  .hero__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .about {
    padding: 80px 20px;
  }

  .about .container {
    flex-direction: row-reverse;
    gap: 60px;
    flex-wrap: nowrap;
  }

  .about__slider {
    width: 444px;
    min-width: 444px;
  }

  .about__slider .swiper-slide {
    height: 634px;
  }

  .about__content {
    gap: 60px;
  }

  .about__title::after {
    width: 68px;
    bottom: -14px;
  }

  .about__text {
    gap: 27px;
    text-align: justify;
  }

  .products {
    padding: 80px 20px;
  }

  .products__title {
    margin-bottom: 80px;
  }

  .products__title::after {
    width: 68px;
  }

  .products__group {
    padding: 57px 48px 43px;
    position: relative;
    border-radius: 23px;
    margin-bottom: 67px;
    background: var(--color-white);
    box-shadow: 0 72px 20px 0 rgba(0, 0, 0, 0.00), 0 46px 19px 0 rgba(0, 0, 0, 0.01), 0 26px 16px 0 rgba(0, 0, 0, 0.05), 0 12px 12px 0 rgba(0, 0, 0, 0.09), 0 3px 6px 0 rgba(0, 0, 0, 0.10);
  }

  .products__group-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -18px;
    width: max-content;
    min-height: 42px;
  }

  .products .container {
    max-width: 1163px;
  }

  .products__group .products__list {
    width: 100%;
    margin: 0;
    padding: 0;
    justify-content: space-between;
  }

  .products__group .products__item {
    max-width: 180px;
    width: 100%;
    flex-shrink: 0;
  }

  .products__item-media {
    height: 257px;
    width: 100%;
    aspect-ratio: 180/257;
  }

  .products__row {
    gap: 48px;
    justify-content: center;
    margin-bottom: 50px;
  }

  .products__group--dessert,
  .products__group--solutions {
    flex: none;
    position: relative;
    min-width: auto;
    border-radius: 23px;
    padding: 57px 48px 50px;
    background: var(--color-white);
    box-shadow: 0 72px 20px 0 rgba(0, 0, 0, 0.00), 0 46px 19px 0 rgba(0, 0, 0, 0.01), 0 26px 16px 0 rgba(0, 0, 0, 0.05), 0 12px 12px 0 rgba(0, 0, 0, 0.09), 0 3px 6px 0 rgba(0, 0, 0, 0.10);
  }

  .products__group--dessert .products__list {
    max-width: 100%;
    width: 100%;
    justify-content: space-between;
  }

  .products__group--dessert .products__item {
    width: 159px;
  }

  .products__group--dessert {
    min-width: 482px;
  }

  .products__row .products__item-media {
    width: 159px;
    height: 159px;
    aspect-ratio: 1/1;
  }

  .products__group--solutions {
    min-width: 368px;
  }

  .products__item-title {
    font-weight: 500;
  }

  .products__footer {
    flex-direction: row;
    gap: 23px;
    padding: 0 48px;
  }

  .products__footer img {
    width: 59px;
    height: 66px;
  }

  .products__footer-text {
    text-align: left;
    max-width: 697px;
    width: 100%;
  }

  .products__btn {
    margin-left: auto;
  }

  .why-choose {
    padding: 80px 20px;
  }

  .why-choose .container {
    gap: 53px;
  }

  .why-choose__title {
    width: max-content;
    margin: 0 auto;
  }

  .why-choose__title::after {
    width: 68px;
  }

  .why-choose__mission {
    gap: 32px;
  }

  .why-choose__list {
    gap: 22px;
  }

  .why-choose__item {
    width: calc(20% - (22px * 4 / 5));
    min-height: 184px;
    padding: 29px 24px;
    gap: 24px;
    border-radius: 24px;
  }

  .applications {
    padding: 80px 20px;
  }

  .why-choose__item-title {
    line-height: 24px;
  }

  .applications .container {
    gap: 64px;
  }

  .applications__title::after {
    width: 68px;
  }

  .applications__list {
    gap: 24px;
  }

  .applications__item {
    width: calc(33.33% - (24px * 2 / 3));
    min-width: auto;
    flex: none;
    padding: 29px 16px;
    gap: 16px;
    border-radius: 23px;
  }

  .faq {
    padding: 80px 20px;
  }

  .faq .container {
    gap: 43px;
  }

  .faq__title::after {
    width: 68px;
  }

  .faq__answer-content {
    padding: 24px 32px;
    border-radius: 24px;
    text-align: justify;
    margin-top: 32px;
    gap: 27px;
  }

  .faq__list {
    gap: 31px;
  }

  .faq__question-icon {
    transform: none;
    width: 15px;
    height: 30px;
  }

  .faq__item.is-open .faq__question-icon {
    transform: rotate(90deg);
  }

  .partnership {
    padding: 80px 20px;
  }

  .partnership .container {
    flex-direction: row;
    gap: 78px;
    align-items: flex-start;
  }

  .partnership__media {
    width: 584px;
    height: 538px;
    flex-shrink: 0;
  }

  .partnership__media .partnership__btn {
    display: none;
  }

  .partnership__title {
    margin-left: 0;
    margin-bottom: 40px;
  }

  .partnership__title::after {
    width: 68px;
  }

  .partnership__content .partnership__btn {
    display: flex;
    margin-right: auto;
  }

  .partnership__description {
    margin-bottom: 38px;
    gap: 32px;
  }

  .partnership__description-text {
    gap: 32px;
  }

  .partnership__media-image2 {
    width: 179px;
    height: 35px;
    aspect-ratio: 179/35;
    top: 25px;
    left: 35px;
  }

  .footer {
    padding: 24px 20px;
  }

  .footer .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer__text br {
    display: none;
  }

  .contacts {
    padding: 80px 20px;
  }

  .contacts .container {
    max-width: 772px;
    gap: 64px;
  }

  .contacts__body {
    flex-direction: row-reverse;
    gap: 61px;
  }

  .contacts__form {
    width: 415px;
    flex-shrink: 0;
    flex: none;
  }

  .contacts__btn {
    font-size: 20px;
  }

  .contacts__title::after {
    width: 68px;
  }

  .contacts__content img {
    display: block;
    width: 128.941px;
    height: 136.515px;
    margin: 0 auto;
    object-fit: contain;
  }

  .contacts__content {
    gap: 0;
    margin-top: -8px;
  }

  .contacts__list {
    margin-bottom: 24px;
  }

  .contacts__content address {
    margin-bottom: 11px;
  }

  .why-choose__values {
    gap: 43px;
  }

  .footer .container {
    max-width: 1160px;
  }

  .product-popup__content {
    max-width: 1050px;
    padding: 40px;
  }

  .product-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
  }

  .product-popup__content-body {
    flex-direction: row;
  }

  .product-popup__media {
    flex-shrink: 0;
    width: 323px;
    height: 462px;
  }

  .product-popup__content-body--content {
    gap: 24px;
  }

  .product-popup__content-body--description {
    gap: 16px;
  }

  .product-popup__btn {
    width: max-content;
  }
}