@charset "UTF-8";
:root {
  --font-family:"Manrope", "Open Sans", sans-serif;
  --content-width: 1470px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --bg:#F6F6F6;
  --text-color: #333;
  --gold-color: #66C2FF;
  --transition: all 0.3s ease;
  --header-bg: #ffffff;
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  --dropdown-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  --border-color: rgba(138, 106, 58, 0.2);
}

/* 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: "Manrope";
  src: url("../fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: 700;
  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;
}

.social {
  margin: 0 auto;
  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: 5px;
}
.social__icon-wt {
  width: 30px;
}

.btn {
  display: block;
  width: 380px;
  height: 60px;
  padding: 18px 30px;
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-animation: twinkle 1.5s ease-in-out infinite;
  animation: twinkle 1.5s ease-in-out infinite;
}

/* Световая полоса, проходящая через кнопку */
.btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-animation: shine 3s ease-in-out infinite;
  animation: shine 3s ease-in-out infinite;
}

@-webkit-keyframes twinkle {
  0%, 100% {
    -webkit-box-shadow: 0 0 15px rgba(255, 68, 68, 0.4), 0 0 30px rgba(255, 68, 68, 0.2), 0 0 45px rgba(255, 68, 68, 0.1);
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.4), 0 0 30px rgba(255, 68, 68, 0.2), 0 0 45px rgba(255, 68, 68, 0.1);
  }
  25% {
    -webkit-box-shadow: 0 0 20px rgba(255, 68, 68, 0.6), 0 0 35px rgba(255, 68, 68, 0.4), 0 0 50px rgba(255, 68, 68, 0.2);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.6), 0 0 35px rgba(255, 68, 68, 0.4), 0 0 50px rgba(255, 68, 68, 0.2);
  }
  50% {
    -webkit-box-shadow: 0 0 18px rgba(255, 68, 68, 0.5), 0 0 33px rgba(255, 68, 68, 0.3), 0 0 48px rgba(255, 68, 68, 0.15);
    box-shadow: 0 0 18px rgba(255, 68, 68, 0.5), 0 0 33px rgba(255, 68, 68, 0.3), 0 0 48px rgba(255, 68, 68, 0.15);
  }
  75% {
    -webkit-box-shadow: 0 0 22px rgba(255, 68, 68, 0.7), 0 0 37px rgba(255, 68, 68, 0.5), 0 0 52px rgba(255, 68, 68, 0.3);
    box-shadow: 0 0 22px rgba(255, 68, 68, 0.7), 0 0 37px rgba(255, 68, 68, 0.5), 0 0 52px rgba(255, 68, 68, 0.3);
  }
}

@keyframes twinkle {
  0%, 100% {
    -webkit-box-shadow: 0 0 15px rgba(255, 68, 68, 0.4), 0 0 30px rgba(255, 68, 68, 0.2), 0 0 45px rgba(255, 68, 68, 0.1);
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.4), 0 0 30px rgba(255, 68, 68, 0.2), 0 0 45px rgba(255, 68, 68, 0.1);
  }
  25% {
    -webkit-box-shadow: 0 0 20px rgba(255, 68, 68, 0.6), 0 0 35px rgba(255, 68, 68, 0.4), 0 0 50px rgba(255, 68, 68, 0.2);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.6), 0 0 35px rgba(255, 68, 68, 0.4), 0 0 50px rgba(255, 68, 68, 0.2);
  }
  50% {
    -webkit-box-shadow: 0 0 18px rgba(255, 68, 68, 0.5), 0 0 33px rgba(255, 68, 68, 0.3), 0 0 48px rgba(255, 68, 68, 0.15);
    box-shadow: 0 0 18px rgba(255, 68, 68, 0.5), 0 0 33px rgba(255, 68, 68, 0.3), 0 0 48px rgba(255, 68, 68, 0.15);
  }
  75% {
    -webkit-box-shadow: 0 0 22px rgba(255, 68, 68, 0.7), 0 0 37px rgba(255, 68, 68, 0.5), 0 0 52px rgba(255, 68, 68, 0.3);
    box-shadow: 0 0 22px rgba(255, 68, 68, 0.7), 0 0 37px rgba(255, 68, 68, 0.5), 0 0 52px rgba(255, 68, 68, 0.3);
  }
}
@-webkit-keyframes shine {
  0%, 100% {
    left: -60%;
  }
  50% {
    left: 140%;
  }
}
@keyframes shine {
  0%, 100% {
    left: -60%;
  }
  50% {
    left: 140%;
  }
}
.btn:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-animation: none;
  animation: none;
  -webkit-box-shadow: 0 10px 20px rgba(204, 0, 0, 0.3), 0 0 40px rgba(255, 68, 68, 0.5);
  box-shadow: 0 10px 20px rgba(204, 0, 0, 0.3), 0 0 40px rgba(255, 68, 68, 0.5);
  background: linear-gradient(135deg, #ff5555 0%, #dd0000 100%);
}

.btn:hover::after {
  -webkit-animation: shine 1s ease-in-out infinite;
  animation: shine 1s ease-in-out infinite;
}

/* КНОПКА С ЭФФЕКТОМ КАК У HERO_BUTTON НО С СИНИМ ЦВЕТОМ */
.btn-link {
  display: block;
  width: 380px;
  height: 60px;
  padding: 18px 30px;
  background: linear-gradient(135deg, #1DA1F2 0%, #0084FF 100%); /* СИНИЙ ГРАДИЕНТ */
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-animation: twinkle-blue 1.5s ease-in-out infinite;
  animation: twinkle-blue 1.5s ease-in-out infinite; /* СИНЯЯ АНИМАЦИЯ */
}

/* Световая полоса, проходящая через кнопку */
.btn-link::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-animation: shine 3s ease-in-out infinite;
  animation: shine 3s ease-in-out infinite;
}

/* Анимация мерцания для синей кнопки */
@-webkit-keyframes twinkle-blue {
  0%, 100% {
    -webkit-box-shadow: 0 0 15px rgba(29, 161, 242, 0.4), 0 0 30px rgba(29, 161, 242, 0.2), 0 0 45px rgba(29, 161, 242, 0.1);
    box-shadow: 0 0 15px rgba(29, 161, 242, 0.4), 0 0 30px rgba(29, 161, 242, 0.2), 0 0 45px rgba(29, 161, 242, 0.1);
  }
  25% {
    -webkit-box-shadow: 0 0 20px rgba(29, 161, 242, 0.6), 0 0 35px rgba(29, 161, 242, 0.4), 0 0 50px rgba(29, 161, 242, 0.2);
    box-shadow: 0 0 20px rgba(29, 161, 242, 0.6), 0 0 35px rgba(29, 161, 242, 0.4), 0 0 50px rgba(29, 161, 242, 0.2);
  }
  50% {
    -webkit-box-shadow: 0 0 18px rgba(29, 161, 242, 0.5), 0 0 33px rgba(29, 161, 242, 0.3), 0 0 48px rgba(29, 161, 242, 0.15);
    box-shadow: 0 0 18px rgba(29, 161, 242, 0.5), 0 0 33px rgba(29, 161, 242, 0.3), 0 0 48px rgba(29, 161, 242, 0.15);
  }
  75% {
    -webkit-box-shadow: 0 0 22px rgba(29, 161, 242, 0.7), 0 0 37px rgba(29, 161, 242, 0.5), 0 0 52px rgba(29, 161, 242, 0.3);
    box-shadow: 0 0 22px rgba(29, 161, 242, 0.7), 0 0 37px rgba(29, 161, 242, 0.5), 0 0 52px rgba(29, 161, 242, 0.3);
  }
}
@keyframes twinkle-blue {
  0%, 100% {
    -webkit-box-shadow: 0 0 15px rgba(29, 161, 242, 0.4), 0 0 30px rgba(29, 161, 242, 0.2), 0 0 45px rgba(29, 161, 242, 0.1);
    box-shadow: 0 0 15px rgba(29, 161, 242, 0.4), 0 0 30px rgba(29, 161, 242, 0.2), 0 0 45px rgba(29, 161, 242, 0.1);
  }
  25% {
    -webkit-box-shadow: 0 0 20px rgba(29, 161, 242, 0.6), 0 0 35px rgba(29, 161, 242, 0.4), 0 0 50px rgba(29, 161, 242, 0.2);
    box-shadow: 0 0 20px rgba(29, 161, 242, 0.6), 0 0 35px rgba(29, 161, 242, 0.4), 0 0 50px rgba(29, 161, 242, 0.2);
  }
  50% {
    -webkit-box-shadow: 0 0 18px rgba(29, 161, 242, 0.5), 0 0 33px rgba(29, 161, 242, 0.3), 0 0 48px rgba(29, 161, 242, 0.15);
    box-shadow: 0 0 18px rgba(29, 161, 242, 0.5), 0 0 33px rgba(29, 161, 242, 0.3), 0 0 48px rgba(29, 161, 242, 0.15);
  }
  75% {
    -webkit-box-shadow: 0 0 22px rgba(29, 161, 242, 0.7), 0 0 37px rgba(29, 161, 242, 0.5), 0 0 52px rgba(29, 161, 242, 0.3);
    box-shadow: 0 0 22px rgba(29, 161, 242, 0.7), 0 0 37px rgba(29, 161, 242, 0.5), 0 0 52px rgba(29, 161, 242, 0.3);
  }
}
/* Анимация прохождения световой полосы */
@keyframes shine {
  0%, 100% {
    left: -60%;
  }
  50% {
    left: 140%;
  }
}
/* Эффект при наведении */
.btn-link:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-animation: none;
  animation: none;
  -webkit-box-shadow: 0 10px 20px rgba(0, 132, 255, 0.3), 0 0 40px rgba(29, 161, 242, 0.5);
  box-shadow: 0 10px 20px rgba(0, 132, 255, 0.3), 0 0 40px rgba(29, 161, 242, 0.5);
  background: linear-gradient(135deg, #2DA9FF 0%, #0095FF 100%); /* БОЛЕЕ СВЕТЛЫЙ СИНИЙ */
}

.btn-link:hover::after {
  -webkit-animation: shine 1s ease-in-out infinite;
  animation: shine 1s ease-in-out infinite;
}

