/* Fonts */

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

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

@font-face {
  font-weight: 600;
  font-style: normal;
  font-family: 'SF Pro Display';
  src: url(/fonts/sf-pro-display-semibold-webfont.woff2) format('woff2');
  font-display: swap;
}

@font-face {
  font-weight: 500;
  font-style: normal;
  font-family: 'SF Pro Display';
  src: url(/fonts/sf-pro-display-medium-webfont.woff2) format('woff2');
  font-display: swap;
}

@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: 'SF Pro Display';
  src: url(/fonts/sf-pro-display-regular-webfont.woff2) format('woff2');
  font-display: swap;
}

/* Reset */

*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

button:focus-visible:not(:disabled),
a:focus-visible:not(:disabled) {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  transition: outline 0s;
}

img {
  max-width: 100%;
  height: auto;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

/* Root */

:root {
  /* colors */
  --color-accent: #1261e9;
  --color-accent-light: #007aff;
  --color-bg-primary: #21272f;
  --color-text-primary: #fff;

  /* text */
  --text-font-main: 'SF Pro Display', sans-serif;
  --text-font-accent: serif;
  --text-size-main: 16px;
  --text-lh-main: normal;

  /* other */
  --container-size-main: 375px;
  --container-padding: 16px;
}

/* visually-hidden */

.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0 none;
  white-space: nowrap;
  clip-path: inset(100%);
}

/* no-scroll */

.no-scroll {
  overflow: hidden;
}

/* container */

.container {
  width: 100%;
  max-width: calc(var(--container-size-main) + var(--container-padding) * 2);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
  }
}

/* headings */

.entry-content > h1,
.entry-content > h2,
.entry-content > h3,
.entry-content > h4,
.entry-content > h5,
.entry-content > h6 {
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.35;
  text-wrap: balance;
}

.entry-content > h1 {
  font-size: 32px;
}

.entry-content > h2 {
  font-size: 28px;
}

.entry-content > h3 {
  font-size: 22px;
}

.entry-content > h4 {
  font-size: 18px;
}

/* links */

.entry-content a {
  color: var(--color-accent);
  text-decoration: underline;
  transition: all .25s ease;
}

@media (hover: hover) {
  .entry-content a:hover {
    text-decoration: none;
  }
}

/* paragraphs */

.entry-content p + * {
  margin-top: 30px;
}

.entry-content p + p {
  margin-top: 15px;
}

/* blockquote */

.entry-content blockquote {
  position: relative;
  margin: 30px 0;
  padding: 0;
  padding-left: 30px;
  border-left: 2px solid var(--color-accent);
}

/* image */

.entry-content img {
  max-width: 100%;
  height: auto;
}

/* lists */

.entry-content ul,
.entry-content ol {
  margin: 30px 0;
  padding-left: 15px;
}

.entry-content ul li::marker {
  color: var(--color-accent);
}

.entry-content li:not(:last-child) {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .entry-content li:not(:last-child) {
    margin-bottom: 12px;
  }
}

/* hr */

.entry-content hr {
  color: #dadada;
}

/* Page */

.page {
  scroll-behavior: smooth;
}

.page__body {
  position: relative;
  overflow-x: hidden;
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background-color: var(--color-bg-primary);
  background-image: linear-gradient(90deg, #223746 0%, #191d1f 100%);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--color-text-primary);
  box-shadow: 0 1px 30px 0 rgba(69, 42, 124, 0.1);
  font-size: var(--text-size-main);
  font-family: var(--text-font-main);
  line-height: normal;
  text-rendering: optimizespeed;
}

@media (max-width: 576px) {
  .page__body {
    background-image: url(../images/bg.jpg);
  }
}

/* page-grid */

.page-grid {
  display: grid;
  gap: 50px;
}

.page-grid>* {
  min-width: 0;
}

.mt-sm {
  margin-top: 22px;
}

.mt-xl {
  margin-top: 50px;
}

.mb-xl {
  margin-bottom: 50px;
}

/* Wrapper */

.wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.main {
  flex: 1 0 auto;
}

.footer {
  flex: 0 0 auto;
}

/* logo */

.logo {
  display: inline-flex;
  align-items: center;
}

.logo__img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* button */

.button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
  padding: 22px 60px;
  border: none;
  border-radius: 50px;
  background: var(--color-accent);
  color: #fff;
  box-shadow: inset 0 4px 4px 0 rgba(93, 212, 255, 0.56);
  font-weight: 600;
  font-size: 22px;
  font-family: var(--text-font-main);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  isolation: isolate;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.button::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 82px;
  background: url(../images/button-bg.svg) no-repeat center/cover;
  transition: all .25s ease;
  transform: translateX(-50%);
}

