/* inter-regular - cyrillic_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/inter-v20-cyrillic_latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - cyrillic_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/inter-v20-cyrillic_latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - cyrillic_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("fonts/inter-v20-cyrillic_latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  color: var(--text-primary, #0D0D0D);
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin: 0;
}
body * {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 1439px) {
  .container {
    width: calc(100% - 80px);
    margin: 0 40px;
  }
}
@media (max-width: 1023px) {
  .container {
    width: calc(100% - 64px);
    margin: 0 32px;
  }
}
@media (max-width: 767px) {
  .container {
    width: calc(100% - 40px);
    margin: 0 20px;
  }
}

.title,
.section_6_title,
.section_7_title {
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 54px */
  letter-spacing: -1.35px;
  text-align: center;
}
.title span,
.section_6_title span,
.section_7_title span {
  background: linear-gradient(90deg, #0A7CFF 32.69%, #1DD6C1 54.33%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1023px) {
  .title,
  .section_6_title,
  .section_7_title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .title,
  .section_6_title,
  .section_7_title {
    font-size: 28px;
  }
}

h1.title {
  font-size: 54px;
  text-align: left;
}
@media (max-width: 767px) {
  h1.title {
    font-size: 36px;
  }
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

p, h1, h2, h3, h4, h5, h6, figure {
  margin: 0;
}

img {
  display: block;
}

button {
  border: none;
  cursor: pointer;
  background: none;
  padding: 0;
  margin: 0;
}

.btn,
.section_7_btn {
  display: flex;
  height: 56px;
  padding: 16px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--text-static-white, #FFFFFF);
  text-align: center;
  font-size: 18px;
  border-radius: 99px;
  background: var(--button-primary, #0A7CFF);
}

.hidden {
  display: none;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
}

.hero {
  display: flex;
  gap: 80px;
}
.hero__container {
  width: 100%;
}
.hero__title {
  max-width: 610px;
  margin-bottom: 24px;
}
.hero__desc {
  max-width: 420px;
  margin-bottom: 40px;
  font-size: 18px;
}
.hero__container--no-file .hero__desc {
    max-width: 100%;
}
.hero__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding: 24px;
  border-radius: 40px;
  border: 1px solid var(--border-secondary, rgba(13, 13, 13, 0.08));
  background: #FFFFFF;
}
.hero__form-container {
  display: flex;
  gap: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .hero__form-container {
    flex-direction: column;
  }
}
.hero__form-text {
  display: flex;
  height: unset;
  max-height: unset;
  flex-grow: 1;
  padding: 20px;
  border-radius: 20px;
  border: 1.5px solid var(--border-secondary, rgba(13, 13, 13, 0.08));
  background: var(--background-primary, #FFFFFF);
  box-shadow: 0 5px 15px 0 rgba(174, 188, 229, 0.16);
  resize: none;
}
.hero__form-text::placeholder {
  color: var(--text-secondary, rgba(13, 13, 13, 0.58));
}
.hero__upload-area {
  display: flex;
  justify-content: center;
  width: 292px;
  padding: 20px;
  text-wrap: balance;
  border-radius: 20px;
  border: 1.5px dashed var(--border-accent, #0A7CFF);
  background: var(--background-primary, #FFFFFF);
  cursor: pointer;
  transition: color 0.3s ease;
}
.hero__upload-area.dragover {
  color: #0A7CFF;
}
@media (max-width: 767px) {
  .hero__upload-area {
    width: 100%;
  }
}
.hero__message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.hero__message p {
  text-align: center;
}
.hero__input {
  display: none;
}
.hero__progress-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
}
.hero__progress-wrapper.hidden {
  display: none;
}
.hero__progress-wrapper svg {
  transform: rotate(-90deg);
  width: 100px;
  height: 100px;
}
.hero__progress-wrapper svg circle {
  fill: none;
  stroke: #007BFF;
  stroke-width: 6;
  transition: stroke-dashoffset 0.2s linear;
}
.hero__progress-wrapper span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 16px;
  color: #333333;
}
.hero__preview {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__preview .hero__file-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  background: #FFFFFF;
}
.hero__preview .hero__file-item .hero__file-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.hero__preview .hero__file-item .hero__file-actions {
  position: absolute;
  top: 6px;
  right: 6px;
}
.hero__preview .hero__file-item .hero__file-actions .hero__btn-remove {
  background: rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 18px;
  line-height: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.hero__preview .hero__file-item .hero__file-actions .hero__btn-remove:hover {
  background: rgba(0, 0, 0, 0.8);
}
.hero__form {
    position: relative;
}
.hero__container--no-file .btn {
    position: absolute;
    width: 44px;
    height: 44px;
    display: flex;
    padding: 12px;
    right: 44px;
    bottom: 44px;
}
.hero__container--no-file .hero__form-text {
    min-height: 162px;
}
.hero__media {
  width: 456px;
  aspect-ratio: 456/511;
  flex-shrink: 0;
  border-radius: 32px;
  overflow: hidden;
}
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1439px) {
  .hero__media {
    display: none;
  }
}

.examples {
  display: flex;
  padding: 64px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  border-radius: 40px;
  background: rgba(13, 13, 13, 0.03);
}
@media (max-width: 1023px) {
  .examples {
    width: calc(100% - 32px);
    margin: 0 0 0 32px;
    padding: 36px 0 36px 32px;
  }
}
.examples__container {
  width: 100%;
  visibility: unset;
}

.examples__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1023px) {
  .examples__list {
    grid-template-columns: repeat(3, 277px);
    gap: 24px;
  }
}
.examples__card {
  display: flex;
  flex-direction: column;
}
.examples__card-image {
  width: 100%;
  margin-bottom: 20px;
  aspect-ratio: 1/1;
  border-radius: 32px;
  overflow: hidden;
}
.examples__card-image img,
.examples__card-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.examples__card-title {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
}

.instruction {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1023px) {
  .instruction {
    width: calc(100% - 32px);
    margin: 0 0 0 32px;
  }
}
@media (max-width: 767px) {
  .instruction {
    width: calc(100% - 40px);
    margin: 0 20px;
  }
}
.instruction__title {
  margin-bottom: 16px;
}
.instruction__subtitle {
  font-size: 18px;
  margin-bottom: 48px;
}
.instruction__container {
  width: 100%;
  overflow-x: auto;
}
.instruction__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1023px) {
  .instruction__list {
    grid-template-columns: repeat(3, 384px);
  }
}
@media (max-width: 767px) {
  .instruction__list {
    grid-template-columns: 100%;
  }
}
.instruction__card {
  display: flex;
  padding: 28px 24px;
  flex-direction: column;
  border-radius: 40px;
  background: rgba(13, 13, 13, 0.03);
}
@media (max-width: 1439px) {
  .instruction__card {
    padding: var(--4xl, ) var(--3xl, 24px);
  }
}
.instruction__card-title {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
}
.instruction__card-desc {
  margin-bottom: 32px;
}
.instruction__card-image {
  width: 100%;
}
.instruction__card-image img {
  width: 100%;
  height: auto;
}

.reviews__title {
  margin-bottom: 48px;
}
.reviews__slider {
  margin-bottom: 32px;
}
.reviews__slider--mobile {
  display: none;
}
@media (max-width: 767px) {
  .reviews__slider--mobile {
    display: block;
  }
}
@media (max-width: 767px) {
  .reviews__slider--top, .reviews__slider--bottom {
    display: none;
  }
}
.reviews__slide {
  display: flex;
  padding: 8px 28px 8px 8px;
  align-items: center;
  gap: 25px;
  border-radius: 32px;
  background: rgba(13, 13, 13, 0.03);
}
@media (max-width: 767px) {
  .reviews__slide {
    flex-direction: column;
    padding: 16px;
    align-items: flex-start;
  }
}
.reviews .splide__slide {
  width: 580px !important;
}
@media (max-width: 767px) {
  .reviews .splide__slide {
    width: 100% !important;
  }
}
.reviews__photo {
  width: 168px;
  height: 168px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 26px;
  background: lightgray 50%/cover no-repeat;
  overflow: hidden;
}
.reviews__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .reviews__photo {
    width: 100%;
    height: unset;
  }
}
.reviews__content {
  display: flex;
  flex-direction: column;
}
.reviews__text {
  margin-bottom: 20px;
}
.reviews__name {
  font-weight: 500;
}
.reviews__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.reviews__rating-stars {
    display: flex;
    align-items: center;
}
.reviews__about-us {
  display: flex;
  padding: 24px 28px;
  justify-content: center;
  align-items: center;
  gap: 32px;
  align-self: stretch;
  border-radius: 32px;
  background: rgba(13, 13, 13, 0.03);
}
@media (max-width: 767px) {
    .reviews__about-us {
        flex-direction: column;
    }
}
.reviews__about-us-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
}
.reviews__about-us-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 767px) {
  .reviews__about-us-list {
    gap: 18px;
    justify-content: center;
  }
}
.reviews__about-us-item {
  height: 34px;
}
.reviews__about-us-item img {
  width: auto;
  height: 100%;
}

