@charset "UTF-8";
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.title {
  margin-top: 10px;
  font-size: 1.75em;
  font-weight: 600;
}
.title-desc {
  margin-top: 10px;
  color: #848282;
}

.start-using {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.start-using__content {
  display: flex;
  align-items: center;
  gap: 60px;
}
.start-using__content:nth-child(even) {
  flex-direction: row-reverse;
}
.start-using__preview {
  display: flex;
  width: 100%;
  flex: 1;
  position: relative;
}
.start-using__slider-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
}
.start-using__slider-img img {
  position: absolute;
  width: 100%;
  height: 145%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}
.start-using__slider-overlay {
  height: 100%;
  width: 50%;
  overflow: hidden;
}
.start-using__slider-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.start-using__slider-handle {
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #fff;
  cursor: ew-resize;
}
.start-using__slider-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.start-using__background {
  height: 100%;
  width: 100%;
  border: #2d2d2d 2px solid;
  border-radius: 12px;
}
.start-using__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.start-using__try-btn {
  margin: 20px auto 0 auto;
  padding: 10px 40px;
  text-align: center;
  border: #2d2d2d 2px solid;
  font-size: 1.25em;
  font-weight: bold;
  background-color: #E270BB;
  color: #FFF;
  border-radius: 12px;
}
.start-using__try-btn_outline {
  border: #E270BB 2px solid;
  transition: background-color 0.3s ease-out;
  background-color: inherit;
}
.start-using__try-btn_outline:hover {
  background-color: #E270BB;
}
.start-using__title {
  margin-top: 10px;
  font-weight: 600;
  font-size: 1.75em;
}
.start-using__desc {
  margin-top: 5px;
  font-size: 1.15em;
  color: #848282;
}

.examples {
  margin-top: 20px;
}
.examples__title {
  font-weight: 600;
  font-size: 1.25em;
}
.examples__tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.examples__tag {
  padding: 5px 15px;
  border: #E270BB 2px solid;
  border-radius: 12px;
}
.examples__tag_active {
  background-color: #E270BB;
}
.examples__content {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  height: 200px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}
.examples__img {
  height: 100%;
  background-color: #252525;
  border-radius: 12px;
}
.examples__video {
  height: 100%;
  border-radius: 12px;
}

.guide {
  margin-top: 20px;
}
.guide__item {
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 1px #2d2d2d solid;
  background-color: #252525;
  border-radius: 12px;
  text-align: center;
}
.guide__img {
  border-radius: 12px;
}
.guide__title {
  margin-top: 10px;
  font-weight: 600;
  font-size: 1.25em;
  color: #E270BB;
}
.guide__desc {
  margin-top: 5px;
  color: #848282;
}

.faq {
  margin-top: 60px;
}
.faq__title {
  font-size: 1.625em;
  font-weight: 600;
}
.faq__items {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  border: 1px #2d2d2d solid;
  border-radius: 12px;
  background-color: #252525;
}
.faq__item-title {
  cursor: pointer;
}
.faq__item-title:after {
  content: "▼";
  float: right;
}
.faq__item-title_active:after {
  content: "▲";
  float: right;
}
.faq__item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  margin-top: 5px;
  color: #848282;
}
.faq__item-content_active {
  max-height: 200px;
}

.reviews {
  margin-top: 30px;
}
.reviews__title {
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  display: block;
  margin-bottom: 20px;
}
.reviews__slider {
  background-color: #252525;
  border: 1px solid #2d2d2d;
  border-radius: 12px;
  padding: 20px;
  position: relative;
}
.reviews__slide {
  display: none;
}
.reviews__slide.active {
  display: block;
}
.reviews__user {
  display: flex;
  margin-bottom: 10px;
}
.reviews__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.reviews__user-info {
  margin-left: 10px;
}
.reviews__user-name {
  font-weight: 500;
  color: #848282;
}
.reviews__user-role {
  font-weight: 500;
  color: #E270BB;
}
.reviews__stars {
  margin-left: auto;
  display: flex;
}
.reviews__star {
  color: #E270BB;
  font-size: 2em;
  margin-left: 2px;
}
.reviews__text {
  font-weight: 500;
  color: #848282;
  line-height: 1.5;
}
.reviews__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.reviews__dot {
  width: 8px;
  height: 8px;
  background-color: #848282;
  border-radius: 50%;
  margin: 0 5px;
}
.reviews__dot_active {
  width: 12px;
  height: 12px;
  background-color: #FFF;
}

.statistic {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #252525;
  border-radius: 12px;
  margin-top: 30px;
  padding: 20px;
  gap: 20px;
}
.statistic__title {
  font-size: 1.75em;
  text-align: center;
  color: #fff;
  font-weight: bold;
}
.statistic__data {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.statistic__value {
  text-align: center;
  font-size: 1.75em;
  font-weight: bold;
  color: #E270BB;
  margin-bottom: 5px;
}
.statistic__description {
  text-align: center;
  color: #848282;
}

.telegram-bot {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  padding: 20px;
  border-radius: 12px;
  background-color: #252525;
}
.telegram-bot__title {
  display: flex;
  align-items: center;
  gap: 25px;
}
.telegram-bot__icon {
  width: 48px;
  height: 48px;
}
.telegram-bot__name {
  color: #fff;
  font-weight: bold;
  font-size: 1.25em;
}
.telegram-bot__description {
  margin-top: 20px;
  color: #fff;
  font-size: 1.15em;
}
.telegram-bot__button {
  margin: 20px 0 0 auto;
  background-color: #E270BB;
  color: #FFFFFF;
  border: none;
  padding: 10px 35px;
  font-weight: bold;
  border-radius: 12px;
  box-shadow: 0 8px 6px rgba(226, 112, 112, 0.4);
}

#demo-form-block,
#demo-waiting-block,
#demo-result-block {
  display: flex;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  color: #FFF;
  width: 100%;
  max-width: 480px;
  margin: 40px auto 0 auto;
}
#demo-form-block a,
#demo-waiting-block a,
#demo-result-block a {
  display: block;
  margin-top: 15px;
}