.button:disabled {
  background: #4D5665;
  box-shadow: none;
  cursor: default;
}

.button:focus-visible:not(:disabled) {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.button:focus:not(:focus-visible) {
  outline: none;
}

@media (hover: hover) {
  .button:hover:not(:disabled) {
    box-shadow: inset 0 2px 4px 0 rgba(93, 212, 255, 0.56);
    scale: 1.02;
  }

  .button:hover:not(:disabled)::before {
    top: 20%;
  }
}

/* button--sm */

.button--sm {
  font-size: 16px;
}

/* hamburger */

.hamburger {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 14px;
  padding: 0;
  border: none;
  background: none;
  opacity: 1;
  cursor: pointer;
  transition: all .25s ease;
}

.hamburger__center,
.hamburger::before,
.hamburger::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 15px;
  background-color: var(--color-text-primary);
}

.hamburger__center {
  top: 50%;
  transition-delay: .3s;
  transform: translateY(-50%);
}

.hamburger::before {
  content: '';
  top: 0;
  transition: transform .3s ease, top .3s .3s ease;
}

.hamburger::after {
  content: '';
  bottom: 0;
  transition: transform .3s ease, bottom .3s .3s ease;
}

.hamburger:active,
.hamburger:focus {
  opacity: 1;
}

.hamburger.is-active .hamburger__center {
  opacity: 0;
}

.hamburger.is-active::before {
  top: 50%;
  margin-top: -2px;
  transition: top .3s ease, transform .3s .3s ease;
  transform: rotate(45deg);
}

.hamburger.is-active::after {
  bottom: 50%;
  transition: bottom .3s ease, transform .3s .3s ease;
  transform: rotate(-45deg);
}

/* progress */

.progress {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 15px;
  border: 1px solid #3A4147;
  border-radius: 15px;
}

.progress__line {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, #12b1e9 0%, #3c52e3 82.69%, #3684e1 100%);
  transition: none;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* achievement-badge */

.achievement-badge {
  position: relative;
  display: flex;
  align-items: center;
  width: 303px;
  min-height: 90px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 52px;
  padding-left: 52px;
}

.achievement-badge::before,
.achievement-badge::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 90px;
  background: url(../images/branch.svg) no-repeat 0 0/contain;
  transform: translateY(-50%);
}

.achievement-badge::before {
  left: 0;
}

.achievement-badge::after {
  right: 0;
  transform: scaleX(-1) translateY(-50%);
}

.achievement-badge__title {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
  text-align: center;
}

.achievement-badge__title-sec {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
}

.achievement-badge__title-main {
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
}

/* feature-item */

.feature-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 1.5px #c8d4dd;
  font-weight: 500;
  letter-spacing: -0.01em;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.feature-item__icon {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
}

/* header-menu */

.header-menu.is-active {
  background-color: rgb(0 0 0 / 90%);
}

.header-menu.is-active .header-menu__inner {
  transform: translateX(0) scaleX(1);
}

.header-menu.is-closed {
  display: none;
}

.header-menu {
  position: absolute;
  inset: 0;
  z-index: 10;
  overflow: hidden;
  height: 100%;
  min-height: 100vh;
  background-color: transparent;
  transition: all .25s ease;
}

