@charset "UTF-8";
:root {
  --font-family: "Bounded", "Open Sans", sans-serif;
  --content-width: 1570px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --light-blue:#669BBC;
  --text-color:#141414;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Bounded";
  src: url("../fonts/../fonts/Bounded-ExtraLight.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Bounded";
  src: url("../fonts/../fonts/Bounded-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Bounded";
  src: url("../fonts/../fonts/Bounded-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.graph-modal__close {
  width: 12px;
  height: 12px;
}

/* Общие стили header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e8e8e8;
  z-index: 1000;
  padding: 15px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__container {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}

/* Бургер меню */
.burger-mobile {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 24px;
  height: 18px;
  position: relative;
  z-index: 1001;
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.burger-mobile__line {
  width: 100%;
  height: 2px;
  background: #2c3e50;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.burger-mobile__line:not(:last-child) {
  margin-bottom: 4px;
}

.burger-mobile[aria-expanded=true] .burger-mobile__line:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(6px, 6px);
  -ms-transform: rotate(45deg) translate(6px, 6px);
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-mobile[aria-expanded=true] .burger-mobile__line:nth-child(2) {
  opacity: 0;
}

.burger-mobile[aria-expanded=true] .burger-mobile__line:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(6px, -6px);
  -ms-transform: rotate(-45deg) translate(6px, -6px);
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Логотип */
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  min-width: 85px;
}

.header__logo-icon {
  width: 52px;
  height: 52px;
  color: var(--light-blue);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-animation: rotateDisk 8s linear infinite;
  animation: rotateDisk 8s linear infinite;
  -webkit-filter: drop-shadow(0 2px 6px rgba(102, 155, 188, 0.3));
  filter: drop-shadow(0 2px 6px rgba(102, 155, 188, 0.3));
}

.header__logo-icon circle {
  -webkit-animation: rotateCircle 6s linear infinite;
  animation: rotateCircle 6s linear infinite;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.header__logo-icon line {
  -webkit-animation: rotateLines 12s linear infinite;
  animation: rotateLines 12s linear infinite;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.header__logo-icon rect {
  -webkit-animation: pulseBrowser 4s ease-in-out infinite;
  animation: pulseBrowser 4s ease-in-out infinite;
}

.header__logo-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-color);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.header__logo:hover .header__logo-icon {
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}

.header__logo:hover .header__logo-text {
  color: var(--light-blue);
}

/* Навигация */
.nav {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0 40px;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 40px;
  height: 100%;
}

.nav__item {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav__link {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  text-transform: lowercase;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  position: relative;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  white-space: nowrap;
}

.nav__link::first-letter {
  text-transform: uppercase;
}

.nav__link:hover {
  color: var(--light-blue);
}

/* Стили для иконки шеврона в dropdown */
.nav__link-icon {
  margin-left: 6px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.nav__item:hover .nav__link-icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* Выпадающее меню */
.header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 12px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav__item:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.header__dropdown-item a {
  display: block;
  padding: 8px 20px;
  color: #2c3e50;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 14px;
}

.header__dropdown-item a:hover {
  background: #f8f9fa;
  color: var(--light-blue);
  padding-left: 25px;
}

/* Социальные иконки */
.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.social__item {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.social__item:hover {
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.social__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 1.5px solid #e8e8e8;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.social__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.social__link--vk::before {
  background: linear-gradient(135deg, #4C75A3, #5D88C0);
}

.social__link--tg::before {
  background: linear-gradient(135deg, #2AABEE, #229ED9);
}

.social__link--wt::before {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.social__link:hover::before {
  opacity: 1;
}

.social__link:hover {
  -webkit-transform: translateY(-3px) scale(1.1);
  -ms-transform: translateY(-3px) scale(1.1);
  transform: translateY(-3px) scale(1.1);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: transparent;
}

.social__link img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 30px;
  height: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
  position: relative;
  z-index: 1;
}

.social__link--wt img {
  width: 28px;
  height: 28px;
}

.social__link:hover img {
  -webkit-filter: brightness(1);
  filter: brightness(1);
  -webkit-transform: rotate(8deg) scale(1.1);
  -ms-transform: rotate(8deg) scale(1.1);
  transform: rotate(8deg) scale(1.1);
}

/* Блок "Мы онлайн!" */
.header__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

.header__text {
  font-size: 12px;
  color: #7f8c8d;
  margin: 0;
  line-height: 1.4;
  max-width: 93px;
  text-align: right;
}

.header__text span {
  display: block;
  color: #27ae60;
  font-weight: 600;
}

/* Кнопка */
.header__btn {
  background: linear-gradient(135deg, var(--light-blue), #4a8bad);
  color: white;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-shadow: 0 4px 15px rgba(102, 155, 188, 0.3);
  box-shadow: 0 4px 15px rgba(102, 155, 188, 0.3);
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
  white-space: nowrap;
}

.header__btn:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(102, 155, 188, 0.4);
  box-shadow: 0 6px 20px rgba(102, 155, 188, 0.4);
}

/* Адаптация с 1300px */
@media (max-width: 1300px) {
  /* Показываем бургер */
  .burger-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  /* Контейнер хедера - все в одну линию */
  .header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px;
  }
  /* Логотип слева */
  .header__logo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  /* Соц сети по центру */
  .social {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  /* Скрываем элементы */
  .header__box {
    display: none;
  }
  .header__btn {
    display: none;
  }
  /* Боковое меню */
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    margin: 0;
    padding: 80px 30px 30px;
    overflow-y: auto;
    -webkit-transition: left 0.4s ease;
    transition: left 0.4s ease;
    -webkit-box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .nav.active {
    left: 0;
  }
  /* Overlay для затемнения */
  body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 999;
    pointer-events: none;
  }
  body.menu-open::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  body.menu-open {
    overflow: hidden;
  }
  /* Список навигации */
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0;
    height: auto;
  }
  .nav__item {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
  }
  /* Ссылки меню */
  .nav__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0;
    font-size: 18px;
    color: #2c3e50;
    border-bottom: 1px solid #f0f0f0;
    height: auto;
  }
  .nav__link:hover {
    color: var(--light-blue);
  }
  /* Показываем иконку шеврона в мобильной версии */
  .nav__link-icon {
    display: block;
    margin-left: auto;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .nav__item.dropdown-active .nav__link-icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .nav__item:hover .nav__link-icon {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .nav__item.dropdown-active:hover .nav__link-icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  /* Dropdown меню */
  .header__dropdown {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: #f8f9fa;
    -webkit-transition: max-height 0.4s ease, padding 0.4s ease;
    transition: max-height 0.4s ease, padding 0.4s ease;
    min-width: auto;
    width: 100%;
  }
  .nav__item.dropdown-active .header__dropdown {
    max-height: 500px;
    padding: 12px 0;
  }
  /* Отключаем hover эффект для dropdown на мобильных */
  .nav__item:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  /* Элементы dropdown */
  .header__dropdown-item {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .header__dropdown-item a {
    display: block;
    padding: 10px 20px;
    color: #7f8c8d;
    text-decoration: none;
    font-size: 15px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
  }
  .header__dropdown-item a:hover {
    color: var(--light-blue);
    background: white;
    padding-left: 25px;
  }
}
@media (max-width: 768px) {
  .header__container {
    padding: 0 15px;
    gap: 12px;
  }
  .nav {
    width: 280px;
    padding: 70px 25px 25px;
  }
  .header__logo-icon {
    width: 42px;
    height: 42px;
  }
  .header__logo-text {
    font-size: 13px;
  }
  .social {
    gap: 10px;
  }
  .social__link {
    width: 38px;
    height: 38px;
  }
  .social__link img {
    width: 24px;
    height: 24px;
  }
  .social__link--wt img {
    width: 22px;
    height: 22px;
  }
  .nav__link {
    padding: 13px 0;
    font-size: 17px;
  }
  .header__dropdown-item a {
    font-size: 14px;
    padding: 9px 18px;
  }
  .header__dropdown-item a:hover {
    padding-left: 23px;
  }
}
@media (max-width: 576px) {
  .header__container {
    padding: 0 12px;
    gap: 10px;
  }
  .nav {
    width: 260px;
    padding: 60px 20px 20px;
  }
  .header__logo {
    min-width: auto;
  }
  .header__logo-icon {
    width: 36px;
    height: 36px;
  }
  .header__logo-text {
    font-size: 11px;
  }
  .social {
    gap: 8px;
  }
  .social__link {
    width: 34px;
    height: 34px;
  }
  .social__link img {
    width: 20px;
    height: 20px;
  }
  .social__link--wt img {
    width: 19px;
    height: 19px;
  }
  .nav__link {
    font-size: 16px;
    padding: 12px 0;
  }
  .header__dropdown-item a {
    font-size: 14px;
    padding: 8px 15px;
  }
  .header__dropdown-item a:hover {
    padding-left: 20px;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero__container {
  margin: 0 auto;
  min-height: 593px;
  padding: 0px 15px;
  position: relative;
  max-width: 1200px;
}
.hero__inner {
  padding-top: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-position: center top 100px;
  background-repeat: no-repeat;
  position: relative;
  gap: 40px;
}
.hero__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg.png");
  background-position: center top 100px;
  background-repeat: no-repeat;
  z-index: -1;
  -webkit-animation: moveBackground 20s ease-in-out infinite;
  animation: moveBackground 20s ease-in-out infinite;
}
.hero__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
  z-index: -1;
  -webkit-animation: shimmer 8s ease-in-out infinite;
  animation: shimmer 8s ease-in-out infinite;
}
.hero__title {
  margin: 0;
  max-width: 788px;
  font-family: Bounded;
  font-weight: 400;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: -2%;
  margin-bottom: 20px;
  -webkit-animation: fadeInUp 1s ease-out;
  animation: fadeInUp 1s ease-out;
}
.hero__title span {
  color: var(--light-blue);
  -webkit-animation: colorShift 3s ease-in-out infinite;
  animation: colorShift 3s ease-in-out infinite;
}
.hero__subtitle {
  margin: 0;
  max-width: 534px;
  font-family: Bounded;
  font-weight: 300;
  font-style: Light;
  font-size: 22px;
  color: var(--text-color);
  line-height: 100%;
  -webkit-animation: fadeInUp 1s ease-out 0.3s both;
  animation: fadeInUp 1s ease-out 0.3s both;
}
.hero__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin: 32px 0 40px;
  -webkit-animation: fadeInUp 1s ease-out 0.6s both;
  animation: fadeInUp 1s ease-out 0.6s both;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.hero__guarantee-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 20px rgba(102, 155, 188, 0.15);
  box-shadow: 0 4px 20px rgba(102, 155, 188, 0.15);
  border: 1px solid rgba(102, 155, 188, 0.2);
  backdrop-filter: blur(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.hero__guarantee-badge:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 25px rgba(102, 155, 188, 0.25);
  box-shadow: 0 8px 25px rgba(102, 155, 188, 0.25);
  border-color: rgba(102, 155, 188, 0.4);
}
.hero__guarantee-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(102, 155, 188, 0.1)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(102, 155, 188, 0.1), transparent);
  -webkit-transition: left 0.7s ease;
  transition: left 0.7s ease;
}
.hero__guarantee-badge:hover::before {
  left: 100%;
}
.hero__guarantee-btn {
  padding: 20px 48px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
  box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
  border-radius: 20px;
  color: var(--light-color);
  background: linear-gradient(135deg, var(--light-blue), #4a8bad);
  font-family: Bounded;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0%;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: none;
  outline: none;
  display: inline-block;
  text-decoration: none;
  z-index: 1;
  white-space: nowrap;
  min-width: 320px;
}
.hero__guarantee-btn:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 25px rgba(102, 155, 188, 0.4);
  box-shadow: 0 8px 25px rgba(102, 155, 188, 0.4);
}
.hero__guarantee-btn:hover::before {
  opacity: 1;
}
.hero__guarantee-btn:active {
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 15px rgba(102, 155, 188, 0.3);
  box-shadow: 0 4px 15px rgba(102, 155, 188, 0.3);
}
.hero__guarantee-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4a8bad, var(--light-blue));
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.hero__guarantee-btn::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--light-blue) 0%, #4a8bad 50%, var(--light-blue) 100%);
  border-radius: 22px;
  z-index: -2;
  opacity: 0;
  -webkit-filter: blur(8px);
  filter: blur(8px);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.hero__guarantee-btn:hover::after {
  opacity: 0.6;
}
.hero__guarantee-badge:last-child {
  min-width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.hero__guarantee-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--light-blue), #4a8bad);
  border-radius: 50%;
  color: white;
  font-size: 16px;
  font-weight: bold;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-shadow: 0 2px 8px rgba(102, 155, 188, 0.4);
  box-shadow: 0 2px 8px rgba(102, 155, 188, 0.4);
  position: relative;
  z-index: 1;
}
.hero__guarantee-text {
  font-family: "Bounded", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text-color);
  text-align: left;
  z-index: 1;
  white-space: nowrap;
}
.hero__right {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 487px;
  height: 356px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.hero__left {
  -webkit-animation: slideInLeft 1s ease-out 0.2s both;
  animation: slideInLeft 1s ease-out 0.2s both;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.hero__right {
  -webkit-animation: slideInRight 1s ease-out 0.4s both;
  animation: slideInRight 1s ease-out 0.4s both;
}

.laptop-slider {
  margin-top: -25px;
  width: 360px;
  height: 220px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.laptop-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.slider__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}

.slider__slide {
  background-size: contain;
  background-repeat: no-repeat;
  min-width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.slider__slide.active {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.slider__slide:nth-child(1) {
  background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
}

.slider__slide:nth-child(2) {
  background: linear-gradient(135deg, #4ECDC4, #6BE7E1);
}

.slider__slide:nth-child(3) {
  background: linear-gradient(135deg, #45B7D1, #64D5EA);
}

.slider__slide:nth-child(4) {
  background: linear-gradient(135deg, #96CEB4, #B4E2CA);
}

.hero-slide-content {
  text-align: center;
  color: white;
}

.hero-slide-content h3 {
  font-family: Bounded;
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-slide-content p {
  font-family: Bounded;
  font-size: 14px;
  line-height: 1.3;
  opacity: 0.95;
  font-weight: 300;
}

/* Анимации для слайдера */
@-webkit-keyframes slideInFromRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInFromRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.slider__slide.active .slide-content {
  -webkit-animation: slideInFromRight 0.6s ease-out 0.2s both;
  animation: slideInFromRight 0.6s ease-out 0.2s both;
}

/* Адаптация для экранов больше 1500px */
@media (min-width: 1500px) {
  .hero__container {
    max-width: 1400px;
  }
  .hero__right {
    width: 550px;
    height: 400px;
  }
  .laptop-slider {
    width: 380px;
    height: 240px;
  }
  .hero-slide-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .hero-slide-content p {
    font-size: 16px;
  }
  .hero__inner {
    padding-top: 180px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .hero__title {
    font-size: 60px;
    max-width: 750px;
  }
  .hero__subtitle {
    font-size: 24px;
    max-width: 600px;
  }
  .hero__block {
    margin: 36px 0 45px;
  }
  .hero__guarantee-btn {
    padding: 22px 52px;
    font-size: 22px;
    min-width: 350px;
  }
  .hero__guarantee-badge:last-child {
    min-width: 350px;
  }
  .hero__guarantee-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .hero__guarantee-text {
    font-size: 18px;
  }
}
/* Адаптация для очень больших экранов */
@media (min-width: 1800px) {
  .hero__container {
    max-width: 1600px;
  }
  .hero__right {
    width: 600px;
    height: 440px;
  }
  .laptop-slider {
    width: 420px;
    height: 260px;
  }
  .hero__subtitle {
    font-size: 26px;
  }
  .hero__block {
    margin: 40px 0 50px;
  }
  .hero__guarantee-btn {
    padding: 24px 56px;
    font-size: 24px;
    min-width: 380px;
  }
  .hero__guarantee-badge:last-child {
    min-width: 380px;
  }
  .hero__guarantee-text {
    font-size: 19px;
  }
}
/* Для стандартных экранов */
@media (max-width: 1499px) {
  .hero__right {
    width: 487px;
    height: 356px;
  }
  .laptop-slider {
    width: 340px;
    height: 210px;
  }
  .hero-slide-content h3 {
    font-size: 18px;
  }
  .hero-slide-content p {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  .hero__title {
    font-size: 50px;
    max-width: 100%;
    line-height: 115%;
    margin-bottom: 25px;
  }
  .hero__block {
    margin: 30px 0 36px;
  }
}
/* Адаптация для планшетов (1024px и меньше) */
@media (max-width: 1024px) {
  .hero__container {
    min-height: auto;
  }
  .hero__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    padding-top: 150px;
    gap: 50px;
  }
  .hero__inner::before {
    display: none;
  }
  .hero__left {
    max-width: 100%;
  }
  .hero__right {
    margin: 0 auto;
    width: 500px;
    height: 365px;
  }
  .hero__subtitle {
    font-size: 20px;
    max-width: 100%;
    line-height: 140%;
    letter-spacing: 0.2px;
  }
  .hero__block {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 14px;
    margin: 28px 0 35px;
  }
  .hero__guarantee-badge {
    padding: 12px 20px;
  }
  .hero__guarantee-btn {
    padding: 18px 40px;
    font-size: 18px;
    border-radius: 18px;
    min-width: 280px;
  }
  .hero__guarantee-badge:last-child {
    min-width: 280px;
  }
  .hero__guarantee-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  .hero__guarantee-text {
    font-size: 15px;
    line-height: 1.3;
  }
  .laptop-slider {
    width: 380px;
    height: 235px;
    margin-top: -25px;
  }
  .hero-slide-content h3 {
    font-size: 20px;
  }
  .hero-slide-content p {
    font-size: 15px;
  }
}
/* Адаптация для мобильных устройств (768px и меньше) */
@media (max-width: 768px) {
  .hero__container {
    padding: 0px 15px;
  }
  .hero__inner {
    padding-top: 100px;
    gap: 40px;
    background: none !important;
  }
  .hero__inner::before {
    display: none;
  }
  .hero__title {
    font-size: 42px;
    line-height: 120%;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }
  .hero__subtitle {
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0.3px;
  }
  .hero__right {
    width: 420px;
    height: 307px;
  }
  .hero__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin: 24px 0 30px;
  }
  .hero__guarantee-badge {
    width: 100%;
    max-width: 100%;
    padding: 14px 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .hero__guarantee-btn {
    padding: 16px 32px;
    font-size: 17px;
    border-radius: 16px;
    width: 100%;
    min-width: auto;
    white-space: normal;
    line-height: 1.2;
    font-size: 16px;
  }
  .hero__guarantee-badge:last-child {
    width: 100%;
    min-width: auto;
    max-width: 100%;
  }
  .hero__guarantee-icon {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
  .hero__guarantee-text {
    font-size: 15px;
    line-height: 1.3;
    white-space: normal;
    text-align: center;
  }
  .laptop-slider {
    width: 300px;
    height: 190px;
    margin-top: -20px;
  }
  .hero-slide-content {
    padding: 18px;
  }
  .hero-slide-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .hero-slide-content p {
    font-size: 14px;
    line-height: 1.4;
  }
}
/* Адаптация для маленьких мобильных устройств (480px и меньше) */
@media (max-width: 480px) {
  .hero__inner {
    padding-top: 100px;
    gap: 35px;
  }
  .hero__inner::before {
    display: none;
  }
  .hero__title {
    font-size: 28px;
    line-height: 125%;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
  }
  .hero__subtitle {
    font-size: 17px;
    line-height: 160%;
    letter-spacing: 0.4px;
  }
  .hero__right {
    width: 350px;
    height: 256px;
  }
  .hero__block {
    margin: 20px 0 25px;
    gap: 10px;
  }
  .hero__guarantee-badge {
    padding: 12px 16px;
  }
  .hero__guarantee-btn {
    padding: 14px 20px;
    font-size: 15px;
    line-height: 1.3;
  }
  .hero__guarantee-icon {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }
  .hero__guarantee-text {
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
  }
  .laptop-slider {
    width: 250px;
    height: 153px;
    margin-top: -15px;
  }
  .hero-slide-content {
    padding: 15px;
  }
  .hero-slide-content h3 {
    font-size: 17px;
    line-height: 1.3;
  }
  .hero-slide-content p {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media (max-width: 375px) {
  .hero__subtitle {
    font-size: 16px;
    line-height: 165%;
    letter-spacing: 0.5px;
  }
  .hero__block {
    margin: 18px 0 22px;
  }
  .hero__guarantee-badge {
    padding: 10px 14px;
  }
  .hero__guarantee-btn {
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.4;
  }
  .hero__guarantee-icon {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  .hero__guarantee-text {
    font-size: 13px;
  }
  .hero-slide-content h3 {
    font-size: 16px;
    line-height: 1.4;
  }
  .hero-slide-content p {
    font-size: 13px;
    line-height: 1.5;
  }
}
/* Для очень узких экранов (320px и меньше) */
@media (max-width: 320px) {
  .hero__guarantee-btn {
    font-size: 13px;
    padding: 10px 12px;
  }
  .hero__guarantee-text {
    font-size: 12px;
  }
}
@-webkit-keyframes moveBackground {
  0%, 100% {
    -webkit-transform: translateX(0px) translateY(0px) scale(1);
    transform: translateX(0px) translateY(0px) scale(1);
    -webkit-filter: brightness(1) hue-rotate(0deg);
    filter: brightness(1) hue-rotate(0deg);
  }
  25% {
    -webkit-transform: translateX(-15px) translateY(-8px) scale(1.02);
    transform: translateX(-15px) translateY(-8px) scale(1.02);
    -webkit-filter: brightness(1.05) hue-rotate(5deg);
    filter: brightness(1.05) hue-rotate(5deg);
  }
  50% {
    -webkit-transform: translateX(10px) translateY(12px) scale(1.01);
    transform: translateX(10px) translateY(12px) scale(1.01);
    -webkit-filter: brightness(1.02) hue-rotate(-3deg);
    filter: brightness(1.02) hue-rotate(-3deg);
  }
  75% {
    -webkit-transform: translateX(12px) translateY(-10px) scale(1.03);
    transform: translateX(12px) translateY(-10px) scale(1.03);
    -webkit-filter: brightness(1.08) hue-rotate(8deg);
    filter: brightness(1.08) hue-rotate(8deg);
  }
}
@keyframes moveBackground {
  0%, 100% {
    -webkit-transform: translateX(0px) translateY(0px) scale(1);
    transform: translateX(0px) translateY(0px) scale(1);
    -webkit-filter: brightness(1) hue-rotate(0deg);
    filter: brightness(1) hue-rotate(0deg);
  }
  25% {
    -webkit-transform: translateX(-15px) translateY(-8px) scale(1.02);
    transform: translateX(-15px) translateY(-8px) scale(1.02);
    -webkit-filter: brightness(1.05) hue-rotate(5deg);
    filter: brightness(1.05) hue-rotate(5deg);
  }
  50% {
    -webkit-transform: translateX(10px) translateY(12px) scale(1.01);
    transform: translateX(10px) translateY(12px) scale(1.01);
    -webkit-filter: brightness(1.02) hue-rotate(-3deg);
    filter: brightness(1.02) hue-rotate(-3deg);
  }
  75% {
    -webkit-transform: translateX(12px) translateY(-10px) scale(1.03);
    transform: translateX(12px) translateY(-10px) scale(1.03);
    -webkit-filter: brightness(1.08) hue-rotate(8deg);
    filter: brightness(1.08) hue-rotate(8deg);
  }
}
@-webkit-keyframes shimmer {
  0%, 100% {
    opacity: 0.3;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    opacity: 0.7;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes shimmer {
  0%, 100% {
    opacity: 0.3;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    opacity: 0.7;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes colorShift {
  0%, 100% {
    color: var(--light-blue);
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
  }
  50% {
    color: #4dabf7;
    text-shadow: 0 0 20px rgba(77, 171, 247, 0.6);
  }
}
@keyframes colorShift {
  0%, 100% {
    color: var(--light-blue);
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
  }
  50% {
    color: #4dabf7;
    text-shadow: 0 0 20px rgba(77, 171, 247, 0.6);
  }
}
@-webkit-keyframes slideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* Базовые стили */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Секция квиза */
.quiz-section {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.quiz-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  z-index: 0;
}

/* Заголовок */
.quiz__header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.quiz-badge {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.quiz__title {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #f8fafc, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1.2;
}

.quiz__description {
  font-size: 18px;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Прогресс */
.quiz__progress {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.progress-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

.progress-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.progress-step.active {
  opacity: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #1e293b;
  border: 2px solid #334155;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
  color: #94a3b8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.progress-step.active .step-number {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-color: #3b82f6;
  color: white;
  -webkit-box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.step-label {
  font-size: 12px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.progress-line {
  width: 60px;
  height: 2px;
  background: #334155;
  margin: 0 5px;
}

/* Форма квиза */
.quiz-form {
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 100px rgba(59, 130, 246, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 100px rgba(59, 130, 246, 0.1);
  position: relative;
  z-index: 1;
}

.quiz-step {
  display: none;
  -webkit-animation: fadeIn 0.5s ease;
  animation: fadeIn 0.5s ease;
}

.quiz-step.active {
  display: block;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* Шапка шага */
.step-header {
  text-align: center;
  margin-bottom: 40px;
}

.step-counter {
  font-size: 14px;
  color: #3b82f6;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.step-question {
  font-size: 32px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 12px;
  line-height: 1.2;
}

.step-hint {
  font-size: 16px;
  color: #94a3b8;
}

/* Сетка опций */
.quiz-options-grid {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

.quiz-options-grid:not(.features-grid) {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Карточки */
.quiz-card {
  display: block;
  cursor: pointer;
  position: relative;
}

.quiz-card input {
  position: absolute;
  opacity: 0;
}

.card-content {
  background: #1e293b;
  border: 2px solid #334155;
  border-radius: 16px;
  padding: 24px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.quiz-card:hover .card-content {
  border-color: #3b82f6;
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.quiz-card input:checked + .card-content {
  border-color: #3b82f6;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  -webkit-box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.quiz-card input:checked + .card-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#3b82f6), to(#8b5cf6));
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

/* Иконки */
.card-icon-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
}

.card-icon {
  font-size: 32px;
  line-height: 1;
}

/* Текст карточек */
.card-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.5;
}

/* Чекбокс в карточках */
.card-check {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.quiz-card input:checked + .card-content .card-check {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.card-check svg circle {
  fill: #3b82f6;
  stroke: #3b82f6;
}

.card-check svg rect {
  fill: #3b82f6;
  stroke: #3b82f6;
}

/* Карточки бюджета */
.budget-card .card-content {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 30px 24px;
}

.budget-amount {
  margin-bottom: 8px;
}

.amount-main {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.amount-currency {
  font-size: 16px;
  color: #94a3b8;
  font-weight: 500;
}

.budget-amount.custom .amount-main {
  font-size: 22px;
  margin-bottom: 4px;
}

.budget-amount.custom .amount-currency {
  font-size: 14px;
  color: #3b82f6;
}

.budget-label {
  font-size: 14px;
  color: #94a3b8;
}

.budget-card.highlight .card-content {
  border-color: #8b5cf6;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
}

.budget-card.highlight:hover .card-content {
  border-color: #8b5cf6;
  -webkit-box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* Карточки сроков */
.timeline-card .card-content {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 30px 24px;
}

.timeline-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-badge.urgent {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.timeline-text {
  font-size: 16px;
  font-weight: 500;
  color: #f8fafc;
}

/* Карточки функций */
.feature-card .card-content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.feature-icon {
  font-size: 32px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.feature-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 4px;
}

.feature-price {
  font-size: 14px;
  color: #10b981;
  font-weight: 600;
}

.feature-card input:checked + .card-content .feature-price {
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
/* Сводка функций */
.features-summary {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.summary-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #94a3b8;
}

.summary-item span:last-child {
  font-weight: 600;
  color: #f8fafc;
  font-size: 16px;
}

#featuresTotal {
  color: #10b981;
}

/* Результаты */
.results-summary {
  margin-bottom: 40px;
}

.summary-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid #334155;
  border-radius: 16px;
  padding: 30px;
}

.summary-title {
  font-size: 20px;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #334155;
}

.summary-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.summary-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  color: #94a3b8;
}

.summary-value {
  color: #f8fafc;
  font-weight: 500;
}

.summary-divider {
  height: 1px;
  background: #334155;
  margin: 8px 0;
}

.summary-row.total {
  font-size: 20px;
  color: #f8fafc;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #334155;
}

.summary-total {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Способы доставки */
.contact-section {
  margin-bottom: 30px;
}

.delivery-options {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.delivery-card .card-content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.delivery-icon {
  font-size: 32px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.delivery-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 4px;
}

.delivery-text p {
  font-size: 13px;
  color: #94a3b8;
}

/* Поля ввода */
.contact-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.field-group {
  -webkit-animation: slideDown 0.3s ease;
  animation: slideDown 0.3s ease;
}

@-webkit-keyframes slideDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.field-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.label-text {
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
}

.label-required {
  color: #ef4444;
  font-size: 14px;
}

.contact-input,
.contact-textarea {
  width: 100%;
  background: #1e293b;
  border: 2px solid #334155;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  color: #f8fafc;
  font-family: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-input::-webkit-input-placeholder, .contact-textarea::-webkit-input-placeholder {
  color: #64748b;
}

.contact-input::-moz-placeholder, .contact-textarea::-moz-placeholder {
  color: #64748b;
}

.contact-input:-ms-input-placeholder, .contact-textarea:-ms-input-placeholder {
  color: #64748b;
}

.contact-input::-ms-input-placeholder, .contact-textarea::-ms-input-placeholder {
  color: #64748b;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #64748b;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #3b82f6;
  -webkit-box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Чекбокс политики */
.privacy-check {
  margin-top: 10px;
}

.checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #475569;
  border-radius: 6px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.checkbox-label input:checked + .checkbox-custom {
  background: #3b82f6;
  border-color: #3b82f6;
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 2px;
}

.checkbox-label input {
  display: none;
}

.checkbox-text {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.5;
}

.checkbox-label:hover .checkbox-text {
  color: #cbd5e1;
}

/* Навигация */
.quiz-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid #334155;
  margin-top: 30px;
}

.nav-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: inherit;
}

.prev-btn {
  background: transparent;
  color: #94a3b8;
  border: 1px solid #334155;
}

.prev-btn:hover {
  background: #1e293b;
  color: #f8fafc;
  border-color: #475569;
}

.next-btn,
.submit-btn {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  border: none;
}

.next-btn:hover,
.submit-btn:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.submit-btn {
  padding: 14px 40px;
  font-weight: 600;
}

.nav-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #94a3b8;
}

.current-step {
  color: #f8fafc;
  font-weight: 500;
}

#currentStepNumber {
  color: #3b82f6;
  font-weight: 600;
}

/* Сообщения валидации */
.validation-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  margin-top: 20px;
  -webkit-animation: slideIn 0.3s ease;
  animation: slideIn 0.3s ease;
  display: none;
}

@-webkit-keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.validation-message.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.message-icon {
  font-size: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.validation-message span {
  color: #fca5a5;
  font-size: 14px;
  font-weight: 500;
}

/* Успешное сообщение */
.quiz-success {
  position: relative;
  z-index: 1;
  -webkit-animation: fadeIn 0.5s ease;
  animation: fadeIn 0.5s ease;
}

.success-content {
  text-align: center;
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 60px 40px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 100px rgba(59, 130, 246, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 100px rgba(59, 130, 246, 0.1);
}

.success-icon {
  font-size: 64px;
  margin-bottom: 24px;
  -webkit-animation: bounce 1s ease infinite alternate;
  animation: bounce 1s ease infinite alternate;
}

@-webkit-keyframes bounce {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

@keyframes bounce {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.success-title {
  font-size: 32px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.success-text {
  font-size: 18px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 8px;
}

.success-bonus {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: 16px 24px;
  margin: 30px 0;
}

.bonus-icon {
  font-size: 24px;
}

.bonus-text {
  text-align: left;
  font-size: 15px;
  color: #a7f3d0;
}

.success-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.success-btn:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

/* Адаптивность */
@media (max-width: 1024px) {
  .quiz__title {
    font-size: 36px;
  }
  .quiz-options-grid:not(.features-grid) {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .quiz-section {
    padding: 40px 0;
  }
  .quiz-form {
    padding: 24px;
  }
  .quiz__title {
    font-size: 28px;
  }
  .quiz__description {
    font-size: 16px;
  }
  .step-question {
    font-size: 24px;
  }
  .quiz-options-grid:not(.features-grid),
  .features-grid,
  .delivery-options {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .quiz-navigation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
  .nav-btn {
    width: 100%;
  }
  .nav-steps {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .features-summary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .quiz-form {
    padding: 20px;
  }
  .progress-steps {
    gap: 4px;
  }
  .progress-line {
    width: 20px;
  }
  .step-label {
    font-size: 10px;
  }
}
.clculate {
  background: linear-gradient(89.33deg, #003049 -4.48%, #141414 99.42%);
  padding: 50px 0px;
}
.clculate__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px;
}
.clculate__social {
  margin: 0 auto;
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 80px;
  width: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.clculate__stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.clculate__stat-number {
  font-family: Bounded;
  font-weight: 700;
  font-size: 42px;
  color: var(--light-blue);
  line-height: 1;
  text-shadow: 0 0 15px rgba(0, 123, 255, 0.4);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.clculate__stat-text {
  font-family: Bounded;
  font-weight: 400;
  font-size: 18px;
  color: var(--light-color);
  line-height: 1.3;
  max-width: 180px;
}
.clculate__stat:hover .clculate__stat-number {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(0, 123, 255, 0.6);
}
.clculate__content {
  margin: 0 auto;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}
.clculate__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 70px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 600px;
}
.clculate__item {
  position: relative;
  height: 118px;
  width: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.clculate__item:not(:last-child)::after {
  position: absolute;
  content: url("../img/Arrow.png");
  right: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0.8);
  -ms-transform: translateY(-50%) scale(0.8);
  transform: translateY(-50%) scale(0.8);
}
.clculate__icon {
  display: block;
  width: 84px;
  height: 83px;
  fill: #fff;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.clculate__icon-center {
  width: 121px;
  height: 81px;
}
.clculate__text {
  margin: 0;
  font-family: Bounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  color: var(--light-color);
  line-height: 100%;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
}
.clculate__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  min-width: 320px;
}
.clculate__btn {
  width: 420px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 15px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
  box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
  border-radius: 20px;
  color: var(--light-color);
  background: var(--light-blue);
  font-family: Bounded;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0%;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.clculate__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.4)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
.clculate__btn:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}
.clculate__btn:hover::before {
  left: 100%;
}
.clculate__btn:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.clculate__btn {
  -webkit-animation: buttonShimmer 3s ease-in-out infinite;
  animation: buttonShimmer 3s ease-in-out infinite;
}
.clculate__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 15px;
  width: 420px;
  height: 80px;
  border: 4px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
  box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
  background: transparent;
  font-family: Bounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: var(--light-color);
  line-height: 1.2;
  letter-spacing: 0%;
  text-align: center;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.clculate__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
.clculate__link:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}
.clculate__link:hover::before {
  left: 100%;
}
.clculate__link:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.clculate__link {
  -webkit-animation: linkShimmer 4s ease-in-out infinite;
  animation: linkShimmer 4s ease-in-out infinite;
}

@-webkit-keyframes buttonShimmer {
  0%, 100% {
    -webkit-box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
  }
  50% {
    -webkit-box-shadow: 0 0 20px rgba(0, 123, 255, 0.6), 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.6), 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
  }
}

@keyframes buttonShimmer {
  0%, 100% {
    -webkit-box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
  }
  50% {
    -webkit-box-shadow: 0 0 20px rgba(0, 123, 255, 0.6), 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.6), 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
  }
}
@-webkit-keyframes linkShimmer {
  0%, 100% {
    -webkit-box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    border-color: rgba(255, 255, 255, 0.6);
  }
  50% {
    -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    border-color: rgba(255, 255, 255, 0.7);
  }
}
@keyframes linkShimmer {
  0%, 100% {
    -webkit-box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    border-color: rgba(255, 255, 255, 0.6);
  }
  50% {
    -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
    border-color: rgba(255, 255, 255, 0.7);
  }
}
@media (max-width: 1300px) {
  .clculate__container {
    gap: 50px;
  }
  .clculate__top-section {
    gap: 15px;
  }
  .clculate__social {
    gap: 60px;
  }
  .clculate__stat-number {
    font-size: 38px;
  }
  .clculate__stat-text {
    font-size: 16px;
    max-width: 160px;
  }
  .clculate__content {
    gap: 30px;
  }
  .clculate__list {
    gap: 50px;
    max-width: 500px;
  }
  .clculate__item {
    height: 110px;
    width: 150px;
  }
  .clculate__item:not(:last-child)::after {
    right: -40px;
    -webkit-transform: translateY(-50%) scale(0.7);
    -ms-transform: translateY(-50%) scale(0.7);
    transform: translateY(-50%) scale(0.7);
  }
  .clculate__icon {
    width: 75px;
    height: 74px;
  }
  .clculate__icon-center {
    width: 108px;
    height: 72px;
  }
  .clculate__text {
    font-size: 18px;
  }
  .clculate__btns {
    min-width: 300px;
  }
  .clculate__btn, .clculate__link {
    width: 300px;
    height: 75px;
    font-size: 18px;
  }
}
@media (max-width: 1100px) {
  .clculate__top-section {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
  }
  .clculate__social {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
    margin-top: 10px;
  }
  .clculate__stat-number {
    font-size: 34px;
  }
  .clculate__stat-text {
    font-size: 15px;
    max-width: 140px;
  }
  .clculate__content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
  }
  .clculate__list {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    gap: 50px;
    max-width: 100%;
  }
  .clculate__item:not(:last-child)::after {
    right: -40px;
    -webkit-transform: translateY(-50%) scale(0.7);
    -ms-transform: translateY(-50%) scale(0.7);
    transform: translateY(-50%) scale(0.7);
  }
  .clculate__btns {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 100%;
  }
  .clculate__btn, .clculate__link {
    width: 320px;
  }
}
@media (max-width: 768px) {
  .clculate {
    padding: 40px 0;
  }
  .clculate__container {
    gap: 40px;
  }
  .clculate__top-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
  .clculate__social {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    gap: 30px;
    margin-top: 0;
  }
  .clculate__guarantee-badge:first-child, .clculate__guarantee-badge:last-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .clculate__stat-number {
    font-size: 30px;
  }
  .clculate__stat-text {
    font-size: 14px;
    max-width: 120px;
  }
  .clculate__content {
    gap: 30px;
  }
  .clculate__list {
    gap: 35px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .clculate__item {
    height: 100px;
    width: 140px;
    gap: 15px;
  }
  .clculate__item:not(:last-child)::after {
    right: -30px;
    -webkit-transform: translateY(-50%) scale(0.6);
    -ms-transform: translateY(-50%) scale(0.6);
    transform: translateY(-50%) scale(0.6);
  }
  .clculate__icon {
    width: 70px;
    height: 69px;
  }
  .clculate__icon-center {
    width: 100px;
    height: 67px;
  }
  .clculate__text {
    font-size: 16px;
  }
  .clculate__btns {
    gap: 15px;
    width: 100%;
  }
  .clculate__btn, .clculate__link {
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 60px;
    padding: 15px 20px;
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
    border-radius: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .clculate__btn {
    background: var(--light-blue);
    border: none;
    font-weight: 500;
  }
  .clculate__link {
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
  }
}
@media (max-width: 576px) {
  .clculate {
    padding: 35px 0;
  }
  .clculate__container {
    gap: 35px;
  }
  .clculate__top-section {
    gap: 12px;
  }
  .clculate__social {
    gap: 25px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .clculate__stat-number {
    font-size: 28px;
  }
  .clculate__stat-text {
    font-size: 13px;
    max-width: 100px;
  }
  .clculate__content {
    gap: 25px;
  }
  .clculate__list {
    gap: 25px;
  }
  .clculate__item {
    height: 90px;
    width: 120px;
    gap: 12px;
  }
  .clculate__item:not(:last-child)::after {
    right: -25px;
    -webkit-transform: translateY(-50%) scale(0.5);
    -ms-transform: translateY(-50%) scale(0.5);
    transform: translateY(-50%) scale(0.5);
  }
  .clculate__icon {
    width: 60px;
    height: 59px;
  }
  .clculate__icon-center {
    width: 85px;
    height: 57px;
  }
  .clculate__text {
    font-size: 14px;
  }
  .clculate__btns {
    gap: 10px;
    width: 100%;
  }
  .clculate__btn, .clculate__link {
    max-width: 100%;
    min-height: 55px;
    padding: 12px 15px;
    font-size: 15px;
    border-radius: 12px;
  }
  .clculate__btn {
    background: var(--light-blue);
    border: none;
    -webkit-box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
  }
  .clculate__link {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 480px) {
  .clculate {
    padding: 30px 0;
  }
  .clculate__container {
    gap: 30px;
  }
  .clculate__top-section {
    gap: 10px;
  }
  .clculate__social {
    gap: 20px;
  }
  .clculate__stat {
    gap: 5px;
  }
  .clculate__stat-number {
    font-size: 26px;
  }
  .clculate__stat-text {
    font-size: 12px;
    max-width: 90px;
  }
  .clculate__content {
    gap: 20px;
  }
  .clculate__list {
    gap: 20px;
  }
  .clculate__item {
    height: 85px;
    width: 110px;
    gap: 10px;
  }
  .clculate__item:not(:last-child)::after {
    right: -20px;
    -webkit-transform: translateY(-50%) scale(0.45);
    -ms-transform: translateY(-50%) scale(0.45);
    transform: translateY(-50%) scale(0.45);
  }
  .clculate__icon {
    width: 55px;
    height: 54px;
  }
  .clculate__icon-center {
    width: 75px;
    height: 52px;
  }
  .clculate__text {
    font-size: 13px;
  }
  .clculate__btns {
    gap: 8px;
  }
  .clculate__btn, .clculate__link {
    min-height: 50px;
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 10px;
  }
  .clculate__btn {
    font-weight: 500;
  }
  .clculate__link {
    font-size: 13px;
    line-height: 1.2;
  }
}
@media (max-width: 375px) {
  .clculate__container {
    gap: 25px;
  }
  .clculate__top-section {
    gap: 8px;
  }
  .clculate__social {
    gap: 15px;
  }
  .clculate__stat-number {
    font-size: 24px;
  }
  .clculate__stat-text {
    font-size: 11px;
    max-width: 80px;
  }
  .clculate__content {
    gap: 15px;
  }
  .clculate__list {
    gap: 15px;
  }
  .clculate__item {
    height: 80px;
    width: 100px;
    gap: 8px;
  }
  .clculate__item:not(:last-child)::after {
    right: -15px;
    -webkit-transform: translateY(-50%) scale(0.4);
    -ms-transform: translateY(-50%) scale(0.4);
    transform: translateY(-50%) scale(0.4);
  }
  .clculate__icon {
    width: 50px;
    height: 49px;
  }
  .clculate__icon-center {
    width: 70px;
    height: 47px;
  }
  .clculate__text {
    font-size: 12px;
  }
  .clculate__btns {
    gap: 6px;
  }
  .clculate__btn, .clculate__link {
    min-height: 45px;
    padding: 8px 10px;
    font-size: 13px;
    border-radius: 8px;
  }
  .clculate__btn {
    font-size: 14px;
    font-weight: 500;
  }
  .clculate__link {
    font-size: 12px;
  }
}
.clculate__item:hover .clculate__icon {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.clculate__item:hover .clculate__icon-center {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.card {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 70px 0px;
}
.card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.card__title {
  margin: 0;
  margin-left: auto;
  max-width: 530px;
  font-family: Bounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 55px;
  color: var(--text-color);
  line-height: 70px;
  letter-spacing: -2%;
  text-align: right;
}
.card__title span {
  font-family: Bounded;
  font-weight: 700;
  font-size: 160px;
  line-height: 160px;
  letter-spacing: -2%;
  text-align: right;
  color: var(--light-blue);
}
.card__subtitle {
  margin: 0;
  font-family: Bounded;
  font-weight: 466;
  font-style: Medium;
  font-size: 38px;
  color: var(--light-color);
  line-height: 40px;
  letter-spacing: 0%;
  margin-bottom: 15px;
}
.card__descr {
  margin: 0;
  font-family: Bounded;
  font-weight: 300;
  font-style: Light;
  font-size: 25px;
  color: var(--light-color);
  line-height: 100%;
  letter-spacing: 0%;
}
.card__number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: Bounded;
  font-weight: 700;
  font-size: 24px;
  color: var(--light-color);
  background: rgba(102, 155, 188, 0.8);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
}
.card__badge {
  position: absolute;
  top: 20px;
  left: 30px;
  background: -webkit-gradient(linear, left top, right top, from(#FF6B6B), to(#FF8E8E));
  background: linear-gradient(90deg, #FF6B6B 0%, #FF8E8E 100%);
  padding: 8px 16px;
  border-radius: 20px;
  font-family: Bounded;
  font-weight: 500;
  font-size: 14px;
  color: var(--light-color);
  text-transform: uppercase;
}
.card__item {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 55px 40px 20px 40px;
  width: 670px;
  height: 250px;
  border-radius: 10px;
  margin-bottom: 20px;
  /* Анимация появления при скролле */
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.card__item:last-child {
  height: 320px;
}
.card__item.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.card__item.visible::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.card__right {
  display: inline-block;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* Анимация для правого блока */
  opacity: 0;
  -webkit-transform: translateX(50px);
  -ms-transform: translateX(50px);
  transform: translateX(50px);
  -webkit-transition: all 0.8s ease 0.4s;
  transition: all 0.8s ease 0.4s;
}
.card__right.visible {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.card__arr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, right top, from(#669BBC), to(#A9D1EA));
  background: linear-gradient(90deg, #669BBC 0%, #A9D1EA 100%);
  width: 100%;
  max-width: 670px;
  height: 80px;
  text-decoration: none;
  cursor: pointer;
  margin-top: 10px;
  /* Анимация для кнопки */
  opacity: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.6s ease 0.8s;
  transition: all 0.6s ease 0.8s;
}
.visible .card__arr {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.card__arr {
  /* Ховер-эффект */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.card__arr:hover {
  background: -webkit-gradient(linear, left top, right top, from(#5a8ba8), to(#97c1d9));
  background: linear-gradient(90deg, #5a8ba8 0%, #97c1d9 100%);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(102, 155, 188, 0.3);
  box-shadow: 0 5px 15px rgba(102, 155, 188, 0.3);
}
.card__arr:hover .card__arr-img {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
.card__arr:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: 0 2px 5px rgba(102, 155, 188, 0.3);
  box-shadow: 0 2px 5px rgba(102, 155, 188, 0.3);
}
.card__arr-text {
  display: block;
  font-size: 26px;
  color: var(--light-color);
  font-family: Bounded;
  font-weight: 500;
  text-transform: uppercase;
}
.card__arr-img {
  width: 28px;
  height: 28px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.problems__title {
  padding-top: 70px;
  margin: 0 auto;
  max-width: 1253px;
  font-family: Bounded;
  font-weight: 400;
  font-size: 70px;
  color: var(--text-color);
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 50px;
  /* Анимация для заголовка */
  opacity: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.problems__title.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.problems__icon {
  width: 36px;
  height: 34px;
}
.problems__list {
  margin: 0 auto;
  max-width: 1250px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.problems__item {
  position: relative;
  width: 606px;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.2509803922);
  overflow: hidden;
  /* Анимация для items */
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.problems__item.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.problems__item-bottom {
  padding-bottom: 100px;
}
.problems__item-form {
  background: #669BBC;
}
.problems__item {
  /* Разные задержки для каскадного эффекта */
}
.problems__item:nth-child(1) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.problems__item:nth-child(2) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.problems__item:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.problems__item:nth-child(4) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.problems__top {
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  padding: 0px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 85px;
  background: linear-gradient(89.33deg, #003049 -4.48%, #141414 99.42%);
  margin-bottom: 15px;
}
.problems__subtitle {
  margin: 0;
  font-family: Bounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 25px;
  line-height: 25px;
  letter-spacing: 0%;
  color: var(--light-color);
}
.problems__descr {
  margin: 0;
  padding: 0px 40px;
  font-family: Bounded;
  font-weight: 566;
  font-style: SemiBold;
  font-size: 30px;
  color: #0F1A3C;
  line-height: 40px;
  letter-spacing: 0%;
  padding-bottom: 40px;
}
.problems__form-title {
  margin: 0;
  padding: 20px 40px;
  font-family: Bounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 25px;
  color: var(--light-color);
  line-height: 25px;
  letter-spacing: -2%;
}
.problems__form {
  padding: 35px;
  background: #fff;
  border-top-right-radius: 16px;
  width: 451px;
  height: 100%;
}
.problems__input {
  padding: 19px 30px;
  border-radius: 8px;
  width: 100%;
  height: 60px;
  background: rgba(45, 55, 72, 0.1019607843);
  font-family: Bounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 121%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.problems__input::-webkit-input-placeholder {
  font-size: 14px;
}
.problems__input::-moz-placeholder {
  font-size: 14px;
}
.problems__input:-ms-input-placeholder {
  font-size: 14px;
}
.problems__input::-ms-input-placeholder {
  font-size: 14px;
}
.problems__input::placeholder {
  font-size: 14px;
}
.problems__checkbox-text {
  font-family: Bounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 11px;
  color: rgba(45, 55, 72, 0.8);
  line-height: 90%;
  letter-spacing: 0%;
}
.problems__checkbox-text a {
  color: #669BBC;
}
.problems__btn {
  top: 200px;
  right: 40px;
  position: absolute;
  width: 50px;
  height: 50px;
  /* Анимация для кнопки */
  opacity: 0;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.4s ease 0.6s;
  transition: all 0.4s ease 0.6s;
}
.visible .problems__btn {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* Адаптация с 1024px */
@media (max-width: 1250px) {
  .card {
    padding: 50px 0;
  }
  .card__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 30px;
  }
  .card__title {
    margin: 0 auto;
    text-align: center;
    max-width: 800px;
    font-size: 50px;
    line-height: 50px;
  }
  .card__title span {
    font-size: 60px;
    line-height: 60px;
  }
  .card__right {
    height: 550px;
    background-position: center top 70px;
    background-size: contain !important;
  }
  .card__item {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px;
    height: 270px;
    min-height: 200px;
  }
  .card__subtitle {
    font-size: 32px;
    line-height: 38px;
  }
  .card__descr {
    font-size: 20px;
    line-height: 24px;
  }
  .card__arr {
    max-width: 600px;
    height: 70px;
    margin: 20px auto 0;
  }
  .card__arr-text {
    font-size: 24px;
  }
  .card__arr-img {
    width: 24px;
    height: 24px;
  }
  .problems__title {
    font-size: 50px;
    padding-top: 50px;
    margin-bottom: 30px;
  }
  .problems__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 600px;
    gap: 15px;
  }
  .problems__item {
    width: 100%;
  }
  .problems__top {
    padding: 0px 25px;
    height: 70px;
    gap: 25px;
  }
  .problems__subtitle {
    font-size: 20px;
  }
  .problems__descr {
    font-size: 24px;
    line-height: 32px;
    padding: 0px 25px 25px;
  }
  .problems__form {
    width: 100%;
    padding: 25px;
  }
  .problems__checkbox-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .problems__checkbox-text {
    display: block;
    max-width: 400px !important;
  }
  .problems__btn {
    background: var(--light-blue);
    border-radius: 100%;
    top: 260px;
    right: 20px;
    position: absolute;
  }
}
/* Адаптация для планшетов (768px и меньше) */
@media (max-width: 768px) {
  .card {
    padding: 40px 0;
  }
  .card__title {
    font-size: 36px;
    line-height: 36px;
  }
  .card__title span {
    font-size: 40px;
    line-height: 40px;
  }
  .card__item {
    max-width: 500px;
    height: 220px;
    min-height: 180px;
  }
  .card__subtitle {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 10px;
  }
  .card__descr {
    font-size: 18px;
  }
  .card__arr {
    max-width: 500px;
    height: 65px;
    margin: 15px auto 0;
  }
  .card__arr-text {
    font-size: 22px;
  }
  .card__arr-img {
    width: 22px;
    height: 22px;
  }
  .card__number {
    font-size: 16px;
    width: 40px;
    height: 40px;
    padding: 10px;
  }
  .problems__title {
    font-size: 40px;
    padding-top: 80px;
  }
  .problems__top {
    height: 60px;
    gap: 20px;
  }
  .problems__subtitle {
    font-size: 18px;
  }
  .problems__descr {
    font-size: 20px;
    line-height: 28px;
  }
  .problems__form-title {
    font-size: 20px;
    padding: 15px 25px;
  }
  .problems__input {
    height: 50px;
    padding: 15px 20px;
  }
  .problems__btn {
    top: 230px;
    right: 25px;
    position: absolute;
  }
}
/* Адаптация для мобильных устройств (480px и меньше) */
@media (max-width: 480px) {
  .card {
    padding: 30px 0;
  }
  .card__right {
    background-position: center top 100px;
    height: 500px;
  }
  .card__title {
    font-size: 28px;
    line-height: 36px;
  }
  .card__title span {
    font-size: 34px;
    line-height: 34px;
  }
  .card__item {
    min-height: 250px;
    margin-bottom: 15px;
  }
  .card__subtitle {
    font-size: 24px;
    line-height: 30px;
  }
  .card__descr {
    font-size: 16px;
  }
  .card__arr {
    height: 60px;
    margin: 10px auto 0;
  }
  .card__arr-text {
    font-size: 20px;
  }
  .card__arr-img {
    width: 20px;
    height: 20px;
  }
  .problems__title {
    font-size: 28px;
    text-align: left;
    padding-top: 10px;
    margin-bottom: 20px;
  }
  .problems__top {
    padding: 0px 15px;
    height: 50px;
    gap: 15px;
  }
  .problems__icon {
    width: 28px;
    height: 26px;
  }
  .problems__subtitle {
    font-size: 16px;
  }
  .problems__descr {
    font-size: 18px;
    line-height: 24px;
    padding: 0px 15px 15px;
  }
  .problems__form-title {
    font-size: 18px;
    padding: 10px 15px;
  }
  .problems__form {
    padding: 20px;
  }
  .problems__input {
    height: 45px;
    padding: 12px 15px;
    font-size: 12px;
  }
  .problems__checkbox-text {
    max-width: 240px !important;
  }
  .problems__btn {
    top: 220px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}
/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 360px) {
  .card__arr {
    height: 55px;
  }
  .card__arr-text {
    font-size: 18px;
  }
  .card__arr-img {
    width: 18px;
    height: 18px;
  }
}
.gallery {
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.gallery__container {
  position: relative;
  overflow: hidden;
  padding: 90px 15px 0px 15px;
}
.gallery__title {
  margin: 0;
  max-width: 522px;
  font-weight: 400;
  font-size: 60px;
  color: var(--text-color);
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 40px;
}
.gallery__title span {
  font-size: 75px;
  color: var(--light-blue);
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.gallery__right {
  right: 0;
  border-radius: 20px;
  padding: 30px 40px;
  top: 90px;
  position: absolute;
  width: 840px;
  height: 553px;
  background: rgba(20, 20, 20, 0.8);
  color: #fff;
}
.gallery__descr {
  margin: 0;
  font-family: Bounded;
  font-weight: 300;
  font-style: Light;
  font-size: 25px;
  color: var(--light-color);
  line-height: 120%;
  letter-spacing: 0%;
  vertical-align: middle;
}

/* Базовые стили для кнопки (до 1300px) */
.slide-button {
  width: 366px;
  height: 60px;
  background: #669BBC;
  color: white;
  border: none;
  border-radius: 8px;
  font-family: Bounded;
  font-weight: 400;
  font-style: Medium;
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.slide-button:hover {
  background: #4a7a9a;
}

/* Адаптация для блоков gallery__left и gallery__right с 1250px (как было на 768px) */
@media (max-width: 1250px) {
  .gallery__left {
    max-width: 100%;
  }
  .gallery__title {
    font-size: 40px;
    max-width: 350px;
    margin-bottom: 30px;
  }
  .gallery__title span {
    font-size: 55px;
  }
  .gallery__right {
    position: static;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    padding: 25px 30px;
  }
  .gallery__descr {
    font-size: 20px;
    line-height: 130%;
  }
}
/* Адаптация кнопки и структуры слайдера с 1300px */
@media (max-width: 1300px) {
  .slide-button {
    width: 320px;
    height: 55px;
    font-size: 22px;
  }
  /* Размещаем кнопку под текстом как на мобильной версии */
  .slide-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
  }
  .slide-button {
    width: 100%;
    max-width: 320px;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}
/* Дополнительная адаптация для планшетов */
@media (max-width: 1024px) {
  .gallery__title {
    font-size: 36px;
    max-width: 300px;
  }
  .gallery__title span {
    font-size: 50px;
  }
  .gallery__descr {
    font-size: 18px;
  }
  .slide-button {
    width: 100%;
    max-width: 280px;
    height: 50px;
    font-size: 20px;
  }
}
/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
  .gallery__container {
    padding: 60px 15px 0px 15px;
  }
  .gallery__title {
    font-size: 32px;
    max-width: 280px;
    margin-bottom: 20px;
  }
  .gallery__title span {
    font-size: 45px;
  }
  .gallery__right {
    padding: 20px 25px;
    margin-bottom: 25px;
  }
  .gallery__descr {
    font-size: 16px;
    line-height: 140%;
  }
  .slide-button {
    max-width: 260px;
    height: 48px;
    font-size: 18px;
  }
  .slide-bottom {
    gap: 20px;
  }
}
/* Очень маленькие экраны */
@media (max-width: 480px) {
  .gallery__container {
    padding: 40px 15px 0px 15px;
  }
  .gallery__title {
    font-size: 28px;
    max-width: 250px;
  }
  .gallery__title span {
    font-size: 40px;
  }
  .gallery__descr {
    font-size: 15px;
  }
  .slide-button {
    max-width: 240px;
    height: 45px;
    font-size: 16px;
  }
  .slide-bottom {
    gap: 15px;
  }
}
.swiper {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

.swiper-slide {
  border-radius: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: auto;
  background: #FFFFFF;
}

.slide-content {
  width: 100%;
  height: 100%;
  padding: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.slide-image-container {
  width: 100%;
  height: 550px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* Дополнительное уменьшение контейнера с фото */
@media (max-width: 1250px) {
  .slide-image-container {
    height: 455px;
  }
}
@media (max-width: 1024px) {
  .slide-image-container {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .slide-image-container {
    height: 350px;
  }
}
@media (max-width: 480px) {
  .slide-image-container {
    height: 280px;
  }
}
.slide-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.slide-bottom {
  width: 100%;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 40px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.slide-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.slide-title {
  margin: 0;
  font-family: Bounded;
  font-weight: 400;
  font-style: Medium;
  font-size: 40px;
  color: var(--text-color);
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 15px;
  color: var(--text-color);
}

.slide-subtitle {
  margin: 0;
  max-width: 400px;
  font-family: Bounded;
  font-weight: 300;
  font-style: Light;
  font-size: 18px;
  color: rgba(0, 48, 73, 0.6);
  line-height: 100%;
  letter-spacing: 0%;
}

/* Адаптация заголовков слайдера */
@media (max-width: 1250px) {
  .slide-title {
    font-size: 36px;
  }
  .slide-subtitle {
    font-size: 17px;
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .slide-title {
    font-size: 32px;
  }
  .slide-subtitle {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .slide-content {
    padding: 20px;
  }
  .slide-title {
    font-size: 28px;
  }
  .slide-subtitle {
    font-size: 15px;
  }
  .slide-bottom {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .slide-content {
    padding: 8px;
  }
  .slide-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .slide-subtitle {
    font-size: 14px;
  }
}
/* Компьютерная версия */
@media (min-width: 1024px) {
  .swiper-slide {
    width: 66.6666666667% !important;
    margin-right: 20px;
  }
  .swiper-wrapper {
    padding-left: 0;
  }
}
/* Планшетная версия */
@media (min-width: 768px) and (max-width: 1023px) {
  .swiper-slide {
    width: 66.6666666667% !important;
    margin-right: 15px;
  }
}
/* Мобильная версия */
@media (max-width: 767px) {
  .swiper-slide {
    width: 66.6666666667% !important;
    margin-right: 10px;
  }
}
/* Маленькие мобильные */
@media (max-width: 480px) {
  .swiper-slide {
    width: 66.6666666667% !important;
    margin-right: 8px;
  }
}
.steps {
  background: linear-gradient(89.33deg, #003049 -4.48%, #141414 99.42%);
  padding: 65px 0px;
}
.steps__subtitle {
  margin: 0;
  font-family: Bounded;
  font-weight: 200;
  font-size: 30px;
  color: var(--light-color);
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 5px;
}
.steps__title {
  margin: 0;
  max-width: 730px;
  font-family: Bounded;
  font-weight: 400;
  font-size: 70px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: var(--light-color);
  margin-bottom: 30px;
}
.steps__list {
  margin: 0 auto;
  max-width: 1240px;
  list-style: none;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 52px;
}
@media (min-width: 768px) {
  .steps__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.steps__item {
  position: relative;
  background: linear-gradient(100.91deg, #FFFFFF 3.43%, #D7E8F3 91.92%);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 400px;
  height: 406px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.steps__item:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.steps__digital {
  display: block;
  font-family: Bounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 25px;
  color: var(--light-blue);
  line-height: 121%;
  letter-spacing: 0%;
  margin-bottom: 20px;
}
.steps__descr {
  font-size: 20px;
  text-transform: uppercase;
  font-family: Bounded;
  font-weight: 900;
  font-size: 25px;
  line-height: 121%;
  letter-spacing: 0%;
  margin-bottom: 15px;
}
.steps__icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 156px;
  height: 118px;
}
.steps__text {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
.steps__form {
  margin: 0 auto;
  max-width: 1244px;
  font-family: Bounded;
  font-weight: 400;
  font-size: 52px;
  color: var(--light-color);
  line-height: 130%;
  letter-spacing: -2%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.steps__bottom {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 992px) {
  .steps__bottom {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.steps__img {
  width: 100%;
  max-width: 947px;
  height: auto;
  border-radius: 12px;
  -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  display: block;
}

.form__wrapper {
  width: 550px;
  height: 560px;
  background: linear-gradient(100.91deg, #669BBC 3.43%, #D7E8F3 91.92%);
  padding: 40px;
  border-radius: 12px;
  -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}
.form__group {
  margin-bottom: 25px;
}
.form__group:last-of-type {
  margin-bottom: 30px;
}
.form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.form__input, .form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  font-family: inherit;
}
.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: #003049;
}
.form__input.error, .form__textarea.error {
  border-color: #dc3545;
}
.form__textarea {
  resize: vertical;
  min-height: 120px;
}
.form__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
}
.form__checkbox input[type=checkbox] {
  margin-top: 2px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.form__checkbox-text {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}
.form__checkbox-text a {
  color: #003049;
  text-decoration: none;
}
.form__checkbox-text a:hover {
  text-decoration: underline;
}
.form__messenger {
  margin-bottom: 25px;
}
.form__messenger-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}
.form__messenger-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.form__messenger-option {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.form__messenger-input {
  display: none;
}
.form__messenger-input:checked + .form__messenger-label {
  border-color: #003049;
  background-color: #f8f9ff;
}
.form__messenger-input:checked + .form__messenger-label::after {
  opacity: 1;
}
.form__messenger-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.form__messenger-label:hover {
  border-color: #003049;
}
.form__messenger-label::after {
  content: "✓";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  background: #003049;
  color: white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 12px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.form__messenger-icon {
  width: 24px;
  height: 24px;
}
.form__messenger-name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.form__submit {
  width: 100%;
  padding: 15px;
  background: #003049;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.form__submit:hover {
  background: linear-gradient(100.91deg, #669BBC 3.43%, #D7E8F3 91.92%);
  border: 2px solid #003049;
}
.form__submit:disabled {
  background: #6c757d;
  cursor: not-allowed;
}
.form__success {
  text-align: center;
  padding: 20px;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  color: #155724;
  margin-top: 20px;
  display: none;
}
.form__success.show {
  display: block;
}

.error-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}
.error-message.show {
  display: block;
}

/* Адаптация для 1100px */
@media (max-width: 1100px) {
  .steps {
    padding: 50px 20px;
  }
  .steps__title {
    font-size: 60px;
    max-width: 600px;
    margin-bottom: 25px;
  }
  .steps__list {
    max-width: 100%;
    gap: 15px;
    margin-bottom: 40px;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .steps__item {
    padding: 25px;
    height: 380px;
    max-width: 100%;
  }
  .steps__item:nth-child(3) {
    grid-column: 1/-1;
    max-width: 400px;
    margin: 0 auto;
  }
  .steps__digital {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .steps__descr {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .steps__icon {
    width: 130px;
    height: 98px;
    right: 8px;
    bottom: 8px;
  }
  .steps__form {
    font-size: 42px;
    max-width: 100%;
    line-height: 120%;
    margin-bottom: 20px;
  }
  .steps__bottom {
    gap: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .steps__img {
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .steps .form__wrapper {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .form__wrapper {
    width: 100%;
    max-width: 500px;
    height: auto;
    padding: 30px;
    margin: 0 auto;
  }
  .form__group {
    margin-bottom: 20px;
  }
  .form__group:last-of-type {
    margin-bottom: 25px;
  }
  .form__messenger {
    margin-bottom: 20px;
  }
  .form__messenger-options {
    gap: 12px;
  }
  .form__messenger-label {
    padding: 12px;
  }
  .form__checkbox {
    margin-bottom: 20px;
  }
  .form__submit {
    padding: 14px;
  }
}
/* Адаптация для планшетов */
@media (max-width: 768px) {
  .steps {
    padding: 40px 15px;
  }
  .steps__subtitle {
    font-size: 24px;
  }
  .steps__title {
    font-size: 48px;
    margin-bottom: 20px;
  }
  .steps__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 35px;
  }
  .steps__item {
    padding: 20px;
    height: 350px;
  }
  .steps__item:nth-child(3) {
    grid-column: auto;
    max-width: 100%;
  }
  .steps__digital {
    font-size: 20px;
  }
  .steps__descr {
    font-size: 20px;
  }
  .steps__form {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .steps__bottom {
    gap: 30px;
  }
  .form__wrapper {
    padding: 25px;
  }
  .form__messenger-options {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}
/* Адаптация для мобильных устройств */
@media (max-width: 480px) {
  .steps {
    padding: 30px 10px;
  }
  .steps__subtitle {
    font-size: 20px;
  }
  .steps__title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .steps__list {
    gap: 10px;
    margin-bottom: 30px;
  }
  .steps__item {
    padding: 15px;
    height: 320px;
  }
  .steps__digital {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .steps__descr {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .steps__icon {
    width: 100px;
    height: 75px;
  }
  .steps__form {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .form__wrapper {
    padding: 20px;
  }
  .form__input, .form__textarea {
    padding: 10px 12px;
    font-size: 14px;
  }
  .form__textarea {
    min-height: 100px;
  }
  .form__submit {
    padding: 12px;
    font-size: 14px;
  }
}
/* Адаптация для очень маленьких экранов */
@media (max-width: 360px) {
  .steps__title {
    font-size: 32px;
  }
  .steps__item {
    padding: 12px;
    height: 300px;
  }
  .steps__digital {
    font-size: 16px;
  }
  .steps__descr {
    font-size: 16px;
  }
  .steps__form {
    font-size: 20px;
  }
  .form__wrapper {
    padding: 15px;
  }
}
.footer {
  background-color: var(--light-color);
  color: var(--text-color);
  padding: 25px 0 15px;
  border-top: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 140px;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(var(--light-blue)), to(transparent));
  background: linear-gradient(90deg, var(--light-blue), transparent);
  border-radius: 0 0 5px 5px;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
}

/* Верхняя часть футера - компактная */
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eaeaea;
  height: 70px;
}

/* Увеличенный логотип */
.footer__logo-compact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-width: 80px;
}

.footer__logo-icon {
  width: 45px;
  height: 45px;
  color: var(--light-blue);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-animation: rotateDisk 10s linear infinite;
  animation: rotateDisk 10s linear infinite;
  -webkit-filter: drop-shadow(0 2px 4px rgba(102, 155, 188, 0.2));
  filter: drop-shadow(0 2px 4px rgba(102, 155, 188, 0.2));
}

/* Анимации для увеличенного лого */
.footer__logo-icon circle {
  -webkit-animation: rotateCircle 8s linear infinite;
  animation: rotateCircle 8s linear infinite;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.footer__logo-icon line {
  -webkit-animation: rotateLines 15s linear infinite;
  animation: rotateLines 15s linear infinite;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.footer__logo-icon rect {
  -webkit-animation: pulseBrowser 5s ease-in-out infinite;
  animation: pulseBrowser 5s ease-in-out infinite;
}

.footer__logo-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-color);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.footer__logo-compact:hover .footer__logo-icon {
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.footer__logo-compact:hover .footer__logo-text {
  color: var(--light-blue);
}

/* Кнопка - компактная */
.footer__btn {
  background: linear-gradient(135deg, var(--light-blue), #4a8bad);
  color: var(--light-color);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 8px rgba(102, 155, 188, 0.3);
  box-shadow: 0 2px 8px rgba(102, 155, 188, 0.3);
  height: 40px;
  white-space: nowrap;
  min-width: 140px;
}

.footer__btn:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(102, 155, 188, 0.4);
  box-shadow: 0 4px 12px rgba(102, 155, 188, 0.4);
}

/* Нижняя часть футера - компактная */
.footer__bottom {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding-top: 15px;
}

/* Список услуг - компактный */
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.footer__item {
  font-size: 14px;
  color: var(--text-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 4px 0;
}

.footer__item:hover {
  color: var(--light-blue);
  padding-left: 8px;
}

/* Центральный блок - компактный */
.footer__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.footer__time {
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 3px solid var(--light-blue);
}

.footer__mail {
  color: var(--light-blue);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 5px;
  background: #f8f9fa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer__mail:hover {
  color: var(--light-color);
  background: var(--light-blue);
}

.footer__policy,
.footer__certificate {
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 12px;
}

.footer__policy:hover,
.footer__certificate:hover {
  color: var(--light-blue);
}

/* Социальные сети - увеличенные иконки */
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__social__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f5f5f5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.footer__social__link:hover {
  background: var(--light-blue);
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 6px 15px rgba(102, 155, 188, 0.3);
  box-shadow: 0 6px 15px rgba(102, 155, 188, 0.3);
}

/* Увеличенные изображения иконок */
.footer__social__link img {
  width: 24px;
  height: 24px;
  -webkit-filter: brightness(0.7);
  filter: brightness(0.7);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__social__link:hover img {
  -webkit-filter: brightness(1);
  filter: brightness(1);
  -webkit-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  transform: rotate(5deg);
}

/* Анимации */
@-webkit-keyframes rotateDisk {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotateDisk {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotateCircle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dashoffset: 15;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    stroke-dashoffset: 0;
  }
}
@keyframes rotateCircle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dashoffset: 15;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes rotateLines {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    opacity: 1;
  }
}
@keyframes rotateLines {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    opacity: 1;
  }
}
@-webkit-keyframes pulseBrowser {
  0%, 100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
@keyframes pulseBrowser {
  0%, 100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .footer {
    padding: 20px 0 10px;
    min-height: 120px;
  }
  .footer__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
    height: 60px;
  }
  .footer__bottom {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
  .footer__social {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer__logo-icon {
    width: 40px;
    height: 40px;
  }
  .footer__logo-text {
    font-size: 13px;
  }
  .footer__btn {
    padding: 10px 20px;
    font-size: 13px;
    height: 38px;
    min-width: 130px;
  }
  .footer__social__link {
    width: 45px;
    height: 45px;
  }
  .footer__social__link img {
    width: 22px;
    height: 22px;
  }
  /* Замедляем анимацию на мобильных */
  .footer__logo-icon {
    -webkit-animation-duration: 15s;
    animation-duration: 15s;
  }
}
@media (max-width: 480px) {
  .footer .container {
    padding: 0 15px;
  }
  .footer__top {
    gap: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: auto;
    min-height: 70px;
  }
  .footer__logo-compact {
    min-width: 70px;
  }
  .footer__logo-icon {
    width: 35px;
    height: 35px;
  }
  .footer__logo-text {
    font-size: 12px;
  }
  .footer__btn {
    padding: 8px 16px;
    font-size: 12px;
    height: 35px;
    min-width: 120px;
  }
  .footer__item {
    font-size: 13px;
  }
  .footer__time {
    font-size: 12px;
    padding: 8px;
  }
  .footer__mail {
    font-size: 12px;
    padding: 6px 10px;
  }
  .footer__social__link {
    width: 40px;
    height: 40px;
  }
  .footer__social__link img {
    width: 20px;
    height: 20px;
  }
}
/* Для очень маленьких экранов */
@media (max-width: 360px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer__logo-compact {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .footer__btn {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    max-width: 200px;
  }
  .footer__social__link {
    width: 35px;
    height: 35px;
  }
  .footer__social__link img {
    width: 18px;
    height: 18px;
  }
}/*# sourceMappingURL=main.css.map */