.content {
  display: block;
}
.content h2,
.content h3,
.content h4,
.content h5 {
  font-weight: 600;
  line-height: 110%;
  margin-top: 2em;
  margin-bottom: 1em;
}
.content h2 {
  font-size: 50px;
}
.content h3 {
  font-size: 28px;
}
.content h4 {
  font-size: 20px;
}
.content p {
  margin-bottom: 16px;
}
.content ol, .content ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: unset;
  margin: 24px 0;
  padding-left: 1em;
}
.content ol li::marker, .content ul li::marker {
  color: #0A7CFF;
}
.content ol {
  list-style-type: decimal;
}
.content .has-cyan-bluish-gray-color {
  color: var(--text-secondary, rgba(13, 13, 13, 0.58));
}
.content table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Arial", sans-serif;
  margin: 20px 0;
  text-align: left;
}
.content thead {
  border: none;
}
.content thead tr {
  border-bottom: 2px solid rgba(13, 13, 13, 0.12);
}
.content thead th {
  padding: 10px;
  font-weight: bold;
  border: none;
}
.content tbody tr {
  border-bottom: 1px solid rgba(13, 13, 13, 0.12);
}
.content tbody tr:last-child {
  border-bottom: none;
}
.content tbody td {
  padding: 10px;
  border: none;
}
.content .has-fixed-layout {
  margin: 0;
}
.content .wp-block-table {
  margin: 16px 0;
  overflow-x: auto;
}
.content .wp-block-table table {
  min-width: 800px;
}
.content .wp-block-image img,
.content img {
  max-width: 100%;
  height: auto;
}

