@import "../assets/font/SFPro/stylesheet.css";

:root {
  --color-text-primary: #110d38;
  --color-title: #2e2e2e;
  --color-accent: #574ce8;
  --color-gradient: linear-gradient(180deg, #110c37 0%, #574ce8 100%);
  --color-text-secondary: rgba(46, 46, 46, 0.7);
  --color-text-white: #fff;
  --color-text-red: #ff4346;
  --color-basic-bg: #fff;
  --color-basic-blue-gradient: #5890ff;
  --btn-bg: #2e2e2e;
  --font-family: "SF Pro Display", sans-serif;
  --second-family: "SF Pro Text", sans-serif;
  --third-family: "SF Compact Display", sans-serif;
  --animate-duration: 800ms;
  --animate-delay: 0.5s;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
  list-style-type: none;
  text-decoration: none;
  font-family: var(--font-family);
  color: var(--color-text-primary);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
}

input[type="radio"] {
  display: none;
}

img {
  display: block;
}

body {
  background: var(--color-basic-bg);
}

.app {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  margin-bottom: 30px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(168deg, #b4adff 14.7%, #5f44f8 91.24%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: -0.09px;
}

.logo img {
  width: 30px;
  height: 30px;
}

.container {
  max-width: 1115px;
  padding: 0 20px;
  margin: 0 auto;
}

.title {
  color: var(--color-title);
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.364px;
  margin-bottom: 16px;
}

.main-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.364px;
}

.main-title span {
  background: linear-gradient(296deg, #b4adff 10.37%, #5f44f8 90.8%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-text {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.38px;
}

.banner__container {
  max-width: 963px;
  margin: 0 auto;
  padding: 0 20px;
}

.banner__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.banner__title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.364px;
}

.banner__text {
  color: var(--color-text-primary);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.38px;
  margin: 10px 0 30px;
}

.title--white {
  color: var(--color-text-white);
}

.inner-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 248px;
  height: 50px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-text-white);
  border-radius: 30px;
  background: var(--btn-bg);
  margin: 0 auto;
  cursor: pointer;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: .3s;
}

.btn--white {
  border-radius: 30px;
  border: 1px solid #000;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #2e2e2e;
  background: transparent;
}

.meta-security {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.btn.btn--disabled {
  opacity: 0.5;
  pointer-events: none;
}

.trusted-info {
  display: flex;
  justify-content: center;
}

.section {
  margin: 60px 0;
}

.benefits__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.benefits__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: calc(50% - 33px / 2);
  border-radius: 24px;
  border: 1px solid rgba(17, 13, 56, 0.05);
  background: #f9f9f9;
  padding: 16px;
}

