@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --color-text-primary: #262626;
  --color-title: #000;
  --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: "Montserrat", sans-serif;
}

* {
  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);

}

input[type="radio"] ,
input[type="checkbox"] {
  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;
}

.header.hide {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(180deg, #94AC89 1%, #677262 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
}

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

.title {
  color: var(--color-title);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.banner {
  padding-top: 270px;
  background: url("../assets/img/banner-phones.svg") no-repeat center 60px , url("../assets/img/banner-bg.svg") no-repeat center top;
  margin-top: -59px;
}

.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: 30px;
  font-weight: 700;
  line-height: 34px;
  color: var(--color-title);
  margin-bottom: 20px;
}

.banner__title span{
  background:linear-gradient(180deg, #94AC89 1%, #677262 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

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

.banner__content-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

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

.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 280px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-text-white);
  border-radius: 50px;
  background: var(--btn-bg);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
  cursor: pointer;
  transition: .3s;
}

.meta-security {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.btn:hover {
  opacity: 0.8;
}

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

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

.trusted-info img{
  max-width: 280px;
}

.section {
  margin: 60px 0;
}

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


.footer {
  padding-bottom: 74px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.copy {
  text-align: center;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.5px;
  margin-top: 10px;
}

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

@media (max-width: 1024px) {
  .benefits__item {
    width: calc(50% - 20px / 2);
  }
}

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

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

.tab__page {
  display: none;
}

.tab__page.show {
  display: block;
}

.tab__container {
  width: 100%;
  max-width: 410px;
  margin: 0 auto;
  padding: 0 20px;
}

.detected-issues {
  width: fit-content;
  border-radius: 15px;
  padding: 12px 14px;
  background: var(--color-text-red);
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.5px;
  color: var(--color-text-white);
  margin: 0 auto 30px;
}

.detected-issues span {
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.5px;
  color: var(--color-text-white);
}

.animation-gallery {
  height: 162px;
  margin: 0 -24px 32px;
}

.popup-scan .title {
  text-align: left;
}

.popup-scan-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.popup-scan-head__i {
  display: flex;
}

.popup-scan-head__title {
  color: #2e2e2e;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.108px;
  margin-bottom: 2px;
}

.popup-scan-head__description {
  color: #2e2e2e;
  font-feature-settings: 'case' on;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.43px;
}

.popup-scan-head__description span {
  color: #ff2e32;
}

.analyzing__list {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.analyzing__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.analyzing__item-icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.analyzing__item-icon svg {
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s;
}

.analyzing__item-icon-check {
  opacity: 0;
  z-index: 1;
}

.analyzing__item.active .analyzing__item-icon-check {
  opacity: 1;
}

.analyzing__item-text {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  opacity: 0.7;
}

.analyzing__line {
  width: 100%;
  height: 10px;
  border-radius: 20px;
  background: var(--color-text-white);
  overflow: hidden;
  margin-top: 30px;
  box-shadow: 0px 2px 8px 0px rgba(66, 91, 113, 0.15);
}

.analyzing__line-track {
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(180deg, #5890ff 0%, #3b52ff 100%);
  transition: all 0.3s;
  width: 0;
}

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

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

.popup-content {
  position: absolute;
  max-width: 335px;
  width: 100%;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: #fff;
  backdrop-filter: blur(20px);
  padding: 16px 12px;
}

.popup__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

.title-secondary {
  color: var(--color-text-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.popup-text {
  font-size: 14px;
  text-align: center;
  opacity: 0.7;
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.5px;
}

.popup .title {
  margin-bottom: 4px;
}

.risk-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.risk-info__item {
  display: flex;
  justify-content: space-between;
}

.risk-info__item-text {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  opacity: 0.7;
}

.risk-info__item-data {
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.073px;
  color: var(--color-text-red);
}

.blur {
  filter: blur(4px);
}

.popup-scan__animation {
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: 116px;
}

.info-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin: 10px auto 20px;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid var(--color-text-white);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.60) 0%, rgba(255, 255, 255, 0.50) 100%);
  box-shadow: 0px 2px 8px 0px rgba(66, 91, 113, 0.15);
  padding: 4px 12px;
}

.info-label span {
  color: #5f44f8;
  font-weight: 700;
}

.tab__email .title {
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

.text-description {
  color: var(--color-text-secondary);
  text-align: center;
  font-size: 13px;
  line-height: 18px;
}

.group-input {
  width: 100%;
}

.custom-input {
  width: 100%;
  border-radius: 15px;
  border: 1px solid rgba(46, 46, 46, 0.60);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  padding: 16px 12px;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.43px;
  transition: .3s;
}

.custom-input:focus {
  border: 1px solid var(--color-basic-blue-gradient);
}

.custom-input.error {
  border: 1px solid var(--color-text-red);
}

.custom-input::placeholder {
  color: var(--color-text-primary);
  opacity: 0.2;
}

.email-domains {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
}

.email-domains__item {
  border-radius: 50px;
  border: 1px solid #ACBBA5;
  padding: 7px 12px;
  font-size: 12px;
  cursor: pointer;
  color: rgba(38, 38, 38, 0.5);
}

.tab__pay {
  padding: 0 0 50px;
}

.alert {
  border-radius: 12px;
  background: #ececec;
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.08);
  padding: 18px 18px 11px 32px;
  margin-bottom: 6px;
}

.alert-social {
  padding: 0;
}

.alert-location {
  padding: 0;
  background: transparent;
  box-shadow: none;
  margin-top: 26px;
}

.alert__info {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(28, 28, 28, 0.5);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  margin: 0 0 4px -20px;
}

.alert-location .alert__info {
  margin: 0 0 4px 0;
}

.alert__info img {
  margin: 0 auto;
}

.alert__title {
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: -0.052px;
  margin: 10px 0;
}

.alert__subtitle {
  color: #2A2A2A;
  text-align: center;
  font-size: 16px;
  letter-spacing: -0.072px;
}

.alert__title span {
  color: #ff2e32;
}

.alert__issue {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.043px;
  color: #1c1c1c;
  margin-bottom: 16px;
}

.alert__issue span {
  color: #ff2e32;
}

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

.time__text {
  color: #1c1c1c;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.043px;
}

.time__content {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1c1c1c;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: -0.09px;
}

.time__content span {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: 1px solid var(--color-text-red);
  width: 39px;
  height: 39px;
  color: #1c1c1c;
  font-size: 19px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.051px;
}

.logo-secondary {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.features {
  margin: 40px 0;
}

.feature__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.feature__icon {
  width: 30px;
  flex-grow: 0;
}

.feature__icon img {
  width: 100%;
}

.feature__content-title {
  font-feature-settings: 'case' on;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.23px;
  margin-bottom: 2px;
}

.feature__content-text {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  opacity: 0.7;
}

.money-back {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  border-radius: 20px;
  background: #F9FFEC;
  margin-top: 40px;
}

.money-back:before {
  position: absolute;
  content: "";
  right: 5px;
  top: 0;
  width: 64px;
  height: 64px;
  background: url("../assets/img/guarantee.svg") no-repeat center/cover;
  opacity: 0.4;
  mix-blend-mode: luminosity;
  transform: rotate(-15deg);
}

.money-back__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.5px;
}

.money-back__description {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  opacity: 0.7;
  text-align: center;
}

.tariffs-block{
  border-radius: 25px;
  border: 1px solid  #ACBBA5;
  background: rgba(215, 234, 206, 0.30);
  backdrop-filter: blur(10px);
  padding: 20px 14px;
}

.tariffs-block__text{
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.5px;
  opacity: 0.8;
  text-align: center;
  padding: 0 10px;
}

.tariffs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 20px
}

.tariffs--compact {
  gap: 10px;
}

.tariffs__description{
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
  margin: 10px 0;
  text-align: left;
}

.tariffs__description a{
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.tariffs__description label{
  position: relative;
  display: block;
  padding-left: 35px;
}

.tariffs__description label:before{
  position: absolute;
  content: "";
  top: 0 ;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid #ACBBA5;
  background: rgba(215, 234, 206, 0.05);
  backdrop-filter: blur(10px);
}

.tariffs__description label:after{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  background: url("../assets/img/check.svg") no-repeat center;
  opacity: 0;
  transition: .3s;
}

.tariffs__description input:checked + label:after{
  opacity: 1;
}

.tariff__item {
  position: relative;
  width: 100%;
}

.tariff__item-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tariff__item-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
  padding: 8px 25px 8px 25px;
  transition: .3s;
}

.tariff__item-input:checked + .tariff__item-content {
  outline: 2px solid #94AC89;
}

.tariffs--compact .tariff__item-content {
  border-radius: 10px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
  padding: 10px 15px;
}

.tariff__item-content.tariff__item-popular {
  overflow: hidden;
  padding-top: 46px;
}

.tariff__item-popular .tariff__item-content {
  padding-top: 50px;
}

.tariff__item-popular-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 8px;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.5px;
  color: var(--color-text-white);
  background: linear-gradient(168deg, #b4adff 14.7%, #5f44f8 91.24%);
  text-transform: uppercase;
}

.best-offer {
  position: absolute;
  right: 12px;
  top: -15px;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
  color: var(--color-text-white);
  border-radius: 75.962px;
  background: #262626;
  box-shadow: 0 1.519px 3.038px 0 rgba(0, 0, 0, 0.20);
  padding: 3px 12px 3px 12px;
}

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

.tariffs--compact .tariff__period {
  gap: 0;
}

.tariff__period-data {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.5px;
  opacity: 0.8;
}

.tariff__period-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.tariff__period-price-old {
  color: var(--color-text-secondary);
  font-size: 15px;
  text-decoration-line: line-through;;
}

.tariff__day {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.tariff__period-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.5px;
  opacity: 0.8;
}

.tariff__cost-inner{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tariff__cost{
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.5px;
  opacity: 0.8;
}

.tariff__cost-info{
  font-size: 12px;
  line-height: 20px;
  letter-spacing: -0.5px;
  opacity: 0.8;
}

.tariff__day-cost {
  position: relative;
  width: 89px;
}

.tariff__day-cost-content {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-size: 44px;
  font-weight: 600;
  line-height: 42px;
  opacity: 0.7;
  transition: .3s;
}

.tariff__day-cost-content span {
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: -0.01px;
}

.tariff__day-cost-text {
  position: absolute;
  bottom: 8px;
  right: 3px;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: -0.01px;
  font-weight: 300;
}

.tab__download {
  position: relative;
  padding-top: 26px;
}

.tab__download-title {
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: 0.4px;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  margin: 45px 0 120px;
}

.tab__download-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn--end {
  position: fixed;
  width: calc(100% - 48px);
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
}

.pay-description {
  max-width: 335px;
  margin: 20px auto 0;
  opacity: 0.4;
}

.pay-description,
.pay-description span {
  color: var(--color-text-primary);
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.078px;
}

.tab__upsale {
  padding: 34px 0 40px;
}

.title span {
  background: linear-gradient(180deg, #5890ff 0%, #3b52ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.tariff__title-text {
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.073px;
  max-width: 151px;
}

.tariff__title .tariff__period-price {
  flex-direction: column;
  gap: 8px;
}

.text-uppercase {
  text-transform: uppercase;
}

.tariff__item-content--column {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.tariff__description {
  display: flex;
  gap: 12px;
}

.tariff__description-cover {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  box-shadow: 0px 2px 8px 0px rgba(66, 91, 113, 0.15);
  border-radius: 13px;
  overflow: hidden;
}

.tariff__description-cover img {
  width: 100%;
}

.tariff__description-text {
  font-size: 13px;
  line-height: 18px;
  letter-spacing: -0.01px;
  opacity: 0.7;
}

.link-skip {
  color: var(--color-text-secondary);
  text-align: center;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin: 26px 0 38px;
}

#apple-pay {
  border-radius: 100px;
}

.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); }
}

/*.app:has(.tab__download.show) .header,
.app:has(.tab__pay.show) .header {
  display: none;
}*/

.pay-banner {
  padding-top: 250px;
  background: url('../assets/img/pay-banner.png') center top / 100% no-repeat;
}

.payment-block {
  position: relative;
  min-height: 340px;
  display: none;
}

.form-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: .3s;
  border-radius: 10px;
  z-index: 2;
}

.form-loader.hide {
  z-index: -1;
  opacity: 0;
}

.form-group-row {
  display: flex;
  gap: 15px;
}

.form-group-row .form-group {
  width: calc(50% - 15px / 2);
}

.form-group label {
  display: block;
  color: var(--color-text-primary);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.5px;
  margin-bottom: 5px;
}

.form-group input,
.StripeElement {
  width: 100%;
  border-radius: 25px;
  border: 1px solid #ACBBA5;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  color: #262626;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.5px;
  padding: 16px;
}

.form-group input::placeholder{
  color: rgba(38, 38, 38, 0.5);
}

.StripeElement.StripeElement--invalid,
input.StripeElement--invalid {
  border: 1px solid #eb1c26;
}

.payment-message {
  margin-top: 5px;
}

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

/* Улучшенные стили спиннера */
.spinner {
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 8px);
  transform: scale(0.8);
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 12px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.spinner:not(.hidden) {
  opacity: 1;
  transform: scale(1);
}

/* Плавное исчезновение текста */
.button-text {
  transition: opacity 0.3s ease,
  margin-left 0.3s ease,
  width 0.3s ease;
  display: inline-block;
  white-space: nowrap;
}

.button-text.hidden {
  opacity: 0;
  width: 0;
  margin-left: -8px;
  overflow: hidden;
}

#payment-buttons {
  width: 100% !important;
}