.all-ais__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .all-ais__header {
    flex-direction: column;
    justify-content: flex-start;
    gap: 48px;
  }
}
.all-ais__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.all-ais__item {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 8px;
  border-radius: 24px;
  border: 1px solid transparent;
  background: rgba(13, 13, 13, 0.03);
  transition: all 0.3s ease;
}
.all-ais__item-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.all-ais__item-title {
  font-weight: 500;
}
.all-ais__item-desc {
  color: rgba(13, 13, 13, 0.58);
  font-size: 14px;
}
.all-ais__item:hover {
  border: 1px solid rgba(13, 13, 13, 0.12);
  background: rgba(13, 13, 13, 0.06);
}

.try {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 597px;
  padding-top: 310px;
  border-radius: 40px;
  border: 1px solid var(--border-tertiary, rgba(13, 13, 13, 0.06));
  background: #FFFFFF url("images/try-bg.png") no-repeat top center;
  box-shadow: 0 15px 45px 0 rgba(174, 188, 229, 0.25);
}
.try__title {
  margin-bottom: 16px;
  text-align: center;
}
.try__desc {
  max-width: 400px;
  margin-bottom: 32px;
  text-align: center;
}

.section_6_card--primary {
  border-radius: 40px;
  border: 2px solid var(--, #0A7CFF);
  background: var(--background-accent, #0A7CFF);
  box-shadow: 0 4px 24px 0 rgba(13, 13, 13, 0.08);
  color: var(--text-primary-inverse, #FFFFFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

.section_6_card-icon {
  color: #FFFFFF;
}

.section_6,
.section_7_container,
.section_6_header,
.section_7_head,
.section_7_card-head,
.section_9_header,
.section_9 .section_9_container {
  padding: 0;
}

.section_7_plan-icon,
.section_7_card-desc,
.section_7_bg {
  display: none;
}

.section_7_price {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  order: 0;
}

.section_7_price-secondary {
  order: -1;
}

.section_7_price-old {
  font-size: 28px;
  color: rgba(13, 13, 13, 0.2);
}

.section_7_card:first-child .section_7_btn {
  background: rgba(13, 13, 13, 0.06);
  color: var(--text-primary, #0D0D0D);
}

.section_7_card-popular {
  border: 2px solid var(--icon-accent, #0A7CFF);
  box-shadow: 0 0 10px 0 rgba(13, 13, 13, 0.06);
}

.section_7_card {
  position: relative;
}

.section_7_badge {
  position: absolute;
  right: 24px;
  top: -16px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px 6px 12px;
  overflow: hidden;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 18.2px */
  border-radius: 1000px;
  background: linear-gradient(180deg, #FFE463 0%, #FFD304 100%);
  border: none;
}
.section_7_badge:after {
  content: "";
  width: 11px;
  height: 12px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='12' viewBox='0 0 11 12' fill='none'%3E%3Cpath d='M6.48533 11.7677C8.30883 11.4026 10.6667 10.0906 10.6667 6.69856C10.6667 3.61214 8.40742 1.55648 6.78283 0.61206C6.42175 0.40206 6 0.677976 6 1.09506V2.16139C6 3.00256 5.6465 4.53789 4.66417 5.17664C4.1625 5.50273 3.62 5.01448 3.55933 4.41948L3.50917 3.93064C3.45083 3.36248 2.87217 3.01773 2.41833 3.36423C1.60225 3.98548 0.75 5.07631 0.75 6.69798C0.75 10.8461 3.83525 11.8838 5.37758 11.8838C5.46781 11.8838 5.56192 11.8809 5.65992 11.8751C4.89808 11.8103 3.66667 11.3378 3.66667 9.80948C3.66667 8.61364 4.53875 7.80573 5.20142 7.41198C5.37992 7.30698 5.58817 7.44406 5.58817 7.65114V7.99531C5.58817 8.25781 5.69025 8.66906 5.93233 8.95023C6.2065 9.26873 6.60842 8.93506 6.6405 8.51623C6.651 8.38439 6.784 8.30039 6.89833 8.36689C7.27225 8.58564 7.75 9.05231 7.75 9.80948C7.75 11.0041 7.09142 11.5536 6.48533 11.7677Z' fill='%230D0D0D'/%3E%3C/svg%3E");
}

.section_7_plan-name {
  display: flex;
  align-items: center;
  gap: 9px;
}

.container-breadcrumbs {
  margin-bottom: 64px;
}
@media (max-width: 1023px) {
  .container-breadcrumbs {
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .container-breadcrumbs {
    margin-bottom: 24px;
  }
}

/*# sourceMappingURL=main.css.map */