.header-menu__inner {
  overflow-y: auto;
  width: 272px;
  height: 100%;
  margin-left: auto;
  padding: 20px 28px;
  background-color: #3e3e3e;
  color: #fff;
  transition: transform .4s ease;
  transform: translateX(100%) scaleX(.3);
}

.header-menu__close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: rgba(120, 120, 128, 0.16);
  color: #fff;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
}

.header-menu__close svg {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
  fill: currentColor;
}

.header-menu__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
}

.header-menu__list a {
  color: inherit;
  text-decoration: none;
  transition: all .25s ease
}

@media (hover: hover) {
  .header-menu__list a:hover {
    text-decoration: underline;
  }
}

/* header */

.header {
  padding: 27px 40px 11px;
  border-bottom: 1px solid rgb(255 255 255 / 30%);
}

.header__inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__hamburger {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

/* footer */

.footer {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 62px;
}

/* section */

.section {
  position: relative;
}

.section__header {
  margin-bottom: 15px;
  text-align: center;
}

.section__footer {
  margin-top: 24px;
}

.section__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* section-title */

.section-title {
  font-weight: 600;
  font-size: 28px;
  line-height: 107%;
  text-wrap: balance;
}

/* hero */

.hero__main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  max-width: var(--container-size-main);
  margin-right: auto;
  margin-left: auto;
  padding-top: 28px;
  padding-bottom: 34px;
  border-radius: 0 0 32px 32px;
  text-align: center;
  isolation: isolate;
}

.hero__main::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 334px;
  background: url(../images/hero-bg.svg) no-repeat center/cover;
  transform: translateX(-50%);
}

.hero__img {
  z-index: -2;
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
  margin-top: 17px;
}

.hero__descr {
  max-width: 348px;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.36;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 303px;
  margin-top: 17px;
}

.hero__actions>* {
  flex-grow: 1;
}

.hero__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 40px;
}

.hero__features .feature-item {
  gap: 6px;
  padding: 12px 8px;
  font-size: 12px;
  letter-spacing: -0.02em;
}

@media (max-width: 576px) {
  .hero__main {
    max-width: 100%;
  }
}

/* cards-list-2 */

.cards-list-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* service-card */

.service-card {
  min-height: 147px;
  border: 1px solid #3a4147;
  border-radius: 25px;
  background: linear-gradient(180deg, #20272f 0%, #141414 100%);
  box-shadow: 1px 2px 4px 0 rgba(19, 19, 19, 0.25);
}

.service-card__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  overflow: hidden;
  height: 100%;
  padding: 30px 2px 18px 26px;
  border-radius: inherit;
}

.service-card__inner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 139px;
  height: 114px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.service-card__inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 165px;
  height: 49px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.service-card__title {
  position: relative;
  z-index: 1;
  margin-top: auto;
  font-weight: 700;
  font-size: 18px;
}

.serice-card__icon-wrapper {
  position: relative;
  isolation: isolate;
}

.serice-card__icon-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 112px;
  height: 112px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
}

.serice-card__icon {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
  fill: currentColor;
}

/* service-card--yellow */

.service-card--yellow .service-card__inner::before {
  background-image: url(../images/s-bg-yellow-1.svg);
}

.service-card--yellow .service-card__inner::after {
  background-image: url(../images/s-bg-yellow-2.svg);
}

.service-card--yellow .serice-card__icon-wrapper::before {
  background-image: url(../images/s-bg-yellow-3.svg);
}

/* service-card--violet */

.service-card--violet .service-card__inner::before {
  width: 146px;
  height: 114px;
  background-image: url(../images/s-bg-violet-1.svg);
}

.service-card--violet .service-card__inner::after {
  width: 165px;
  height: 108px;
  background-image: url(../images/s-bg-violet-2.svg);
}

.service-card--violet .serice-card__icon-wrapper::before {
  background-image: url(../images/s-bg-violet-3.svg);
}

/* service-card--pink */

