@charset "UTF-8";

/* SF Pro Display - основные начертания */
@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/sf-pro-600.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/sf-pro-700.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/sf-pro-800.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* SF Pro Text - текстовые начертания */
@font-face {
  font-family: "SF Pro Text";
  src: url("../fonts/sf-pro-text-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@media (min-width: 1300px) and (min-height: 1050px) {
  /* section {
    height: 100vh;
  } */
}

@font-face {
  font-family: "SF Pro Text";
  src: url("../fonts/sf-pro-text-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Text";
  src: url("../fonts/sf-pro-text-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Text";
  src: url("../fonts/sf-pro-text-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Использование в body */
body {
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
}

/* Для заголовков */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
}

/* Обнуляющие стили - Reset CSS */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}

/* Документ */
html {
  font-size: 100%;
  /* 16px по умолчанию */
  height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-family: "Roboto", sans-serif;
}

body {
  height: 100%;
  min-height: 100%;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Заголовки */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
}

/* Списки */
ol,
ul,
menu {
  list-style: none;
}

/* Элементы форм */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  cursor: pointer;
  color: inherit;
}

/* Подчеркивание текста */
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

/* Медиа элементы */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Таблицы */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Отмена стилей для автозаполнения */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

/* Устранение лишних отступов у fieldset */
fieldset {
  min-width: 0;
}

/* Доступность при фокусе */
:focus {
  outline: none;
}

/* Устранение синего выделения на моб. устройствах */
a,
button,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

/* Скрытие стрелок у number input */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

/* Улучшенная обработка текста в браузерах */
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

p,
ul li,
a {
  font-size: clamp(16px, 0.7407407407vw + 13.3333333333px, 24px);
  color: #FFFFFF;
}

section {
  padding: 50px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Desktop section padding */
@media (min-width: 1200px) {
  section {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  section {
    padding: 30px 0;
  }
}

._container {
  max-width: 1520px;
  padding: 0 60px !important;
  margin: 0 auto !important;
  width: 100%;
  box-sizing: border-box;
}

/* Desktop container optimization */
@media (min-width: 1200px) {
  ._container {
    max-width: 1520px;
    padding: 0 60px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Ensure all section containers are properly centered */
  section ._container {
    margin: 0 auto;
  }

  /* Help section container specific */
  .help__container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 60px;
  }

  /* Help-button container specific */
  .help-button__container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 60px;
  }

  /* Map container specific */
  .map__container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 60px;
  }
}

@media (max-width: 1400px) {
  ._container {
    padding: 0 30px;
  }
}

/* Унифицированные стили для диапазона 320px-620px */
@media (min-width: 320px) and (max-width: 620px) {
  ._container {
    padding: 0 10px !important;
  }
}

@media (min-width: 621px) and (max-width: 650px) {
  ._container {
    padding: 0 20px;
  }
}

@media (max-width: 320px) {
  ._container {
    padding: 0 10px !important;
  }
}

body.lock {
  overflow: hidden;
}

body {
  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-color: #000000;
}

body main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.btn a,
.btn-blue a {
  padding: 15px 25px;
  line-height: 1;
  border-radius: 40px;
  white-space: nowrap;
  color: #000000;
  display: block;
  font-family: "SF Pro Text";
  background-color: #fff;
  font-size: clamp(15px, 0.462962963vw + 13.3333333333px, 20px);
}

.header__btn a#loginBtn {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

@media (hover: hover) {

  .header__btn a#loginBtn:hover,
  .header__btn a#loginBtn:focus-visible {
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
  }
}

footer .header__link::after {
  width: 0;
}


h2 {
  font-size: clamp(40px, 1.3888888889vw + 35px, 55px);
}

h3 {
  font-size: clamp(16px, 0.7407407407vw + 13.3333333333px, 24px);
}

h1 {
  font-size: clamp(40px, 2.2222222222vw + 32px, 64px);
}

.global {
  position: relative;
  height: 100vh;
}

@media (max-width: 1200px) {
  .global {
    height: auto;
    padding: 130px 0 30px 0;
  }
}

@media (min-width: 1200px) and (max-height: 850px) {
  .global {
    height: 900px;
  }
}

@media (max-width: 991px) {
  .global {
    padding: 96px 0 30px 0;
    margin-bottom: 30px;
  }
}

/* Унифицированные стили для диапазона 320px-620px */
@media (min-width: 320px) and (max-width: 620px) {
  .global {
    min-height: 60vh !important;
    padding-top: 50px;
    height: auto;
  }
}

@media (min-width: 621px) and (max-width: 650px) {
  .global {
    height: 100vh;
  }
}

.global::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.global::before {
  width: 100%;
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 48%) 51.92%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

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

.global__content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

@media (max-width: 768px) {
  .global__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}

.global__column {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.global__column:last-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
}

@media (max-width: 768px) {
  .global__column:last-child {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

.global__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.global__title h1 {
  color: #fff;
}

.global__title span {
  width: 280px;
  height: 2px;
  background-color: #FFFFFF;
  display: block;
}

@media (max-width: 991px) {
  .global__title span {
    width: 180px;
  }
}

.global .global__opicanie {
  margin-top: 45px;
  max-width: 650px;
}

@media (max-width: 1250px) {
  .global .global__opicanie {
    margin-top: 30px;
  }
}

.global__desp {
  margin-top: 16px;
}

.global__favorits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
  margin-top: 70px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 950px;
}

@media (max-width: 1250px) {
  .global__favorits {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    margin-top: 30px;
  }
}

.global__text {
  line-height: 1;
  font-size: 32px;
  white-space: nowrap;
  font-family: "SF Pro Text";
  font-weight: 700;
}

.global__text u {
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  text-decoration-skip-ink: none;
  -webkit-text-decoration-skip-ink: none;
}

.global__fon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.global__fon video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  /* Предотвращение полноэкранного режима на iOS */
  -webkit-playsinline: true;
  playsinline: true;
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

@media (max-width: 950px) {
  .global__fon video {
    height: 100% !important;
  }
}

.global-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.old_btn svg {
  margin-top: 5px;
}

.global-btn a {
  position: relative;
  border-radius: 134.286px;
  background: linear-gradient(91deg, rgba(51, 204, 255, 0.32) 19.74%, rgba(51, 204, 255, 0.59) 96.72%);
  box-shadow:
    0 0 88.9px 0 #0086B3,
    0 0 30px rgba(0, 134, 179, 0.4) inset;
  backdrop-filter: blur(2.9000000953674316px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 188px;
  height: 188px;
  padding: 37.302px 36.19px 35.998px 35.81px;
  color: #FFF;
  text-align: center;
  font-family: var(--font-family-Font-2, "SF Pro Display");
  font-size: 20.889px;
  font-weight: 800;
  letter-spacing: 2.089px;
  top: 50%;
  overflow: hidden;
}

.global-btn a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.7s ease;
}

.global-btn a:hover {
  background: linear-gradient(91deg,
      rgba(51, 204, 255, 0.45) 19.74%,
      rgba(51, 204, 255, 0.75) 96.72%);
  box-shadow: 0 0 120px 0 #00A8E8,
    0 0 40px rgba(0, 168, 232, 0.6) inset;
  transform: scale(1.05);
  backdrop-filter: blur(1.9px);
}

.global-btn a:hover::before {
  left: 100%;
}

/* Свечение при наведении */
.global-btn a::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(51, 204, 255, 0.15) 0%,
      rgba(0, 134, 179, 0.05) 40%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.global-btn a::before {
  animation: borderRotate 3s linear infinite;
  background-size: 300% 300%;
}


.global-btn a:hover::after {
  opacity: 1;
}

.global-btn a {
  position: relative;
  isolation: isolate;
}

.global-btn a::before {
  background: linear-gradient(45deg,
      #0086B3 0%,
      #33CCFF 25%,
      #0086B3 50%,
      #33CCFF 75%,
      #0086B3 100%);
  background-size: 300% 300%;
}



/* Контент поверх всех эффектов */
.global-btn a span {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hidden {
  display: none;
}

@media (max-width: 768px) {

  .global-btn a::before {
    width: 140px !important;
    height: 140px !important;
  }
}

@media (min-width: 1200px) {
  .global-btn a:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.global-btn a span {
  position: relative;
  z-index: 2;
}

.global-btn a svg {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .global-btn a svg {
    width: 20px;
    height: 20px;
    margin-top: 10px;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}


.global-btn a:hover::before {
  animation: pulse-hover 3s infinite ease-in-out;
}


@media (max-width: 768px) {


  .global-btn a::before {
    border-radius: 50%;
    width: 200px;
    height: 200px;
  }


}

.start {
  position: relative;
  height: 100vh;
}

@media (max-width: 1200px) {
  .start {
    height: auto;
    padding: 30px 0;
  }
}

.start::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(51.92%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 51.92%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

.start__container {
  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%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.start__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 20px;
}

@media (max-width: 1200px) {
  .start__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.start__column {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.start__column:last-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 260px;
  flex: 0 0 260px;
}

@media (max-width: 1200px) {
  .start__column:last-child {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

.start__cont * {
  text-align: left;
}

.start__cont {
  position: relative;
  z-index: 2;
  width: 600px;
}

.start__title {
  max-width: 700px;
}

.start__title h2 {
  color: #FFFFFF;
}

.start__desp {
  margin-top: 40px;
  max-width: 550px;
}

@media (max-width: 1200px) {
  .start__desp {
    margin-top: 15px;
  }
}

.start__list {
  position: relative;
  z-index: 3;
}

.start__list ul {
  gap: 20px;
  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: 1200px) {
  .start__list ul {
    gap: 20px;
  }
}

.start__list ul li {
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.start__list ul li svg {
  width: 30px;
  height: 30px;
}

.start__btn {
  margin-top: 6%;
  width: 100%;
  position: relative;
  z-index: 3;
}

.start__btn a {
  width: 80%;
  font-size: clamp(20px, 1.1111111111vw + 16px, 32px);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

@media (min-width: 1200px) {
  .start__btn a:hover {
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
  }
}

.start__fon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.start__fon video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.missia__container {
  z-index: 4 !important;
}

/* ============================================
   DESKTOP STYLES - Все секции с контейнерами и нормальными высотами
   ============================================ */
@media (min-width: 1200px) {

  /* Global section - full viewport height */
  .global {
    height: 100vh;
    min-height: 1000px;
  }

  .global__container {
    height: 100%;
    display: flex;
    align-items: center;
  }

  /* Help section - нормальная высота */


  .help__container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 60px;
  }

  .help-header {
    width: 100%;
    margin-bottom: 120px;
  }

  .help-main {
    width: 100%;
    margin-top: 0;
  }

  /* Missia section - нормальная высота */
  .missia {
    overflow: hidden;
    min-height: 1200px;
    position: relative;
    padding: 120px 0;
    display: flex;
    align-items: center;
  }

  .missia__container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  /* Help-button section - нормальная высота */
  .help-button {
    /* padding: 120px 0; */
    min-height: 700px;
    display: flex;
    align-items: center;
  }

  .help-button__container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
  }

  /* Why section - нормальная высота */
  .why {
    min-height: 900px;
    padding: 120px 0;
  }

  .why__container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* FAQ section - нормальная высота */
  .faq {
    min-height: 700px;
    padding: 120px 0;
  }

  .faq__container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* Map section - нормальная высота */
  .map {
    min-height: 600px;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .map__container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Базовые стили для секций (мобильные) */
.missia {
  overflow: hidden;
  height: 1472px;
}

@media (min-width: 1200px) {
  .missia {
    height: auto;
    min-height: 1200px;
  }
}

.help-button {
  padding: 0;
  margin: 0;
  height: 331px;
}

@media (min-width: 1200px) {
  .help-button {
    height: 800px;
    padding-bottom: 100px !important;
    margin: 0 auto;
  }
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate(0%, -127%) scale(1);
  z-index: -1;
  overflow: hidden;
}

/* Desktop video container adjustment */
@media (min-width: 1200px) {
  .video-container {
    transform: translate(0%, 0%) scale(1);
    z-index: 1;
  }

  .missia__content {
    position: relative;
    z-index: 2;
    top: 0;
  }
}

#myVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* или contain в зависимости от нужд */
  /* Предотвращение полноэкранного режима на iOS */
  -webkit-playsinline: true;
  playsinline: true;
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* регулируйте прозрачность */
  z-index: 1;
}

.missia__container {
  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;
  height: 100%;
}

.missia__content {
  position: relative;
  top: -250px;
  width: 100%;
  display: flex;
}

/* Desktop missia content adjustment */
@media (min-width: 1200px) {
  .missia__content {
    top: 0;
    position: relative;
    z-index: 2;
  }
}



@media (max-width: 1200px) {
  .missia__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.missia__column {
  padding: 10px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

.missia::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(51.92%, rgba(0, 0, 0, 0.297)), to(rgb(0 0 0)));
  z-index: 2;
}

.missia__column:last-child {
  display: flex;
  -ms-flex-pack: center;
  justify-content: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.missia__title h2 {
  color: #fff;
  text-align: center;
}

.missia__desp {
  margin-top: 35px;
  max-width: 650px;
}

@media (max-width: 1200px) {
  .missia__desp {
    margin: 15px 0 30px 0;
  }
}

.missia__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 35px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

@media (max-width: 1200px) {
  .missia__btn a {
    width: 200px;
    height: 200px;
    gap: 20px;
  }
}

.missia__btn a:hover {
  background: linear-gradient(45deg, #33CCFF, #0086B3, #0066CC, #33CCFF, #0066CC);
}

.missia__btn a span {
  text-align: center;
  display: block;
  max-width: 180px;
}

.plashka {
  margin-top: 10%;
  background-color: #1E1E32;
  padding: 50px;
  border-radius: 36px;
}

@media (max-width: 1450px) {
  .plashka {
    padding: 20px;
    width: 100%;
  }
}

.plashka__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1300px) {
  .plashka__content {
    -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: start;
  }
}

@media (max-width: 1300px) {
  .plashka__column {
    width: 100%;
  }
}

.plashka .plashka__image {
  margin-bottom: -50px;
  margin-top: -100px;
}

@media (max-width: 1450px) {
  .plashka .plashka__image {
    margin-bottom: -20px;
  }
}

@media (max-width: 1300px) {
  .plashka .plashka__image {
    margin-top: 20px;
    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;
  }
}

.plashka__title {
  max-width: 500px;
}

@media (max-width: 1300px) {
  .plashka__title {
    max-width: 100%;
  }
}

.plashka__title h2 {
  color: #fff;
  font-size: clamp(40px, -0.3703703704vw + 41.3333333333px, 36px);
}

@media (max-width: 1300px) {
  .plashka__title h2 {
    text-align: center;
  }
}

.plashka__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1300px) {
  .plashka__links {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 650px) {
  .plashka__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

.plashka__link {
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  white-space: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: clamp(16px, 0.7407407407vw + 13.3333333333px, 24px);
  font-family: "SF Pro Text";
  font-weight: 400;
}

@media (max-width: 650px) {
  .plashka__link {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .global__arrow__down {
    display: none !important;
  }

  .plashka__link a {
    width: 100%;
  }

  .missia__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
    hyphens: auto;
  }

  .missia__content {
    flex-direction: column !important;
    top: 0 !important;
  }

  .header__container {
    padding: 0 30px !important;
  }

  .missia {
    overflow: visible;
    height: 438px;
  }

  .new_btn {
    display: inline;
  }

  .old_btn {
    display: none !important;
  }

  .help-button {
    height: 630px;
    flex-direction: column;
    justify-content: space-evenly;
  }

  .help-left p {
    line-height: 20.2px !important;
  }
}

.plashka__link svg {
  width: 30px;
  height: 30px;
  min-width: 30px;
}

.help__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1200px) {
  .help__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

.help__column {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 55%;
  flex: 0 1 55%;
}

.help__column:last-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 45%;
  flex: 0 1 45%;
}

.help .help__btn-two.global-btn.btn-blue {
  margin-top: -100px;
}

@media (max-width: 1200px) {
  .help .help__btn-two.global-btn.btn-blue {
    margin-top: 0px;
  }
}

.help__title h2 {
  color: #fff;
}

.help__desp {
  margin-top: 45px;
  max-width: 650px;
}

@media (max-width: 1200px) {
  .help__desp {
    margin-top: 15px;
  }
}

.help__btn {
  margin-top: 45px;
}

@media (max-width: 1200px) {
  .help__btn {
    margin-top: 30px;
  }
}

.help__btn a {
  display: block;
  padding: 15px 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid #fff;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  border-radius: 40px;
}

@media (max-width: 1200px) {
  .help__btn a {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .help__btn a:hover {
    background-color: #fff;
    color: #000;
  }
}

.help__image {
  border-radius: 0 180px 180px 0;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .help__image {
    display: none;
  }
}

.help__image img {
  width: 100%;
  height: 100%;
}

.why__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.why__top h2 {
  color: #fff;
}

@media (max-width: 1200px) {
  .why__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}

.why__title {
  max-width: 750px;
}

@media (max-width: 1200px) {
  .why__title {
    max-width: 100%;
  }
}

.why__desp {
  max-width: 500px;
}

@media (max-width: 1200px) {
  .why__desp {
    max-width: 100%;
  }
}

.why__tabs {
  margin-top: 5%;
  background-color: #1E1E32;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
  border-radius: 80px;
  overflow: hidden;
}

.why__tabs div svg {
  transform: rotate(-90deg);
}

.svgRotate {
  animation-name: svgRotate;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
}

@keyframes svgRotateRevers {
  0% {
    transform: rotate(-90deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes svgRotate {
  0% {
    transform: rotate(-90deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@media (max-width: 1200px) {
  .why__tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 30px;
    padding: 5px;
    margin-left: -5px;
    margin-right: -5px;
  }
}

.why__tab {
  padding: 10px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

@media (max-width: 1200px) {
  .why__tab {
    padding: 5px;
  }
}

.why__tab p {
  position: relative;
  font-family: "SF Pro Display";
  font-weight: 700;
  font-size: clamp(24px, 0.7407407407vw + 21.3333333333px, 32px);
  padding: 17px 24px 17px 56px;
  width: 100%;
  color: #75758E;
  background-color: #28293D;
  border-radius: 40px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  cursor: pointer;
  text-align: center;
}

.why__tab:not(.active) p::before {
  opacity: 0;
}

.why__tab:not(.active):hover p::before {
  opacity: 0;
  transform: translate(-6px, -50%) rotate(90deg);
  -webkit-transform: translate(-6px, -50%) rotate(90deg);
}

.why__tab.active p::before {
  opacity: 1;
  transform: translate(-6px, -50%) rotate(90deg);
  -webkit-transform: translate(-6px, -50%) rotate(90deg);
}

.why__tab.active p:hover::before {
  opacity: 1;
  transform: translate(6px, 50%) rotate(90deg);
  -webkit-transform: translate(-6px, -50%) rotate(90deg);
}

.why__tab {
  transition: all 0.3s ease;
}

.why__tab:active p::before {
  transform: translate(-6px, -50%) rotate(90deg) scale(0.95);
  -webkit-transform: translate(-6px, -50%) rotate(90deg) scale(0.95);
}

@media (max-width: 1200px) {
  .why__tab p {
    padding: 13px 16px 13px 48px;
  }
}

@media (max-height: 1200px) {
  .why__tab p:hover {
    background-color: #FFFFFF;
    color: #000;
  }
}

.tab-content__conts {
  margin-top: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 80px 0;
}

@media (max-width: 1200px) {
  .tab-content__conts {
    margin-top: 30px;
    gap: 20px;
  }
}

.tab-content__column {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 max-content;
  flex: 0 1 max-content;
}

@media (max-width: 1200px) {
  .tab-content__column {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
  }
}

.tab-content__rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1200px) {
  .tab-content__rows {
    gap: 20px;
  }
}

.tab-content__icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  font-family: "SF Pro Text";
  font-weight: 500;
  color: #fff;
  font-size: clamp(16px, 0.7407407407vw + 13.3333333333px, 24px);
}

@media (max-width: 1200px) {
  .tab-content__icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
}

.tab-content__desp {
  max-width: 480px;
}

@media (max-width: 1200px) {
  .tab-content__desp {
    max-width: 100%;
  }
}

.why__content-tab {
  display: none;
}

.why__content-tab.active {
  display: block;
}


.why__tab p:hover,
.why__tab p:focus-visible {
  background: #28293D;
  color: #75758E;
  transform: scale(0.97);
}

.why__tab {
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.faq {
  height: auto;
  padding: 50px 0;
}

@media (max-width: 991px) {
  .faq {
    padding: 30px 0;
  }
}

.faq__title {
  font-size: clamp(27px, 2.5925925926vw + 17.6666666667px, 55px);
  color: #fff;
}

.faq__content {
  margin-top: 40px;
  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;
}

@media (max-width: 991px) {
  .faq__content {
    margin-top: 20px;
  }
}

.spoller-faq {
  background-color: #1E1E32;
  border-radius: 40px;
  cursor: pointer;
  padding: 20px 25px;
}

@media (max-width: 991px) {
  .spoller-faq {
    border-radius: 20px;
  }
}

@media (max-width: 991px) {
  .spoller-faq {
    padding: 15px 20px;
  }
}

.spoller-faq .spoller-faq__desp {
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.bell {
  cursor: pointer;
  transition: filter 0.3s ease, transform 0.2s ease;
}



.bell.active {
  filter: invert(18%) sepia(99%) saturate(2620%) hue-rotate(320deg) brightness(95%) contrast(91%);
  animation: ring 0.5s ease;
}

/* Анимация звонка */
@keyframes ring {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-15deg);
  }

  75% {
    transform: rotate(15deg);
  }
}

.spoller-faq .spoller-faq__desp p,
.spoller-faq .spoller-faq__desp li {
  margin-bottom: 10px;
  font-size: clamp(16px, 0.1851851852vw + 15.3333333333px, 18px);
}

.spoller-faq .spoller-faq__desp p:last-child,
.spoller-faq .spoller-faq__desp li:last-child {
  margin-bottom: 0px;
}

.spoller-faq__title {
  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: 20px;
}

.spoller-faq__title h3 {
  color: #fff;
}

.spoller-faq__title svg {
  min-width: 37px;
  width: 37px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  height: 37px;
}

@media (max-width: 991px) {
  .spoller-faq__title svg {
    width: 27px;
    height: 27px;
    min-width: 27px;
  }
}

.spoller-faq.active .spoller-faq__desp {
  margin-top: 15px;
  max-height: 700px;
}

.spoller-faq.active .spoller-faq__title svg {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.site-footer {
  width: 100%;
  max-width: 1520px;
  padding: 0 60px;
  margin: 0 auto;
}


.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons img {
  width: 28px;
  height: 28px;
  filter: none;
  /* убираем все фильтры */
  transition: transform 0.3s;
  /* можно оставить плавность при наведении */
}

.social-icons img:hover {
  transform: scale(1.1);
  /* легкий эффект при наведении */
}

.telegram-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, color 0.3s;
}

.telegram-link img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s;
}

.telegram-link span {
  font-size: 26px;
  transition: transform 0.3s, color 0.3s;
}

.telegram-link:hover img,
.telegram-link:hover span {
  transform: scale(1.05);
  color: #2ecc71;
}

.footer-bottom {
  border-top: 1px solid rgba(46, 204, 113, 0.3);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #aaa;
}

/* Центрирование содержимого под заголовками на ПК */
.footer-logo,
.footer-download,
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* вот это выравнивает по центру */
  text-align: center;
  /* чтобы текст тоже был по центру */
}


/* Адаптив */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links,
  .footer-contact,
  .footer-download {
    align-items: center;
  }



  .footer-download {
    flex-direction: row;
    /* элементы в ряд */
    justify-content: center;
    /* по центру */
    gap: 15px;
    /* расстояние между ссылками */
    flex-wrap: wrap;
    /* чтобы переносилось при маленьком экране */
  }

  .footer-download a {
    display: flex;
    flex-direction: row;
    /* иконка + текст в одну линию */
    align-items: center;
    gap: 8px;
  }

  .footer-download a img {
    height: 40px;
    /* чуть меньше на мобильных */
  }

  .footer-download h3 {
    width: 100%;
    /* заголовок остаётся над строкой */
    margin-bottom: 10px;
  }

  /* Навигация футера в ряд */
  .footer-links {
    flex-direction: column;
    /* контейнер вертикально */
    align-items: center;
  }

  .footer-links h3 {
    width: 100%;
    /* заголовок над ссылками */
    margin-bottom: 10px;
  }

  .footer-links a {
    display: inline-block;
    /* чтобы шли в ряд */
    margin: 0 8px 8px 0;
    /* отступ справа и снизу при переносе */
    font-size: 15px;
  }

  .footer-links a:last-child {
    margin-right: 0;
  }

  /* Для автоматического переноса на новую строку при маленьком экране */
  .footer-links {
    text-align: center;
    flex-wrap: wrap;
  }
}

/* Стили для экранов меньше 320px */
@media (max-width: 370px) {
  .header__item a {
    font-size: 15px;
  }
  .user-name {
    font-size: 15px;
  }
}

@media (max-width: 319px) {
  .global {
    margin-top: 0px;
  }

  .global__desp {
    display: none !important;
  }

  .help-main__left p {
    width: 100%;
    margin-top: 10px;
  }
}

/* Унифицированные стили для диапазона 320px-620px */
@media (min-width: 320px) and (max-width: 620px) {
  .global {
    margin-top: 0px;
  }

  .global__desp {
    display: none !important;
  }

  .help-main__left p {
    width: 100%;
    margin-top: 10px;
  }
}

/* iPhone SE и другие маленькие экраны - только до 320px */
@media screen and (max-width: 319px) and (max-height: 667px) {
  .global {
    height: auto;
    min-height: 100vh;
    padding: 80px 0 30px 0;
  }

  .global__content {
    min-height: calc(100vh - 110px);
    justify-content: space-between;
  }

  .global__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .global__title span {
    width: 100px;
  }

  .global .global__opicanie {
    margin-top: 20px;
  }

  .global__favorits {
    margin-top: 20px;
    gap: 20px;
  }

  .global__text {
    font-size: 32px;
  }

  .global__desp {
    font-size: 1px !important;
  }

  /* Убедимся, что кнопка всегда видна */
  .global__column:last-child {
    flex: none;
    margin-top: auto;
  }


}

/* Унифицированные стили для диапазона 320px-620px */
@media screen and (min-width: 320px) and (max-width: 620px) {
  .global {
    min-height: 60vh !important;
    padding-top: 50px;
    height: auto;
  }

  .global__content {
    min-height: calc(100vh - 150px);
    justify-content: space-between;
  }

  .global__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .global__title span {
    width: 100px;
  }

  .global .global__opicanie {
    margin-top: 0;
  }

  .global__favorits {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0px !important;
    margin-top: 25px;
  }

  .new_btn {
    margin-top: 25px;
  }

  .global__text {
    font-size: 22px;
  }

  .global__desp {
    font-size: 14px !important;
  }

  /* Убедимся, что кнопка всегда видна */
  .global__column:last-child {
    flex: none;
    margin-top: auto;
  }


}

/* Для очень маленькой высоты */
@media screen and (max-width: 375px) and (max-height: 600px) {
  .global {
    padding: 70px 0 20px 0;
  }

  .global__content {
    min-height: calc(100vh - 90px);
  }

  .global__title h1 {
    font-size: 2rem;
  }

  .global__favorits {
    margin-top: 15px;
  }

  .global__favorit {
    padding: 8px 0;
  }
}

/* Унифицированные стили для диапазона 320px-620px */
@media screen and (min-width: 320px) and (max-width: 620px) {
  .global {
    min-height: 60vh !important;
    padding-top: 90px;
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
  }

  .global__container {
    padding: 0 10px !important;
    margin-top: 30px;
    min-height: 60vh !important;
    height: auto;
    display: flex;
    align-items: center;
  }

  .global__content {
    min-height: calc(100vh - 150px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

@media screen and (min-width: 621px) and (max-width: 650px) {
  .global {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
  }

  .global__container {
    height: auto;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
  }

  .global__content {
    min-height: calc(100vh - 150px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

/* Гарантия, что кнопка не обрезается */
@media screen and (max-width: 375px) {
  .global {
    padding-top: 60px;
  }
}

@media (max-width: 768px) {
  .global__favorits {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    gap: 22px !important;
  }

  .global__favorit p {
    margin-left: 0 !important;
    text-align: center;
  }


}


@media (max-width: 768px) {

  .global__favorit p {
    margin-left: 0 !important;
    text-align: left !important;
  }
}

/* Added for collapsible steps */
.tab-content__conts {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

@media (min-width: 769px) {
  .why__content-tab.active:hover .tab-content__conts {
    max-height: 2000px;
  }
}

@media (max-width: 768px) {
  .why__content-tab.open .tab-content__conts {
    max-height: 2000px;
  }
}

/* PC hover fix */
@media (min-width: 769px) {
  .why__content-tab.active:hover .tab-content__conts {
    max-height: 2000px !important;
  }
}

/* Remove default white background from tabs */
.why__tab.active {
  background: transparent !important;
}

/* White background only on hover */
@media (min-width: 769px) {
  .why__tab:hover {
    background: #ffffff00 !important;
    transition: 0.3s;
  }
}

/* ====== Adjustment: lift and embolden the global description text ====== */
.global__opicanie {
  margin-top: -100px;
}

.global__opicanie p {
  font-weight: 600;
  line-height: 1.45;
}

/* ====== End patch ====== */


/* Remove spacing from empty title */
.global__title {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
}

.global__opicanie {
  margin-top: -35px !important;
  font-weight: 600 !important;
}

@media (max-width: 768px) {

  .global__favorits {
    gap: 32px;
  }

  .global__text {
    font-size: 22px;
  }
}