@media (max-width: 991px) {
  .btn-link {
    width: 100%;
    margin: 0 auto;
    -webkit-animation: twinkle-blue 2s ease-in-out infinite;
    animation: twinkle-blue 2s ease-in-out infinite; /* Замедлили мерцание */
  }
  .btn-link::after {
    -webkit-animation: shine 4s ease-in-out infinite;
    animation: shine 4s ease-in-out infinite; /* Замедлили полосу */
  }
  .btn {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 15px;
    height: 56px;
    padding: 16px 30px;
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .btn {
    height: 54px;
    padding: 15px 30px;
    font-size: 16px;
    line-height: 14px;
    max-width: 320px;
  }
  .btn-link {
    width: 100%;
    height: 56px;
    padding: 15px 25px;
    font-size: 16.5px;
    -webkit-animation: twinkle-blue-mobile 2.5s ease-in-out infinite;
    animation: twinkle-blue-mobile 2.5s ease-in-out infinite; /* Отдельная анимация для мобильных */
  }
  .btn-link::after {
    -webkit-animation: shine-mobile 5s ease-in-out infinite;
    animation: shine-mobile 5s ease-in-out infinite;
  }
  /* Анимация мерцания для мобильных */
  @-webkit-keyframes twinkle-blue-mobile {
    0%, 100% {
      -webkit-box-shadow: 0 0 10px rgba(29, 161, 242, 0.4), 0 0 20px rgba(29, 161, 242, 0.2), 0 0 30px rgba(29, 161, 242, 0.1);
      box-shadow: 0 0 10px rgba(29, 161, 242, 0.4), 0 0 20px rgba(29, 161, 242, 0.2), 0 0 30px rgba(29, 161, 242, 0.1);
    }
    50% {
      -webkit-box-shadow: 0 0 15px rgba(29, 161, 242, 0.6), 0 0 25px rgba(29, 161, 242, 0.3), 0 0 35px rgba(29, 161, 242, 0.2);
      box-shadow: 0 0 15px rgba(29, 161, 242, 0.6), 0 0 25px rgba(29, 161, 242, 0.3), 0 0 35px rgba(29, 161, 242, 0.2);
    }
  }
  @keyframes twinkle-blue-mobile {
    0%, 100% {
      -webkit-box-shadow: 0 0 10px rgba(29, 161, 242, 0.4), 0 0 20px rgba(29, 161, 242, 0.2), 0 0 30px rgba(29, 161, 242, 0.1);
      box-shadow: 0 0 10px rgba(29, 161, 242, 0.4), 0 0 20px rgba(29, 161, 242, 0.2), 0 0 30px rgba(29, 161, 242, 0.1);
    }
    50% {
      -webkit-box-shadow: 0 0 15px rgba(29, 161, 242, 0.6), 0 0 25px rgba(29, 161, 242, 0.3), 0 0 35px rgba(29, 161, 242, 0.2);
      box-shadow: 0 0 15px rgba(29, 161, 242, 0.6), 0 0 25px rgba(29, 161, 242, 0.3), 0 0 35px rgba(29, 161, 242, 0.2);
    }
  }
  @-webkit-keyframes shine-mobile {
    0%, 100% {
      left: -80%;
    }
    50% {
      left: 180%;
    }
  }
  @keyframes shine-mobile {
    0%, 100% {
      left: -80%;
    }
    50% {
      left: 180%;
    }
  }
}
@media (max-width: 576px) {
  .btn {
    height: 52px;
    padding: 14px 25px;
    font-size: 15px;
    max-width: 100%;
    border-radius: 14px;
    margin-bottom: 12px;
  }
  .btn-link {
    height: 52px;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 14px;
    margin-top: 20px; /* Отступ сверху для кнопки внизу */
    -webkit-animation: twinkle-blue-mobile 3s ease-in-out infinite;
    animation: twinkle-blue-mobile 3s ease-in-out infinite; /* Еще медленнее */
  }
}
@media (max-width: 480px) {
  .btn {
    height: 48px;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 12px;
  }
  .btn-link {
    height: 50px;
    padding: 12px 18px;
    font-size: 15px;
    -webkit-animation: twinkle-blue-mobile-small 3.5s ease-in-out infinite;
    animation: twinkle-blue-mobile-small 3.5s ease-in-out infinite; /* Самая медленная анимация */
  }
  @-webkit-keyframes twinkle-blue-mobile-small {
    0%, 100% {
      -webkit-box-shadow: 0 0 8px rgba(29, 161, 242, 0.4), 0 0 16px rgba(29, 161, 242, 0.2), 0 0 24px rgba(29, 161, 242, 0.1);
      box-shadow: 0 0 8px rgba(29, 161, 242, 0.4), 0 0 16px rgba(29, 161, 242, 0.2), 0 0 24px rgba(29, 161, 242, 0.1);
    }
    50% {
      -webkit-box-shadow: 0 0 12px rgba(29, 161, 242, 0.6), 0 0 20px rgba(29, 161, 242, 0.3), 0 0 28px rgba(29, 161, 242, 0.2);
      box-shadow: 0 0 12px rgba(29, 161, 242, 0.6), 0 0 20px rgba(29, 161, 242, 0.3), 0 0 28px rgba(29, 161, 242, 0.2);
    }
  }
  @keyframes twinkle-blue-mobile-small {
    0%, 100% {
      -webkit-box-shadow: 0 0 8px rgba(29, 161, 242, 0.4), 0 0 16px rgba(29, 161, 242, 0.2), 0 0 24px rgba(29, 161, 242, 0.1);
      box-shadow: 0 0 8px rgba(29, 161, 242, 0.4), 0 0 16px rgba(29, 161, 242, 0.2), 0 0 24px rgba(29, 161, 242, 0.1);
    }
    50% {
      -webkit-box-shadow: 0 0 12px rgba(29, 161, 242, 0.6), 0 0 20px rgba(29, 161, 242, 0.3), 0 0 28px rgba(29, 161, 242, 0.2);
      box-shadow: 0 0 12px rgba(29, 161, 242, 0.6), 0 0 20px rgba(29, 161, 242, 0.3), 0 0 28px rgba(29, 161, 242, 0.2);
    }
  }
}
@media (max-width: 380px) {
  .btn {
    height: 46px;
    padding: 11px 18px;
    font-size: 13.5px;
  }
  .btn-link::after {
    display: none; /* На очень маленьких экранах убираем полосу для производительности */
  }
}
.header {
  background: var(--bg, #F6F6F6);
  position: relative;
  width: 100%;
  z-index: 1000;
}

.header__container {
  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;
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.header__logo {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
  object-fit: contain;
  -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;
}

.header__logo:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

/* Левый блок с логотипом и телефоном */
.header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header-contact-info--left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.header__phone-icon {
  width: 18px;
  height: 18px;
}

/* Навигация по центру */
.nav {
  margin: 0 auto;
}

.nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__item {
  position: relative;
}

.nav__link {
  position: relative;
  color: #333333;
  text-decoration: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.nav__link:hover {
  color: #666666;
}

/* Правый блок с кнопкой и телефоном */
.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header-btn {
  color: #333333;
  border: 1px solid rgba(51, 51, 51, 0.2);
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
  background: transparent;
}

.header-btn:hover {
  background: rgba(51, 51, 51, 0.05);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  border-color: rgba(51, 51, 51, 0.3);
}

/* СТИЛИ ДЛЯ ТЕЛЕФОНА - красивое выделение */
.header-contact-info--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.phone {
  color: #2A2A2A;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  padding: 5px 0;
}

/* Эффект подчеркивания при наведении */
.phone::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #66C2FF;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.phone:hover {
  color: #66C2FF;
}

.phone:hover::after {
  width: 100%;
}

/* Стиль для иконки телефона */
.header__phone-icon {
  width: 20px;
  height: 20px;
  -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;
}

.header-contact-info--right:hover .header__phone-icon {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/* Бургер меню */
.mobile-menu-btn {
  display: none;
  position: relative;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10001;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.mobile-menu-btn span {
  display: block;
  position: absolute;
  height: 2px;
  width: 24px;
  background: #333333;
  border-radius: 2px;
  opacity: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) {
  top: 10px;
}

.mobile-menu-btn span:nth-child(2) {
  top: 15px;
}

.mobile-menu-btn span:nth-child(3) {
  top: 20px;
}

.mobile-menu-btn.active span:nth-child(1) {
  -webkit-transform: translateX(-50%) translateY(5px) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(5px) rotate(45deg);
  transform: translateX(-50%) translateY(5px) rotate(45deg);
  top: 10px;
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(-50%) scale(0);
  -ms-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}

.mobile-menu-btn.active span:nth-child(3) {
  -webkit-transform: translateX(-50%) translateY(-5px) rotate(-45deg);
  -ms-transform: translateX(-50%) translateY(-5px) rotate(-45deg);
  transform: translateX(-50%) translateY(-5px) rotate(-45deg);
  top: 20px;
}

.mobile-menu-btn:hover span {
  background: #666666;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* ДЕСКТОП ВЕРСИЯ (1200px и выше) */
@media (min-width: 1201px) {
  .header-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__logo {
    width: 100px;
    height: 100px;
  }
  .header-contact-info--left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-contact-info--left .phone {
    font-size: 17px;
    font-weight: 600;
  }
  .header-contact-info--left .phone::after {
    background: #666666;
  }
  .nav {
    display: block;
  }
  .nav-list {
    gap: 30px;
  }
  .nav__link {
    font-size: 18px;
  }
  .header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-contact-info--right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-contact-info--right .phone {
    font-size: 18px;
    font-weight: 700;
  }
  .header-btn {
    display: block;
  }
  .mobile-menu-btn {
    display: none;
  }
  .mobile-menu-phone {
    display: none !important;
  }
}
/* НОУТБУКИ (1025px - 1200px) */
@media (max-width: 1200px) and (min-width: 1025px) {
  .header__container {
    padding: 12px 20px;
  }
  .header-left {
    gap: 20px;
  }
  .header__logo {
    width: 90px;
    height: 90px;
  }
  .header-contact-info--left .phone {
    font-size: 16px;
  }
  .nav-list {
    gap: 20px;
  }
  .nav__link {
    font-size: 16px;
    padding: 12px 0;
  }
  .header-right {
    gap: 20px;
  }
  .header-contact-info--right .phone {
    font-size: 16px;
  }
  .header-btn {
    padding: 8px 20px;
    font-size: 14px;
  }
  .mobile-menu-btn {
    display: none;
  }
}
/* ПЛАНШЕТЫ (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .header__container {
    padding: 10px 20px;
    height: 80px;
  }
  .header-left {
    display: block;
  }
  .header__logo {
    width: 80px;
    height: 60px;
  }
  .nav {
    display: none;
  }
  .nav.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg, #F6F6F6);
    z-index: 9999;
    padding: 90px 20px 40px;
    overflow-y: auto;
  }
  .header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
  }
  /* ТЕЛЕФОН ПО ЦЕНТРУ - ЯВНОЕ ОТОБРАЖЕНИЕ */
  .header-contact-info--right {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
  }
  .header-contact-info--right .phone {
    font-size: 18px;
    font-weight: 700;
    color: #2A2A2A;
    background: -webkit-gradient(linear, left top, right top, from(#2A2A2A), to(#FF6B6B));
    background: linear-gradient(to right, #2A2A2A, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding: 5px 10px;
  }
  .header-contact-info--right .phone::after {
    background: #FF6B6B;
    height: 2px;
    bottom: 0;
  }
  .header-contact-info--right .header__phone-icon {
    width: 18px;
    height: 18px;
    -webkit-filter: brightness(0) saturate(100%) invert(40%) sepia(86%) saturate(748%) hue-rotate(314deg) brightness(101%) contrast(101%);
    filter: brightness(0) saturate(100%) invert(40%) sepia(86%) saturate(748%) hue-rotate(314deg) brightness(101%) contrast(101%);
  }
  .header-btn {
    display: none !important;
  }
  .mobile-menu-btn {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
  }
  .nav__link {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  }
  .mobile-menu-phone {
    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: 20px;
    padding: 30px 20px 0;
    border-top: 1px solid rgba(51, 51, 51, 0.1);
    margin-top: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* МОБИЛЬНЫЕ (до 768px) */
@media (max-width: 768px) {
  .header__container {
    padding: 8px 15px;
    height: 70px;
  }
  .header-left {
    display: block;
  }
  .header__logo {
    width: 60px;
    height: 45px;
  }
  .nav {
    display: none;
  }
  .nav.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg, #F6F6F6);
    z-index: 9999;
    padding: 80px 15px 30px;
    overflow-y: auto;
  }
  .header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
  }
  /* ТЕЛЕФОН ПО ЦЕНТРУ - ЯВНОЕ ОТОБРАЖЕНИЕ С КРАСИВЫМ СТИЛЕМ */
  .header-contact-info--right {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
  }
  .header-contact-info--right .phone {
    font-size: 18px;
    font-weight: 800;
    color: #FF6B6B;
    text-shadow: 0 0 5px rgba(255, 107, 107, 0.2);
    letter-spacing: 0.5px;
    padding: 6px 12px;
    background: rgba(255, 107, 107, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header-contact-info--right .phone:hover {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.4);
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  .header-contact-info--right .phone::after {
    display: none;
  }
  .header-contact-info--right .header__phone-icon {
    width: 18px;
    height: 18px;
    -webkit-filter: brightness(0) saturate(100%) invert(40%) sepia(86%) saturate(748%) hue-rotate(314deg) brightness(101%) contrast(101%);
    filter: brightness(0) saturate(100%) invert(40%) sepia(86%) saturate(748%) hue-rotate(314deg) brightness(101%) contrast(101%);
  }
  .header-btn {
    display: none !important;
  }
  .mobile-menu-btn {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 30px;
    height: 30px;
  }
  .mobile-menu-btn span {
    width: 22px;
  }
  .mobile-menu-btn span:nth-child(1) {
    top: 9px;
  }
  .mobile-menu-btn span:nth-child(2) {
    top: 14px;
  }
  .mobile-menu-btn span:nth-child(3) {
    top: 19px;
  }
  .nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .nav__item {
    opacity: 0;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .nav.active .nav__item {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .nav__link {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 17px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
    color: #333333;
  }
  .mobile-menu-phone {
    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: 20px;
    padding: 30px 15px 0;
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-top: 1px solid rgba(51, 51, 51, 0.1);
    margin-top: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .nav.active .mobile-menu-phone {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }
  .mobile-phone {
    font-size: 17px;
    font-weight: 700;
    color: #FF6B6B;
    text-decoration: none;
    padding: 12px 25px;
    background: rgba(255, 107, 107, 0.05);
    border-radius: 30px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    border: 1px solid rgba(255, 107, 107, 0.2);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .mobile-phone:hover {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.4);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  .mobile-btn {
    width: 100%;
    max-width: 300px;
    height: 48px;
    background: rgba(51, 51, 51, 0.1);
    color: #333333;
    font-weight: 600;
    font-size: 15px;
    border-radius: 30px;
    border: 1px solid rgba(51, 51, 51, 0.2);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .mobile-btn:hover {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.3);
    color: #FF6B6B;
  }
  .nav__item:nth-child(1) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }
  .nav__item:nth-child(2) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
  }
  .nav__item:nth-child(3) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }
  .nav__item:nth-child(4) {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
  }
  .nav__item:nth-child(5) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
}
/* МАЛЕНЬКИЕ МОБИЛЬНЫЕ (до 576px) */
@media (max-width: 576px) {
  .header__container {
    padding: 8px 12px;
    height: 60px;
  }
  .header__logo {
    width: 50px;
    height: 40px;
  }
  .header-contact-info--right .phone {
    font-size: 16px;
    padding: 5px 10px;
  }
  .header-contact-info--right .header__phone-icon {
    width: 16px;
    height: 16px;
  }
  .mobile-menu-btn {
    width: 28px;
    height: 28px;
  }
  .mobile-menu-btn span {
    width: 20px;
  }
  .mobile-menu-btn span:nth-child(1) {
    top: 8px;
  }
  .mobile-menu-btn span:nth-child(2) {
    top: 13px;
  }
  .mobile-menu-btn span:nth-child(3) {
    top: 18px;
  }
  .nav__link {
    font-size: 16px;
    padding: 15px 0;
  }
}
/* ЭКРАНЫ ДО 480px */
@media (max-width: 480px) {
  .header__container {
    padding: 6px 10px;
    height: 55px;
  }
  .header__logo {
    width: 45px;
    height: 35px;
  }
  .header-contact-info--right .phone {
    font-size: 15px;
    padding: 4px 8px;
  }
  .header-contact-info--right .header__phone-icon {
    width: 15px;
    height: 15px;
  }
  .mobile-menu-btn {
    width: 26px;
    height: 26px;
  }
  .mobile-menu-btn span {
    width: 18px;
    height: 1.5px;
  }
  .mobile-menu-btn span:nth-child(1) {
    top: 7px;
  }
  .mobile-menu-btn span:nth-child(2) {
    top: 12px;
  }
  .mobile-menu-btn span:nth-child(3) {
    top: 17px;
  }
}
/* ЭКРАНЫ ДО 380px */
@media (max-width: 380px) {
  .header__container {
    padding: 5px 8px;
    height: 50px;
  }
  .header__logo {
    width: 40px;
    height: 32px;
  }
  .header-contact-info--right .phone {
    font-size: 14px;
    padding: 3px 6px;
  }
  .header-contact-info--right .header__phone-icon {
    width: 14px;
    height: 14px;
  }
  .mobile-menu-btn {
    width: 24px;
    height: 24px;
  }
  .mobile-menu-btn span {
    width: 16px;
  }
  .nav__link {
    font-size: 15px;
    padding: 14px 0;
  }
}
/* Основные стили для блока Hero */
.hero {
  /* position: relative; */
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

.hero__container {
  position: relative;
  z-index: 2;
  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;
  gap: 40px;
}

.hero__left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 600px;
}

.hero__title {
  margin: 0;
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  font-size: 65px;
  color: var(--light-color);
  line-height: 60px;
  letter-spacing: -1px;
  vertical-align: middle;
  margin-bottom: 10px;
}

.hero__subtitle {
  margin: 0;
  font-family: Manrope;
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  color: var(--light-color);
  line-height: 25px;
  letter-spacing: 0px;
}

.hero__call-box {
  background-image: url("../img/bg-form.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  padding: 40px;
  max-width: 470px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.hero__text {
  margin: 0;
  color: #333;
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  font-size: 45px;
  line-height: 40px;
  letter-spacing: -0.4px;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 25px;
}

.hero__descr {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 10px;
  font-style: italic;
}

.hero__bage {
  display: inline-block;
  color: #888;
  margin: 20px 0;
  font-size: 0.9rem;
  position: relative;
  padding: 0 10px;
}

.hero__bage::before,
.hero__bage::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: #ddd;
}

.hero__bage::before {
  right: 100%;
}

.hero__bage::after {
  left: 100%;
}

/* Адаптивность начинается с 1199px */
@media (max-width: 1199px) {
  .hero__container {
    gap: 30px;
  }
  .hero__title {
    font-size: 55px;
    line-height: 55px;
  }
  .hero__text {
    font-size: 40px;
    line-height: 36px;
  }
}
@media (max-width: 991px) {
  .hero {
    padding: 80px 0;
    min-height: auto;
  }
  .hero__container {
    padding-top: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  .hero__left {
    max-width: 100%;
    width: 100%;
  }
  .hero__title {
    font-size: 48px;
    line-height: 52px;
    letter-spacing: -0.8px;
    margin-bottom: 15px;
  }
  .hero__subtitle {
    font-size: 20px;
    line-height: 24px;
    max-width: 600px;
    margin: 0 auto;
  }
  .hero__call-box {
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
    padding: 35px;
  }
  .hero__text {
    font-size: 38px;
    line-height: 34px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 70px 0;
  }
  .hero__container {
    gap: 40px;
  }
  .hero__title {
    font-size: 42px;
    line-height: 46px;
    letter-spacing: -0.6px;
    margin-bottom: 12px;
  }
  .hero__subtitle {
    font-size: 18px;
    line-height: 22px;
  }
  .hero__call-box {
    padding: 30px 25px;
    border-radius: 18px;
  }
  .hero__text {
    font-size: 34px;
    line-height: 30px;
    margin-bottom: 18px;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 60px 0;
  }
  .hero__container {
    gap: 35px;
  }
  .hero__title {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.4px;
    margin-bottom: 10px;
  }
  .hero__subtitle {
    font-size: 16px;
    line-height: 20px;
  }
  .hero__call-box {
    padding: 25px 20px;
    border-radius: 16px;
  }
  .hero__text {
    font-size: 30px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  .hero__bage {
    margin: 15px 0;
    font-size: 0.85rem;
  }
  .hero__bage::before,
  .hero__bage::after {
    width: 30px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 50px 0;
  }
  .hero__title {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 8px;
  }
  .hero__subtitle {
    font-size: 15px;
    line-height: 19px;
  }
  .hero__call-box {
    padding: 20px 18px;
    border-radius: 14px;
  }
  .hero__text {
    font-size: 26px;
    line-height: 24px;
    margin-bottom: 12px;
  }
  .hero__bage {
    font-size: 0.8rem;
    margin: 12px 0;
  }
  .hero__bage::before,
  .hero__bage::after {
    width: 25px;
  }
}
@media (max-width: 380px) {
  .hero__title {
    font-size: 28px;
    line-height: 32px;
  }
  .hero__text {
    font-size: 24px;
    line-height: 22px;
  }
}
/* Анимация появления */
@-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);
  }
}
.hero__left {
  -webkit-animation: fadeInUp 0.8s ease-out;
  animation: fadeInUp 0.8s ease-out;
}

.hero__call-box {
  -webkit-animation: fadeInUp 0.8s ease-out 0.3s both;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Для очень высоких экранов */
@media (min-height: 900px) and (min-width: 992px) {
  .hero {
    min-height: 90vh;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
/* Для ландшафтной ориентации на планшетах */
@media (max-width: 991px) and (orientation: landscape) {
  .hero {
    padding: 50px 0;
    min-height: auto;
  }
  .hero__container {
    gap: 30px;
  }
  .hero__title {
    font-size: 36px;
    line-height: 38px;
  }
  .hero__call-box {
    max-width: 450px;
    padding: 25px;
  }
}
.problems {
  background: #F6F6F6;
  position: relative;
  padding: 40px 0;
}

.problems .container {
  margin: 0 auto;
  max-width: 1300px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  position: relative;
  z-index: 2;
  background-image: url("../img/akkumulyator.png");
  background-repeat: no-repeat;
  background-position: left bottom -50px;
}

/* Левая часть с текстом */
.problems__left {
  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: 30px;
  position: relative;
  z-index: 3;
}

.problems__title {
  margin: 0;
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  font-size: 65px;
  line-height: 52px;
  letter-spacing: -0.4px;
  vertical-align: middle;
  color: var(--text-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.problems__subtitle {
  margin: 0;
  color: rgba(43, 45, 66, 0.8);
  font-family: Manrope;
  font-weight: 500;
  font-style: Medium;
  font-size: 30px;
  line-height: 32px;
  letter-spacing: 0px;
}

/* КНОПКА - ПЕРЕНЕСЕНА В ЛЕВУЮ ЧАСТЬ */
.problems__link-wrapper {
  margin-top: auto; /* Чтобы кнопка была внизу блока */
}

/* Список проблем */
.problems__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: 25px;
  margin: 0;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  z-index: 3;
}

.problems__item {
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 0;
  position: relative;
}

.problems__item::before {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  background-image: url("../img/stop.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.problems__text {
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  font-size: 22px;
  line-height: 25px;
  letter-spacing: 0px;
  color: var(--text-color);
  margin: 0;
  padding-top: 8px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* АДАПТАЦИЯ */
@media (max-width: 1200px) {
  .problems {
    padding: 70px 0;
  }
  .problems .container {
    gap: 40px;
    background-position: left bottom -40px;
  }
  .problems__title {
    font-size: 52px;
    line-height: 48px;
  }
  .problems__subtitle {
    font-size: 26px;
    line-height: 28px;
  }
}
@media (max-width: 992px) {
  .problems {
    padding: 60px 0;
  }
  .problems .container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 50px;
    background-position: center bottom -40px;
    background-size: 400px;
  }
  .problems__left {
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .problems__title {
    font-size: 44px;
    line-height: 46px;
  }
  .problems__subtitle {
    font-size: 22px;
    line-height: 24px;
  }
}
@media (max-width: 768px) {
  .problems {
    padding: 50px 0;
  }
  .problems .container {
    padding: 0 20px; /* Добавили боковые паддинги */
    gap: 40px;
    background-position: center bottom -30px;
    background-size: 300px;
  }
  .problems__title {
    font-size: 38px;
    line-height: 40px;
  }
  .problems__subtitle {
    font-size: 20px;
    line-height: 22px;
  }
  .problems__list {
    padding: 25px 20px;
  }
  .problems__item::before {
    width: 40px;
    height: 40px;
  }
  .problems__text {
    font-size: 20px;
    line-height: 23px;
  }
}
@media (max-width: 576px) {
  .problems {
    padding: 40px 0;
  }
  .problems .container {
    padding: 0 15px;
    gap: 35px;
    background-position: center bottom -20px;
    background-size: 250px;
  }
  .problems__title {
    font-size: 32px;
    line-height: 34px;
  }
  .problems__subtitle {
    font-size: 18px;
    line-height: 20px;
  }
  .problems__left {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; /* Кнопка теперь внизу */
  }
  .problems__right {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; /* Список теперь сверху */
  }
  .problems__list {
    padding: 20px;
    gap: 20px;
  }
  .problems__item::before {
    width: 36px;
    height: 36px;
  }
  .problems__text {
    font-size: 18px;
    line-height: 21px;
  }
}
@media (max-width: 480px) {
  .problems {
    padding: 35px 0;
  }
  .problems .container {
    padding: 0 12px;
    background-size: 200px;
    background-position: center bottom -15px;
  }
  .problems__title {
    font-size: 28px;
    line-height: 30px;
  }
  .problems__subtitle {
    font-size: 16px;
    line-height: 18px;
  }
  .problems__item {
    gap: 8px;
  }
  .problems__item::before {
    width: 32px;
    height: 32px;
  }
  .problems__text {
    font-size: 16px;
    line-height: 19px;
  }
}
@media (max-width: 380px) {
  .problems .container {
    background-size: 180px;
    background-position: center bottom -10px;
  }
}
.steps {
  padding: 100px 0;
  background-color: #1A1A1A;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.steps .container {
  position: relative;
  z-index: 2;
  max-width: 1050px;
}

.steps__title {
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  font-size: 85px;
  line-height: 52px;
  letter-spacing: -0.4px;
  vertical-align: middle;
  color: #FFFFFF;
  margin: 0 0 60px 0;
}

.steps__list {
  list-style: none;
  padding: 0;
  margin: 0 0 60px 0;
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.steps__list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.steps__item {
  position: relative;
  padding-left: 100px;
  padding-bottom: 60px;
  min-height: 120px;
}

.steps__item:last-child {
  padding-bottom: 0;
}

.steps__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  background-color: #25DAC5;
  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: 24px;
  font-weight: 700;
  color: #FFFFFF;
  z-index: 2;
}

.steps__item:nth-child(1)::before {
  content: "1";
}

.steps__item:nth-child(2)::before {
  content: "2";
}

.steps__item:nth-child(3)::before {
  content: "3";
}

.steps__item:nth-child(4)::before {
  content: "4";
}

/* Убираем зеленую точку внутри круга */
.steps__item::after {
  display: none;
}

.steps__text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #FFFFFF;
  margin: 0 0 15px 0;
}

.steps__descr {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.steps__box {
  margin-top: 30px;
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.steps__img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.steps__text-box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.steps__text-box .steps__text {
  font-size: 20px;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.steps__text-box .steps__descr {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.steps__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 560px !important;
  margin: 0 auto !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .steps {
    padding: 80px 0;
  }
  .steps__title {
    font-size: 40px;
    margin-bottom: 50px;
  }
  .steps__list {
    max-width: 700px;
  }
  .steps__text {
    font-size: 22px;
  }
  .steps__descr {
    font-size: 17px;
  }
}
@media (max-width: 992px) {
  .steps__title {
    font-size: 36px;
  }
  .steps__list {
    max-width: 600px;
  }
  .steps__item {
    padding-left: 80px;
    padding-bottom: 50px;
    min-height: 110px;
  }
  .steps__item::before {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
  .steps__text {
    font-size: 20px;
  }
  .steps__descr {
    font-size: 16px;
  }
  .steps__box {
    padding: 20px;
    gap: 20px;
  }
  .steps__img {
    width: 100px;
    height: 100px;
  }
  .steps__text-box .steps__text {
    font-size: 18px;
  }
  .steps__text-box .steps__descr {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .steps {
    padding: 60px 0;
  }
  .steps__title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .steps__list {
    max-width: 100%;
  }
  .steps__list::before {
    left: 20px;
  }
  .steps__item {
    padding-left: 70px;
    padding-bottom: 40px;
    min-height: 100px;
  }
  .steps__item::before {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .steps__text {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .steps__descr {
    font-size: 15px;
  }
  .steps__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    margin-top: 20px;
  }
  .steps__img {
    width: 100%;
    height: 180px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media (max-width: 576px) {
  .steps__title {
    font-size: 28px;
  }
  .steps__list::before {
    left: 18px;
  }
  .steps__item {
    padding-left: 60px;
    padding-bottom: 35px;
    min-height: 90px;
  }
  .steps__item::before {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .steps__text {
    font-size: 17px;
  }
  .steps__descr {
    font-size: 14px;
  }
  .steps__box {
    padding: 16px;
    margin-top: 15px;
  }
  .steps__img {
    height: 150px;
  }
  .steps__text-box .steps__text {
    font-size: 16px;
  }
  .steps__text-box .steps__descr {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .steps {
    padding: 50px 0;
  }
  .steps__title {
    font-size: 24px;
  }
  .steps__item {
    padding-left: 55px;
    padding-bottom: 30px;
    min-height: 85px;
  }
  .steps__item::before {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .steps__text {
    font-size: 16px;
  }
}
.calculator {
  padding: 70px 0px 50px 0px;
  background-color: var(--bg);
}

.calculator__title {
  margin: 0;
  color: var(--text-color);
  font-family: Manrope;
  font-weight: 700;
  font-size: 65px;
  line-height: 52px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 10px;
}

.calculator__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0 0 40px 0;
  text-align: center;
  opacity: 0.9;
}

.calculator__form-wrapper {
  max-width: 770px;
  margin: 0 auto;
}

.calculator__form-box {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(37.93%, #FFFFFF), to(#E5E5E5));
  background: linear-gradient(180deg, #FFFFFF 37.93%, #E5E5E5 100%);
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.calculator__form-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
}

.calculator__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.calculator__field {
  margin-bottom: 25px;
}

.calculator__label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 12px;
}

.calculator__problem-options {
  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;
}

.calculator__option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 14px 20px;
  border: 2px solid #E5E5E5;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.calculator__option:hover {
  border-color: #25DAC5;
}

.calculator__option input:checked + .calculator__option-text {
  color: #25DAC5;
  font-weight: 600;
}

.calculator__option input:checked ~ .calculator__option-text::before {
  content: "✓ ";
  color: #25DAC5;
}

.calculator__option input {
  display: none;
}

.calculator__option-text {
  font-size: 16px;
  color: var(--text-color);
}

.calculator__input {
  width: 100%;
  padding: 15px 20px;
  font-size: 16px;
  border: 2px solid #E5E5E5;
  border-radius: 12px;
  background: white;
  color: var(--text-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.calculator__textarea {
  width: 100%;
  padding: 15px 20px;
  font-size: 16px;
  border: 2px solid #E5E5E5;
  border-radius: 12px;
  background: white;
  color: var(--text-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
}

.calculator__input:focus,
.calculator__textarea:focus {
  outline: none;
  border-color: #25DAC5;
  -webkit-box-shadow: 0 0 0 3px rgba(37, 218, 197, 0.1);
  box-shadow: 0 0 0 3px rgba(37, 218, 197, 0.1);
}

.calculator__submit {
  width: 100%;
  background: #25DAC5;
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: auto;
}

.calculator__form-image {
  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;
}

.calculator__img-form {
  -o-object-fit: contain;
  object-fit: contain;
}

.calculator__result {
  padding: 0 30px 30px 30px;
}

.calculator__result-content {
  background: white;
  padding: 25px;
  border-radius: 15px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #E5E5E5;
}

.calculator__result-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E5E5E5;
}

.calculator__result-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  margin: 0 0 10px 0;
}

.calculator__price {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-color);
}

.calculator__details {
  margin-bottom: 20px;
}

.calculator__details-text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-color);
  background: #F9F9F9;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #E5E5E5;
}

.calculator__telegram-box {
  background: #F0F9F8;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #E5E5E5;
}

.calculator__telegram-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 15px;
  text-align: center;
}

.calculator__message {
  background: white;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-color);
  margin-bottom: 20px;
  white-space: pre-line;
}

.calculator__buttons {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 15px;
}

.calculator__copy-btn {
  background: #25DAC5;
  color: white;
  border: none;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.calculator__copy-btn:hover {
  background: #1FB8A5;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.calculator__tg-btn {
  background: #0088cc;
  color: white;
  border: none;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.calculator__tg-btn:hover {
  background: #0077b3;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  color: white;
}

.calculator__call-btn {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  color: white;
  border: none;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.calculator__call-btn:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.calculator__note {
  font-size: 13px;
  color: #666;
  text-align: center;
  font-style: italic;
} /* Кастомное уведомление */
.calculator__notification {
  position: fixed;
  top: 30px;
  right: 30px;
  max-width: 400px;
  width: calc(100% - 60px);
  background: white;
  border-radius: 16px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(255, 107, 107, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(255, 107, 107, 0.15);
  z-index: 9999;
  opacity: 0;
  -webkit-transform: translateX(100%) scale(0.9);
  -ms-transform: translateX(100%) scale(0.9);
  transform: translateX(100%) scale(0.9);
  -webkit-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  border-left: 4px solid #ff6b6b;
  overflow: hidden;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.98);
}

.calculator__notification.show {
  opacity: 1;
  -webkit-transform: translateX(0) scale(1);
  -ms-transform: translateX(0) scale(1);
  transform: translateX(0) scale(1);
  pointer-events: all;
}

.calculator__notification::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.03) 0%, rgba(255, 71, 87, 0) 100%);
  pointer-events: none;
}

.calculator__notification-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 20px;
  position: relative;
  gap: 16px;
}

.calculator__notification-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
  border-radius: 12px;
  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;
  -webkit-box-shadow: 0 8px 16px rgba(255, 107, 107, 0.25);
  box-shadow: 0 8px 16px rgba(255, 107, 107, 0.25);
  -webkit-transform: rotate(-5deg) scale(1);
  -ms-transform: rotate(-5deg) scale(1);
  transform: rotate(-5deg) scale(1);
  -webkit-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.calculator__notification:hover .calculator__notification-icon {
  -webkit-transform: rotate(0deg) scale(1.1);
  -ms-transform: rotate(0deg) scale(1.1);
  transform: rotate(0deg) scale(1.1);
}

.calculator__notification-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

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

.calculator__notification-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 6px 0;
  font-family: Manrope, sans-serif;
  line-height: 1.3;
}

.calculator__notification-message {
  font-size: 15px;
  color: #475569;
  margin: 0;
  font-family: Manrope, sans-serif;
  line-height: 1.5;
}

.calculator__notification-close {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: none;
  background: #f1f5f9;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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: 0;
  margin-left: 4px;
}

.calculator__notification-close:hover {
  background: #e2e8f0;
  -webkit-transform: rotate(90deg) scale(1.1);
  -ms-transform: rotate(90deg) scale(1.1);
  transform: rotate(90deg) scale(1.1);
}

.calculator__notification-close svg {
  width: 18px;
  height: 18px;
  fill: #64748b;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.calculator__notification-close:hover svg {
  fill: #334155;
}

/* Прогресс-бар */
.calculator__notification-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#ff6b6b), to(#ff4757));
  background: linear-gradient(90deg, #ff6b6b, #ff4757);
  width: 100%;
  -webkit-animation: notification-progress 4s linear forwards;
  animation: notification-progress 4s linear forwards;
  border-radius: 0 0 0 4px;
}

/* Анимации */
@-webkit-keyframes notification-progress {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}
@keyframes notification-progress {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}
@-webkit-keyframes notification-slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%) scale(0.9);
    transform: translateX(100%) scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
  }
}
@keyframes notification-slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%) scale(0.9);
    transform: translateX(100%) scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
  }
}
@-webkit-keyframes pulse-warning {
  0%, 100% {
    -webkit-box-shadow: 0 8px 16px rgba(255, 107, 107, 0.25);
    box-shadow: 0 8px 16px rgba(255, 107, 107, 0.25);
  }
  50% {
    -webkit-box-shadow: 0 12px 24px rgba(255, 107, 107, 0.4);
    box-shadow: 0 12px 24px rgba(255, 107, 107, 0.4);
  }
}
@keyframes pulse-warning {
  0%, 100% {
    -webkit-box-shadow: 0 8px 16px rgba(255, 107, 107, 0.25);
    box-shadow: 0 8px 16px rgba(255, 107, 107, 0.25);
  }
  50% {
    -webkit-box-shadow: 0 12px 24px rgba(255, 107, 107, 0.4);
    box-shadow: 0 12px 24px rgba(255, 107, 107, 0.4);
  }
}
.calculator__notification-icon {
  -webkit-animation: pulse-warning 2s ease-in-out infinite;
  animation: pulse-warning 2s ease-in-out infinite;
}

/* Стили для разных типов уведомлений */
.calculator__notification--success {
  border-left-color: #10b981;
}

.calculator__notification--success .calculator__notification-icon {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  -webkit-box-shadow: 0 8px 16px rgba(16, 185, 129, 0.25);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.25);
}

.calculator__notification--success .calculator__notification-progress {
  background: -webkit-gradient(linear, left top, right top, from(#34d399), to(#10b981));
  background: linear-gradient(90deg, #34d399, #10b981);
}

.calculator__notification--info {
  border-left-color: #3b82f6;
}

.calculator__notification--info .calculator__notification-icon {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-box-shadow: 0 8px 16px rgba(59, 130, 246, 0.25);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.25);
}

.calculator__notification--info .calculator__notification-progress {
  background: -webkit-gradient(linear, left top, right top, from(#60a5fa), to(#3b82f6));
  background: linear-gradient(90deg, #60a5fa, #3b82f6);
}

@media (max-width: 850px) {
  .calculator__form-wrapper {
    max-width: 95%;
  }
}
@media (max-width: 768px) {
  .calculator__form-content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 25px;
  }
  .calculator__form-image {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .calculator__img-form {
    height: 250px;
  }
  .calculator__result {
    padding: 0 25px 25px 25px;
  }
  .calculator__notification {
    top: 20px;
    right: 20px;
    width: calc(100% - 40px);
    max-width: none;
    border-radius: 14px;
  }
  .calculator__notification-content {
    padding: 16px;
    gap: 14px;
  }
  .calculator__notification-icon {
    width: 44px;
    height: 44px;
  }
  .calculator__notification-icon svg {
    width: 24px;
    height: 24px;
  }
  .calculator__notification-title {
    font-size: 17px;
    margin-bottom: 4px;
  }
  .calculator__notification-message {
    font-size: 14px;
  }
  .calculator__notification-close {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 576px) {
  .calculator {
    padding: 30px 0;
  }
  .calculator__title {
    font-size: 28px;
    line-height: 90%;
  }
  .calculator__subtitle {
    font-size: 16px;
  }
  .calculator__form-content {
    padding: 20px;
  }
  .calculator__result {
    padding: 0 20px 20px 20px;
  }
  .calculator__result-content {
    padding: 20px;
  }
  .calculator__price {
    font-size: 22px;
  }
  .calculator__telegram-box {
    padding: 15px;
  }
  .calculator__message {
    padding: 12px;
    font-size: 13px;
  }
  .calculator__buttons {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .calculator__call-btn {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
  .calculator__copy-btn,
  .calculator__tg-btn,
  .calculator__call-btn {
    padding: 10px;
    font-size: 13px;
  }
  .calculator__img-form {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .calculator__form-content {
    padding: 15px;
  }
  .calculator__field {
    margin-bottom: 20px;
  }
  .calculator__option {
    padding: 12px 16px;
  }
  .calculator__option-text {
    font-size: 15px;
  }
  .calculator__input,
  .calculator__textarea {
    padding: 12px 16px;
    font-size: 15px;
  }
  .calculator__submit {
    padding: 14px 30px;
    font-size: 15px;
  }
  .calculator__result {
    padding: 0 15px 15px 15px;
  }
  .calculator__result-content {
    padding: 15px;
  }
  .calculator__telegram-box {
    padding: 12px;
  }
  .calculator__notification {
    top: 16px;
    right: 16px;
    width: calc(100% - 32px);
    border-left-width: 4px;
    border-radius: 12px;
  }
  .calculator__notification-content {
    padding: 14px;
    gap: 12px;
  }
  .calculator__notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .calculator__notification-icon svg {
    width: 22px;
    height: 22px;
  }
  .calculator__notification-title {
    font-size: 16px;
  }
  .calculator__notification-message {
    font-size: 13px;
  }
  .calculator__notification-close {
    width: 28px;
    height: 28px;
  }
  .calculator__notification-close svg {
    width: 16px;
    height: 16px;
  }
}
/* Для очень маленьких экранов */
@media (max-width: 360px) {
  .calculator__notification-content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .calculator__notification-close {
    position: absolute;
    top: 12px;
    right: 12px;
  }
}
/* ===== ПОРТФОЛИО ===== */
.portfolio {
  padding: 40px 0;
  background: var(--bg, #F6F6F6);
}

.portfolio .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.portfolio__title {
  margin: 0;
  font-family: Manrope;
  font-weight: 700;
  font-size: 65px;
  line-height: 52px;
  letter-spacing: 0px;
  text-align: center;
  color: var(--text-color, #333);
  margin-bottom: 50px;
}

/* ===== ДИНАМИЧЕСКАЯ СЕТКА ===== */
.portfolio__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Базовый стиль для всех элементов */
.portfolio__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: var(--light-color, #fff);
  border-radius: 24px;
  -webkit-box-shadow: var(--shadow, 0 2px 20px rgba(0, 0, 0, 0.1));
  box-shadow: var(--shadow, 0 2px 20px rgba(0, 0, 0, 0.1));
  overflow: hidden;
  -webkit-transition: var(--transition, all 0.3s ease);
  transition: var(--transition, all 0.3s ease);
  height: 100%;
  width: 100%;
}

.portfolio__item:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: var(--dropdown-shadow, 0 10px 30px rgba(0, 0, 0, 0.15));
  box-shadow: var(--dropdown-shadow, 0 10px 30px rgba(0, 0, 0, 0.15));
}

.portfolio__item.portfolio__item-big {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}

.portfolio__item:not(.portfolio__item-big) {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}

.portfolio__item:not(.portfolio__item-big) .portfolio__item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  background: var(--light-color, #fff);
}

.portfolio__item:not(.portfolio__item-big) .portfolio__item-left .portfolio__date {
  padding: 25px 25px 0 25px;
  margin-bottom: 8px;
}

.portfolio__item:not(.portfolio__item-big) .portfolio__item-left .portfolio__text {
  padding: 0 25px;
  margin: 0 0 16px 0;
}

.portfolio__item:not(.portfolio__item-big) .portfolio__item-left .portfolio__descr {
  padding: 0 25px;
  margin: 0 0 8px 0;
}

.portfolio__item:not(.portfolio__item-big) .portfolio__item-left .portfolio__descr:last-of-type {
  margin-bottom: 0;
}

.portfolio__item:not(.portfolio__item-big) .portfolio__item-left .portfolio__item-bottom {
  padding: 16px 25px 25px 25px;
  margin-top: auto;
}

.portfolio__item:not(.portfolio__item-big) .portfolio__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
  -webkit-filter: brightness(0.95) contrast(1.05);
  filter: brightness(0.95) contrast(1.05);
  -webkit-transition: var(--transition, all 0.3s ease);
  transition: var(--transition, all 0.3s ease);
}

.portfolio__item:not(.portfolio__item-big):hover .portfolio__img {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-filter: brightness(1) contrast(1.1);
  filter: brightness(1) contrast(1.1);
}

/* Большой блок - внутренняя структура */
.portfolio__item.portfolio__item-big {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
}

.portfolio__item.portfolio__item-big .portfolio__item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
  background: var(--light-color, #fff);
}

.portfolio__item.portfolio__item-big .portfolio__item-top .portfolio__date {
  padding: 0;
  margin-bottom: 12px;
}

.portfolio__item.portfolio__item-big .portfolio__item-top .portfolio__bage {
  margin-bottom: 16px;
}

.portfolio__item.portfolio__item-big .portfolio__item-top .portfolio__works {
  margin: 5px 0 12px;
}

.portfolio__item.portfolio__item-big .portfolio__item-top .portfolio__text {
  margin: 0 0 16px;
}

.portfolio__item.portfolio__item-big .portfolio__item-top .portfolio__descr {
  margin: 0 0 12px 5px;
}

.portfolio__item.portfolio__item-big .portfolio__img {
  width: 100%;
  height: auto;
  max-height: 500px; /* Максимальная высота 500px */
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-filter: brightness(0.95) contrast(1.05);
  filter: brightness(0.95) contrast(1.05);
  -webkit-transition: var(--transition, all 0.3s ease);
  transition: var(--transition, all 0.3s ease);
}

.portfolio__item.portfolio__item-big:hover .portfolio__img {
  -webkit-filter: brightness(1) contrast(1.1);
  filter: brightness(1) contrast(1.1);
  -webkit-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
}

.portfolio__item.portfolio__item-big .portfolio__descr-big {
  padding: 25px;
  margin: 0;
  background: var(--light-color, #fff);
  border-top: 1px solid var(--border-color, rgba(138, 106, 58, 0.2));
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color, #333);
}

.portfolio__item.portfolio__item-big .portfolio__item-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
  padding: 0 25px 25px 25px;
  background: var(--light-color, #fff);
  border-top: none;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.portfolio__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* Общие элементы */
.portfolio__date {
  display: inline-block;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-color, #333);
  opacity: 0.7;
  margin-bottom: 12px;
}

.portfolio__bage {
  display: inline-block;
  color: #333;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  -webkit-box-shadow: 0 4px 10px rgba(138, 106, 58, 0.2);
  box-shadow: 0 4px 10px rgba(138, 106, 58, 0.2);
}

.portfolio__works {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color, #333);
  margin: 5px 0 12px;
}

.portfolio__text {
  font-weight: 500;
  font-size: 25px;
  line-height: 22px;
  letter-spacing: 0px;
  color: var(--text-color, #333);
  margin: 0 0 16px;
}

.portfolio__descr {
  color: var(--text-color, #333);
  opacity: 0.8;
  margin: 0 0 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0px;
  position: relative;
  padding-left: 20px;
}

.portfolio__descr::before {
  content: "•";
  position: absolute;
  left: 10px;
  color: #333;
  font-weight: 700;
  font-size: 18px;
}

.portfolio__item-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  width: 100%;
}

.portfolio__link {
  display: inline-block;
  background: var(--light-color, #fff);
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 30px;
  text-align: center;
  -webkit-transition: var(--transition, all 0.3s ease);
  transition: var(--transition, all 0.3s ease);
  -webkit-box-shadow: 0 4px 15px rgba(138, 106, 58, 0.25);
  box-shadow: 0 4px 15px rgba(138, 106, 58, 0.25);
  cursor: pointer;
  letter-spacing: 0.5px;
  white-space: nowrap;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  border: 2px solid rgba(21, 20, 57, 0.2);
}

.portfolio__link:hover {
  border: none;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 25px rgba(138, 106, 58, 0.35);
  box-shadow: 0 8px 25px rgba(138, 106, 58, 0.35);
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  color: var(--light-color, #fff);
}

/* Блок с ценой */
.portfolio__price {
  position: absolute;
  top: 0px;
  right: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  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;
  padding: 5px 14px;
  border-radius: 30px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.portfolio__price span {
  display: block;
}

.portfolio__price-big {
  top: 220px;
}

.portfolio__price:hover {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.portfolio__img {
  -webkit-transition: var(--transition, all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1));
  transition: var(--transition, all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1));
}

.portfolio__img-link {
  display: block;
  line-height: 0;
}

/* Адаптивность */
@media (max-width: 992px) {
  .portfolio__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .portfolio__item.portfolio__item-big {
    grid-row: auto;
  }
  .portfolio__item:not(.portfolio__item-big) {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .portfolio__item:not(.portfolio__item-big) .portfolio__img {
    height: 350px;
    width: 100%;
  }
  .portfolio__item.portfolio__item-big .portfolio__img {
    height: 400px;
    max-height: 400px; /* Сбрасываем максимальную высоту для планшета */
  }
  .portfolio__price-big {
    top: 250px;
  }
}
@media (max-width: 768px) {
  .portfolio {
    padding: 60px 0;
  }
  .portfolio__title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .portfolio__text {
    font-size: 18px;
  }
  .portfolio__descr {
    font-size: 14px;
  }
  .portfolio__item:not(.portfolio__item-big) .portfolio__img {
    height: 300px;
  }
  .portfolio__item.portfolio__item-big .portfolio__img {
    height: 350px;
    max-height: 350px; /* Сбрасываем максимальную высоту для мобильных */
  }
  .portfolio__item:not(.portfolio__item-big) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .portfolio__item:not(.portfolio__item-big) .portfolio__img-link {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .portfolio__item:not(.portfolio__item-big) .portfolio__price {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
  }
  .portfolio__item.portfolio__item-big {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .portfolio {
    padding: 40px 0;
  }
  .portfolio__title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .portfolio__list {
    gap: 20px;
  }
  .portfolio__item:not(.portfolio__item-big) .portfolio__img {
    height: 280px;
  }
  .portfolio__item.portfolio__item-big .portfolio__img {
    height: 300px;
    max-height: 300px; /* Сбрасываем максимальную высоту для маленьких экранов */
  }
  .portfolio__text {
    font-size: 16px;
  }
  .portfolio__date {
    font-size: 13px;
  }
  .portfolio__item-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .portfolio__link {
    width: 100%;
  }
}
@media (max-width: 380px) {
  .portfolio__price-big {
    top: 190px;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .portfolio__item:not(.portfolio__item-big) .portfolio__img {
    image-rendering: crisp-edges;
  }
}
.advantages {
  padding: 80px 0;
  background: var(--bg);
  width: 100%;
}

.advantages__title {
  margin: 0;
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  font-size: 65px;
  color: #333;
  line-height: 52px;
  letter-spacing: 0px;
  margin-bottom: 50px;
}

.advantages__list {
  padding: 15px;
  max-width: 1145px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: linear-gradient(87.11deg, rgba(53, 53, 58, 0.8) 2.4%, rgba(53, 53, 58, 0.64) 108.19%);
  border: none;
  height: 245px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.advantages__item {
  position: relative;
  padding: 30px 35px;
  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;
  gap: 12px;
}

.advantages__footnote {
  margin: 0;
  text-align: center;
  font-family: Manrope;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 20px;
  color: #333 !important;
  letter-spacing: 0px;
  text-align: center;
}

.advantages__item:first-child {
  border-right: 7px solid #fff;
}

.advantages__item:nth-child(2) {
  border-right: 7px solid #fff;
}

.advantages__item:last-child {
  border-right: none;
}

.advantages__text {
  margin: 0;
  text-align: center;
  font-family: Manrope;
  font-weight: 600;
  font-size: 65px;
  color: #fff;
  line-height: 40px;
  letter-spacing: 0%;
}
.advantages__text span {
  font-size: 40px;
  line-height: 40px;
}

.advantages__descr {
  margin: 0;
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
}

.advantages__text-bottom {
  margin: 0;
  text-align: center;
  font-weight: 500;
  font-style: Medium;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: -0.3px;
  color: #fff;
}

.advantages__item label {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 15px;
  line-height: 14px;
  letter-spacing: 0px;
  text-align: right;
  color: #fff;
}

.advantages__item input[type=range] {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  outline: none;
  margin: 2px 0;
}

.advantages__item input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  background: -webkit-gradient(linear, left top, right top, from(#25DAC5), to(rgba(255, 255, 255, 0.1)));
  background: linear-gradient(to right, #25DAC5 var(--range-value, 90%), rgba(255, 255, 255, 0.1) var(--range-value, 90%));
  border-radius: 10px;
}

.advantages__item input[type=range]::-moz-range-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.advantages__item input[type=range]::-moz-range-progress {
  height: 6px;
  background: #25DAC5;
  border-radius: 10px;
}

.advantages__item input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #25DAC5;
  border-radius: 50%;
  cursor: pointer;
  -webkit-box-shadow: 0 0 15px rgba(37, 218, 197, 0.6);
  box-shadow: 0 0 15px rgba(37, 218, 197, 0.6);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-top: -6px;
}

.advantages__item input[type=range]::-webkit-slider-thumb:hover {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
  -webkit-box-shadow: 0 0 20px rgba(37, 218, 197, 0.9);
  box-shadow: 0 0 20px rgba(37, 218, 197, 0.9);
}

.advantages__item input[type=range]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #25DAC5;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 15px rgba(37, 218, 197, 0.6);
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.advantages__item input[type=range]::-moz-range-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(37, 218, 197, 0.9);
}

.advantages__footnote {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin: 20px 0 0 0;
  text-align: center;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

@media (max-width: 992px) {
  .advantages__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    height: auto;
  }
  .advantages__item {
    padding: 30px 35px;
    height: auto;
    min-height: 200px;
  }
  .advantages__item {
    border: none !important;
  }
}
@media (max-width: 768px) {
  .advantages {
    padding: 60px 0;
  }
  .advantages__title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .advantages__item {
    padding: 25px 30px;
  }
  .advantages__text {
    font-size: 42px;
  }
  .advantages__descr {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .advantages {
    padding: 50px 0;
  }
  .advantages__title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .advantages__list {
    border-radius: 8px;
  }
  .advantages__item {
    padding: 20px 25px;
  }
  .advantages__text {
    font-size: 36px;
  }
  .advantages__descr {
    font-size: 16px;
  }
  .advantages__text-bottom {
    font-size: 15px;
    padding-top: 15px;
  }
  .advantages__footnote {
    font-size: 13px;
    padding-top: 20px;
    margin-top: 15px;
  }
}
@media (max-width: 380px) {
  .advantages__title {
    font-size: 24px;
  }
  .advantages__item {
    padding: 18px 20px;
  }
  .advantages__text {
    font-size: 32px;
  }
  .advantages__descr {
    font-size: 15px;
  }
  .advantages__text-bottom {
    font-size: 14px;
  }
  .advantages__footnote {
    font-size: 12px;
  }
}
.faq {
  background: var(--bg, #F6F6F6);
}

.faq__title {
  padding-top: 10px;
  margin: 0;
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  font-size: 60px;
  text-align: left;
  line-height: 36px;
  letter-spacing: 0%;
  color: #333;
  margin-bottom: 24px;
}

.faq__subtitle {
  margin: 0;
  font-family: Manrope;
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #333;
}

.faq__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 0 auto;
  padding: 40px;
  max-width: 1220px;
  border-radius: 20px;
}

.faq__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-right: 20px;
  border-right: 1px solid #333;
}

.faq__right {
  width: 100%;
}

.accordion__list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.accordion {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(37, 218, 197, 0.2);
}

.accordion:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.accordion__box {
  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;
  padding: 20px 0;
  cursor: pointer;
  background: transparent;
}

.accordion__title-box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.accordion__title {
  padding: 0;
  color: var(--text-color, #333);
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  text-align: left;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.accordion__icon {
  position: relative;
  width: 24px;
  height: 24px;
  margin-left: 15px;
  -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;
}

.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.accordion__icon::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  padding: 0;
}

.accordion__text {
  color: var(--text-color, #333);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  opacity: 0.8;
  padding-right: 20px;
}

.accordion__text:last-child {
  margin-bottom: 0;
}

/* Состояние открытого аккордеона */
.accordion.open .accordion__title {
  color: #25DAC5;
}

.accordion.open .accordion__icon::after {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.accordion.open .accordion__content {
  max-height: 300px;
  padding-bottom: 20px;
  padding-top: 5px;
}

/* Анимация при наведении */
.accordion:not(.open):hover .accordion__title {
  color: #25DAC5;
}

.accordion:not(.open):hover .accordion__icon::before,
.accordion:not(.open):hover .accordion__icon::after {
  background-color: #25DAC5;
  opacity: 0.8;
}

@media (max-width: 992px) {
  .faq__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 35px;
  }
  .faq__left {
    padding-right: 0;
    border-right: none;
    padding-bottom: 30px;
  }
  .faq__title {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .faq {
    padding-top: 50px;
  }
  .faq__title {
    font-size: 48px;
    margin-bottom: 25px;
  }
  .faq__inner {
    padding: 30px;
    gap: 30px;
  }
  .faq__title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .faq__left-subtitle {
    font-size: 18px;
  }
  .accordion__title {
    font-size: 17px;
  }
  .accordion__text {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .faq {
    padding-top: 40px;
  }
  .faq__title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .faq__inner {
    padding: 25px;
    gap: 25px;
  }
  .faq__title {
    font-size: 28px;
  }
  .faq__subtitle {
    font-size: 16px;
  }
  .accordion__box {
    padding: 18px 0;
  }
  .accordion__title {
    font-size: 16px;
    padding-right: 10px;
  }
  .accordion__icon {
    width: 20px;
    height: 20px;
  }
  .accordion__text {
    font-size: 14px;
  }
}
@media (max-width: 380px) {
  .faq__title {
    font-size: 30px;
  }
  .faq__inner {
    padding: 20px;
  }
  .faq__title {
    font-size: 24px;
  }
  .faq__subtitle {
    font-size: 15px;
  }
  .accordion__title {
    font-size: 15px;
  }
}
.reviews {
  padding: 40px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(var(--primary-color)), to(transparent));
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.reviews__title {
  text-align: center;
  font-weight: 500;
  font-size: 42px;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 15px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-animation: fadeInUp 0.8s ease 0.2s forwards;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.reviews__subtitle {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 50px;
  opacity: 0.8;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-animation: fadeInUp 0.8s ease 0.4s forwards;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.reviews__graduates {
  margin: 0 auto;
  max-width: 1200px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.reviews__graduate {
  max-width: 400px;
  background: var(--light-color);
  border-radius: 20px;
  padding: 25px;
  -webkit-box-shadow: 0 10px 30px var(--primary-shadow);
  box-shadow: 0 10px 30px var(--primary-shadow);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}

.reviews__graduate.animated {
  -webkit-animation: fadeInUp 0.8s ease forwards;
  animation: fadeInUp 0.8s ease forwards;
}

.reviews__graduate:hover {
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-box-shadow: 0 20px 40px rgba(28, 191, 170, 0.15);
  box-shadow: 0 20px 40px rgba(28, 191, 170, 0.15);
  border-color: rgba(28, 191, 170, 0.3);
}

.reviews__graduate-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--primary-color);
}

.reviews__graduate-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.reviews__graduate:hover .reviews__graduate-photo img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.reviews__graduate-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.reviews__graduate-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.reviews__graduate-name {
  font-weight: 600;
  font-size: 20px;
  color: var(--dark);
  text-align: left;
  margin-bottom: 0;
}

.reviews__graduate-badge-level {
  font-size: 12px;
  color: var(--dark);
  opacity: 0.6;
  background: var(--bg-grey);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.reviews__graduate-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 13px;
  color: var(--dark);
  opacity: 0.7;
}

.reviews__graduate-reviews,
.reviews__graduate-date {
  position: relative;
}

.reviews__graduate-reviews::after {
  content: "•";
  position: absolute;
  right: -10px;
  color: var(--dark);
  opacity: 0.3;
}

.reviews__graduate-quote {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  max-height: 150px;
}

.reviews__graduate-quote::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(var(--light-color)));
  background: linear-gradient(to bottom, transparent, var(--light-color));
  pointer-events: none;
}

.reviews__graduate-quote p {
  font-weight: 400;
  font-size: 15px;
  color: var(--dark);
  line-height: 1.6;
  margin: 0;
  position: relative;
  padding-left: 20px;
}

.reviews__graduate-quote p::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -5px;
  color: var(--primary-color);
  font-size: 24px;
  font-family: serif;
  font-weight: bold;
}

.reviews__graduate-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--primary-bg);
  border-radius: 10px;
  padding: 12px 15px;
  margin-top: auto;
}

.reviews__graduate-badge-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: 24px;
  height: 24px;
  background: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  margin-right: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.reviews__graduate-badge-text {
  font-weight: 500;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.4;
}

.reviews__read-more {
  display: inline-block;
  margin-top: 15px;
  font-weight: 500;
  font-size: 14px;
  color: var(--primary-color);
  text-decoration: none;
  text-align: center;
  width: 100%;
  padding-top: 10px;
  border-top: 1px dashed var(--primary-bg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.reviews__read-more:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.reviews__stats {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
  margin-bottom: 40px;
}

.reviews__stat {
  padding: 25px 15px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}

.reviews__stat.animated {
  -webkit-animation: fadeInUp 0.8s ease forwards;
  animation: fadeInUp 0.8s ease forwards;
}

.reviews__stat-number {
  font-weight: 500;
  font-size: 48px;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 10px;
}

.reviews__stat-text {
  font-weight: 500;
  font-size: 16px;
  color: var(--dark);
  line-height: 1.4;
  max-width: 200px;
  margin: 0 auto;
}

.reviews__more-reviews {
  text-align: center;
  margin-top: 30px;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-animation: fadeInUp 0.8s ease 1.2s forwards;
  animation: fadeInUp 0.8s ease 1.2s forwards;
}

.reviews__all-reviews {
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-color);
  text-decoration: none;
  padding: 15px 30px;
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.reviews__all-reviews:hover {
  background: var(--primary-color);
  color: var(--light-color);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 20px var(--primary-shadow);
  box-shadow: 0 10px 20px var(--primary-shadow);
}

/* Анимации */
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* Задержки для элементов */
.reviews__graduate:nth-child(1) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.reviews__graduate:nth-child(2) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.reviews__graduate:nth-child(3) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.reviews__stat:nth-child(1) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.reviews__stat:nth-child(2) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.reviews__stat:nth-child(3) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

/* Адаптивность */
@media (max-width: 1200px) {
  .reviews__graduates {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .reviews {
    padding: 20px 0;
  }
  .reviews__title {
    font-size: 36px;
  }
  .reviews__subtitle {
    font-size: 16px;
  }
  .reviews__graduates {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .reviews__title {
    font-size: 32px;
  }
  .reviews__graduates {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .reviews__stats {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .reviews__graduate-header {
    -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;
  }
}
@media (max-width: 480px) {
  .reviews__title {
    font-size: 28px;
  }
  .reviews__graduate {
    padding: 20px;
  }
  .reviews__stat-number {
    font-size: 40px;
  }
  .reviews__all-reviews {
    font-size: 16px;
    padding: 12px 25px;
  }
  .reviews__graduate-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
  }
  .reviews__graduate-reviews::after {
    display: none;
  }
}
.contacts {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative; /* Добавлено для позиционирования псевдоэлемента */
}

.contacts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Затемнение 50% */
  z-index: 1;
}

.contacts__container {
  min-height: 763px;
  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;
  position: relative; /* Добавлено, чтобы контент был поверх затемнения */
  z-index: 2;
}

.contacts__text {
  font-size: 40px;
  line-height: 40px;
}

/* ============================================
   ЗАГОЛОВОК СЕКЦИИ УСЛУГ
   ============================================ */
.chess-section {
  padding: 40px 0px;
  background: var(--bg);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title {
  margin: 0;
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  font-size: 65px;
  color: #333;
  line-height: 52px;
  margin-bottom: 10px;
}

.section-title-dark {
  color: #333;
}

.section-subtitle {
  margin: 0;
  font-family: Manrope;
  font-weight: 500;
  font-style: Medium;
  font-size: 30px;
  line-height: 32px;
  letter-spacing: 0px;
  color: #333;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .section-header {
    margin-bottom: 60px;
  }
  .section-title {
    font-size: 70px;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 50px;
  }
  .section-title {
    font-size: 55px;
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .section-header {
    margin-bottom: 40px;
  }
  .section-title {
    font-size: 36px;
    line-height: 40px;
    gap: 8px;
  }
  .section-subtitle {
    font-size: 20px;
    line-height: 22px;
    max-width: none;
  }
}
@media (max-width: 375px) {
  .section-title {
    gap: 5px;
  }
}
/* ============================================
   СТИЛИ CHESS SECTION С АВТОМАТИЧЕСКИМ ЧЕРЕДОВАНИЕМ
   ============================================ */
/* Базовый стиль для всех блоков */
.chess-section > .container > .chess-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 80px;
  min-height: 400px;
}

.chess-section > .container > .chess-block:last-child {
  margin-bottom: 0;
}

/* Автоматическое чередование для блоков после заголовка */
/* Нечетные блоки (1, 3, 5...) - изображение слева */
.chess-section > .container > .section-header ~ .chess-block:nth-child(odd) .chess-block__image {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.chess-section > .container > .section-header ~ .chess-block:nth-child(odd) .chess-block__content {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

/* Четные блоки (2, 4, 6...) - изображение справа */
.chess-section > .container > .section-header ~ .chess-block:nth-child(even) .chess-block__image {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.chess-section > .container > .section-header ~ .chess-block:nth-child(even) .chess-block__content {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

/* Стили содержимого блоков */
.chess-block__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.chess-block__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(29, 161, 242, 0.1), transparent);
  z-index: 1;
}

.chess-block__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.chess-section > .container > .chess-block:hover .chess-block__image img {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

.chess-block__content {
  padding: 20px;
}

.chess-block__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.chess-block__number {
  font-size: 60px;
  font-weight: 700;
  opacity: 0.6;
  line-height: 1;
  min-width: 70px;
  background: var(--text-color);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: block;
}

.chess-block__title {
  font-size: 32px;
  line-height: 1.3;
  color: var(--text-color);
  font-weight: 600;
  margin: 0;
}

.chess-block__text-wrapper {
  position: relative;
}

.chess-block__text {
  position: relative;
  overflow: hidden;
}

.chess-block__text--collapsed {
  max-height: 120px;
  -webkit-transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.chess-block__text--expanded {
  max-height: 2000px;
}

.chess-block__text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 300;
}

.chess-block__text p:last-child {
  margin-bottom: 0;
}

.chess-block__seo-text {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.chess-block__seo-text p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 12px;
}

.chess-block__toggle-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
  margin-top: 10px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: relative;
}

.chess-block__toggle-btn::before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0;
  height: 1px;
  background: #25DAC5;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.chess-block__toggle-btn:hover {
  gap: 12px;
}

.chess-block__toggle-btn:hover::before {
  width: 100%;
}

.chess-block__toggle-btn svg {
  -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;
  stroke: #25DAC5;
}

.chess-block__toggle-btn--expanded svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.chess-block__toggle-text {
  position: relative;
  z-index: 1;
}

/* Градиент для свернутого текста */
.chess-block__text--collapsed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(var(--bg)));
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.chess-block__text--expanded::after {
  display: none;
}

/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */
@media (max-width: 1024px) {
  .chess-section > .container > .chess-block {
    gap: 30px;
    margin-bottom: 60px;
  }
  .chess-block__title {
    font-size: 28px;
  }
  .chess-block__image {
    height: 350px;
  }
}
@media (max-width: 768px) {
  /* Важно! На мобильных сбрасываем порядок для всех блоков */
  .chess-section > .container > .chess-block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
    min-height: auto;
  }
  /* Принудительно ставим изображение сверху, контент снизу */
  .chess-section > .container > .section-header ~ .chess-block .chess-block__image,
  .chess-section > .container > .chess-block .chess-block__image {
    height: 300px;
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .chess-section > .container > .section-header ~ .chess-block .chess-block__content,
  .chess-section > .container > .chess-block .chess-block__content {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
    padding: 0;
  }
  .chess-block__header {
    gap: 15px;
    margin-bottom: 15px;
  }
  .chess-block__number {
    font-size: 50px;
    min-width: 60px;
  }
  .chess-block__title {
    font-size: 24px;
  }
  .chess-block__text--collapsed {
    max-height: 100px;
  }
}
@media (max-width: 576px) {
  .chess-section {
    padding: 0px 15px 20px 15px !important;
  }
  .chess-section > .container > .chess-block {
    gap: 25px;
    margin-bottom: 40px;
  }
  .chess-block__image {
    height: 250px;
  }
  .chess-block__number {
    font-size: 40px;
    min-width: 50px;
  }
  .chess-block__title {
    font-size: 22px;
  }
  .chess-block__text p {
    font-size: 15px;
  }
  .chess-block__seo-text p {
    font-size: 14px;
  }
  .chess-block__text--collapsed {
    max-height: 80px;
  }
}
@media (max-width: 480px) {
  .chess-block__header {
    -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: 5px;
  }
  .chess-block__number {
    font-size: 35px;
  }
  .chess-block__title {
    font-size: 20px;
  }
  .chess-block__image {
    height: 200px;
  }
}
/* ===== FOOTER ===== */
.footer {
  background: #333; /* Темный фон */
  color: #FFFFFF;
  padding: 60px 0 30px;
  font-family: Manrope, sans-serif;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr 1fr 1.5fr;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* Левая часть */
.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.footer__description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 320px;
}

/* Социальные сети */
.footer__social {
  margin-top: auto;
}

.footer-social__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-social__item {
  margin: 0;
}

.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: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-social__link:hover {
  background: rgba(255, 255, 255, 0.2);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.footer-social__link img {
  width: 30px;
  height: 30px;
  -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;
}

.footer-social__link-tel img {
  width: 34px;
  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;
}

.footer-social__link:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/* Навигация */
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer-nav__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer-nav__title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 10px;
}

.footer-nav__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
}

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

.footer-nav__item {
  margin-bottom: 12px;
}

.footer-nav__item:last-child {
  margin-bottom: 0;
}

.footer-nav__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-nav__link:hover {
  color: #FFFFFF;
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}

.footer-nav__link::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  color: #ff4444;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-nav__link:hover::before {
  opacity: 1;
  left: -15px;
}

/* Правая часть */
.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer__phone {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  margin-bottom: 20px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer__phone:hover {
  color: #ff4444;
}

/* Время работы */
.footer__work-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  border-left: 3px solid #ff4444;
}

.footer__work-time-text {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__work-time-hours {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}

/* Нижняя часть */
.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* Адаптивность */
@media (max-width: 992px) {
  .footer__content {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer__left {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    -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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__description {
    max-width: 400px;
    margin: 0;
  }
  .footer__social {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 50px 0 25px;
  }
  .footer__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__left {
    grid-column: auto;
    -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: 20px;
  }
  .footer__description {
    max-width: 100%;
  }
  .footer-nav__title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .footer-nav__link {
    font-size: 15px;
  }
  .footer__phone {
    font-size: 22px;
  }
  .footer__work-time-hours {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .footer {
    padding: 40px 0 20px;
  }
  .footer__content {
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer__description {
    font-size: 15px;
  }
  .footer-social__link {
    width: 44px;
    height: 44px;
  }
  .footer-social__link img {
    width: 22px;
    height: 22px;
  }
  .footer-social__link-tel img {
    width: 25px;
    height: 20px;
  }
  .footer-nav__item {
    margin-bottom: 10px;
  }
  .footer__phone {
    font-size: 20px;
  }
  .footer__work-time {
    padding: 15px;
  }
  .footer__work-time-hours {
    font-size: 16px;
  }
  .footer__copyright {
    font-size: 13px;
  }
}
@media (max-width: 380px) {
  .footer__phone {
    font-size: 18px;
  }
  .footer__work-time-text {
    font-size: 14px;
  }
  .footer__work-time-hours {
    font-size: 15px;
  }
}/*# sourceMappingURL=main.css.map */
