@charset "UTF-8";
@media (max-width: 960px) {
  .lpc-elements-headline__title, .lpc-features-icon__title, .lpc-form-5__title {
    font-size: 30px !important;
  }
  .lpc-list-illustration__icon {
    font-size: 25px !important;
  }
  .lp-header-text-1, .lp-header-text-2, .lp-header-text-3, .lp-header-text-4, .lp-button {
    font-size: 16px !important;
  }
}
@media (max-width: 640px) {
  .lpc-elements-headline__title, .lpc-features-icon__title, .lpc-form-5__title {
    font-size: 25px !important;
  }
  .lpc-list-illustration__icon {
    font-size: 22px !important;
  }
  .lpc-features-icon__subtitle {
    font-size: 19px !important;
  }
  .lp-header-text-1, .lp-header-text-2, .lp-header-text-3, .lp-header-text-4, .lp-button {
    font-size: 15px !important;
  }
}
/* ВАЖНО: Убираем !important из сокращенной записи или переносим его в свойства */
.js-mos-anim-init {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  /* Убрали !important здесь */
}
.js-mos-anim-ready {
  opacity: 1;
  transform: translateY(0);
  /* Если очень нужно, !important можно оставить только для финальных состояний */
}
/* 1. Скрываем стандартный системный курсор */
html, body, a, a img, button, input, textarea, select, [role="button"] {
  cursor: none !important;
}
/* 2. Основной контейнер курсора (внешний круг) */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  /* Оставляем ваш дизайн, но меняем цвет на белый для инверсии */
  border: 1px solid rgba(204, 204, 204, 0.7);
  /* Магия контраста */
  mix-blend-mode: difference;
  align-items: center;
  justify-content: center;
  /* Центрирование относительно мыши */
  transform: translate(-50%, -50%);
  /* Плавная анимация */
  transition: width 0.3s ease, height 0.3s ease;
  will-change: width, height;
  display: none;
}
/* 3. Внутренняя точка */
.cursor-dot {
  width: 6px;
  height: 6px;
  /* Точку тоже делаем белой, чтобы она инвертировалась вместе с кругом */
  background-color: rgba(204, 204, 204, 0.7);
  border-radius: 50%;
  transition: width 0.3s ease, height 0.3s ease;
}
/* 4. Состояние при наведении */
.custom-cursor.active {
  width: 80px;
  height: 80px;
}
.custom-cursor.active .cursor-dot {
  width: 5px;
  height: 5px;
}
.site-versions-wrap {
  display: flex;
  position: relative;
  margin: 0px 0 0 0px;
  font-weight: 500;
  font-size: 15px;
  text-align: left;
  align-items: baseline;
}
@media (max-width: 640px) {
  .site-versions-wrap {
    /*justify-content: center;*/
    margin-bottom: 0px;
  }
}
.site-versions-title {
  color: #fff;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  position: relative;
  font-weight: 500;
  border: 2px solid #fff;
}
.site-versions-title em, .site-versions-title i {
  font-size: 0;
  line-height: 0;
  width: 20px;
  height: 20px;
  margin: 0 10px 0 0;
}
.site-versions-title em svg, .site-versions-title i svg {
  fill: #fff;
  width: 100%;
  height: 100%;
}
.site-versions-title i {
  margin: 0 0 0 10px;
  width: 10px;
  height: 10px;
}
@media (max-width: 640px) {
  .site-versions-title {
    padding: 4px;
    border: 1px solid #fff;
  }
}
.site-versions-list {
  position: absolute;
  z-index: 16;
  left: 0;
  top: 105%;
  width: 100%;
  margin: 2px 0 0;
  background: #fff;
  border: 2px solid #000;
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
  display: none;
}
.site-versions-list a {
  display: block;
  padding: 4px 0 4px 0px;
  text-align: center;
  text-decoration: none;
  color: #000;
}
.site-versions-list a:hover {
  text-decoration: underline;
  color: #000;
}