#solid-payment-form-iframe {
  display: none;
}

.card-list {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.card-list__item {
  width: 60px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.60) 0%, rgba(255, 255, 255, 0.50) 100%);
  box-shadow: 0px 2px 8px 0px rgba(66, 91, 113, 0.15);
}


.location {
  width: calc(100% + 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #ddd;
  padding-top: 12px;
  margin: 12px 0 0 -18px;
}

.location__el {
  display: flex;
  align-items: center;
  gap: 5px;
}

.location__el-name {
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}

.location__el-data {
  text-align: left;
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  min-width: 150px;
  max-width: 150px;
  word-break: break-all;
  color: #ff2e32;
}

.location__info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  color: rgba(28, 28, 28, 0.5);
}

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

.social__el-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social__el-name {
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.3px;
}

.social__el-data {
  color: #000;
  font-size: 10px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.social__el {
  padding: 11px 9px;
}

.social__el-alert {
  color: #ff3b30;
  text-align: right;
  font-size: 13px;
  font-style: normal;
  font-weight: 510;
  line-height: 20.02px;
  letter-spacing: -0.04px;
}

.switcher {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.switcher input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switcher .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.switcher .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.switcher input:checked + .slider {
  background: linear-gradient(296deg, #b4adff 10.37%, #5f44f8 90.8%);
}

.switcher input:checked + .slider:before {
  transform: translateX(15px);
}

.alert-switcher {
  padding: 11px;
}

.switcher-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.switcher-icon {
  display: flex;
}

.switcher-text {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 175px;
  color: #2e2e2e;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.3px;
}

.security-alert {
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: -100%;
  left: 10px;
  width: calc(100% - 20px);
  border-radius: 20px;
  background: rgb(178 177 177 / 60%);
  backdrop-filter: blur(40px);
  padding: 14px 16px;
  transition: .8s;
  z-index: 20;
}

.security-alert.show {
  top: 20px;
}

.security-alert__content {
  display: flex;
  gap: 8px;
}

.security-alert__title {
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.3px;
}

.security-alert__description {
  font-size: 15px;
  line-height: normal;
  letter-spacing: -0.75px;
}

.security-alert__description span {
  color: #ff2e32;
}

.security-alert__label {
  color: #000;
  text-align: right;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: -0.24px;
  opacity: 0.5;
}

.title--alert {
  font-size: 24px;
  font-style: normal;
  font-weight: 590;
  line-height: 27px;
  letter-spacing: -0.062px;
  margin-top: 30px;
}

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

.alert-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
}

.alert-btn__description {
  color: rgba(46, 46, 46, 0.8);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.38px;
}

.alert-btn__content {
  width: 100%;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background: #ff2e32;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.5px;
  transition: .3s;
}

.alert-btn__content.active {
  background: #9f1f21;
}

.protection {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 30px 0;
}

.protection__step-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.protection__step-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.protection__step-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.protection__step-description{
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.43px;
}

.working-process__title{
  text-align: center;
  max-width: 264px;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.5px;
  margin: 0 auto 26px;
}

.main-cover{
  width: 183px;
  margin: 0 auto 20px;
}

.main-cover img{
  width: 100%;
}

.working-process__subtitle{
  text-align: center;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.5px;
}

.working-process__text{
  max-width: 220px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.5px;
  margin: 0 auto;
  text-align: center;
}


.slick-dots li {
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background: rgba(89, 89, 89, 0.40);
  transition: .3s;
  margin: 0 3px;
}

.slick-dots li.slick-active {
  width: 18px;
  background: #ACBBA5;
}

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

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

.section-slider{
  margin: 80px 0;
}

.form{
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px 0 0;
}

.form-group{
  flex-grow: 1;
  position: relative;
}

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

.form-text{
  max-width: 270px;
  margin: 0 auto;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px;
  text-align: center;
}