@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;
}