#demo-form-block {
  background: #252525;
  border-radius: 24px;
  padding: 24px;
}

.drop-zone {
  position: relative;
  background: #1a1a1a;
  border: 2px dashed #2d2d2d;
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.drop-zone input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.drop-zone:hover, .drop-zone.drag-over {
  border-color: #E270BB;
}

.drop-icon {
  width: 52px;
  height: 52px;
  background: #252525;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.drop-icon svg {
  width: 24px;
  height: 24px;
  stroke: #E270BB;
}

.drop-label {
  color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.drop-hint {
  color: #848282;
  font-size: 12px;
}
.drop-hint b {
  color: #E270BB;
  font-weight: 600;
}

.file-preview {
  display: none;
  align-items: center;
  gap: 12px;
  background: #1a1a1a;
  border: 1px solid #2d2d2d;
  border-radius: 12px;
  padding: 10px 14px;
  margin-top: 12px;
}
.file-preview.visible {
  display: flex;
}

.file-thumb {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  background: #252525;
  flex-shrink: 0;
}

.file-info {
  flex: 1;
  min-width: 0;
}

.file-name {
  color: #FFF;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-size {
  color: #848282;
  font-size: 11px;
  margin-top: 2px;
}

.file-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #848282;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}
.file-remove svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}
.file-remove:hover {
  color: #E270BB;
}

#demo-error-msg {
  font-size: 12px;
  color: #E270BB;
  min-height: 16px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
#demo-error-msg:not(:empty)::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #E270BB;
  border-radius: 50%;
  flex-shrink: 0;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  margin-top: 16px;
  background: #E270BB;
  border: none;
  border-radius: 12px;
  color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s;
  letter-spacing: 0.02em;
}
.submit-btn:hover {
  background: rgb(219.1209302326, 78.0790697674, 170.8697674419);
}
.submit-btn:active {
  transform: scale(0.99);
}
.submit-btn:disabled {
  background: rgb(93.7, 59.5, 82);
  cursor: not-allowed;
}

#demo-waiting-block {
  background: #252525;
  border-radius: 24px;
  padding: 40px 24px;
}

.waiting-inner {
  text-align: center;
}

.waiting-spinner {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}
.waiting-spinner svg {
  width: 100%;
  height: 100%;
  animation: spin 1.4s linear infinite;
}
.waiting-spinner svg circle {
  stroke: #E270BB;
  stroke-dasharray: 80, 150;
  stroke-dashoffset: 0;
  animation: spinner-dash 1.4s ease-in-out infinite;
}

#demo-waiting-block h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 8px;
}

#demo-waiting-block p {
  font-size: 13px;
  color: #848282;
  margin-bottom: 20px;
  line-height: 1.5;
}

#countdown-timer {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #E270BB;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.spinner-label {
  font-size: 12px;
  color: #848282;
}

#demo-result-block {
  background: #252525;
  border-radius: 24px;
  padding: 24px;
}
#demo-result-block h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 16px;
  text-align: center;
}

#demo-video-player {
  width: 100%;
  max-height: 350px;
  border-radius: 12px;
  background: #1a1a1a;
  display: block;
}
#demo-video-player source {
  max-height: 350px;
}

.result-cta {
  margin-top: 16px;
  font-size: 1.125em;
  font-weight: 600;
  color: #848282;
  text-align: center;
  line-height: 1.5;
}

.languages {
  margin: 30px auto 0 auto;
}
.languages__title {
  font-size: 1.5em;
  margin-bottom: 20px;
}
.languages__text {
  margin: 20px 15px 0 15px;
  text-align: center;
  color: #848282;
}
.languages__link {
  color: #2271F9;
}
.languages__link:hover {
  border-bottom: #2271F9 2px solid;
}
.languages__items {
  display: flex;
  flex-direction: column;
}
.languages__btn {
  margin: 20px auto 0 auto;
}
.languages__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: #252525 1px solid;
}
.languages__item-content {
  display: flex;
  gap: 20px;
  padding-top: 10px;
  align-items: center;
}
.languages__item-icon {
  max-width: 48px;
}
.languages__item-status {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1.375em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.languages__item-radio {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.languages__item-radio-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 50%;
}
.languages__item-radio-checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.languages__item-radio ~ .languages__item-radio-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #252525;
  border-radius: 50%;
}
.languages__item-radio:checked ~ .languages__item-radio-checkmark {
  background-color: #E270BB;
}
.languages__item-radio:checked ~ .languages__item-radio-checkmark:after {
  display: block;
}
.languages-popup {
  width: 100%;
}

@media (max-width: 768px) {
  .start-using__content {
    gap: 10px;
    flex-direction: column;
  }
  .start-using__content:nth-child(even) {
    flex-direction: column;
  }
  .start-using__try-btn {
    margin: 20px 0 0 0;
  }
}

/*# sourceMappingURL=index.css.6596b58c9df7.map */
