.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  background: transparent;
  padding: 32px 0 0 0;
  transition: background 0.35s cubic-bezier(.4, 0, .2, 1);
}

.main-header--green {
  background: var(--color-green);
  transition: background 0.35s cubic-bezier(.4, 0, .2, 1);
}

.main-header__container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(16px, 3vw, 48px);
  max-width: min(100%, 90vw);
  padding: 0 48px;
}

.main-header__logo {
  height: 30px;
  width: auto;
}

.main-header__link {
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 100;
}

.main-header__link:hover {
  text-decoration: underline;
  text-underline-offset: 16px;
  cursor: pointer;
}

.main-header__button {
  padding: 12px 28px;
  border: 1px solid var(--color-white);
  background: var(--color-white);
  color: var(--color-brown);
  font-family: var(--font-main);
  font-size: 18px;
  border-radius: 100px;
  cursor: pointer;
}

.main-header__button:hover {
  background: transparent;
  color: var(--color-white);
}

.main-header__burger {
  display: none;
}

.main-header__burger::before,
.main-header__burger::after,
.main-header__burger span {
  content: '';
  display: block;
  position: absolute;
  left: 8px;
  right: 8px;
  height: 4px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
}

.main-header__burger::before {
  top: 12px;
}

.main-header__burger span {
  top: 18px;
}

.main-header__burger::after {
  top: 24px;
}

.main-header__burger.active::before {
  top: 18px;
  transform: rotate(45deg);
}

.main-header__burger.active span {
  opacity: 0;
}

.main-header__burger.active::after {
  top: 18px;
  transform: rotate(-45deg);
}

.main-header__mobile-menu {
  display: none;
}

.main-header__mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.main-header__mobile-menu-link {
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 100;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s;
  cursor: pointer;
}

.main-header__mobile-menu-link:active,
.main-header__mobile-menu-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.main-header__mobile-logo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 8px 0 12px 0;
}

.main-header__mobile-logo {
  width: 140px;
  height: auto;
  display: block;
}

.main-section {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.main-section__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
}

