.landing-checkbox {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  color: #212529;
  font-size: 14px;
  line-height: 18px;
  margin: 0;
}

.landing-checkbox__input {
  display: none;
}

.landing-checkbox__wrapper {
  display: flex;
  align-items: flex-start;
  -webkit-column-gap: 12px;
  -moz-column-gap: 12px;
  column-gap: 12px;
}

.landing-checkbox__icon-wrapper {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: #fff;
  color: #fff;
  box-shadow: 0 0 0 1px #E9E9E9;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.landing-checkbox:hover .landing-checkbox__icon-wrapper {
  box-shadow: 0 0 0 1px #FFCB08;
}

.landing-checkbox:active .landing-checkbox__icon-wrapper {
  box-shadow: 0 0 0 1px #FFCB08;
  background-color: #FFF5CE;
}

.landing-checkbox__input:checked + .landing-checkbox__wrapper .landing-checkbox__icon-wrapper {
  background-color: #FFCB08;
  box-shadow: 0 0 0 1px #FFCB08;
}

.landing-checkbox:hover .landing-checkbox__input:checked + .landing-checkbox__wrapper .landing-checkbox__icon-wrapper {
  background-color: #FFD846;
  box-shadow: 0 0 0 1px #FFCB08;
}

.landing-checkbox:active .landing-checkbox__input:checked + .landing-checkbox__wrapper .landing-checkbox__icon-wrapper {
  background-color: #FFE583;
  box-shadow: 0 0 0 1px #FFCB08;
}

.landing-checkbox[disabled] .landing-checkbox__icon-wrapper {
  opacity: 0.5;
}