.service-card--pink .service-card__inner::before {
  width: 113px;
  height: 122px;
  background-image: url(../images/s-bg-pink-1.svg);
}

.service-card--pink .service-card__inner::after {
  width: 165px;
  height: 135px;
  background-image: url(../images/s-bg-pink-2.svg);
}

.service-card--pink .serice-card__icon-wrapper::before {
  background-image: url(../images/s-bg-pink-3.svg);
}

/* service-card--orange */

.service-card--orange .service-card__inner::before {
  width: 113px;
  height: 122px;
  background-image: url(../images/s-bg-orange-1.svg);
}

.service-card--orange .service-card__inner::after {
  width: 165px;
  height: 135px;
  background-image: url(../images/s-bg-orange-2.svg);
}

.service-card--orange .serice-card__icon-wrapper::before {
  background-image: url(../images/s-bg-orange-3.svg);
}

/* service-card--green */

.service-card--green .service-card__inner::before {
  width: 139px;
  height: 114px;
  background-image: url(../images/s-bg-green-1.svg);
}

.service-card--green .service-card__inner::after {
  width: 165px;
  height: 49px;
  background-image: url(../images/s-bg-green-2.svg);
}

.service-card--green .serice-card__icon-wrapper::before {
  background-image: url(../images/s-bg-green-3.svg);
}

/* service-card--blue */

.service-card--blue .service-card__inner::before {
  width: 146px;
  height: 114px;
  background-image: url(../images/s-bg-blue-1.svg);
}

.service-card--blue .service-card__inner::after {
  width: 165px;
  height: 108px;
  background-image: url(../images/s-bg-blue-2.svg);
}

.service-card--blue .serice-card__icon-wrapper::before {
  background-image: url(../images/s-bg-blue-3.svg);
}

/* features-list */

.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* notification-example */

.notification-example {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: var(--container-size-main);
  height: calc(100lvh + 130px);
  max-height: 900px;
  margin-right: auto;
  margin-left: auto;
  padding: 30px;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.notification-example::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #000;
  opacity: .4;
}

@media (max-width: 576px) {
  .notification-example {
    max-width: 100%;
  }
}

/*  notification*/

.notification {
  width: 270px;
  padding-top: 18px;
  border: 0.35px solid #999;
  border-radius: 12px;
  background-color: #fff;
  color: #000;
}

.notification__content {
  padding-inline: 6px;
  text-align: center;
}

.notification__title {
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 15px;
}

.notification__text {
  font-size: 14px;
}

.notification__text span {
  display: block;
  margin-top: 5px;
}

.notification__actions {
  margin-top: 30px;
}

.notification__button {
  display: block;
  padding: 9px 12px;
  border: none;
  border-top: 1.04px solid #C4C4C4;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.notification__button--primary {
  color: var(--color-accent-light);
}

.notification__button--secondary {
  color: #999;
}

/* slider */

.slider__nav {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

/* slider-pagination */

.slider-pagination.swiper-pagination {
  position: static;
  display: flex;
  gap: 5px;
  width: auto;
  padding: 4px 6px;
  border-radius: 12px;
  background-color: #35353e;
}

.slider-pagination.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0;
  background-color: rgba(190, 214, 255, 0.56);
  outline-offset: 2px;
  opacity: 1;
}

.slider-pagination.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-accent-light);
}

/* review-card */

.review-card {
  min-height: 174px;
  border: 1px solid #3a4147;
  border-radius: 25px;
  background: linear-gradient(180deg, #20272f 0%, #141414 100%);
  box-shadow: 1px 2px 4px 0 rgba(19, 19, 19, 0.25);
}

.review-card__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  overflow: hidden;
  height: 100%;
  padding: 20px 16px;
  border-radius: inherit;
}

.review-card__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 264px;
  height: 174px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateX(-50%);
}

.review-card__inner::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 187px;
  height: 147px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.review-card__header {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 2px 6px;
  align-items: center;
}

.review-card__img {
  flex-shrink: 0;
  grid-row: span 2;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
  height: auto;
  border-radius: 50%;
}

