@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  height: 100%;
}

* {
  padding: 0;
  margin: 0;
}

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

a:focus,
a:active {
  outline: none;
}

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

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

address {
  font-style: normal;
}

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

button {
  background-color: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
}

a {
  display: block;
}

body {
  font: 400 17px/160% "Inter", sans-serif;
  color: #6d6d6d;
}

.container {
  width: 1360px;
  margin: 0 auto;
}

.section-text {
  text-align: center;
}

/* === CSS анимации для Hero секции === */

/* Общие стили для анимируемых элементов */
.hero__bg svg,
.hero h1,
.hero h1 span,
.left .dec-left1,
.left .dec-left2,
.left .dec-left3,
.right .dec-right1,
.right .dec-right2,
.right .dec-right3,
.trait,
.hero__descr,
.hero__create,
.slider,
.hero__settings,
.hero .hero__generate,
.header,
.hero__actions,
.hero__users,
.hero__partners,
.hero .policy {
  opacity: 0;
  animation-fill-mode: forwards;
}

/* Фоновая картинка */
.hero__bg svg {
  animation: heroBgAnimation 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s
    forwards;
}

@keyframes heroBgAnimation {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Заголовок */
.hero h1 {
  animation: heroTitleAnimation 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.6s
    forwards;
}

@keyframes heroTitleAnimation {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Спан в заголовке (анимация width) */
.hero h1 span {
  opacity: 1; /* Уже виден в тексте */
  max-width: 100%;
  animation: heroSpanAnimation 1.2s cubic-bezier(0.08, 0.82, 0.17, 1) 0.6s
    forwards;
}

@keyframes heroSpanAnimation {
  from {
    width: 0;
  }
  to {
    width: 382px;
  }
}

/* Декорации слева */
.left .dec-left1 {
  animation: decLeftAnimation 1.2s cubic-bezier(0.08, 0.82, 0.17, 1) 0.6s
    forwards;
}

.left .dec-left2 {
  animation: decLeft2Animation 1.2s cubic-bezier(0.08, 0.82, 0.17, 1) 0.75s
    forwards;
}

.left .dec-left3 {
  animation: decLeftAnimation 1.2s cubic-bezier(0.08, 0.82, 0.17, 1) 0.9s
    forwards;
}

@keyframes decLeftAnimation {
  from {
    opacity: 0;
    transform: translateX(-120vw);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes decLeft2Animation {
  from {
    opacity: 0;
    transform: translateX(-120vw) rotate(10deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(10deg);
  }
}

/* Декорации справа */
.right .dec-right1 {
  animation: decRightAnimation 1.2s cubic-bezier(0.08, 0.82, 0.17, 1) 0.6s
    forwards;
}

.right .dec-right2 {
  animation: decRight2Animation 1.2s cubic-bezier(0.08, 0.82, 0.17, 1) 0.75s
    forwards;
}

.right .dec-right3 {
  animation: decRightAnimation 1.2s cubic-bezier(0.08, 0.82, 0.17, 1) 0.9s
    forwards;
}

@keyframes decRightAnimation {
  from {
    opacity: 0;
    transform: translateX(120vw);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes decRight2Animation {
  from {
    opacity: 0;
    transform: translateX(120vw) rotate(-8deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(-8deg);
  }
}

/* Остальной контент с каскадом */
.trait {
  animation: contentFadeUp 1s cubic-bezier(0.19, 1, 0.22, 1) 0.6s forwards;
}

.hero__descr {
  animation: contentFadeUp 1s cubic-bezier(0.19, 1, 0.22, 1) 0.7s forwards;
}

.hero__create {
  animation: contentFadeUp 1s cubic-bezier(0.19, 1, 0.22, 1) 0.8s forwards;
}

.hero .policy {
	 animation: contentFadeUp 1s cubic-bezier(0.19, 1, 0.22, 1) 0.8s forwards;
}

.slider {
  animation: contentFadeUp 1s cubic-bezier(0.19, 1, 0.22, 1) 0.8s forwards;
}

.hero__settings {
  animation: contentFadeUp 1s cubic-bezier(0.19, 1, 0.22, 1) 0.9s forwards;
}

.hero .hero__generate {
  animation: contentFadeUp 1s cubic-bezier(0.19, 1, 0.22, 1) 1s forwards;
}

@keyframes contentFadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Хедер */
.header {
  animation: headerAnimation 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.6s
    forwards;
}

@keyframes headerAnimation {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Финальные элементы */
.hero__actions {
  animation: finalFadeUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.6s forwards;
}

.hero__users {
  animation: finalFadeUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.7s forwards;
}

.hero__partners {
  animation: finalFadeUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.8s forwards;
}

@keyframes finalFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  font: 600 48px/120% "Inter", sans-serif;
  letter-spacing: -0.04em;
  text-align: center;
  background: linear-gradient(153deg, #020218 0%, #1650eb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}

.faq__category-title {
  font: 600 45px/120% "Inter", sans-serif;
  letter-spacing: -0.04em;
  text-align: center;
  background: linear-gradient(153deg, #020218 0%, #1650eb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 24px 0;
}

.thumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.thumbs button {
  padding: 11px 16px;
  border: 1px solid #dde2e6;
  border-radius: 12px;
  transition: all 0.3s;
}
.thumbs button.active {
  border-color: #1650eb;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.header {
  padding-top: 20px;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 7;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 952px;
  outline: 5px solid rgb(255 255 255 / 49%);
  border-radius: 20px;
  padding: 10px 15px;
  box-shadow: 0 5px 50px 0 rgba(22, 80, 235, 0.1);
  background: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  gap: 16px;
}
.header .logo {
  width: 165px;
  justify-content: center;
  display: flex;
  align-items: center;
}
.header .logo img {
  width: 100%;
  height: 100%;
  transition: 0.2s;
}
.header .logo img:hover {
  opacity: 0.7;
}
.header .nav {
  display: flex;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.header .nav a {
  color: #000000;
  position: relative;
  transition: color 0.3s ease;
  padding-bottom: 2px;
}

.header .nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #3362dd;
  transition: width 0.3s ease;
}

.header .nav a:hover {
  color: #020218;
}

.header .nav a:hover::after {
  width: 100%;
}

.header__sign {
  font: 600 18px/136% "Inter", sans-serif;
  letter-spacing: -0.02em;
  color: #fff;
  background: linear-gradient(90deg, #1650eb 0%, #4d84ff 100%);
  border-radius: 12px;
  padding: 8px 24px;
  color: #fff;
  border: 2px solid #1650eb;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.header__sign::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  opacity: 0;
  background: linear-gradient(
    240deg,
    rgba(22, 80, 235, 0.1) 0%,
    rgb(77, 132, 255) 100%
  );
}
.header__sign svg,
.header__sign span {
  z-index: 1;
}
.header__sign span {
  position: relative;
}
.header__sign:hover::after {
  left: 0;
  opacity: 1;
}

.hero__generate button {
  transition: all 0.3s;
  position: relative;
}
.hero__generate button::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  opacity: 0;
  background: linear-gradient(
    240deg,
    rgba(22, 80, 235, 0.1) 0%,
    rgb(77, 132, 255) 100%
  );
}
.hero__generate button svg,
.hero__generate button span {
  z-index: 1;
}
.hero__generate button span {
  position: relative;
}
.hero__generate button:hover::after {
  left: 0;
  opacity: 1;
}

.hero__generate button:hover {
  transition: all 0.3s;
}

.hero__slider {
  width: 100%;
  overflow: hidden;
}

.slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 10px 0 0;
}

.slider button {
  margin-top: 30px;
}

.slider .swiper-slide {
  position: relative;
  cursor: pointer;
}

.slider .swiper-slide.active .img {
  border: 2px solid #427ff1;
}

.slider .swiper-slide.active .prem {
  opacity: 0;
  visibility: hidden;
}

.slider .swiper-slide.active .label {
  opacity: 1;
  visibility: visible;
}

.slider .swiper-slide .label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25px;
  border-radius: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.05);
  background: linear-gradient(90deg, #1852ec 0%, #4b82fe 100%);
  padding: 2px 9px;
  line-height: 20px;
  color: #fff;
  font-size: 13px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.slider .swiper-slide .label img {
  width: 10px;
  height: 10px;
}

.swiper-button-disabled {
  opacity: 0.5;
}

.slider .swiper-slide .prem {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 26px;
  border-radius: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  box-shadow: 0 0 4px 0 rgba(52, 108, 246, 0.2);
  background: linear-gradient(90deg, #ff6491 0%, #2f68f4 100%);
  padding: 4px;
  color: #ffffff;
  font-size: 13px;
  line-height: 20px;
  white-space: nowrap;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s;
  padding: 2px 9px;
}

.slider .swiper-slide .prem img {
  width: 13px;
}

.slider .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: 10px;
  margin: 0;
  transition: 0.2s;
}

.slider .img:hover {
  border: 2px solid #91afff;
}

.slider button img {
  transition: 0.2s;
}

.slider button img:hover {
  opacity: 0.7;
}

.hero__slider-name {
  text-align: center;
  font-size: 14px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000;
  margin-bottom: 5px;
}

.footer {
  overflow: hidden;
  position: relative;
  padding-bottom: 75px;
}
.footer__text {
  font: 500 358px/125% "Inter", sans-serif;
  text-align: center;
  opacity: 0.15;
  width: 100%;
  position: relative;
  padding-bottom: 170px;
  background: linear-gradient(270deg, #1852ec, #9171ff, #1852ec);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 400% 100%;
}
.footer__text::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shine-text 3s linear infinite;
  pointer-events: none;
}
.footer__bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}
.footer__bg .blur {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
}
.footer__bg img {
  width: 100%;
  height: auto;
}
.footer__contacts {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 120px;
}
.footer__contacts-subtitle {
  font: 600 18px/120% "Inter", sans-serif;
  letter-spacing: -0.02em;
  text-align: center;
  background: linear-gradient(90deg, #1650eb 0%, #4d84ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.footer__contacts-title {
  font: 600 48px/120% "Inter", sans-serif;
  letter-spacing: -0.04em;
  text-align: center;
  background: linear-gradient(153deg, #020218 0%, #1650eb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.footer__contacts-text {
  margin-bottom: 40px;
}
.footer .hero__generate {
  width: 217px;
  margin-bottom: 0;
}
.footer__wrapper {
  display: flex;
  gap: 40px;
  position: relative;
}
.footer__nav {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__nav a {
  color: #6d6d6d;
}
.footer__nav-title {
  font: 600 18px/136% "Inter", sans-serif;
  letter-spacing: -0.02em;
  color: #020218;
}
.footer__info {
  flex: 1;
  padding: 0 4rem;
  border-left: 1px solid #dde2e6;
  border-right: 1px solid #dde2e6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer__info p {
  font: 400 16px/136% "Inter", sans-serif;
  letter-spacing: -0.02em;
  text-align: center;
  color: #6d6d6d;
  margin-bottom: 40px;
}
.footer .logo {
  margin-bottom: 20px;
}
.footer__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__wrap a {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 500 18px/136% "Inter", sans-serif;
  letter-spacing: -0.02em;
  color: #020218;
}
.footer__socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.footer .icon1 {
  position: absolute;
  bottom: 28.54vw;
  left: 7.08vw;
}
.footer .icon2 {
  position: absolute;
  bottom: 41.2vw;
  left: 21.25vw;
}
.footer .icon3 {
  position: absolute;
  bottom: 43.91vw;
  left: 50%;
  transform: translateX(-50%);
}
.footer .icon4 {
  position: absolute;
  bottom: 39.27vw;
  right: 19.64vw;
}
.footer .icon5 {
  position: absolute;
  bottom: 26.25vw;
  right: 7.55vw;
}

@keyframes slideGradient {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 0%;
  }
}
@keyframes shine-text {
  0% {
    left: -50%;
  }
  100% {
    left: 100%;
  }
}
.style_promptButtonSparks__q9E6f {
  position: relative;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
}

.style_promptButtonSparkL__81ZCi,
.style_promptButtonSparkM__l7lV_,
.style_promptButtonSparkS__aKyau {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.8125rem;
  height: 0.8125rem;
  transform: scale(1);
}

.style_promptButtonSparkS__aKyau {
  top: 0;
  left: 0.8125rem;
  animation: style_sparkS__hnqXn 2s -3s infinite alternate;
}

.style_promptButtonSparkL__81ZCi {
  top: 0.1875rem;
  left: 0.1875rem;
  animation: style_sparkL__hYFlI 2s infinite alternate;
}

.style_promptButtonSparkM__l7lV_ {
  top: 0.625rem;
  left: 0.625rem;
  animation: style_sparkM__s6qoZ 2s -1.5s infinite alternate;
}

.hero__generate:hover .style_promptButtonSparkS__aKyau {
  animation: sparkTwinkle 0.8s ease-in-out;
}

.hero__generate:hover .style_promptButtonSparkM__l7lV_ {
  animation: sparkTwinkle 0.8s 0.3s ease-in-out;
}

.hero__generate:hover .style_promptButtonSparkL__81ZCi {
  animation: sparkTwinkle 0.8s 0.6s ease-in-out;
}

/* Кастомная анимация мерцания */
@keyframes sparkTwinkle {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.8);
  }
}
.hamburger {
  display: none;
}
.hamburger span {
  display: block;
  width: 40px;
  height: 3px;
  background: #262626;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger span:nth-child(3) {
  bottom: 0;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(0, 0);
  top: 50%;
  margin-top: -1px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0, 0);
  bottom: auto;
  top: 50%;
  margin-top: -1px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0 auto;
  height: auto;
  background: #020218;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s;
  padding: 20px 30px;
  transform: translateY(-150%);
  padding-top: 43px;
  padding-bottom: 40px;
  border-radius: 0 0 30px 30px;
}
.mobile-menu.active {
  transform: translateY(0%);
}
.mobile-menu.active .nav a span {
  margin-bottom: 0px;
}
.mobile-menu .header__sign {
  width: 100%;
  padding: 12px 24px;
}

.mobile-menu .nav a {
  color: #fff;
  font-size: 18px;
  overflow: hidden;
  display: block;
  position: relative;
}
.mobile-menu .nav a.active {
  color: #fff;
}

.hamburger {
  position: relative;
  z-index: 777;
}
.hamburger.active span {
  background: #fff;
}

.fab-wrap {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: -80px;
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  transition: bottom 1500ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.morph {
  position: fixed;
  bottom: -120px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 777;
  transition: all 0.3s;
}
.morph.visible {
  bottom: 20px;
}
.morph.visible span {
  opacity: 0;
}
.morph.width span {
  opacity: 1;
}
.morph.width .hero__generate {
  width: 382px;
  border-radius: 16px;
}
.morph.width button {
  border-radius: 18px !important;
}
.morph .hero__generate {
  margin-bottom: 0;
  width: 72px;
  height: 72px;
  border-radius: 100%;
  transition: all 0.3s;
}
.morph .hero__generate button {
  border-radius: 100%;
  width: 100%;
  height: 100%;
  padding: 0;
  justify-content: center;
  transition: all 0.3s;
}

.hero {
  position: relative;
  padding-bottom: 40px;
}

.hero::before {
  content: "";
  width: 190%;
  position: absolute;
  height: 1446px;
  left: 0;
  top: 0;
  background: url("/images/hero-bg.svg");
}

.hero .container {
  width: 952px;
  margin: 0 auto;
  padding-top: 140px;
  position: relative;
  z-index: 6;
}

.hero h1 {
  font: 600 49px/120% "Inter", sans-serif;
  letter-spacing: -0.04em;
  text-align: center;
  background: linear-gradient(153deg, #000 0%, #1650eb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
  position: relative;
}

.hero h1 span {
  display: block;
  width: 0;
  position: absolute;
  background: linear-gradient(
    90deg,
    rgba(22, 80, 235, 0.1) 0%,
    rgba(22, 80, 235, 0.1) 100%
  );
  border-left: 3px solid #1650eb;
  height: 59px;
  right: 271px;
  bottom: -1px;
}
.hero .trait {
  position: absolute;
  top: 308px;
  right: 264px;
}

.hero__descr {
  color: #343434;
  margin-bottom: 30px;
  text-align: center;
}
.hero__create {
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 5px 50px 0 rgba(22, 80, 235, 0.1);
  background: #fff;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 0 10px;
  flex-wrap: wrap;
  position: relative;
align-items: center;
  z-index: 777777777;
}


.hero__create-content {
  width: 100%;
  overflow: hidden;
  max-height: 0;
  color: #000;
  transition: all 0.3s;
}
.styled-checkbox {
  position: absolute;
  display: none;
}

.hero__create-file input{
	display: none;
}

.hero__create-file label{
	display: flex;
	gap: 8px;
	align-items: center;
	margin: 0 5px 0 0;
}

.hero__create-file-name{
	font-size: 14px;
	white-space: nowrap;
	color: #177DE6;
	line-height: 140%;
	max-width: 150px;
	overflow: hidden;
}

.hero__create-file-info p{
	font-size: 10px;
	line-height: 100%;
	max-width: 150px;
	overflow: hidden;
	white-space: nowrap;
}

.hero__files{
	max-height: 0;
	transition: all 0.3s;
	overflow: hidden;
}

.hero__files{
	width: 100%;
}

.hero__files .area{padding-top: 20px; width: 100%;}

.hero__files textarea{
	width: 100%;
	height: 200px;
	border-radius: 20px;
	outline: none;
	padding: 20px;
}

.styled-checkbox + label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.theme-presentation {
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 16px;
  background: white;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  color: #020218; /* Черный текст при вводе */
}

.theme-presentation:focus {
  box-shadow: 0 0 0 3px rgb(167 193 253 / 50%);
}

.theme-presentation::placeholder {
  color: #636363; /* Сероватый */
}

.hero__create-content .wrap {
  padding-top: 10px;
}
.hero__create input {
  border: 1px solid #6691fa;
  border-radius: 12px;
  padding: 11px 16px;
  flex: 1;
  padding: 11px 16px;
}
.hero__create-top {
  font: 400 16px/140% "Inter", sans-serif;
  letter-spacing: -0.02em;
  color: #020218;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 138px;
  border-radius: 12px;
  padding: 11px 16px;
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.hero__create-top:hover {
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
}

.hero__create-top::after {
  content: "";
  width: 9px;
  height: 5px;
  background-image: url("/images/arr.svg");
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.hero__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  min-width: 185px;
  font-size: 11px;
  overflow: hidden;
}

.hero__create-top:hover .hero__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero__dropdown-item {
  font: 400 16px/140% "Inter", sans-serif;
  letter-spacing: -0.02em;
  color: #020218;
  padding: 12px 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.hero__dropdown-item:hover {
  background: #eef1ff;
}

.hero__dropdown-item span {
    box-shadow: 0 0 4px 0 rgba(52, 108, 246, 0.2);
    --dl-buisiness-gradient-color-first: #027bfe;
    --dl-buisiness-gradient-color-middle-main: #b08dc6;
    --dl-business-gradient-color-middle-segment-one: #8484e8;
    --dl-business-gradient-color-middle-segment-two: #b78ed1;
    --dl-buisiness-gradient-color-third: #f1a28b;
    --dl-background-buisiness-gradient-value: linear-gradient(90deg, var(--dl-buisiness-gradient-color-first) 0%, var(--dl-business-gradient-color-middle-segment-one) 50%, var(--dl-business-gradient-color-middle-segment-two) 70%, var(--dl-buisiness-gradient-color-third) 100%);
    background: var(--dl-background-buisiness-gradient-value);
    padding: 5px;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    line-height: 13px;
    color: #fff;
    gap: 5px;
}

.hero__dropdown-item span img {
  width: 13px;
  height: 13px;
}


.hero__create-action,
.hero__create-top {
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  font: 400 14px/140% "Inter", sans-serif;
  letter-spacing: -0.02em;
  color: #242424;
  position: relative;
  border: 1px solid transparent;
  transition: 0.2s;
  cursor: pointer;
}
.hero__create-action:hover,
.hero__create-top:hover {
  border: 1px solid #205aef;
}
.hero__create-action-top {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.template-button {
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.1);
  color: #fff;
  border: 2px solid #1650eb;
  transition: all 0.3s;
  position: relative;
  background: linear-gradient(90deg, #1650eb 0%, #4d84ff 100%);
  overflow: hidden;
}

.template-button::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  opacity: 0;
  background: linear-gradient(
    240deg,
    rgba(22, 80, 235, 0.1) 0%,
    rgb(77, 132, 255) 100%
  );
}

.template-button span {
  z-index: 1;
}
.template-button span {
  position: relative;
}
.template-button:hover::after {
  left: 0;
  opacity: 1;
}

.template-button:hover {
  border: 2px solid #1650eb;
}

.hero__create-action-content {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  left: 0;
  top: 50px;
  width: 100%;
  z-index: 77777777;
  max-height: 0;
  overflow: hidden;
}
.hero__create-action-content .wrap {
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__settings-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.3s;
  width: 240px;
  margin: 15px auto;
}

.hero__settings-top:hover {
  color: #000;
}

.hero__settings-top:hover svg path {
  fill: #000;
}

.hero__settings-top.active img {
  transform: rotate(180deg);
}
.hero__settings-top.active img {
  transition: all 0.3s;
}
.hero__generate {
  margin: 0 auto;
  width: 382px;
  padding: 6px;
  border: 2px solid #dde2e6;
  border-radius: 18px;
  margin-bottom: 40px;
}
.hero__generate button {
  width: 100%;
  border-radius: 18px;
  padding: 18px 40px;
  font: 600 18px/136% "Inter", sans-serif;
  letter-spacing: -0.02em;
  color: #fff;
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 8px;
  box-shadow: 0 25px 45px 0 rgba(22, 80, 235, 0.4);
  background: linear-gradient(90deg, #1650eb 0%, #4d84ff 100%);
  position: relative;
  overflow: hidden;
}
.hero__generate button.shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shine 3s infinite;
}
@keyframes shine {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.hero .decors .dec-left1 {
  position: absolute;
  z-index: 4;
}
.hero .decors .dec-left3 {
  position: absolute;
  z-index: 3;
  top: 375px;
}
.hero .decors .dec-left2 {
  top: 199px;
  left: -110px;
  position: absolute;
  border-radius: 24px;
  width: 525px;
  height: 412px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  transform: rotate(10deg);
}
.hero .decors .dec-right1 {
  position: absolute;
  right: 0;
  z-index: 4;
}
.hero .decors .dec-right2 {
  position: absolute;
  border-radius: 24px;
  width: 525px;
  height: 412px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  transform: rotate(-8deg);
  right: -90px;
  top: 118px;
}
.hero .decors .dec-right3 {
  position: absolute;
  right: 0;
  z-index: 3;
  top: 351px;
}
.hero__actions {
  display: flex;
  justify-content: center;
  gap: 29px;
  position: relative;
  z-index: 5;
  margin-bottom: 37px;
}
.hero__instructions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero__instructions span {
  font: 500 17px/120% "Inter", sans-serif;
  letter-spacing: -0.02em;
  text-align: right;
  color: #020218;
}
.hero .info {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: rgb(77, 132, 255);
  transition: 0.2s;
  animation: pulse 1s infinite;
}
.hero .info:hover {
  background: rgb(42 99 242);
}

.hero__instructions:hover .info,
.hero__actions-video:hover .info {
  background: rgb(42 99 242);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(77, 132, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(77, 132, 255, 0);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(77, 132, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(77, 132, 255, 0);
  }
}
.hero__expert {
  display: flex;
  gap: 24px;
}
.hero__expert-text {
  font: 400 16px/120% "Inter", sans-serif;
  letter-spacing: -0.02em;
  text-align: right;
  color: #020218;
  position: relative;
}
.hero__expert-text::after {
  content: "";
  position: absolute;
  top: 9.5px;
  left: 0;
  width: 160px;
  height: 1px;
  background: #020218;
}
.hero__expert-avatar {
  border-radius: 44px;
  width: 72px;
  height: 48px;
}
.hero__expert-avatar img {
  width: 100%;
  height: 100%;
}
.hero__expert-name {
  display: flex;
  align-items: center;
  margin-bottom: 2px;
  gap: 6px;
  font: 600 18px/120% "Inter", sans-serif;
  letter-spacing: -0.02em;
  color: #020218;
}
.hero__expert-info p {
  font: 400 16px/120% "Inter", sans-serif;
  letter-spacing: -0.02em;
  color: #6d6d6d;
}
.hero__actions-video {
  display: flex;
  align-items: center;
  font: 500 17px/120% "Inter", sans-serif;
  letter-spacing: -0.02em;
  color: #020218;
  gap: 24px;
}
.hero__users {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.hero__users p {
  font: 400 18px/160% "Inter", sans-serif;
  letter-spacing: -0.02em;
  text-align: center;
  color: #6d6d6d;
  white-space: nowrap;
}
.hero__users p span {
  font-weight: 600;
  color: #020218;
}
.hero__partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 6;
  margin-top: 37px;
}
@keyframes runLine {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.hero__partner {
  padding: 13px 24px;
  border: 1px solid #dde2e6;
  border-radius: 12px;
  height: 44px;
  display: flex;
  transition: all 0.3s;
  justify-content: center;
  align-items: center;
}
.hero__partner.mobile-marquee {
  display: none;
}
.hero__partner svg path {
  transition: all 0.3s;
}
.hero__partner:hover {
  border-color: #4d84ff;
}
.hero__partner:hover svg path {
  fill: #4d84ff;
}
.instructions__subtitle,
.prices__subtile,
.faq__subtile,
.reviews__subtile,
.examples__subtile,
.why-us__subtile {
  font: 600 18px / 120% "Inter", sans-serif;
  letter-spacing: -0.02em;
  text-align: center;
  background: linear-gradient(90deg, #1650eb 0%, #4d84ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 25px 0 15px;
}
.functuions {
  padding-bottom: 55px;
  position: relative;
}

.functuions::before {
  content: "";
  position: absolute;
  top: -145px;
  left: 0px;
  width: 409px;
  height: 2557px;
  background: url("/images/fun-dec1.svg");
}

.functuions::after {
  content: "";
  position: absolute;
  top: -217px;
  right: 0;
  width: 447px;
  height: 3224px;
  background: url("/images/fun-dec2.svg");
}

.functuions .container {
    padding: 0 40px 44px;
    position: relative;
    z-index: 7;
    border-radius: 16px;
}

.functuions .dec3 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -200px;
  z-index: 7;
}
.functuions__subtitle {
  font: 600 18px/120% "Inter", sans-serif;
  letter-spacing: -0.02em;
  text-align: center;
  background: linear-gradient(90deg, #1650eb 0%, #4d84ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 25px 0 15px;
}
.functuions__title {
  margin-bottom: 16px;
}
.functuions p {
  text-align: center;
}
.functuions__wrapper {
  margin-top: 63px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  background: #fff;
  padding: 40px 40px 44px;
  position: relative;
  z-index: 7;
  border-radius: 16px;
}
.functuions__wrapper::before {
    content: "";
    position: absolute;
    width: 1px;
    top: 40px;
    height: calc(100% - 82px);
    left: 50%;
    transform: translateX(-50%);
    background: #dde2e6;
}
.functuions__item-title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font: 600 36px/100% "Inter", sans-serif;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #020218 0%, #1650eb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.functuions__item {
  display: flex;
  flex-direction: column;
}
.functuions__item p {
  text-align: left;
  margin-bottom: 32px;
  font: 400 17px/145% "Inter", sans-serif;
  flex: 1;
}
.functuions__item .bg {
  position: absolute;
  left: 0;
  bottom: 0;
}

.functuions__item-img {
  position: relative;
}

.functuions__item:nth-child(1) .functuions__item-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("/images/fun-item1.svg");
}

.functuions__item:nth-child(2) .functuions__item-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("/images/fun-item2.svg");
}

.functuions__item:nth-child(3) .functuions__item-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("/images/fun-item3.svg");
}

.functuions__item:nth-child(4) .functuions__item-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("/images/fun-item4.svg");
}

.functuions__item:nth-child(5) .functuions__item-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("/images/fun-item5.svg");
}

.functuions__item:nth-child(6) .functuions__item-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("/images/fun-item6.svg");
}

.functuions__item .bg {
  height: 100% !important;
}
.functuions__item:nth-child(1) .star1 {
  width: 37px;
  height: 37px;
  top: 83px;
  left: 107px;
}
.functuions__item:nth-child(1) .star2 {
  width: 52px;
  height: 52px;
  bottom: 117px;
  right: 64px;
}
.functuions__item:nth-child(2) .star1 {
  width: 52px;
  height: 52px;
  top: 20px;
  right: 131px;
}
.functuions__item:nth-child(3) .star1 {
  width: 52px;
  height: 52px;
  top: 98px;
  left: 52px;
}
.functuions__item:nth-child(4) .star1 {
  width: 37px;
  height: 37px;
  top: 43px;
  left: 65px;
}
.functuions__item:nth-child(4) .star2 {
  width: 52px;
  height: 52px;
  top: 197px;
  right: 65px;
}
.functuions__item:nth-child(5) .star1 {
  width: 52px;
  height: 52px;
  bottom: 47px;
  left: 62px;
}
.functuions__item:nth-child(5) .star2 {
  width: 37px;
  height: 37px;
  top: 55px;
  right: 45px;
}
.functuions__item:nth-child(6) .star1 {
  top: 62px;
  right: 68px;
}
.functuions .star {
  position: absolute;
  z-index: 7;
}
.functuions .star img {
  width: 100%;
  height: auto;
}
.functuions__item-img {
  border: 1px solid #dde2e6;
  border-radius: 16px;
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.functuions__item-img img {
  position: relative;
  z-index: 1;
}
.functuions__item:hover .star {
  animation: blinkScale 0.4s ease-in-out;
}
@keyframes blinkScale {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

.examples {
  position: relative;
  z-index: 9;
  margin-bottom: 70px;
}
.examples__title {
  margin-bottom: 24px;
}
.examples p {
  text-align: center;
  margin-bottom: 20px;
}
.examples__block.active {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.examples .thumbs {
  width: 878px;
  margin: 0 auto 20px;
}
.examples .thumbs__content {
  margin-bottom: 44px;
}
.examples__item {
  border-radius: 24px;
  height: auto;
  box-shadow: 0 10px 50px 0 rgba(2, 2, 24, 0.1);
  background: #fff;
  padding: 10px;
}
.examples__item img {
  width: 100%;
  height: 100%;
  border: 1px solid #dde2e6;
  border-radius: 12px;
}
.examples .hero__generate {
  width: 324px;
}

.examples::before {
  content: "";
  position: absolute;
  left: 0;
  top: -500px;
  background: url("/images/ex-dec1.svg");
  width: 423px;
  height: 3216px;
}

.examples::after {
  content: "";
  position: absolute;
  right: 0;
  top: -500px;
  width: 448px;
  height: 3224px;
  background: url("/images/ex-dec2.svg");
}

.instructions {
  position: relative;
  margin-bottom: 88px;
}

.instructions .container {
  position: relative;
  z-index: 1;
}

.instructions::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1200px;
  width: 410px;
  height: 3224px;
  background: url("/images/ins-dec1.svg");
}

.instructions::after {
  content: "";
  position: absolute;
  right: 0;
  top: 1200px;
  width: 463px;
  height: 3224px;
  background: url("/images/ins-dec2.svg");
}
.instructions .section-text {
  margin-bottom: 64px;
  color: #6d6d6d;
}
.instructions p {
  color: #020218;
}
.instructions__block {
  margin-bottom: 63px;
}
.instructions__block-title {
  font: 600 32px/120% "Inter", sans-serif;
  letter-spacing: -0.04em;
  text-align: center;
  background: linear-gradient(153deg, #020218 0%, #1650eb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
}
.instructions__wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.instructions__wrap-img {
  position: relative;
  border: 1px solid #dde2e6;
  border-radius: 16px;
  background: #fff;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.instructions__wrap-img .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
}
.instructions__wrap-img img {
  position: relative;
  max-width: 100%;
}
.instructions__wrap-list {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 16px;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(234, 235, 249, 0.5) 0%,
    rgba(230, 231, 248, 0.5) 96.71%
  );
}
.instructions__wrap-list-item {
  padding: 24px 24px;
  background: #fff;
  border: 1px solid #dde2e6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.instructions__wrap-list-item svg {
  min-width: 30px;
}
.instructions__wrap-list-item p {
  font: 500 18px/120% "Inter", sans-serif;
  letter-spacing: -0.04em;
  color: #020218;
}
.instructions__descr {
  font: 400 18px/160% "Inter", sans-serif;
  letter-spacing: -0.02em;
  color: #020218;
  margin-bottom: 40px;
}
.instructions__steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.instructions__step {
  border: 1px solid #dde2e6;
  border-radius: 16px;
  display: flex;
  gap: 40px;
  align-items: center;
}
.instructions__step p {
  font: 400 18px/160% "Inter", sans-serif;
  letter-spacing: -0.01em;
  color: #020218;
  padding: 20px 20px 20px 0;
}
.instructions__step span,
.instructions__step a {
  font: 600 18px/160% "Inter", sans-serif;
  background: linear-gradient(90deg, #1650eb 0%, #4d84ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.instructions .num {
  border-radius: 16px;
  padding: 14px 39px;
  min-width: 128px;
  height: 128px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f9fd;
}
.instructions .num span {
  font: 900 80px/100% "Inter", sans-serif;
  background: linear-gradient(90deg, #1650eb 0%, #4d84ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-us {
  margin-bottom: 82px;
}
.why-us .section-text {
  margin-bottom: 40px;
}
.why-us__wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 10px;
}
.why-us__wrap {
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 10px 50px 0 rgba(2, 2, 24, 0.1);
  background: #fff;
}
.why-us__wrap:nth-child(1) .why-us__item {
  padding-top: 83px;
}
.why-us__wrap:nth-child(2) .why-us__item {
  background: linear-gradient(135deg, #4d84ff 0%, #85abff 100%);
  height: 100%;
}
.why-us__wrap:nth-child(2) .why-us__list-item {
  display: flex;
  gap: 10px;
}
.why-us__wrap:nth-child(2) .why-us__list-item p {
  font: 400 18px/146% "Inter", sans-serif;
  letter-spacing: -0.01em;
  color: #fff;
}
.why-us__wrap:nth-child(2) .why-us__list-icon {
  min-width: 20px;
  min-height: 20px;
}
.why-us__wrap:nth-child(3) .why-us__item {
  height: 100%;
}
.why-us__wrap:nth-child(3) .why-us__item-ttile {
  color: #020218;
}
.why-us__wrap:nth-child(3) .why-us__list-item {
  display: flex;
  gap: 10px;
}
.why-us__wrap:nth-child(3) .why-us__list-item p {
  font: 400 18px/146% "Inter", sans-serif;
  letter-spacing: -0.01em;
}
.why-us__wrap:nth-child(3) .why-us__list-icon {
  min-width: 20px;
  min-height: 20px;
}
.why-us__item-ttile {
  font: 600 24px/146% "Inter", sans-serif;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 24px;
}
.why-us__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-us__list-item {
  padding-bottom: 26px;
  border-bottom: 1px solid #dde2e6;
}
.why-us__list-item:last-child {
  border-bottom: #000;
  padding-bottom: 0;
}
.why-us__item {
  border: 1px solid #dde2e6;
  border-radius: 10px;
  padding: 24px;
}
.why-us__item p {
  font: 400 16px/146% "Inter", sans-serif;
  letter-spacing: -0.01em;
  color: #6d6d6d;
}
.why-us__list-title {
  font: 400 18px/146% "Inter", sans-serif;
  letter-spacing: -0.01em;
  color: #020218;
  margin-bottom: 4px;
}

.prices {
  margin-bottom: 120px;
  position: relative;
}
.prices::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -300px;
  width: 1116px;
  height: 1206px;
  background: url("/images/prices-bg.svg");
}
.prices .container {
  position: relative;
  z-index: 7;
}
.prices .section-text {
  margin-bottom: 40px;
}

.prices__wrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.prices__item {
  border: 1px solid #dde2e6;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.4);
  background: #fff;
}
.prices__item.free .prices__item-card {
  background: linear-gradient(135deg, #6d6d6d 0%, #d3d3d3 100%);
}
.prices__item.prem .prices__item-card {
  background: linear-gradient(135deg, #4d84ff 0%, #85abff 100%);
}
.prices__item.tokens .prices__item-card {
  background: linear-gradient(135deg, #9171ff 0%, #ad95ff 100%);
}
.prices__item-card {
  border-radius: 20px;
  padding: 24px;
}
.prices__item-card p {
  font: 400 18px/146% "Inter", sans-serif;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 24px;
}
.prices__item-list {
  padding: 24px;
}
.prices__item-name {
  font: 600 32px/160% "Inter", sans-serif;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 8px;
}
.prices__item-price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  font: 400 18px/100% "Inter", sans-serif;
  letter-spacing: -0.01em;
  color: #fff;
}
.prices__item-price span {
  font: 600 56px/100% "Inter", sans-serif;
  letter-spacing: -0.01em;
  color: #fff;
}
.prices__item-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.prices__item-list-li {
  font: 400 18px/146% "Inter", sans-serif;
  letter-spacing: -0.01em;
  color: #020218;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
}
.prices__item-list-li.none::before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20 10C20 15.5228 15.5228 20 10 20C4.47715 20 0 15.5228 0 10C0 4.47715 4.47715 0 10 0C15.5228 0 20 4.47715 20 10ZM6.96963 6.96965C7.26252 6.67676 7.73739 6.67676 8.03029 6.96965L9.99997 8.93933L11.9696 6.96967C12.2625 6.67678 12.7374 6.67678 13.0303 6.96967C13.3232 7.26256 13.3232 7.73744 13.0303 8.03033L11.0606 9.99999L13.0303 11.9696C13.3232 12.2625 13.3232 12.7374 13.0303 13.0303C12.7374 13.3232 12.2625 13.3232 11.9696 13.0303L9.99997 11.0607L8.03031 13.0303C7.73742 13.3232 7.26254 13.3232 6.96965 13.0303C6.67676 12.7374 6.67676 12.2625 6.96965 11.9697L8.93931 9.99999L6.96963 8.03031C6.67673 7.73742 6.67673 7.26254 6.96963 6.96965Z' fill='%23DDE2E6'/%3E%3C/svg%3E");
}
.prices__item-list-li::before {
  margin-top: 5px;
  content: "";
  min-width: 20px;
  min-height: 20px;
  background-size: cover;
  background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M20 10C20 15.5228 15.5228 20 10 20C4.47715 20 0 15.5228 0 10C0 4.47715 4.47715 0 10 0C15.5228 0 20 4.47715 20 10ZM14.0303 6.96967C14.3232 7.26256 14.3232 7.73744 14.0303 8.03033L9.03033 13.0303C8.73744 13.3232 8.26256 13.3232 7.96967 13.0303L5.96967 11.0303C5.67678 10.7374 5.67678 10.2626 5.96967 9.96967C6.26256 9.67678 6.73744 9.67678 7.03033 9.96967L8.5 11.4393L10.7348 9.2045L12.9697 6.96967C13.2626 6.67678 13.7374 6.67678 14.0303 6.96967Z" fill="%23C6D7FE" fill-opacity="0.6"/><path d="M14.0303 8.03033C14.3232 7.73744 14.3232 7.26256 14.0303 6.96967C13.7374 6.67678 13.2626 6.67678 12.9697 6.96967L10.7348 9.2045L8.5 11.4393L7.03033 9.96967C6.73744 9.67678 6.26256 9.67678 5.96967 9.96967C5.67678 10.2626 5.67678 10.7374 5.96967 11.0303L7.96967 13.0303C8.26256 13.3232 8.73744 13.3232 9.03033 13.0303L14.0303 8.03033Z" fill="%231650EB"/></svg>');
}

.reviews {
  position: relative;
}

.reviews::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -500px;
  width: 1537px;
  height: 1693px;
  background: url("/images/reviews-bg.svg");
}
.reviews .section-text {
  margin-bottom: 40px;
}

.reviews .container {
  width: calc(100% - 102px);
  overflow: hidden;
  position: relative;
  padding-bottom: 120px;
  z-index: 7;
}
.reviews .hero__generate {
  width: 309px;
  margin-bottom: 0;
}
.reviews .hero__generate button {
  display: block;
}
.reviews__slider {
  position: relative;
  margin-bottom: 40px;
}
.reviews__slider::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  transform: rotate(-180deg);
  left: 0;
  bottom: 0;
  z-index: 3;
}
.reviews__slider::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  right: -3px;
  bottom: 0;
  z-index: 3;
}
.reviews .swiper-slide {
  border: 1px solid #dde2e6;
  border-radius: 20px;
  box-shadow: 0 5px 50px 0 rgba(2, 2, 24, 0.05);
  background: linear-gradient(104deg, #eef4fe 0%, #ebf0fd 100%);
}
.reviews .swiper-slide .txt {
  font: italic 400 18px/160% "Inter", sans-serif;
  letter-spacing: -0.01em;
  color: #6d6d6d;
  padding: 24px;
  background: #fff;
  border: 1px solid #dde2e6;
  border-radius: 20px;
  margin-bottom: 0;
}
.reviews__slider-account {
  padding: 20px 24px;
  display: flex;
  gap: 16px;
}
.reviews__slider-account p {
  font: 400 16px/140% "Inter", sans-serif;
  letter-spacing: -0.01em;
  color: #6d6d6d;
}
.reviews__slider-name {
  font: 600 20px/140% "Inter", sans-serif;
  letter-spacing: -0.01em;
  color: #020218;
}

.faq {
  position: relative;
}
.faq .section-text {
  margin-bottom: 40px;
}

.faq::before {
  content: "";
  position: absolute;
  right: 0;
  width: 1200px;
  height: 1360px;
  background: url("/images/faq-blur1.svg");
}

.faq::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 931px;
  height: 1051px;
  background: url("/images/faq-blur2.svg");
}

.faq .container {
  position: relative;
  z-index: 1;
}
.faq__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 50px 0;
}
.faq__item {
  padding: 32px 40px;
  box-shadow: 0 5px 50px 0 rgba(2, 2, 24, 0.05);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  cursor: pointer;
}

.faq__item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 600 20px/160% "Inter", sans-serif;
  letter-spacing: -0.01em;
  color: #020218;
}

.faq-arrow {
  width: 19px;
  height: 11px;
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='11' viewBox='0 0 19 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.5001 1.50006C17.5001 1.50006 11.6082 9.49998 9.50006 9.5C7.39191 9.50002 1.50012 1.5 1.50012 1.5' stroke='%23020218' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s;
}

.faq__item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq__item-content {
  font: 400 18px/160% "Inter", sans-serif;
  letter-spacing: -0.01em;
  color: #080808;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}
.faq__item-content p {
  padding-top: 32px;
}

.new-text {
  margin-bottom: 0 !important;
}

@media (max-width: 1700px) {
  .hero .container {
    width: 852px;
  }
  .hero h1 span {
    right: 228px;
  }
  .hero .decors .dec-left1 {
    width: 370px;
    top: 80px;
  }
  .hero .decors .dec-left3 {
    width: 370px;
  }
  .hero .decors .dec-left2 {
    width: 450px;
    height: 380px;
    left: -110px;
  }
  .hero .decors .dec-right1 {
    width: 365px;
    top: 80px;
  }
  .hero .decors .dec-right2 {
    width: 450px;
    height: 380px;
    right: -108px;
    top: 238px;
  }
  .hero .decors .dec-right3 {
    width: 370px;
    top: 365px;
  }
  .functuions .dec3 {
    max-width: 100%;
  }
  .functuions .dec3 img {
    width: 100%;
  }
  .faq .blur3 {
    max-width: 100%;
    left: 0;
  }
}

@media (max-width: 1660px) {
  .header .container {
    width: 852px;
  }
}

@media (max-width: 1537px) {
  .reviews::before {
    width: 100% !important;
  }
}

@media (max-width: 1536px) {
  .footer__bg img {
    width: 130%;
  }
  .footer .icon1 {
    bottom: 36.25vw;
  }
  .footer .icon2 {
    bottom: 51.25vw;
  }
  .footer .icon3 {
    bottom: 56.25vw;
  }
  .footer .icon4 {
    bottom: 51.25vw;
  }
  .footer .icon5 {
    bottom: 36.25vw;
  }
  .footer .icon5 {
    bottom: 41.25vw;
  }
  .blur,
  .bg,
  .blur1,
  .blur2,
  .blur3 {
    left: 0 !important;
    max-width: 100%;
  }
}

@media (max-width: 1500px) {
  .instructions p {
    font-size: 16px;
  }
  .hero .decors .dec-left1 {
    left: -50px;
  }
  .hero .decors .dec-left3 {
    left: -50px;
  }
  .hero .decors .dec-left2 {
    left: -160px;
  }
  .hero .decors .dec-right1 {
    right: -50px;
  }
  .hero .decors .dec-right2 {
    right: -160px;
  }
  .hero .decors .dec-right3 {
    right: -50px;
  }
}

@media (max-width: 1450px) {
  .hero .container {
    width: 800px;
  }
  .hero h1 span {
    width: 209px;
    right: 204px;
  }
}

@media (max-width: 1440px) {
  .container {
    width: 1200px;
  }
  .section-text br {
    display: none;
  }
  .footer__wrap {
    flex-direction: column;
    gap: 20px;
  }
  .footer .icon1 {
    bottom: 42.25vw;
  }
  .footer .icon2 {
    bottom: 56.25vw;
  }
  .footer .icon3 {
    bottom: 61.25vw;
  }
  .footer .icon4 {
    bottom: 56.25vw;
  }
  .hero__descr {
    font-size: 16px;
    line-height: 25px;
  }
  .hero__actions {
    gap: 40px;
  }
  .functuions .container {
    width: 1200px;
  }
  .functuions__item-img img {
    height: 90%;
    width: auto;
  }
  .instructions__wrap-list-item p {
    font-size: 17.4px;
  }
  .why-us__wrap:nth-child(2) .why-us__list-item p {
    font-size: 16px;
  }
  .why-us__wrap:nth-child(3) .why-us__list-item p {
    font-size: 16px;
  }
  .reviews .swiper-slide .txt {
    font-size: 16px;
  }
}

@media (max-width: 1400px) {
  .hero .container {
    width: 750px;
  }
  .hero h1 span {
    right: 184px;
  }
  .hero .decors .dec-left1 {
    left: -100px;
  }
  .hero .decors .dec-left3 {
    left: -100px;
  }
  .hero .decors .dec-left2 {
    left: -210px;
  }
  .hero .decors .dec-right1 {
    right: -100px;
  }
  .hero .decors .dec-right2 {
    right: -220px;
  }
  .hero .decors .dec-right3 {
    right: -100px;
  }
}

@media (max-width: 1366px) {
  .footer__text {
    font-size: 320px;
  }
  .footer .icon1 {
    bottom: 46.25vw;
  }
  .footer .icon2 {
    bottom: 60.25vw;
  }
  .footer .icon3 {
    bottom: 64.25vw;
  }
  .footer .icon4 {
    bottom: 60.25vw;
  }
  .footer .icon5 {
    bottom: 47.25vw;
  }
}

@media (max-width: 1320px) {
  .header .container {
    width: 800px;
  }
  .header .nav a {
    font-size: 16px;
  }
  .hero__descr {
    font-size: 15px;
    line-height: 23px;
  }
}

@media (max-width: 1280px) {
  .header .container {
    width: 800px;
  }
  .functuions .dec3 {
    bottom: -200px;
  }
}

@media (max-width: 1200px) {
  .section-title {
    font-size: 38px;
  }

  .container {
    width: 100%;
    padding: 0 15px;
  }

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

  .footer__text {
    font-size: 200px;
  }
  .footer__bg {
    bottom: auto;
    top: 247px;
    width: 100vw;
  }
  .footer__contacts {
    padding: 0 15px;
    margin-bottom: 70px;
  }
  .footer__contacts-subtitle {
    font-size: 14px;
  }
  .footer__contacts-title {
    font-size: 28px;
  }
  .footer__contacts-text {
    text-align: center;
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 160%;
  }
  .footer__wrapper {
    flex-direction: column;
  }
  .footer__nav {
    width: 100%;
    gap: 5px;
    display: none;
  }
  .footer__nav:nth-child(1) {
    order: 1;
  }
  .footer__nav:nth-child(3) {
    order: 2;
  }
  .footer__nav a {
    font-size: 14px;
  }
  .footer__nav-title {
    font-size: 14px;
  }
  .footer__info {
    order: 0;
  }

  .functuions .container {
    padding: 0 20px 20px;
    width: 100%;
  }
  .functuions p {
    font-size: 14px;
  }
  .functuions__wrapper {
    gap: 20px;
  }
  .functuions__wrapper::before {
    display: none;
  }
  .functuions__item-title {
    font-size: 24px;
  }
  .functuions__item:nth-child(1) .star1 {
    top: 10px;
    left: 13px;
  }
  .functuions__item:nth-child(1) .star2 {
    bottom: 51px;
    right: 12px;
  }
  .functuions__item:nth-child(2) .star1 {
    right: 3px;
  }
  .functuions__item:nth-child(3) .star1 {
    top: 38px;
    left: 9px;
  }
  .functuions__item:nth-child(5) .star1 {
    top: 38px;
    left: 9px;
  }
  .functuions__item:nth-child(5) .star2 {
    top: 202px;
  }
  .functuions__item:nth-child(6) .star1 {
    top: 10px;
    right: 22px;
  }
  .functuions__item-img {
    height: 250px;
  }
  .examples p br {
    display: none;
  }
  .examples__block.active {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .examples .thumbs {
    width: 100%;
    flex-wrap: wrap;
  }
  .examples .dec1 {
    display: none;
  }
  .examples .dec2 {
    display: none;
  }
  .instructions .dec1 {
    display: none;
  }
  .instructions .dec2 {
    display: none;
  }
  .instructions__block-title {
    font-size: 24px;
  }
  .instructions__wrap-list {
    padding: 16px;
  }
  .instructions__wrap-list-item {
    padding: 16px;
  }
  .instructions__wrap-list-item p {
    font-size: 16px;
  }
  .instructions__descr {
    font-size: 16px;
  }
  .instructions__descr br {
    display: none;
  }
  .instructions__step {
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
  }
  .instructions__step p {
    font-size: 14px;
    padding: 0;
  }
  .instructions__step span,
  .instructions__step a {
    font-size: 14px;
  }
  .instructions .num {
    min-width: 45px;
    height: auto;
    background: transparent;
    padding: 0;
  }
  .instructions .num span {
    font-size: 40px;
  }

  .reviews .container {
    width: 100%;
  }
  .reviews__slider::after {
    display: none;
  }
  .reviews__slider::before {
    display: none;
  }
  .faq__item {
    padding: 16px;
  }
  .faq__item-top {
    font-size: 16px;
  }
  .faq__item-content {
    font-size: 16px;
  }
  .faq__item-content p {
    padding-top: 20px;
    font-size: 16px;
  }
  .footer .icon3 {
    bottom: 58.25vw;
  }
  .footer .icon2 {
    bottom: 54.25vw;
  }
  .footer .icon4 {
    bottom: 54.25vw;
  }
}

@media (max-width: 1176px) {
  .hero .decors .dec-left1 {
    left: -130px;
  }
  .hero .decors .dec-left3 {
    left: -130px;
    top: 314px;
  }
  .hero .decors .dec-left2 {
    left: -240px;
  }
  .hero .decors .dec-right1 {
    right: -130px;
  }
  .hero .decors .dec-right2 {
    right: -250px;
  }
  .hero .decors .dec-right3 {
    right: -130px;
    top: 314px;
  }
}

@media (max-width: 1100px) {
  .hero .decors .dec-left1 {
    left: -230px;
  }
  .hero .decors .dec-left3 {
    left: -230px;
  }
  .hero .decors .dec-left2 {
    left: -340px;
  }
  .hero .decors .dec-right1 {
    right: -230px;
  }
  .hero .decors .dec-right2 {
    right: -350px;
  }
  .hero .decors .dec-right3 {
    right: -230px;
  }
}

@media (max-width: 1024px) {
  .footer .icon1 {
    top: 45vw;
    bottom: 0;
    width: 10vw;
    left: 1vw;
  }
  .footer .icon1 img {
    width: 100%;
    height: auto;
  }
  .footer .icon2 {
    top: 35vw;
    bottom: 0;
    width: 10vw;
  }
  .footer .icon2 img {
    width: 100%;
    height: auto;
  }
  .footer .icon3 {
    top: 30vw;
    bottom: 0;
    width: 10vw;
  }
  .footer .icon3 img {
    width: 100%;
    height: auto;
  }
  .footer .icon4 {
    top: 35vw;
    bottom: 0;
    width: 10vw;
  }
  .footer .icon4 img {
    width: 100%;
    height: auto;
  }
  .footer .icon5 {
    top: 45vw;
    bottom: 0;
    width: 10vw;
    right: 1vw;
  }
  .footer .icon5 img {
    width: 100%;
    height: auto;
  }
  .instructions::before,
  .functuions::before,
  .examples::before {
    width: 50% !important;
    background-size: cover !important;
  }
  .reviews::before,
  .prices::before,
  .faq::before {
    width: 100% !important;
    background-size: cover !important;
  }
  .instructions::after,
  .functuions::after,
  .examples::after,
  .faq::after {
    display: none;
  }
}

.hero__files-buttons{
	display: flex;
	gap: 10px;
	position: absolute;
	bottom: 30px;
	right: 20px;
}

.area{
	position: relative;
	overflow: hidden;
}

.hero__files-buttons button{
	padding: 12px 30px;
	border-radius: 20px
}

.hero__files-buttons .save{
	background: #4D84FF;
	color: #fff;
}

.hero__files-buttons .delete{
	background: #E3E8FE;
	color: #1650EB
}

@media (max-width: 900px) {
  .section-text {
    font-size: 14px;
  }
  .section-title,
  .faq__category-title {
    font-size: 1.5em;
  }

	.hero__create-file{width: 100%; margin: bottom: 10px; }
	.hero__create-file-name{
		max-width: 100%;
	}
	.hero__create-file-info p{max-width: 100%;}

  .why-us__wrapper {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }

  .why-us__item {
    padding: 15px;
  }

  .why-us__wrap {
    width: calc(50% - 10px);
  }
  .why-us__wrap:nth-child(1) {
    order: 0;
  }
  .why-us__wrap:nth-child(2) {
    order: 2;
    width: 100%;
  }
  .why-us__wrap:nth-child(3) {
    order: 1;
  }
  .prices {
    margin-bottom: 70px;
  }
  .prices__wrapper {
    display: flex;
    flex-wrap: wrap;
  }
  .prices__item {
    width: calc(50% - 10px);
  }
  .prices__item.tokens {
    width: 100%;
  }
  .prices__item-card p {
    font-size: 16px;
  }
  .prices__item-list-li {
    font-size: 16px;
  }

  .header .container {
    width: calc(100% - 30px) !important;
    margin: 0 15px;
    padding: 15px;
    align-items: center;
  }
  .header .logo {
    width: 140px;
  }
  .header__sign {
    font-size: 16px;
    margin-left: auto;
  }

  .hero {
    padding-bottom: 50px;
  }
  .hero .container {
    display: flex;
    flex-direction: column;
    width: 600px !important;
    padding-top: 120px;
  }
  .hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .hero h1 br:nth-child(1) {
    display: none;
  }
  .hero h1 span {
    display: none;
  }
  .hero .trait {
    display: none;
  }

  .hero__create {
    flex-wrap: wrap;
    gap: 10px;
  }
  .hero__create-select {
    width: 100%;
  }
  .hero__create-top {
    width: 100%;
  }
  .hero__create-action {
    width: 100%;
  }
  .hero__settings-top {
    margin: 5px auto 15px;
  }
  .hero__generate {
    width: 100%;
    margin-bottom: 30px;
  }
  .hero__generate button {
    padding: 16px 0;
    font-size: 16px;
    justify-content: center;
  }

  .hero__actions {
    display: none;
  }
  .hero__expert {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero__partners {
    justify-content: center;
  }
  .footer .icon3 {
    top: 35vw;
  }
  .footer .icon2 {
    top: 41vw;
  }
  .footer .icon4 {
    top: 41vw;
  }
  .footer .icon1 {
    top: 57vw;
  }
  .footer .icon5 {
    top: 57vw;
  }
}

.hero__form .policy{
	width: 417px; 
	position: relative;
	margin: 0 auto 40px;
}

.hero__form .styled-checkbox + label::before {
  display: block;
  content: "";
  border: 1px solid #808080;
  border-radius: 4px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  transition: all 0.3s;
}

.hero__form .styled-checkbox:checked + label::before{
    border-color: #326af5;
}

.hero__form .styled-checkbox:checked + label::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 11px;
  height: 8px;
  min-width: 11px;
  min-height: 8px;
  background: url("/modal_images/check.svg");
  background-size: cover;
}


.hero__form .policy label{display: flex; align-items: center; gap: 7px; font: 400 12px / 120% "Inter", sans-serif; color: #000;}
.hero__form .policy label a{
	color: #326af5;
	display: inline;
}

@media (max-width: 600px) {
  .header .nav {
    display: none;
  }
.hero__form .styled-checkbox:checked + label::after{top: 5px;}
.hero__files-buttons button{
	font-size: 10px;
}
.hero__form .policy{  width: 100%; }
	.hero__form .policy label{ align-items: flex-start }

  .mobile-menu .nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: unset;
    gap: 10px;
    padding: 30px 0;
  }
  .footer__text {
    font-size: 105px;
    white-space: nowrap;
    padding-bottom: 43vw;
  }
  .footer__bg {
    top: 190px;
  }
  .footer__bg img {
    width: 100%;
  }
  .footer__bg img path {
    width: 100%;
  }
  .footer .icon1 {
    top: 72vw;
    bottom: 0;
    width: 15vw;
    left: 3vw;
  }
  .footer .icon2 {
    top: 63vw;
    bottom: 0;
    width: 15vw;
  }
  .footer .icon3 {
    top: 53vw;
    bottom: 0;
    width: 15vw;
  }
  .footer .icon4 {
    top: 63vw;
    bottom: 0;
    width: 15vw;
  }
  .footer .icon5 {
    top: 72vw;
    bottom: 0;
    width: 15vw;
    right: 3vw;
  }
  .hamburger {
    display: block;
    width: 40px;
    height: 25px;
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
  }
  .hero .container {
    padding-top: 115px;
    width: 100% !important;
  }
  .hero h1 {
    font-size: 1.5em;
  }
  .hero .decors {
    display: none;
  }
  .hero__users {
    display: none;
  }
  .hero__partners {
    margin-top: 0;
    animation: runLine 30s linear infinite;
  }
  .hero__partner.mobile-marquee {
    display: block;
  }
  .functuions .dec1 {
    left: -50px;
  }
  .functuions__wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px;
  }
  .examples__block.active {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .instructions p {
    font-size: 14px;
  }
  .instructions__wrap {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .instructions__wrap-img {
    height: 250px;
  }
  .instructions__wrap-list-item p {
    font-size: 14px;
  }
  .instructions__descr {
    font-size: 14px;
  }
  .why-us__wrapper {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .why-us__wrap {
    width: 100%;
  }
  .why-us__wrap:nth-child(1) .why-us__item {
    padding-top: 24px;
  }
  .prices__item {
    width: 100%;
  }
  .instructions::before,
  .instructions::after,
  .functuions::before,
  .functuions::after,
  .examples::after,
  .examples::before,
  .reviews::before,
  .prices::before,
  .faq::before,
  .faq::after {
    width: 100% !important;
    left: 0 !important;
  }
}