.landing-checkbox__icon {
  width: 16px;
  height: 16px;
  opacity: 0;
  will-change: transform;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
  transition: opacity 0.3s ease 0.075s, -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.3s ease 0.075s, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.3s ease 0.075s, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.landing-checkbox__input:checked + .landing-checkbox__wrapper .landing-checkbox__icon {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.landing-checkbox:active .landing-checkbox__input:checked + .landing-checkbox__wrapper .landing-checkbox__icon {
  opacity: 0;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
}

.landing-checkbox__content {
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  gap: 10px 5px;
  transition: color 0.3s ease, text-shadow 0.3s ease, letter-spacing 0.3s ease;
}

.landing-checkbox__content a {
  color: #197DD1;
  text-decoration: underline !important;
  border: none !important;
  transition: color 0.3s ease;
}

.landing-checkbox__content a:hover {
  color: hsl(207, 79%, 40%);
}

.landing-checkbox__content a:active {
  color: hsl(207, 79%, 30%);
}

.landing-checkbox__content p {
  font-weight: inherit;
  margin: 0;
}

.landing-checkbox__message {
  margin-top: 8px;
  font-size: 14px;
  line-height: 18px;
  display: none;
  color: hsla(0, 0%, 12%, 0.5);
  -webkit-animation: fadeIn 0.3s ease;
  animation: fadeIn 0.3s ease;
}

.landing-checkbox.is-error .landing-checkbox__message {
  display: flex;
  color: #FF0000;
}

.landing-checkbox[disabled] {
  pointer-events: none;
}

.landing-input {
  position: relative;
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  outline: none;
  border: none;
  background: none;
  background-color: transparent;
  font-size: 20px;
  line-height: 24px;
  color: #1F1F1F;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.landing-input.disabled,
.landing-input[disabled] {
  opacity: 0.5;
}

.landing-input__wrapper {
  margin: 0;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 17px 24px;
  gap: 12px;
  border-radius: 8px;
  background-color: #FFFFFF;
  color: #1E1E1E;
  box-shadow: inset 0 0 0 1px #E9E9E9;
  transition: color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.landing-input.is-error .landing-input__wrapper {
  box-shadow: inset 0 0 0 1px #FF0000;
}

.landing-input__wrapper:hover {
  box-shadow: inset 0 0 0 1px hsl(0, 0%, 82%);
}

.landing-input__wrapper:active,
.landing-input.is-focused .landing-input__wrapper {
  box-shadow: inset 0 0 0 1px #FFCB08;
}

.landing-input__native {
  width: 100%;
  flex-grow: 1;
  padding: 0 !important;
  resize: none !important;
  outline: none !important;
  border: 0 !important;
  background-color: transparent !important;
  color: inherit !important;
  text-align: inherit;
  text-overflow: ellipsis;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  border-radius: 0 !important;
  transition: none !important;
}

.landing-input__native::-webkit-input-placeholder {
  opacity: 1;
  color: hsla(0, 0%, 12%, 0.5);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.landing-input__native:-ms-input-placeholder {
  opacity: 1;
  color: hsla(0, 0%, 12%, 0.5);
  -ms-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.landing-input__native::-ms-input-placeholder {
  opacity: 1;
  color: hsla(0, 0%, 12%, 0.5);
  -ms-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.landing-input__native::placeholder {
  opacity: 1;
  color: hsla(0, 0%, 12%, 0.5);
  transition: color 0.3s ease;
}

.landing-input__message {
  margin-top: 8px;
  display: none;
  color: #1E1E1E;
  font-size: 14px;
  line-height: 18px;
  -webkit-animation: fadeIn 0.3s ease;
  animation: fadeIn 0.3s ease;
}

.landing-input.is-error .landing-input__message {
  display: flex;
  color: #FF0000;
}

.landing-input[disabled] {
  pointer-events: none;
  opacity: 0.5;
}

.landing-fast-start-info {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  position: relative;
  z-index: 1;
}

.landing-fast-start-info__title {
  font-size: 28px;
  line-height: 33px;
  margin: 0;
  font-weight: 700;
  font-family: "Roboto";
}

.landing-fast-start-info__body {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

.landing-fast-start-info__list {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  padding: 0;
  margin: 0;
}

.landing-fast-start-info__item {
  display: flex;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  padding: 0;
  color: #1E1E1E;
  font-size: 18px;
  line-height: 23px;
}

.landing-fast-start-info__item p {
  margin: 0;
}

.landing-fast-start-info__item .icon {
  width: 24px;
  height: 24px;
}

.landing-fast-start-info__footer {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.landing-fast-start-info__price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 10px;
}

.landing-fast-start-info__price-old-block {
  display: flex;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.landing-fast-start-info__price-old {
  display: flex;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #AAAAAD;
  text-decoration: line-through;
}

.landing-fast-start-info__price-sale {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 23px;
  padding: 0 8px;
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  color: #fff;
  background-color: #41418F;
  border-radius: 10px;
}

.landing-fast-start-info__price {
  display: flex;
  align-items: flex-end;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  font-family: "Roboto";
  margin: 0;
}

.landing-fast-start-info__price span {
  font-family: "PT Sans";
  font-size: 16px;
  line-height: 21px;
  color: hsla(210, 11%, 15%, 0.5);
  margin-bottom: 7px;
}

.landing-fast-start-info__text {
  font-size: 18px;
  line-height: 23px;
  color: #333B8C;
  margin: 0;
}

.landing-fast-start {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 50px 90px;
  background-color: #F5F6FA;
  border-radius: 10px;
  overflow: hidden;
}

.landing-fast-start::before {
  content: "";
  display: block;
  bottom: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
  width: 1px;
  background-color: hsla(0, 0%, 12%, 0.1);
  order: 1;
  z-index: 1;
  position: relative;
}

.landing-fast-start__info {
  width: 482px;
}

.landing-fast-start__form {
  width: 436px;
  order: 2;
}

.landing-fast-start__decor {
  position: absolute;
}

.landing-fast-start__decor--1 {
  width: 574px;
  bottom: -206px;
  left: 135px;
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
}

.landing-fast-start__decor--2 {
  top: -82px;
  right: 142px;
  width: 204px;
  -webkit-transform: rotate(-10deg);
  transform: rotate(-10deg);
}

.landing-fast-start-form {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.landing-fast-start-form__title {
  font-weight: 700;
  font-family: "Roboto";
  font-size: 18px;
  line-height: 26px;
  color: #1E1E1E;
  margin: 0;
}

.landing-fast-start-form__grid {
  display: flex;
  flex-direction: column;
}

.landing-fast-start-form__grid .landing-input {
  margin-top: 16px;
}

.landing-fast-start-form__grid .landing-checkbox {
  margin-top: 14px;
  max-width: 344px;
}

.landing-fast-start-form__grid > *:first-child {
  margin-top: 0;
}

.landing-fast-start-form__button {
  margin-top: 22px;
}

.landing-fast-start-form__content {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.landing-fast-start-form.is-loading .landing-fast-start-form__content,
.landing-fast-start-form.is-success .landing-fast-start-form__content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.form-view-loading,
.form-view-success,
.landing-fast-start-form__loading,
.landing-fast-start-form__success {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.landing-fast-start-form__loading {
  z-index: 1;
}

.landing-fast-start-form__success {
  z-index: 2;
}

.landing-fast-start-form.is-loading .landing-fast-start-form__loading,
.landing-fast-start-form.is-success .landing-fast-start-form__success {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.form-view-loading__loader,
.landing-solution-form-loading__loader,
.landing-fast-start-form-loading__loader {
  width: 170px;
  height: 170px;
}

.form-view-success,
.landing-solution-form-success,
.landing-fast-start-form-success {
  gap: 20px;
}

.form-view-success__icon,
.landing-solution-form-success__icon,
.landing-fast-start-form-success__icon {
  width: 100px;
  height: 100px;
  color: #FFCB08;
}

.form-view-success__title,
.landing-solution-form-success__title,
.landing-fast-start-form-success__title {
  text-align: center;
  margin: 0;
  font-size: 24px;
  line-height: 26px;
  color: #1e1e1e;
  font-weight: 700;
}

.form-view-success__button {
  width: 100%;
}
.button-new {
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  outline: 0 !important;
  border: 0 !important;
  font-weight: 400;
  letter-spacing: 0;
  transition: color 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  min-height: 64px;
  font-size: 20px;
  line-height: 26px;
  background-color: hsl(47, 100%, 52%);
  color: #1E1E1E;
  padding: 12px 24px;
}

.button-new:hover {
  color: #1E1E1E;
  background-color: hsl(47, 100%, 69%);
}

.button-new:active {
  color: #1E1E1E;
  background-color: hsl(47, 100%, 76%);
}

.button-new span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.button-new .icon {
  width: 24px;
  height: 24px;
}

.button-new[disabled] {
  pointer-events: none;
  color: clr(neutral, 400);
}
.button-new--theme-secondary {
    background-color: #333B8C;
    color: #fff;
}
.landing-fast-start-form__button {
    margin-top: 15px;
}
.landing-checkbox__wrapper {
    display: flex;
    align-items: flex-start;
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
}
.landing-checkbox {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    color: #212529;
    font-size: 14px;
    line-height: 18px;
    margin: 0;
}
.landing-fast-start-form__grid .landing-checkbox {
    margin-top: 25px;
    max-width: 344px;
}