.main-section__content {
  position: relative;
  z-index: 4;
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-section__slogan {
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 48px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.main-section__button {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 20px;
  border: 1px solid var(--color-white);
  background: var(--color-white);
  color: var(--color-brown);
  font-family: var(--font-main);
  font-size: 18px;
  border-radius: 100px;
  cursor: pointer;
}

.main-section__button:hover {
  background: transparent;
  color: var(--color-white);
}

.main-section__button:hover .main-section__button-arrow {
  filter: brightness(0) invert(1);
}

.main-section__button-arrow {
  filter: brightness(0) invert(0);
}

.character-section {
  margin-top: 130px;
}

.character-section__header-row {
  margin: 0 26px 0 96px;
  display: flex;
  gap: 32px;
  align-items: flex-end;
}

.character-section__title {
  color: var(--color-white);
  font-family: var(--font-title), sans-serif;
  font-size: 112px;
  text-transform: uppercase;
}

.character-section__subtitle {
  margin-bottom: 15px;
  color: var(--color-white);
  font-family: var(--font-main), sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.character-section .slider-images {
  height: calc(var(--real-vh, 1vh) * 100 - var(--slider-offset, 0px));
}

.fade-out {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(.4, 0, .2, 1);
  pointer-events: none;
}

.header-fade-out {
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(.4, 0, .2, 1);
  pointer-events: none;
}

.header-fade-in {
  opacity: 1;
  transition: opacity 0.35s cubic-bezier(.4, 0, .2, 1);
}

.header-slide-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s cubic-bezier(.4, 0, .2, 1), transform 0.35s cubic-bezier(.4, 0, .2, 1);
}

.slide-up-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s cubic-bezier(.4, 0, .2, 1), transform 0.35s cubic-bezier(.4, 0, .2, 1);
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body.no-scroll {
  overflow: hidden;
}

.slider-images {
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  max-width: 100vw;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.slider-images::-webkit-scrollbar {
  display: none;
}

.slider-image {
  min-width: 600px;
  flex-shrink: 0;
  object-fit: cover;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-green);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
  transition: background 0.2s, opacity 0.3s;
  opacity: 1;
  pointer-events: auto;
}

.slider-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

.slider-arrow--left {
  left: 32px;
}

.slider-arrow--right {
  right: 32px;
}

.slider-arrow img {
  width: 24px;
  height: 24px;
}

.slider-arrow:hover {
  background: #2a3a34;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: transparent;
  border: 2px solid var(--color-white);
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s, border-color 0.2s;
}

.slider-dot.hidden {
  display: none;
}

.slider-dot.active {
  width: 12px;
  height: 12px;
  background: var(--color-white);
  opacity: 1;
  transition: background 0.2s, opacity 0.2s;
}

.slider-dot:hover {
  background: var(--color-white);
  transition: background 0.2s;
}

.comfort-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.comfort-section__text {
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
}

section {
  position: relative;
  z-index: 1;
  transition: none;
}

.section-slide {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 1.1s cubic-bezier(.4, 0, .2, 1), opacity 0.7s cubic-bezier(.4, 0, .2, 1);
}

.section-slide.active {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
  z-index: 20;
}

.section-slide.prev {
  pointer-events: none;
  opacity: 1;
  transform: translateY(0);
  z-index: 10;
}

.privilege-section {
  margin-top: 130px;
}

.privilege-section__header-row {
  margin: 0 26px 0 96px;
  display: flex;
  gap: 32px;
  align-items: flex-end;
}

.privilege-section__title {
  color: var(--color-white);
  font-family: var(--font-title), sans-serif;
  font-size: 112px;
  text-transform: uppercase;
}

.privilege-section__subtitle {
  margin-bottom: 15px;
  color: var(--color-white);
  font-family: var(--font-main), sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.privilege-section .slider-images {
  height: calc(var(--real-vh, 1vh) * 100 - var(--slider-offset, 0px));
}

.innovation-section {
  margin-top: 130px;
}

.innovation-section__header-row {
  margin: 0 26px 20px 96px;
  display: flex;
  gap: 32px;
  align-items: flex-end;
}

.innovation-section__title {
  color: var(--color-white);
  font-family: var(--font-title), sans-serif;
  font-size: 112px;
  text-transform: uppercase;
}

.innovation-section__subtitle {
  margin-bottom: 15px;
  color: var(--color-white);
  font-family: var(--font-main), sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.innovation-section .slider-images {
  height: calc(var(--real-vh, 1vh) * 100 - var(--slider-offset, 0px));
}

.slider {
  position: relative;
}

.slider-caption-wrapper {
  position: absolute;
  left: 3vw;
  bottom: 7vh;
  z-index: 20;
  max-width: 60vw;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 8px;
}

.slider-caption {
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 100;
  padding: 4px 6px;
  letter-spacing: 1px;
  text-align: left;
  text-transform: uppercase;
}

.innovation-section.section-slide {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 1.1s cubic-bezier(.4, 0, .2, 1), opacity 0.7s cubic-bezier(.4, 0, .2, 1);
}

.innovation-section.section-slide.active {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
  z-index: 20;
}

.location-section {
  margin-top: 130px;
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
}

.location-section__content-flex {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 100vw;
}

.location-section__content-flex> :first-child {
  flex: 0 0 25%;
  max-width: 25%;
}

.location-section__header-row {
  margin: 0 26px;
  display: flex;
  gap: 32px;
  align-items: flex-end;
}

.location-section__title {
  color: var(--color-white);
  font-family: var(--font-title), sans-serif;
  font-size: 112px;
  text-transform: uppercase;
}

.location-section__subtitle {
  margin-bottom: 15px;
  color: var(--color-white);
  font-family: var(--font-main), sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  width: 100vw;
}

.location-section__address-block {
  margin: 32px;
}

.location-section__address-text {
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 24px;
}

.location-section__button {
  padding: 10px 28px;
  border: 1px solid var(--color-white);
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 18px;
  border-radius: 100px;
  cursor: pointer;
}

.location-section__button:hover {
  background: var(--color-white);
  color: var(--color-brown);
}

.location-section__logo {
  margin-top: 144px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.location-section__logo img:first-child {
  height: 64px;
  width: auto;
}

.location-section__logo img:last-child {
  height: 36px;
  width: auto;
}

.location-section__map-wrap {
  margin-top: 40px;
  width: 100vw;
}

.location-section__map {
  width: 100%;
  height: 100vh;
  border: none;
}

.contact-section {
  display: flex;
  margin-top: 130px;
}

.contact-section__left {
  margin-left: 52px;
}

.contact-section__title {
  color: var(--color-white);
  font-family: var(--font-title), sans-serif;
  font-size: 112px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.contact-section__desc {
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 20px;
  margin-bottom: 32px;
  max-width: 480px;
}

.contact-section__social img {
  width: 32px;
  height: 32px;
  filter: brightness(1.1);
  transition: filter 0.2s;
}

.contact-section__social:hover img {
  filter: brightness(2);
}

.contact-section__row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-section__phone {
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 18px;
  text-decoration: none;
}

.contact-section__phone:hover {
  text-decoration: underline;
  text-underline-offset: 16px;
}

.contact-section__presentation {
  padding: 10px 28px;
  border: 1px solid var(--color-white);
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 18px;
  border-radius: 100px;
  cursor: pointer;
}

.contact-section__presentation:hover {
  background: var(--color-white);
  color: var(--color-brown);
}

.contact-section__form-wrap {
  flex: 1 1 56vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 0;
  z-index: 2;
}

.contact-section__form {
  max-width: 335px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
  position: relative;
}

.contact-section__form-title {
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  letter-spacing: 1px;
}

.contact-section__label {
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 2px;
  letter-spacing: 0.5px;
}

.contact-section__input {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--color-white);
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 14px;
  padding: 12px 0 8px 0;
  outline: none;
  transition: border-color 0.2s;
  margin-top: 6px;
}

.contact-section__input:focus {
  border-bottom: 1.5px solid var(--color-beige);
}

.contact-section__input::placeholder {
  color: #d32f2f;
  font-size: 1.3em;
  font-weight: bold;
  opacity: 1;
}

.contact-section__checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  font-size: 10px;
  font-family: var(--font-main);
  cursor: pointer;
  user-select: none;
}

.contact-section__checkbox {
  display: none;
}

.contact-section__checkbox-custom {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 2px solid var(--color-white);
  background: transparent;
  display: inline-block;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}

.contact-section__checkbox-custom::before {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: transparent;
  border-radius: 4px;
  z-index: 0;
  transition: background 0.2s;
}

.contact-section__checkbox:checked+.contact-section__checkbox-custom::before {
  background: #fff;
}

.contact-section__checkbox:checked+.contact-section__checkbox-custom::after {
  display: none;
}

.contact-section__submit {
  margin-top: 10px;
  padding: 12px 0;
  border: 1.5px solid var(--color-white);
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 16px;
  border-radius: 100px;
  cursor: pointer;
}

.contact-section__submit:hover {
  background: var(--color-white);
  color: var(--color-brown);
}

.contact-section__arch {
  position: absolute;
  right: -120px;
  bottom: -100px;
  width: 80vw;
  max-width: 900px;
  min-width: 400px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.contact-section__left {
  margin-left: 96px;
}

.modal-presentation {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(.4, 0, .2, 1);
  padding: 0 20px;
}

.modal-presentation--open {
  pointer-events: auto;
  opacity: 1;
}

.modal-presentation__backdrop {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 30, 25, 0.85);
  z-index: 0;
  transition: background 0.3s;
}

.modal-presentation__content {
  position: relative;
  z-index: 1;
  background: var(--color-green, #23332c);
  border-radius: 24px;
  box-shadow: 0 8px 48px 0 rgba(0, 0, 0, 0.25);
  padding: 48px 32px 36px 32px;
  min-width: 350px;
  max-width: 450px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: modal-pop-in 0.45s cubic-bezier(.4, 0, .2, 1);
}

@keyframes modal-pop-in {
  0% {
    transform: scale(0.95) translateY(40px);
    opacity: 0;
  }

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

.modal-presentation__close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 32px;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}

.modal-presentation__close:hover {
  color: var(--color-beige, #e5d7b9);
}

.modal-presentation__title {
  color: var(--color-white);
  font-family: var(--font-main), sans-serif;
  font-size: 20px;
  text-align: center;
  margin: 20px 0;
  letter-spacing: 1px;
}

.modal-presentation__desc {
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 15px;
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.5;
}

.modal-presentation__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.modal-presentation__input::placeholder {
  color: #d32f2f;
  font-size: 1.3em;
  font-weight: bold;
  opacity: 1;
}

.modal-presentation__submit {
  margin-top: 5px;
  padding: 12px 0;
  border: 1.5px solid var(--color-white);
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.modal-presentation__submit:hover {
  background: var(--color-white);
  color: var(--color-brown);
}

.modal-presentation__arch {
  width: 80px;
}

.slider--modal-lock {
  pointer-events: none;
  user-select: none;
}

@media (max-width: 1400px) {
  .main-section__slogan {
    font-size: 36px;
    line-height: 1.2;
    padding: 0 2vw;
    margin-bottom: 24px;
    margin-top: 10px;
  }

  .main-section__housing {
    top: auto;
    bottom: var(--housing-bottom, 0);
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 100vw;
    object-fit: contain;
  }

  .main-section__content {
    margin-top: 120px;
    padding-bottom: 120px;
  }

  .main-section__button {
    font-size: 16px;
    padding: 10px 18px;
    gap: 8px;
  }

  .main-section__sky {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    left: 0;
    top: 0;
  }

  .main-section__cloud {
    position: absolute;
    top: 65vh;
    transform: translateY(-50%);
    z-index: 1;
  }

  .main-section__cloud--left {
    left: 50%;
    transform: translate(-60%, -50%);
    max-width: 700px;
    width: 100%;
  }

  .main-section__cloud--right {
    left: 50%;
    transform: translate(-40%, -50%);
    max-width: 700px;
    width: 100%;
  }

  .main-section__content {
    margin-top: 10vh;
  }

  .main-header__burger,
  .main-header__mobile-menu {
    display: block;
  }

  .main-header__burger {
    top: 16px;
    left: 16px;
    position: fixed;
    z-index: 1300;
    margin: 0;
    order: unset;
    display: block;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1200;
  }

  .main-header__container {
    padding-left: 48px;
  }

  .main-header__link,
  .main-header__button {
    display: none;
  }

  .main-header__burger::before,
  .main-header__burger::after,
  .main-header__burger span {
    content: '';
    display: block;
    position: absolute;
    left: 6px;
    right: 6px;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
  }

  .main-header__burger::before {
    top: 9px;
  }

  .main-header__burger span {
    top: 16px;
  }

  .main-header__burger::after {
    top: 23px;
  }

  .main-header__burger.active::before {
    top: 16px;
    transform: rotate(45deg);
  }

  .main-header__burger.active span {
    opacity: 0;
  }

  .main-header__burger.active::after {
    top: 16px;
    transform: rotate(-45deg);
  }

  .main-header__mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    background: var(--color-green);
    z-index: 1100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(.4, 0, .2, 1), opacity 0.25s cubic-bezier(.4, 0, .2, 1);
    padding-top: 12px;
  }

  .main-header__mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-header__mobile-menu-link {
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 100;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s;
  }

  .main-header__mobile-menu-link:last-child {
    border-bottom: none;
  }

  .main-header__mobile-menu-link:active,
  .main-header__mobile-menu-link:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .main-header__logo {
    display: none;
  }

  .character-section {
    margin-top: 72px;
  }

  .character-section__header-row {
    margin-left: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

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

  .character-section__subtitle {
    font-size: 24px;
    line-height: 1.4;
  }

  .privilege-section {
    margin-top: 72px;
  }

  .privilege-section__header-row {
    margin-left: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

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

  .privilege-section__subtitle {
    font-size: 24px;
    line-height: 1.4;
  }

  .innovation-section {
    margin-top: 72px;
  }

  .innovation-section__header-row {
    margin-left: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

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

  .innovation-section__subtitle {
    font-size: 24px;
    line-height: 1.4;
  }

  .slider-caption-wrapper {
    max-width: 90vw;
  }

  .slider-caption {
    font-size: 18px;
    line-height: 1.4;
  }

  .location-section {
    margin-top: 72px;
  }

  .location-section__map-wrap {
    margin-top: 0;
    width: 100vw;
  }

  .location-section__logo {
    margin: 0 0 20px 0;
  }

  .location-section__header-row {
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

  .location-section__subtitle {
    font-size: 24px;
    line-height: 1.4;
    margin: 0;
    width: fit-content;
  }

  .location-section__content-flex {
    flex-wrap: wrap;
  }

  .location-section__content-flex> :first-child {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .location-section__address-block {
    margin: 20px 0 0 20px;
  }

  .location-section__address-text {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .location-section__logo {
    display: none;
  }

  .contact-section {
    margin-top: 72px;
    flex-direction: column;
  }

  .contact-section__left {
    margin: 0 26px;
    padding: 0;
  }

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

  .contact-section__desc {
    margin: 0 20px 10px 0;
    font-size: 16px;
  }

  .contact-section__row {
    margin: 0;
    gap: 10px;
  }

  .contact-section__phone {
    font-size: 16px;
  }

  .contact-section__presentation {
    font-size: 16px;
    padding: 8px 16px;
    margin-top: 8px;
  }

  .contact-section__form-wrap {
    width: 100vw;
    margin: 20px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .contact-section__form {
    margin-top: 20px;
    gap: 6px;
    margin: 0;
  }

  .contact-section__form-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .contact-section__label {
    font-size: 12px;
    gap: 2px;
  }

  .contact-section__input {
    font-size: 14px;
    padding: 0;
  }

  .contact-section__checkbox-label {
    font-size: 10px;
    gap: 8px;
  }

  .contact-section__checkbox-custom {
    width: 18px;
    height: 18px;
    border-radius: 5px;
  }

  .contact-section__checkbox-custom::before {
    width: 14px;
    height: 14px;
  }

  .contact-section__submit {
    font-size: 14px;
    padding: 10px 0;
    margin-top: 10px;
  }

  .contact-section__arch {
    width: 600px;
    right: -80px;
    bottom: 10px;
  }

  .slider-dot.hidden {
    display: block;
  }
}

@media (max-width: 500px) {
  .main-header__burger {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 1300;
    margin: 0;
    order: unset;
    width: 28px;
    height: 28px;
  }

  .main-header__burger::before,
  .main-header__burger::after,
  .main-header__burger span {
    left: 3px;
    right: 3px;
    height: 2px;
  }

  .main-header__burger::before {
    top: 6px;
  }

  .main-header__burger span {
    top: 12px;
  }

  .main-header__burger::after {
    top: 18px;
  }

  .main-header__burger.active::before {
    top: 12px;
  }

  .main-header__burger.active::after {
    top: 12px;
  }

  .main-header__container {
    padding-left: 36px;
  }

  .main-header__mobile-menu-link {
    font-size: 16px;
    padding: 10px 10px;
  }

  .main-header__logo {
    display: none;
  }

  .main-section__cloud {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    z-index: 1;
  }

  .main-section__cloud--left {
    left: 50%;
    transform: translate(-60%, -50%);
    max-width: 500px;
  }

  .main-section__cloud--right {
    left: 50%;
    transform: translate(-40%, -50%);
    max-width: 500px;
  }

  .main-section__content {
    margin-top: 15vh;
  }

  .main-section__slogan {
    font-size: 20px;
    line-height: 1.6;
  }

  .main-section__button {
    font-size: 16px;
    padding: 8px 12px;
    gap: 6px;
  }

  .main-section__housing {
    top: auto;
    bottom: var(--housing-bottom, 0);
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 100vw;
    object-fit: contain;
  }

  .character-section {
    margin-top: 72px;
  }

  .character-section__header-row {
    margin: 0 26px 40px 26px;
  }

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

  .character-section__subtitle {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .privilege-section {
    margin-top: 72px;
  }

  .privilege-section__header-row {
    margin: 0 26px 40px 26px;
  }

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

  .privilege-section__subtitle {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .innovation-section {
    margin-top: 72px;
  }

  .innovation-section__header-row {
    margin: 0 26px 40px 26px;
  }

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

  .innovation-section__subtitle {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .slider-caption {
    font-size: 16px;
  }

  .location-section {
    margin-top: 72px;
  }

  .location-section__header-row {
    gap: 10px;
  }

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

  .location-section__subtitle {
    margin: 0;
    font-size: 20px;
    line-height: 1.4;
    width: 90vw;
  }

  .location-section__address-block {
    margin: 15px 0 0 20px;
  }

  .location-section__address-text {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .location-section__button {
    margin-top: 10px
  }

  .location-section__logo {
    display: none;
  }

  .contact-section {
    margin-top: 84px;
  }

  .contact-section__left {
    margin: 0 26px;
    padding: 0;
  }

  .contact-section__title {
    font-size: 48px;
    margin-bottom: 5px;
  }

  .contact-section__desc {
    font-size: 14px;
    margin: 0 30px 10px 0;
  }

  .contact-section__row {
    margin: 0;
  }

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

  .contact-section__social img {
    width: 24px;
    height: 24px;
  }

  .contact-section__form {
    margin: 0;
  }

  .contact-section__form-title {
    font-size: 14px;
  }

  .contact-section__arch {
    width: 600px;
    right: -100px;
    bottom: 20px;
  }

  .contact-section__checkbox-custom::before {
    width: 14px;
    height: 14px;
  }

  .contact-section__presentation {
    margin: 10px 0 0 0;
    font-size: 12px;
  }

  .contact-section__submit {
    margin-top: 10px;
  }

  .comfort-section__text {
    font-size: 20px;
  }

  .modal-presentation__content {
    padding: 32px 8vw 24px 8vw;
    max-width: 98vw;
  }

  .modal-presentation__title {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .modal-presentation__desc {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .modal-presentation__form {
    gap: 10px;
    margin-bottom: 12px;
  }

  .modal-presentation__arch {
    width: 48px;
    margin-top: 8px;
  }

  .slider-dot.hidden {
    display: block;
  }

  .comfort-modal {
    font-size: 18px !important;
  }

  .hide-on-mobile {
    display: none;
  }

  .slider-arrow {
    display: none;
  }
}

.next-section__container {
  margin-top: 130px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.next-section__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 108px;
}

.next-section__logo {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.next-section__logo img:first-child {
  height: 64px;
  width: auto;
}

.next-section__logo img:last-child {
  height: 36px;
  width: auto;
}

.next-section__logo-text {
  width: 180px;
  height: auto;
  margin-bottom: 18px;
}

.next-section__slogan {
  margin-top: 20px;
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.4;
  margin: 25px 0;
  text-transform: uppercase;
}

.next-section__phone {
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 16px;
  margin-bottom: 16px;
  text-decoration: none;
}

.next-section__phone:hover {
  text-decoration: underline !important;
  text-underline-offset: 16px !important;
}

.next-section__mail {
  display: inline-block;
  margin-bottom: 16px;
}

.next-section__mail img {
  width: 32px;
  height: 32px;
  filter: brightness(1.1);
  transition: filter 0.2s;
}

.next-section__mail:hover img {
  filter: brightness(2);
}

.next-section__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 0 108px;
  gap: 18px;
}

.next-section__menu-link {
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 15px;
  text-decoration: none;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
  transition: color 0.2s;
  cursor: pointer;
}

.next-section__menu-link:hover {
  text-decoration: underline;
  text-underline-offset: 16px;
}

.next-section__copyright {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.next-section__copyright-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.next-section__contacts-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.next-section__logo-it-slav {
  width: 50px;
}

.next-section__logo-it-slav-link {
  color: var(--color-white);
  font-family: var(--font-main);
  text-decoration: none !important;
}

.next-section__logo-it-slav-link:hover {
  text-decoration: underline !important;
  text-underline-offset: 16px !important;
}

.next-section__phone {
  color: var(--color-white) !important;
  font-family: var(--font-main);
  font-size: 16px;
  text-decoration: none !important;
  cursor: pointer;
  transition: color 0.2s;
}

@media (max-width: 1400px) {
  .next-section__container {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 72px;
    padding-left: 32px;
    padding-right: 0;
    min-height: unset;
  }

  .next-section__left {
    margin: 0;
    align-items: flex-start;
  }

  .next-section__right {
    margin: 0;
    align-items: flex-start;
    gap: 10px;
    margin-top: 24px;
  }

  .next-section__copyright-row {
    gap: 10px;
    justify-content: flex-start;
  }

  .next-section__copyright {
    position: static;
    margin-top: 32px;
    left: unset;
    bottom: unset;
    transform: none;
    text-align: left;
    font-size: 12px;
    padding-bottom: 24px;
  }
}

.comfort-modal__backdrop {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 30, 25, 0.85);
  z-index: 2999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s cubic-bezier(.4, 0, .2, 1);
}

.comfort-modal__backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.comfort-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 100%);
  opacity: 0;
  width: 650px;
  max-width: 100%;
  min-height: 120px;
  max-height: 60vh;
  background: var(--color-green, #23332c);
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
  border-radius: 24px;
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.18);
  padding: 24px;
  z-index: 3000;
  pointer-events: none;
  transition: transform 0.9s cubic-bezier(.4, 0, .2, 1), opacity 0.9s cubic-bezier(.4, 0, .2, 1);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.comfort-modal.active {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: auto;
}

.required-asterisk {
  color: #d32f2f;
  font-size: 1.3em;
  font-weight: bold;
  vertical-align: middle;
  margin-left: 4px;
}

.custom-placeholder-wrap {
  position: relative;
  margin-bottom: 8px;
}

.custom-placeholder {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
  z-index: 2;
  display: flex;
  align-items: center;
}

.custom-placeholder__asterisk {
  color: #d32f2f;
  font-size: 1.3em;
  font-weight: bold;
  margin-right: 6px;
}

.custom-placeholder-wrap input:focus~.custom-placeholder,
.custom-placeholder-wrap input.filled~.custom-placeholder {
  opacity: 0;
}

.custom-placeholder-wrap input {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--color-white);
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 14px;
  padding: 12px 0 8px 0;
  outline: none;
  width: 100%;
  position: relative;
  z-index: 3;
}

@media (min-width: 1401px) {
  .character-section .slider-dots .slider-dot:last-child {
    display: none;
  }
}

.privacy-policy-link {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

.privacy-policy-link:hover {
  text-decoration: underline;
  text-underline-offset: 16px;
}