.review-card__name {
  font-size: 12px;
  line-height: 133%;
}

.review-card__date {
  font-size: 12px;
  line-height: 133%;
  opacity: .5;
}

.review-card__content {
  margin-top: 15px;
  font-size: 14px;
  line-height: 121%;
}

/* review-card--violet */

.review-card--violet .review-card__inner::before {
  background-image: url(../images/r-bg-violet-1.svg);
}

.review-card--violet .review-card__inner::after {
  background-image: url(../images/r-bg-violet-2.svg);
}

/* review-card--pink */

.review-card--pink .review-card__inner::before {
  right: 0;
  left: unset;
  width: 275px;
  height: 139px;
  background-image: url(../images/r-bg-pink-1.svg);
  transform: none;
}

.review-card--pink .review-card__inner::after {
  width: 199px;
  height: 104px;
  background-image: url(../images/r-bg-pink-2.svg);
}

/* review-card--orange */

.review-card--orange .review-card__inner::before {
  width: 264px;
  height: 174px;
  background-image: url(../images/r-bg-orange-1.svg);
}

.review-card--orange .review-card__inner::after {
  width: 199px;
  height: 99px;
  background-image: url(../images/r-bg-orange-2.svg);
}

/* reviews-slider */

.reviews-slider-wrapper {
  max-width: var(--container-size-main);
  margin-right: auto;
  margin-left: auto;
}

.reviews-slider .swiper-slide {
  width: 295px !important;
}

@media (max-width: 576px) {
  .reviews-slider-wrapper {
    max-width: 100%;
  }
}

/* steps */

.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.steps__item {
  position: relative;
}

.steps__item:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 22px;
  z-index: -1;
  width: 2px;
  height: calc(100% + 24px);
  border-left: 1px dashed #5b9cff;
  opacity: .5;
  transform: translateX(-50%);
}

/* steps-item */

.steps-item {
  display: flex;
  gap: 12px;
}

.steps-item__num {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: radial-gradient(57.54% 57.54% at 52.38% 47.62%, #0285ff 0%, #1261e9 100%);
  font-size: 20px;
}

.steps-item__title {
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1.25;
}

.steps-item__descr {
  font-size: 12px;
  line-height: 133%;
  opacity: .5;
}

/* appstore-rate */

.appstore-rate {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(123deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.05) 100%);
  box-shadow: 0 1px 30px 0 rgba(69, 42, 124, 0.1);
  -webkit-backdrop-filter: blur(70px);
  backdrop-filter: blur(70px);
}

.appstore-rate__title {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 22px;
  font-weight: 500;
}

.appstore-rate__title-icon {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
  fill: currentColor;
}

.appstore-rate__subtitle {
  margin-top: 16px;
  opacity: .5;
}

.appstore-rate__rating {
  display: flex;
  gap: 16px;
  align-items: center;
  font-weight: 500;
  font-size: 20px;
}

.appstore-rate__rating-stars {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
}

/* scan */

.scan {
  padding-top: 32px;
  padding-bottom: 72px;
}

.scan__video {
  max-width: 100%;
  height: auto;
}

.scan__content {
  margin-top: 20px;
}

.scan__title {
  margin-bottom: 11px;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
}

/* scan-list */

.scan-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
}

.scan-list__item {
  display: flex;
  gap: 8px;
  align-items: center
}

.scan-list__item::before {
  content: '';
  width: 28px;
  height: 28px;
  background-image: url(../images/checkbox-o.svg);
  background-position: 0 0;
  background-size: contain;
  background-repeat: no-repeat;
}

.scan-list__item.is-checked::before {
  background-image: url(../images/checkbox-i.svg);
}

.scan__progress {
  max-width: 303px;
  margin: 50px auto 0;
}

/* modal  */

.modal {
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
}

.hystmodal::before {
  background-color: rgb(0 0 0 / 90%);
}

.hystmodal--active::before {
  opacity: 1;
}

/* modal__body */