.benefits__item-main {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.benefits__item-cover {
  width: 38px;
  height: 38px;
}

.benefits__item-cover img {
  height: 100%;
  object-fit: contain;
}

.benefits__item-title {
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.5px;
  color: var(--color-text-primary);
}

.benefits__item-description {
  color: #000;
  font-feature-settings: 'case' on;
  font-size: 10px;
  font-style: normal;
  font-weight: 300;
  line-height: 13px;
}

.reviews__score {
  display: flex;
  justify-content: center;
  padding-top: 12px;
}

.reviews__text {
  text-align: center;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: 0.38px;
  margin: 8px 0;
}

.reviews__person {
  text-align: center;
  font-feature-settings: 'case' on;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.43px;
  opacity: 0.8;
}

.working-process__item {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  padding-top: 45px;
}

.main-cover {
  position: relative;
  height: 275px;
  overflow: hidden;
}

.main-cover img {
  width: 180px;
  margin: 0 auto;
}

.banner-cover-animation {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 75px;
}

.working-process__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.working-process__item-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.38px;
  color: var(--color-text-white);
  border-radius: 2px 22px;
  background: linear-gradient(296deg, #b4adff 10.37%, #5f44f8 90.8%)
}

.working-process__item-title {
  max-width: 175px;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: var(--color-text-primary);
}

.working-process__text {
  max-width: 235px;
  color: #000;
  text-align: center;
  font-feature-settings: 'case' on;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 13px;
  letter-spacing: -0.23px;
}

.working-process .slick-dots {
  top: 5px;
  bottom: inherit;
}

.slick-dots li {
  width: 6px;
  height: 6px;
  border-radius: 10px;
  border: 1px solid #b4adff;
  transition: .3s;
}

.slick-dots li.slick-active {
  width: 36px;
  background: linear-gradient(296deg, #b4adff 10.37%, #5f44f8 90.8%);
}

.slick-dots li button {
  display: none;
}

.slick-dotted.slick-slider {
  margin-bottom: 20px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-bottom: 18px;
}

.steps__item {
  position: relative;
  display: flex;
  gap: 15px;
}

.steps__item:before {
  position: absolute;
  display: inline-block;
  content: url("../assets/img/arrow-step.svg");
  left: -26px;
  top: -36px;
  z-index: -1;
}


.steps__item-num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: linear-gradient(296deg, #b4adff 10.37%, #5f44f8 90.8%);
  color: var(--color-text-white);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.38px;
}

.steps__item-title {
  color: var(--color-text-primary);
  font-feature-settings: 'case' on;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.5px;
  margin-bottom: 5px;
}

.steps__item-description {
  max-width: 190px;
  color: #000;
  font-feature-settings: 'case' on;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 13px;
}

.support-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.start-block .main-cover {
  margin-top: 25px;
}

.next-page {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.next-page__el {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  border: 1px solid rgba(17, 13, 56, 0.05);
  background: #f1f1f1;
  padding: 16px;
}

.next-page__el-title {
  display: flex;
  gap: 6px;
  color: var(--color-text-primary);
  font-feature-settings: 'case' on;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.5px;
  margin-bottom: 5px;
}

.next-page__el-label {
  background: linear-gradient(296deg, #b4adff 10.37%, #5f44f8 90.8%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.next-page__el-text {
  color: #000;
  font-feature-settings: 'case' on;
  font-size: 10px;
  font-style: normal;
  font-weight: 300;
  line-height: 13px;
  margin-bottom: 10px;
}

.next-page__el-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-feature-settings: 'case' on;
  font-size: 10px;
  font-style: normal;
  font-weight: 300;
  line-height: 13px; /* 130% */
}

.next-page__el-link-i {
  display: flex;
}

.footer {
  padding: 83px 0;
  background: #f1f1f1;
}

.logo--footer {
  justify-content: center;
}

.location {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 30px 0;
}

.location__title {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.location__address {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.5px;
}

.app-rating-cover {
  display: flex;
  justify-content: center;
}

.location-link {
  display: flex;
  justify-content: center;
  gap: 13px;
}

.location-link__item {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  font-feature-settings: 'case' on;
}

.location__copy--mobile {
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  margin: 30px auto 0;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.footer__nav-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-list {
  display: flex;
  flex-direction: column;
}

.nav-list__title {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 15px;
}

.nav-list__el {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 20px;
}

.nav-list__el:last-child {
  margin-bottom: 0;
}

.footer__nav-inner:last-child .nav-list:last-child .nav-list__title {
  margin-bottom: 10px;
}

.nav-list__el img {
  width: 88px;
}

.header__mobile-menu {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__mobile-menu > a,
.header__mobile-menu > .burger-close {
  display: flex;
}

.burger-show .header__mobile-menu a:not(.burger) {
  opacity: 0;
}

.burger-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.90);
  padding: 27px 20px;
  opacity: 0;
  z-index: -1;
  transition: .3s;
}

.burger-content.show {
  opacity: 1;
  z-index: 10;
}

.burger-content__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.burger-menu {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.burger-menu__el {
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.d-none {
  display: none;
}

.plans .section-text {
  max-width: 590px;
  margin: 0 auto;
}

.switch {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  height: 43px;
  border-radius: 20.8px;
  border: 0.867px solid rgba(17, 13, 56, 0.05);
  background: #f1f1f1;
  padding: 5px 13px;
  margin: 30px auto 50px;
}

.switch__el.active {
  border-radius: 20.8px;
  border: 0.867px solid rgba(17, 13, 56, 0.05);
  background: #fff;
  box-shadow: 0px 1.733px 3.467px 0px rgba(0, 0, 0, 0.25);
  padding: 6px 30px;
  transition: .3s;
}

.plans__elem {
  position: relative;
  display: none;
  flex-direction: column;
  align-items: center;
  min-width: 278px;
  border-radius: 24px;
  border: 1px solid rgba(17, 13, 56, 0.05);
  background: #f1f1f1;
  padding: 16px;
}

.plans__elem.show {
  display: flex;
}

.plans__popular {
  position: absolute;
  top: -16px;
  border-radius: 19.2px;
  border: 0.8px solid rgba(17, 13, 56, 0.05);
  background: linear-gradient(296deg, #b4adff 10.37%, #5f44f8 90.8%);
  box-shadow: 0px 1.6px 3.2px 0px rgba(0, 0, 0, 0.25);
  padding: 6px 14px;
  color: var(--color-text-white);
  font-size: 13.6px;
  font-weight: 500;
  line-height: 17.6px;
  letter-spacing: -0.4px;
}

.plans__title {
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.plans__price {
  display: flex;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.plan__features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.plan__features-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 300;
  line-height: 13px;
}

.plans__interval-pay {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 13px;
}

.plans-content {
  margin-bottom: 20px;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 17px;
}

.log-in-link {
  color: var(--color-text-white);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.38px;
  padding: 5px 15px;
  border-radius: 15px;
  background: linear-gradient(296deg, #b4adff 10.37%, #5f44f8 90.8%);
}

.burger {
  display: flex;
}

@media (max-width: 768px) {
  .card-icon {
    gap: 10px;
  }

  .card-icon--master {
    max-width: 45px;
  }

  .card-icon--visa {
    max-width: 36px;
  }

  .card-icon__item img {
    width: 100%;
  }

}

@media (max-width: 1349px) {
  .plan__features-item svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 768px) {
  .benefits__list {
    gap: 7px;
  }

  .benefits__item {
    width: calc(50% - 7px / 2);
  }
}


@media (min-width: 1350px) {

  .d-none {
    display: block;
  }

  .header__mobile-menu,
  .footer__content-mobile {
    display: none;
  }

  .header__nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .header__nav-list__item a {
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0.38px;
    transition: .3s;
  }

  .header__nav-list__item a:hover {
    background: linear-gradient(168deg, #b4adff 14.7%, #5f44f8 91.24%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .header__nav-list__item .log-in-link {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.38px;
    padding: 5px 15px;
  }

  .header {
    padding: 50px 0;
    margin-bottom: 0;
  }

  .main-cover {
    height: 320px;
  }

  .main-cover img {
    width: 232px;
  }

  .banner__title {
    font-size: 42px;
    font-weight: 700;
    line-height: 48px;
  }

  .banner__text {
    max-width: 395px;
    margin: 15px auto 30px;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
  }

  .btn {
    width: 232px;
    height: 54px;
    font-size: 19px;
    font-weight: 600;
    line-height: 22.167px;
    letter-spacing: 0.076px;
    border-radius: 66px;
    transition: .3s;
  }

  .btn:hover {
    border: 1px solid #000;
    background: var(--color-basic-bg);
    color: #000;
    box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.60);
  }

  .desktop-none {
    display: none;
  }

  .meta-security {
    font-size: 16px;
  }

  .section {
    margin: 100px 0;
  }

  .title {
    font-size: 42px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 50px;
  }

  .main-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: 0.364px;
  }

  .banner-cover-animation {
    position: absolute;
    top: 116px;
    width: 95px;
  }

  .benefits__list {
    max-width: 710px;
    margin: 50px auto 50px;
    gap: 20px 33px;
  }

  .benefits__item {
    padding: 26px;
    border-radius: 30px;
  }

  .benefits__item-main {
    gap: 10px;
  }

  .benefits__item-cover {
    width: 66px;
    height: 66px;
  }

  .benefits__item-title {
    font-size: 26px;
    font-weight: 500;
    line-height: 32px;
  }

  .benefits__item-description {
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
  }

  .section-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
  }

  .working-process {
    display: flex;
    justify-content: center;
    gap: 62px;
    margin-bottom: 50px;
  }

  .working-process__item {
    width: calc(100% / 3 - 126px / 3);
    padding-top: 50px;
  }

  .working-process__head {
    gap: 20px;
    margin-bottom: 20px;
    align-self: flex-start;
  }

  .working-process__item-num {
    width: 52px;
    height: 52px;
    border-radius: 2px 25px;
    font-size: 23px;
    font-weight: 600;
    line-height: 29px;
    letter-spacing: 0.443px;
  }

  .working-process__item-title {
    max-width: 218px;
    font-size: 24px;
    font-weight: 500;
    line-height: 33px;
    letter-spacing: -0.494px;
  }

  .working-process__text {
    max-width: inherit;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    text-align: left;
  }

  .steps-list {
    margin-bottom: 50px;
    gap: 30px;
  }

  .steps__item {
    max-width: 325px;
    width: 100%;
    gap: 13px;
  }

  .steps__item-num {
    width: 46px;
    height: 46px;
    font-size: 23px;
    font-weight: 600;
    line-height: 29px;
    letter-spacing: 0.443px;
    flex-shrink: 0;
  }

  .steps__item-title {
    font-size: 26px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 6px;
  }

  .steps__item-description {
    max-width: 347px;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
  }

  .steps__item:before {
    content: url("../assets/img/arrow-step-big.svg");
    left: -40px;
    top: -65px;
  }

  .steps__item:first-child:before {
    top: -70px;
  }

  .support-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .support .title {
    max-width: 200px;
    text-align: right;
    margin: 0;
  }

  .support-inner {
    gap: 20px;
  }

  .support .section-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    letter-spacing: 0.253px;
    text-align: left;
  }

  .support .inner-btn {
    align-items: flex-start;
  }

  .support .btn {
    margin: 0;
    border-radius: 20px;
  }

  .btn--white:hover {
    box-shadow: 4px 5px 4px 0px rgba(95, 68, 248, 0.46);
    background: #000;
    color: var(--color-text-white);
  }

  .start-block .title {
    margin-bottom: 20px;
  }

  .start-block .main-cover {
    margin-top: 60px;
  }

  .next-page {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }

  .next-page__el {
    max-width: 420px;
    width: 100%;
    padding: 32px 26px;
  }

  .next-page__el-title {
    gap: 16px;
    font-size: 26px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 15px;
  }

  .next-page__el-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 15px;
    flex-grow: 1;
  }

  .next-page__el-link {
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 23px;
    gap: 13px;
  }

  .next-page__el-link-i svg {
    width: 32px;
    height: 12px;
  }

  .logo {
    gap: 8px;
    font-size: 38.545px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.154px;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .footer__nav {
    justify-content: space-between;
  }

  .footer__nav-inner .logo {
    justify-content: center;
  }

  .nav-list__title {
    margin-bottom: 15px;
    font-size: 38px;
    line-height: 36.533px;
  }

  .footer__nav-inner:first-child .nav-list__title {
    margin-bottom: 35px;
  }

  .nav-list__el {
    font-size: 20px;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .nav-list__el img {
    width: 124px;
  }

  .nav-list__el:last-child {
    margin-bottom: 0;
  }

  .footer__nav-inner {
    gap: 8px;
  }

  .footer__nav-inner:last-child {
    text-align: right;
  }

  .location {
    margin: 0;
  }

  .location__title {
    font-size: 26px;
    font-weight: 500;
    line-height: 33px;
  }

  .location__address {
    font-size: 25px;
    font-weight: 300;
    line-height: 33px;
  }

  .location-link {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 13px;
  }

  .location-link__item {
    font-size: 20px;
    font-weight: 300;
    line-height: 26px;
    gap: 4px;
  }

  .location__copy {
    color: #110d38;
    font-feature-settings: 'case' on;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 13px;
    margin-top: 50px;
  }

  .location__copy--mobile {
    display: none;
  }

  .footer {
    padding: 80px 0;
  }

  .plans .title {
    margin-bottom: 20px;
  }

  .plans-content {
    margin-bottom: 60px;
  }

  .switch {
    margin: 60px auto 95px;
    height: 72px;
    padding: 8px 23px;
    border-radius: 34.86px;
  }

  .switch__el:hover {
    cursor: pointer;
  }

  .switch__el {
    font-size: 24.693px;
    font-weight: 500;
    line-height: 31.955px;
    letter-spacing: -0.726px;
  }

  .plans__elem {
    max-width: 507px;
    margin: 0 auto;
    padding: 22px;
  }

  .plans__popular {
    font-size: 24.803px;
    font-weight: 500;
    line-height: 32.098px;
    top: -26px;
  }

  .plans__title {
    font-size: 31.004px;
    font-weight: 500;
    line-height: 40.122px;
    letter-spacing: -0.912px;
    margin-bottom: 18px;
  }

  .plans__price {
    font-size: 36px;
    font-weight: 700;
    line-height: 40.122px;
    letter-spacing: -0.912px;
    margin-bottom: 36px;
  }

  .plan__features {
    gap: 18px;
    margin-bottom: 36px;
  }

  .plan__features-item {
    gap: 10px;
    font-size: 25px;
    font-weight: 300;
    line-height: 30px;
  }

  .plans__interval-pay {
    font-size: 20px;
    font-weight: 300;
    line-height: 23.709px;
  }
}

.header__nav-list__item.active a {
  font-weight: 500;
  background: linear-gradient(296deg, #b4adff 10.37%, #5f44f8 90.8%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-page__main {
  max-width: 962px;
  margin: 0 auto;
}

.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.animate__animated {
  opacity: 1;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.364px;
  margin-top: 30px;
  text-align: center;
}

.separator {
  max-width: 200px;
  margin: 15px auto;
  border-top: 1px solid #5f44f8;
  border-bottom: 1px solid #5f44f8;
  font-size: 13px;
  line-height: 18px;
  padding: 15px 0;
  text-align: center;
}

.text-page__main-description {
  font-size: 18px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.38px;
  text-align: center;
}

.text-page__content {
  margin: 60px 0;
}

.text-page__block h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 10px;
}

.text-page__block:not(:last-child) {
  margin-bottom: 30px;
}

.text-page__block p {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.5px;
  margin-top: 10px;
}

.text-page__list:not(:last-child) {
  margin-bottom: 5px;
}

.text-page__list li {
  position: relative;
  padding-left: 25px;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.5px;
}

.text-page__list li:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  background: #110d38;
  border-radius: 50%;
  left: 10px;
  top: 10px;
}

@media (min-width: 1350px) {
  h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: 0.364px;
  }

  .separator {
    max-width: 420px;
    margin: 20px auto;
    font-size: 22px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.38px;
    padding: 20px 0;
  }

  .text-page__content {
    margin: 100px 0;
  }

  .text-page__main-description {
    font-size: 26px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.38px;
  }

  .text-page__block:not(:last-child) {
    margin-bottom: 50px;
  }

  .text-page__block h2 {
    font-size: 26px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 20px;
  }

  .text-page__block p {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.5px;
    margin-top: 20px;
  }

  .text-page__list:not(:last-child) {
    margin-bottom: 10px;
  }

  .text-page__list li {
    position: relative;
    padding-left: 36px;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.5px;
  }

  .text-page__list li:before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    left: 16px;
    top: 13px;
  }

  .logo--footer {
    justify-content: center;
    gap: 8px;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0.145px;
    margin-bottom: 46px;
  }

  .logo--footer img {
    width: 40px;
    height: 40px;
  }
}

.form {
  max-width: 740px;
  margin: 0 auto;
}

.form .title {
  margin-bottom: 20px;
}

.form-content {
  margin: 60px 0;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 26px;
  border: 1px solid rgba(17, 13, 56, 0.05);
  background: #f9f9f9;
  padding: 24px 28px;
  margin-bottom: 15px;
}

.form-group:has( .form-control:focus) {
  border: 1px solid rgba(41, 30, 176, 0.60);
}

.form-group:has( .form-control.error) {
  border: 1px solid rgba(255, 46, 50, 0.20);
}

.form-label {
  color: #291eb0;
  font-size: 20px;
  font-weight: 500;
  line-height: 21px;
  opacity: 0.8;
  transition: .3s;
}

.form-group.error .form-label {
  color: #ff2e32;
}

.form-control {
  width: 100%;
  color: var(--color-text-primary);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  background: #f9f9f9;
  transition: .3s;
}

.form-control::placeholder {
  color: rgba(17, 13, 56, 0.15);
}

.form-group__eye {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  cursor: pointer;
}

.eye-icon {
  display: flex;
}

.reset-password {
  color: #291eb0;
  font-size: 20px;
  line-height: 30px;
  cursor: pointer;
}

.form-info {
  color: rgba(17, 13, 56, 0.80);
  text-align: center;
  font-size: 24px;
  line-height: 30px;
  margin: 60px 0 30px;
}

.form-info span {
  color: #291eb0;
  cursor: pointer;
}

.btn--form {
  width: 382px;
  height: 63px;
  font-size: 19px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.167px;
  letter-spacing: 0.076px;
  margin-top: 60px;
  border-radius: 30px;
}

.eye-open {
  display: none;
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.50);
  transition: .3s;
  opacity: 0;
  z-index: -1;
}

.popup.show {
  opacity: 1;
  z-index: 10;
}

.popup--success.show {
  z-index: 11;
}

.popup-content {
  position: fixed;
  max-width: 570px;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 30px;
  border: 2px solid rgba(17, 13, 56, 0.05);
  background: #f1f1f1;
  padding: 53px;
}

.popup__cross {
  position: absolute;
  top: 53px;
  right: 53px;
  cursor: pointer;
}

.popup__icon {
  display: flex;
  justify-content: center;
  margin: 0 auto 20px;
}

.popup__title {
  color: var(--color-text-primary);
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 13px;
}

.popup__text {
  color: var(--color-text-primary);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px;
}

.popup__btn {
  width: 253px;
  height: 63px;
  font-size: 19px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.076px;
}

.contact-us {
  margin-top: 50px;
}

.contact-us .container {
  max-width: 920px;
}

.contact-us__description {
  color: var(--color-text-primary);
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.38px;
}

.contact-us .title {
  margin-bottom: 13px;
}

.question-card__btn {
  border-radius: 10px;
  background: #2e2e2e;
  cursor: pointer;
}

.question-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
  margin-top: 60px;
}

.question-card {
  display: flex;
  flex-direction: column;
  width: calc(100% / 3 - 60px / 3);
  padding: 20px 26px;
  border-radius: 30px;
  border: 2px solid rgba(17, 13, 56, 0.05);
  background: #f1f1f1;
}

.question-card__title {
  color: var(--color-text-primary);
  font-feature-settings: 'case' on;
  font-size: 24px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.5px;
  margin-bottom: 7px;
}

.question-card__text {
  display: flex;
  align-items: center;
  color: #000;
  font-feature-settings: 'case' on;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 23px;
  flex-grow: 1;
  margin-bottom: 20px;
}

.question-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 37px;
  gap: 6px;
  border-radius: 10px;
  background: #2e2e2e;
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.24px;
}

.popup--form .popup-content {
  max-width: 820px;
}

.form-question__title {
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 46px;
  margin-bottom: 14px;
}

.form-question__text {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 33px;
}

.form-group--question {
  padding: 21px 25px;
  border-radius: 13px;
  border: 1px solid #2e2e2e;
  margin-bottom: 20px;
}

.form-group--question .form-control {
  font-size: 20px;
  line-height: 24px;
}

.form-group--question .form-control::placeholder {
  color: var(--color-text-primary);
  opacity: 0.4;
}

.form-group.form-group--question:has( .form-control:focus) {
  border: 1px solid rgba(41, 30, 176, 0.60);
}

.form-group.form-group--question.error {
  border: 1px solid rgba(255, 46, 50, 0.20);
}

textarea.form-control {
  height: 109px;
  resize: none;
}

.form-group--textarea {
  position: relative;
  margin-bottom: 45px;
}

.info-letters {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  color: #2e2e2e;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  opacity: 0.6;
}

.info-letters.max-limit-reached {
  color: #ff2e32;
}

.form-group--textarea.max-limit-reached,
.form-group--textarea.max-limit-reached:has(.form-control:focus) {
  border-color: #ff2e32;
}

input[type="file"] {
  display: none;
}

.form-group--file {
  padding: 26px;
  border-radius: 13px;
  border: 1px dashed #2e2e2e;
}

.label-file {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.label-file__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.label-file__description {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.label-file__format {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  opacity: 0.4;
}

.form-question .btn--form {
  width: 100%;
  margin-top: 30px;
}

.file-preview {
  display: flex;
  align-items: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  gap: 12px;
}

.file-name {
  flex-grow: 1;
  font-size: 16px;
  color: #2e2e2e;
  margin-right: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 400;
}

.file-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #6c757d;
  padding: 6px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.file-remove:hover {
  color: #dc3545;
  background: #f8d7da;
}

/* Скрытие основного лейбла при выборе файла */
.label-file.hidden {
  display: none;
}

/* Эффекты при перетаскивании */
.form-group--file.drag-over {
  background-color: #f0f8ff;
  border-color: #007bff;
}

.section.download {
  margin-top: 50px;
}

.download-content .title {
  max-width: 482px;
  margin: 0 auto 20px;
}

.subscription-status{
  max-width: 360px;
  margin: 0 auto 10px;
  color: #110D38;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 23px;
  letter-spacing: 0.253px;
}

.download__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 232px;
  height: 53px;
  font-size: 19px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.076px;
  border-radius: 13.333px;
  border: 0.667px solid #b4adff;
  color: #fff;
  background: linear-gradient(296deg, #b4adff 10.37%, #5f44f8 90.8%);
  margin: 0 auto;
  transition: .3s;
}

.download__btn:hover {
  background: #2e2e2e;
  color: #fff;
}


@media (max-width: 768px) {
  .contact-us__description {
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0.38px;
  }

  .question-card {
    width: 100%;
    border-radius: 24px;
    padding: 20px 30px;
  }

  .question-card__text {
    font-size: 18px;
  }

  .question-card__btn {
    border-radius: 16px;
    font-size: 14px;
  }

  .popup-content {
    width: calc(100% - 40px);
    padding: 30px 18px;
  }

  .popup__icon {
    margin-bottom: 10px;
  }

  .popup__icon svg {
    width: 55px;
    height: 55px;
  }

  .popup__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 10px;
  }

  .popup__cross {
    top: 30px;
    right: 18px;
  }

  .popup__text {
    max-width: 245px;
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    letter-spacing: -0.2px;
    margin: 0 auto 20px;
  }

  .popup__btn {
    height: 50px;
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: 0.5px;
  }

  .popup--form .popup-content {
    padding: 30px 18px;
  }

  .form-question__title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
  }

  .form-question__text {
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    letter-spacing: -0.2px;
    margin-bottom: 20px;
  }

  .form-group--question {
    padding: 14px 16px;
    margin-bottom: 10px;
  }

  .form-group--question .form-control {
    font-size: 16px;
  }

  textarea.form-control {
    height: 79px;
    resize: none;
  }

  .label-file__icon svg {
    width: 35px;
    height: 35px;
  }

  .label-file__description {
    font-size: 14px;
    line-height: 20px;
  }

  .label-file__format {
    font-size: 14px;
    line-height: 20px;
  }

  .form-question .btn--form {
    margin-top: 20px;
    height: 50px;
  }

  .label-file {
    gap: 12px;
  }

  .form-group--textarea {
    margin-bottom: 30px;
  }

  .btn--form {
    width: 248px;
    height: 50px;
    margin-top: 30px;
    font-size: 19px;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: 0.5px;
    border-radius: 66px;
  }

  .form-content {
    margin: 30px 0 100px;
  }

  .form-group {
    padding: 14px 15px;
    gap: 8px;
    border-radius: 20px;
    border: 1px solid rgba(17, 13, 56, 0.05);
  }

  .form-label {
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: -0.01px;
  }

  .form-control {
    font-size: 16px;
    line-height: 21px;
    letter-spacing: -0.05px;
  }

  .eye-icon {
    width: 24px;
    height: 24px;
  }

  .form-group__eye {
    right: 16px;
  }

  .section.download {
    margin: 10px 0 20px;

  }

  .download-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: calc(100% + 20px);
    gap: 10px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.06);
    padding: 15px 18px;
    margin: 0 -10px;
  }

  .download-content .title{
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    margin: 0;
  }

  .subscription-status{
    max-width: 360px;
    margin: 0 auto 10px;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.078px;
  }

  .download__btn{
    width: fit-content;
    height: auto;
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin: 0 ;
  }
}

.logged_in .log-in-link,
.logged_in  .header__nav-list__item:has(.log-in-link){
  display: none;
}

.loader-container {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-basic-bg);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.loader-container.active {
  display: flex;
}

.loader {
  border: 4px solid #ffff;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
