.modal__body {
  flex-grow: 0;
  flex-shrink: 0;
  width: 296px;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  padding: 20px 16px;
  border-radius: 16px;
  background: linear-gradient(123deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.05) 100%);
  box-shadow: 0 1px 30px 0 rgba(69, 42, 124, 0.1);
  -webkit-backdrop-filter: blur(70px);
  backdrop-filter: blur(70px);
}

.modal__header {
  text-align: center;
}

.modal__header + * {
  margin-top: 22px;
}

.modal__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
}

.modal__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 25px;
}

/* modal--success */

.modal--success .modal__body {
  padding-top: 123px;
}

.modal--success .modal__body::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(50% + 5px);
  width: 243px;
  height: 109px;
  background: url(../images/success.svg) no-repeat 0 0/contain;
  transform: translateX(-50%);
}

/* modal--complete */

.modal--complete .modal__body {
  padding-top: 123px;
}

.modal--complete .modal__body::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(50% + 5px);
  width: 243px;
  height: 109px;
  background: url(../images/complete.svg) no-repeat 0 0/contain;
  transform: translateX(-50%);
}

.attr-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.attr-list__row {
  display: grid;
  grid-template-areas: "term separator val";
  grid-template-columns: auto 1fr auto;
  gap: 4px;
  align-items: flex-end;
}

.attr-list__term {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: term;
  font-weight: 500;
}

.attr-list__sep {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: separator;
  height: 5px;
  margin-right: 2px;
  background-image: url(../images/dotted.svg);
  background-position: 0 0;
  background-size: 76px;
  background-repeat: repeat-x;
  opacity: .5;
}

.attr-list__val {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  grid-area: val;
  line-height: 1.25;
}

.attr-list__val span {
  color: #388ef1;
}

.attr-list__val--hide {
  filter: blur(10px);
}

/* form */

.form-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* form-row */

.form-row {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}

.form-row>* {
  flex-grow: 1;
}

@media (max-width: 998px) {
  .form-row {
    flex-direction: column;
  }
}

/* form-input-wrapper */

.form-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* form-label */

.form-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

/* form-field */

.form-field {
  width: 100%;
  padding: 17.5px 12px;
  border: 1px solid #7192b1;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  outline: none;
  font-weight: 400;
  font-size: 16px;
  font-family: inherit;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: all .25s ease;
}

.form-field:focus {
  border-color: #338de3;
}

.form-field.is-error,
.form-field.form-field:user-invalid {
  border-color: #e3333f;
}

.form-field::-moz-placeholder {
  color: rgb(255 255 255 / 50%);
}

.form-field::placeholder {
  color: rgb(255 255 255 / 50%);
}

/* form-textarea */

.form-textarea {
  width: 100%;
  height: 108px;
  resize: none;
}

/* form-actions */

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* form-error */

.form-error {
  display: none;
  color: #e3333f;
  font-size: 10px;
  opacity: .5;
}

.has-error .form-error.is-active {
  display: block;
}

/* form-variants */

.form-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-variants__item {
  padding: 12px 14px;
  border: 1px solid #7192b1;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  outline: none;
  font-weight: 400;
  font-size: 12px;
  font-family: inherit;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: all .25s ease;
}

.form-variants__item:disabled {
  color: rgb(255 255 255 / 50%);
}

/* order */

.order__bn {
  margin-bottom: 24px;
  padding: 14px 16px;
  background: linear-gradient(123deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
  box-shadow: 0 1px 30px 0 rgba(69, 42, 124, 0.1);
  font-weight: 400;
  -webkit-backdrop-filter: blur(70px);
  backdrop-filter: blur(70px);
}

.order__title {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.14;
}

.order__descr {
  opacity: .5;
}

.order__form-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 295px;
  margin-inline: auto;
  margin-bottom: 12px;
  text-align: center;
}

.order__form-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.order__form-features .feature-item {
  gap: 6px;
  padding: 12px 8px;
  font-size: 12px;
  letter-spacing: -0.02em;
}
