@charset "UTF-8";
:root {
  --dark-1000: #0c1221;
  --dark-900: #242a37;
  --dark-800: #3d414d;
  --dark-700: #555964;
  --dark-600: #6d717a;
  --dark-500: #858890;
  --dark-400: #9ea0a6;
  --dark-300: #b6b8bc;
  --dark-200: #ced0d3;
  --dark-100: #e6e7e9;
  --dark-50: #f3f3f4;
  --dark-30: #f8f8f8;
  --dark-1: #fbfbfc;
  --accent-color-1: #38acff;
  --accent-color-2: #ee1224;
  --accent-color-3: #ffc31f;
  --accent-color-4: #ff6f00;
  --font-family: "TT Firs Neue", sans-serif;
  --second-family: "Robtronika", sans-serif;
  --third-family: "Manrope", sans-serif;
  --font3: "Inter", sans-serif;
}

.btn {
  border: 1px solid rgba(109, 113, 122, 0.2);
  border-radius: 12px;
  padding: 8px 16px;
  backdrop-filter: blur(20px);
  background-color: rgba(182, 184, 188, 0.1);
  width: -moz-fit-content;
  width: fit-content;
  min-height: 50px;
  align-content: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  color: var(--dark-1, 50);
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.3s ease-in-out, background 0.3s ease-in-out;
}
.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.btn-lg {
  height: 64px;
}
.btn-primary {
  border: none;
  background: linear-gradient(90deg, #ee1224 0%, #ffc31f 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(177deg, #ee1224 0%, #ffc31f 100%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(109, 113, 122, 0.2);
  border-radius: 12px;
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn:hover:not(.btn-primary) {
  border-color: rgba(109, 113, 122, 0.4);
  background-color: rgba(182, 184, 188, 0.2);
}

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

html {
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  display: none;
}

body {
  background-color: var(--dark-1000);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: normal;
  line-height: normal;
  color: #fff;
}

.wrapper {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
}
@media (max-width: 1730px) {
  .container {
    max-width: 1440px;
  }
}
@media (max-width: 1540px) {
  .container {
    max-width: 1240px;
  }
}
@media (max-width: 1340px) {
  .container {
    max-width: 1040px;
  }
}
@media (max-width: 1070px) {
  .container {
    max-width: 100%;
    padding-inline: 25px;
  }
}
@media (max-width: 550px) {
  .container {
    padding-inline: 20px;
  }
}

header {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  backdrop-filter: blur(20px);
  background: rgba(182, 184, 188, 0.05);
  border: 1px solid rgba(109, 113, 122, 0.1);
  border-radius: 24px;
  padding: 16px;
  position: fixed;
  z-index: 10;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1730px) {
  header {
    max-width: 1440px;
  }
}
@media (max-width: 1540px) {
  header {
    max-width: 1240px;
  }
}
@media (max-width: 1340px) {
  header {
    max-width: 1040px;
  }
}
@media (max-width: 1070px) {
  header {
    max-width: calc(100% - 50px);
  }
}
@media (max-width: 1000px) {
  header nav:not(.mobile-nav) {
    display: none;
  }
}
@media (max-width: 768px) {
  header {
    padding: 8px;
    border-radius: 16px;
  }
}
@media (max-width: 550px) {
  header {
    max-width: calc(100% - 40px);
  }
}
header .navbar-mobile {
  padding-inline: 16px;
  margin-top: 50px;
  padding-bottom: 10px;
  display: none;
}
header .navbar-mobile nav {
  display: block;
}
header .navbar-mobile ul {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  list-style: none;
  align-items: start;
}
header .navbar-mobile__btns {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-top: 30px;
}
header .navbar-mobile__btns .btn {
  width: 100%;
}
header.open {
  box-shadow: 0 0 0 100vmax rgba(12, 18, 33, 0.8);
}
header.open .navbar-mobile {
  display: block;
}
header.open .bars img {
  opacity: 0;
}
header.open .bars img:last-child {
  opacity: 1;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-wrapper .bars {
  display: none;
  align-content: center;
  position: relative;
}
.header-wrapper .bars img {
  display: block;
  transition: ease-in 0.2s;
}
.header-wrapper .bars img:last-child {
  position: absolute;
  width: 24px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
@media (max-width: 1000px) {
  .header-wrapper .bars {
    display: block;
    border: none;
    background-color: transparent;
  }
}
@media (max-width: 768px) {
  .header-wrapper .logo {
    width: 100%;
    max-width: 130px;
  }
}
.header-wrapper .logo img {
  display: block;
}
@media (max-width: 768px) {
  .header-wrapper .logo img {
    width: 100%;
    height: auto;
  }
}

.navlinks {
  display: flex;
  align-items: center;
  -moz-column-gap: 72px;
       column-gap: 72px;
}
@media (max-width: 1540px) {
  .navlinks {
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
}
.navlinks-item {
  list-style: none;
}
.navlinks-item a {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: #fff;
  text-decoration: none;
}

.cta-btn {
  min-width: 226px;
}
@media (max-width: 1340px) {
  .cta-btn {
    min-width: auto;
  }
}

.header-btns {
  display: flex;
  align-items: stretch;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (max-width: 1000px) {
  .header-btns:not(.header-btn-mobile) {
    display: none;
  }
}

.hero-wrapper {
  padding-block: 136px 100px;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  position: relative;
}
.hero-wrapper::before {
  content: "Единая платформа доступа к 50+ нейросетям мира";
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--dark-400);
}
@media (max-width: 1844px) {
  .hero-wrapper::before {
    left: -40px;
  }
}
@media (max-width: 768px) {
  .hero-wrapper {
    padding-block: 355px 0;
  }
}
@media (max-width: 610px) {
  .hero-wrapper {
    padding-top: 270px;
  }
}
@media (max-width: 450px) {
  .hero-wrapper {
    padding-top: 230px;
  }
}
@media (max-width: 395px) {
  .hero-wrapper {
    padding-top: 190px;
  }
}
.hero-card {
  border: 1px solid var(--dark-400);
  border-radius: 24px;
  padding: 50px;
  width: 100%;
  max-width: 1061px;
  backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  row-gap: 56px;
}
@media (max-width: 1540px) {
  .hero-card {
    padding: 30px;
    row-gap: 30px;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
@media (max-width: 1340px) {
  .hero-card {
    max-width: 50%;
  }
}
@media (max-width: 1000px) {
  .hero-card {
    max-width: 65%;
  }
}
@media (max-width: 840px) {
  .hero-card {
    row-gap: 40px;
    padding: 25px 16px;
  }
}
@media (max-width: 768px) {
  .hero-card {
    max-width: 100%;
  }
}
@media (max-width: 390px) {
  .hero-card {
    row-gap: 20px;
  }
}
.hero-card h1 {
  font-weight: 600;
  font-size: 96px;
  line-height: 100%;
}
@media (max-width: 1540px) {
  .hero-card h1 {
    font-size: 66px;
  }
}
@media (max-width: 840px) {
  .hero-card h1 {
    font-size: 54px;
  }
}
@media (max-width: 390px) {
  .hero-card h1 {
    font-size: 44px;
  }
}
@media (max-width: 350px) {
  .hero-card h1 {
    font-size: 32px;
  }
}
.hero-card h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 58px;
  line-height: 120%;
  color: var(--dark-1, 50);
}
@media (max-width: 1540px) {
  .hero-card h2 {
    font-size: 40px;
  }
}
@media (max-width: 840px) {
  .hero-card h2 {
    font-size: 32px;
  }
}
@media (max-width: 390px) {
  .hero-card h2 {
    font-size: 32px;
  }
}
@media (max-width: 350px) {
  .hero-card h2 {
    font-size: 25px;
  }
}
.hero-card h2 span {
  background: linear-gradient(90deg, #ee1224 0%, #ffc31f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-card ul {
  display: flex;
  align-items: center;
  -moz-column-gap: 48px;
       column-gap: 48px;
}
@media (max-width: 1540px) {
  .hero-card ul {
    gap: 25px;
    flex-wrap: wrap;
  }
}
@media (max-width: 840px) {
  .hero-card ul {
    flex-direction: column;
    row-gap: 16px;
    align-items: flex-start;
  }
}
.hero-card ul li {
  list-style: none;
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  color: #fff;
}
@media (max-width: 395px) {
  .hero-card ul li {
    font-size: 14px;
  }
}
.hero-card .btn {
  padding-inline: 20px;
}
@media (max-width: 840px) {
  .hero-card .btn {
    width: 100%;
  }
}
@media (max-width: 390px) {
  .hero-card .btn {
    height: auto;
  }
}
.hero-bg-detal {
  position: absolute;
  left: 50px;
  bottom: -15px;
  z-index: -1;
}
@media (max-width: 1540px) {
  .hero-bg-detal {
    width: 100%;
    max-width: 600px;
    left: -80px;
    bottom: -75px;
  }
}
@media (max-width: 840px) {
  .hero-bg-detal {
    left: auto;
    right: -160px;
    bottom: -110px;
  }
}
@media (max-width: 395px) {
  .hero-bg-detal {
    height: auto;
    bottom: -50px;
  }
}
.hero-bg {
  position: absolute;
  top: 0;
  right: -160px;
  z-index: -1;
}
@media (max-width: 1540px) {
  .hero-bg {
    width: 100%;
    max-width: 915px;
    right: -240px;
  }
}
@media (max-width: 840px) {
  .hero-bg {
    max-width: 570px;
    right: -114px;
  }
}
@media (max-width: 768px) {
  .hero-bg {
    right: -25px;
  }
}
@media (max-width: 395px) {
  .hero-bg {
    width: 352px;
    right: -20px;
  }
}
.hero-ellipse {
  position: absolute;
  z-index: -2;
}
.hero-ellipse.first {
  top: 0;
  left: 0;
}
@media (max-width: 1540px) {
  .hero-ellipse.first {
    width: 100%;
    max-width: 500px;
    left: 70px;
  }
}
@media (max-width: 768px) {
  .hero-ellipse.first {
    display: none;
  }
}
.hero-ellipse.second {
  right: 0;
  bottom: 0;
}
@media (max-width: 1540px) {
  .hero-ellipse.second {
    width: 100%;
    max-width: 500px;
    right: 80px;
    bottom: 50px;
  }
}
@media (max-width: 768px) {
  .hero-ellipse.second {
    right: -140px;
    bottom: -190px;
  }
}
@media (max-width: 395px) {
  .hero-ellipse.second {
    bottom: -140px;
  }
}
.hero-ellipse.last {
  bottom: -300px;
  left: -161px;
}
@media (max-width: 1540px) {
  .hero-ellipse.last {
    width: 100%;
    height: auto;
    max-width: 500px;
    bottom: -100px;
    left: -170px;
  }
}
@media (max-width: 768px) {
  .hero-ellipse.last {
    display: none;
  }
}

#allAI {
  padding-block: 128px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
@media (max-width: 1540px) {
  #allAI {
    padding-top: 50px;
  }
}
@media (max-width: 768px) {
  #allAI {
    padding-bottom: 50px;
  }
}
#allAI .marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  max-width: 1920px;
  margin-inline: auto;
}
#allAI .marquee-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee 18s linear infinite;
  will-change: transform;
}
#allAI .marquee-list {
  list-style: none;
  display: flex;
  align-items: stretch;
  -moz-column-gap: 16px;
       column-gap: 16px;
  flex-shrink: 0;
  padding-inline-end: 16px;
}
#allAI .marquee-list li {
  display: flex;
  align-items: center;
  -moz-column-gap: 7.5px;
       column-gap: 7.5px;
  border: 1.5px solid rgba(109, 113, 122, 0.2);
  border-radius: 36px;
  height: 60px;
  padding-inline: 24px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: var(--dark-200);
  backdrop-filter: blur(30px);
  background-color: rgba(182, 184, 188, 0.1);
}
#allAI .marquee-list li img {
  flex-shrink: 0;
}
@media (max-width: 395px) {
  #allAI .marquee-list li {
    height: 48px;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
#newmodel {
  position: relative;
}
#newmodel::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset-inline: 0;
  top: 0;
  height: 300px;
  background: linear-gradient(180deg, #0c1221 0%, rgba(12, 18, 33, 0) 100%);
}
@media (max-width: 1540px) {
  #newmodel::before {
    height: 200px;
  }
}
@media (max-width: 768px) {
  #newmodel::before {
    display: none;
  }
}
#newmodel::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 300px;
  background: linear-gradient(0deg, #0c1221 0%, rgba(12, 18, 33, 0) 100%);
}
@media (max-width: 1540px) {
  #newmodel::after {
    height: 200px;
  }
}
@media (max-width: 768px) {
  #newmodel::after {
    display: none;
  }
}

.newmodel-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.newmodel-wrapper .newmodal-btn-mobile {
  display: none;
}
@media (max-width: 768px) {
  .newmodel-wrapper .newmodal-btn-mobile {
    display: block;
    width: 100%;
    margin-top: 21px;
  }
}
@media (max-width: 768px) {
  .newmodel-wrapper {
    flex-direction: column;
  }
}
.newmodel-wrapper__left {
  width: 388px;
  padding-bottom: 50px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 1340px) {
  .newmodel-wrapper__left {
    width: 280px;
  }
}
@media (max-width: 768px) {
  .newmodel-wrapper__left {
    width: 100%;
    padding-bottom: 0;
  }
}
.newmodel-wrapper__left p {
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--dark-300);
}
.newmodel-wrapper__left h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: var(--dark-1, 50);
  margin-block: 24px;
}
@media (max-width: 1340px) {
  .newmodel-wrapper__left h3 {
    margin-block: 15px;
  }
}
@media (max-width: 840px) {
  .newmodel-wrapper__left h3 {
    font-size: 24px;
  }
}
.newmodel-wrapper__left h5 {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--dark-50);
}
.newmodel-wrapper__left .title-block {
  position: relative;
  z-index: 2;
}
.newmodel-wrapper__left img {
  position: absolute;
  top: calc(50% + 50px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 1540px) {
  .newmodel-wrapper__left img {
    width: 590px;
  }
}
@media (max-width: 1340px) {
  .newmodel-wrapper__left img {
    width: 400px;
    transform: translate(-50%, -50%);
    left: 40%;
  }
}
@media (max-width: 1070px) {
  .newmodel-wrapper__left img {
    left: 50%;
  }
}
@media (max-width: 840px) {
  .newmodel-wrapper__left img {
    width: 270px;
    top: calc(50% + 30px);
  }
}
@media (max-width: 768px) {
  .newmodel-wrapper__left img {
    position: static;
    transform: none;
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }
}
.newmodel-wrapper__left button.btn {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 64px;
}
@media (max-width: 768px) {
  .newmodel-wrapper__left button.btn {
    display: none;
  }
}
.newmodel-wrapper__right {
  width: 100%;
  height: 100%;
  min-height: 1060px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1540px) {
  .newmodel-wrapper__right {
    min-height: 800px;
  }
}
@media (max-width: 1340px) {
  .newmodel-wrapper__right {
    min-height: 650px;
  }
}
@media (max-width: 920px) {
  .newmodel-wrapper__right {
    min-height: 600px;
  }
}
@media (max-width: 840px) {
  .newmodel-wrapper__right {
    min-height: 500px;
  }
}
@media (max-width: 768px) {
  .newmodel-wrapper__right {
    min-height: auto;
  }
  .newmodel-wrapper__right::before {
    content: " ";
    position: absolute;
    top: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, #0c1221 0%, rgba(12, 18, 33, 0) 100%);
  }
  .newmodel-wrapper__right::after {
    content: " ";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(0deg, #0c1221 0%, rgba(12, 18, 33, 0) 100%);
  }
}
.newmodel-wrapper__right .columns {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (max-width: 1340px) {
  .newmodel-wrapper__right .columns {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
@media (max-width: 768px) {
  .newmodel-wrapper__right .columns {
    position: static;
    transform: none;
  }
}
@media (max-width: 768px) {
  .newmodel-wrapper__right .columns {
    margin-block: -100px;
  }
}
@media (max-width: 550px) {
  .newmodel-wrapper__right .columns {
    margin-block: 0;
  }
}
.newmodel-wrapper__right .columns .column {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
@media (max-width: 1340px) {
  .newmodel-wrapper__right .columns .column {
    justify-content: center;
    row-gap: 10px;
  }
}
@media (max-width: 550px) {
  .newmodel-wrapper__right .columns .column:last-child {
    display: none;
  }
}
.newmodel-wrapper__right img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--dark-600);
  border-radius: 24px;
}
@media (max-width: 1340px) {
  .newmodel-wrapper__right img {
    border-radius: 16px;
  }
}
.newmodel-wrapper .minimal-globe,
.newmodel-wrapper .minimal-globe-vector {
  position: absolute;
  z-index: -2;
}
.newmodel-wrapper .minimal-globe-vector {
  left: -500px;
  top: 150px;
}
@media (max-width: 1540px) {
  .newmodel-wrapper .minimal-globe-vector {
    width: 100%;
    max-width: 635px;
    left: -320px;
  }
}
@media (max-width: 1340px) {
  .newmodel-wrapper .minimal-globe-vector {
    max-width: 385px;
    left: -190px;
    top: 180px;
  }
}
@media (max-width: 840px) {
  .newmodel-wrapper .minimal-globe-vector {
    left: -140px;
    top: 160px;
  }
}
@media (max-width: 768px) {
  .newmodel-wrapper .minimal-globe-vector {
    display: none;
  }
}
.newmodel-wrapper .minimal-globe {
  left: -55%;
  bottom: -50px;
  opacity: 0.6;
}
@media (max-width: 1540px) {
  .newmodel-wrapper .minimal-globe {
    width: 2000px;
    left: -55%;
    bottom: -50px;
    opacity: 1;
  }
}
@media (max-width: 1340px) {
  .newmodel-wrapper .minimal-globe {
    width: 1340px;
    left: -50%;
    bottom: 0;
  }
}
@media (max-width: 840px) {
  .newmodel-wrapper .minimal-globe {
    width: 1140px;
    left: -40%;
    bottom: 20px;
  }
}
@media (max-width: 768px) {
  .newmodel-wrapper .minimal-globe {
    bottom: auto;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 1033px;
  }
}
@media (max-width: 390px) {
  .newmodel-wrapper .minimal-globe {
    top: 20px;
  }
}
.newmodel-wrapper .right-arrows {
  position: absolute;
  right: -100px;
  inset-block: 0;
  align-items: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.newmodel-wrapper .right-arrows img {
  display: block;
  flex-shrink: 0;
}
.newmodel-wrapper .right-arrows span {
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  text-align: center;
  color: var(--dark-400);
  position: absolute;
  white-space: nowrap;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
@media (max-width: 1844px) {
  .newmodel-wrapper .right-arrows {
    right: -40px;
  }
}

#assist {
  padding-top: 128px;
}
@media (max-width: 768px) {
  #assist {
    padding-top: 50px;
  }
}

.assist-wrapper {
  padding-block: 100px;
  position: relative;
}
@media (max-width: 1070px) {
  .assist-wrapper {
    padding-block: 0;
  }
}
.assist-wrapper::before {
  content: "AI-ассистент";
  position: absolute;
  top: calc(50% + 100px);
  transform: translateY(-50%) rotate(-90deg);
  left: -100px;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--dark-400);
}
.assist-wrapper h1 {
  font-weight: 600;
  font-size: 96px;
  line-height: 1;
}
@media (max-width: 1540px) {
  .assist-wrapper h1 {
    font-size: 66px;
  }
}
@media (max-width: 840px) {
  .assist-wrapper h1 {
    font-size: 54px;
  }
}
@media (max-width: 390px) {
  .assist-wrapper h1 {
    font-size: 44px;
  }
}
@media (max-width: 350px) {
  .assist-wrapper h1 {
    font-size: 32px;
  }
}
.assist-wrapper h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  background: linear-gradient(90deg, #ee1224 0%, #ffc31f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-block: 10px 24px;
}
@media (max-width: 1540px) {
  .assist-wrapper h2 {
    font-size: 40px;
  }
}
@media (max-width: 840px) {
  .assist-wrapper h2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .assist-wrapper h2 {
    margin-bottom: 15px;
  }
}
@media (max-width: 390px) {
  .assist-wrapper h2 {
    font-size: 32px;
  }
}
@media (max-width: 350px) {
  .assist-wrapper h2 {
    font-size: 25px;
  }
}
.assist-wrapper p {
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  color: var(--dark-50);
}
@media (max-width: 1070px) {
  .assist-wrapper p {
    max-width: 540px;
  }
}
.assist-wrapper form {
  margin-top: 64px;
}
@media (max-width: 1730px) {
  .assist-wrapper form {
    max-width: 820px;
  }
}
@media (max-width: 1540px) {
  .assist-wrapper form {
    max-width: 700px;
    margin-top: 35px;
  }
}
@media (max-width: 1070px) {
  .assist-wrapper form {
    max-width: 540px;
  }
}
@media (max-width: 768px) {
  .assist-wrapper form {
    max-width: 100%;
    margin-top: -100px;
  }
}
@media (max-width: 550px) {
  .assist-wrapper form {
    margin-top: -75px;
  }
}
.assist-wrapper form textarea {
  border: 1px solid var(--dark-600);
  border-radius: 24px;
  padding: 24px;
  width: 100%;
  max-width: 927px;
  height: 128px;
  resize: none;
  outline: none;
  backdrop-filter: blur(40px);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
}
.assist-wrapper form textarea::-moz-placeholder {
  color: var(--dark-500);
}
.assist-wrapper form textarea::placeholder {
  color: var(--dark-500);
}
.assist-wrapper form ul {
  margin-block: 24px;
  display: flex;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 1070px) {
  .assist-wrapper form ul {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .assist-wrapper form ul {
    margin-inline: -25px;
    overflow-x: auto;
    padding-inline: 25px;
    flex-wrap: nowrap;
  }
  .assist-wrapper form ul::-webkit-scrollbar {
    display: none;
  }
}
.assist-wrapper form ul li {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  border-radius: 24px;
  padding: 2px 15px;
  min-height: 40px;
  width: -moz-fit-content;
  width: fit-content;
  backdrop-filter: blur(20px);
  background-color: rgba(182, 184, 188, 0.1);
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 12px;
}
.assist-wrapper form ul li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}
.assist-wrapper form ul li svg stop:first-child {
  stop-color: white;
}
.assist-wrapper form ul li svg stop:last-child {
  stop-color: white;
}
.assist-wrapper form ul li.active {
  background-color: rgba(255, 195, 31, 0.2);
  position: relative;
}
.assist-wrapper form ul li.active span {
  background: linear-gradient(90deg, #ee1224 0%, #ffc31f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.assist-wrapper form ul li.active::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 24px;
  background: linear-gradient(to right, #ee1224 0%, #ffc31f 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  pointer-events: none;
}
.assist-wrapper form ul li.active svg stop:first-child {
  stop-color: #ee1224;
}
.assist-wrapper form ul li.active svg stop:last-child {
  stop-color: #ffc31f;
}
.assist-wrapper form button {
  width: 100%;
  max-width: 388px;
}
@media (max-width: 550px) {
  .assist-wrapper form button {
    max-width: 100%;
  }
}
.assist-wrapper .assist-ellipse {
  position: absolute;
  z-index: -2;
}
.assist-wrapper .assist-ellipse.one {
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%);
}
@media (max-width: 1540px) {
  .assist-wrapper .assist-ellipse.one {
    width: 100%;
    max-width: 575px;
  }
}
@media (max-width: 1070px) {
  .assist-wrapper .assist-ellipse.one {
    max-width: 400px;
    left: 40%;
  }
}
@media (max-width: 768px) {
  .assist-wrapper .assist-ellipse.one {
    left: auto;
    right: 0;
    transform: none;
    bottom: 40%;
  }
}
@media (max-width: 650px) {
  .assist-wrapper .assist-ellipse.one {
    right: -70px;
  }
}
@media (max-width: 550px) {
  .assist-wrapper .assist-ellipse.one {
    right: -120px;
  }
}
.assist-wrapper .assist-ellipse.two {
  left: -165px;
  bottom: -50%;
}
@media (max-width: 1540px) {
  .assist-wrapper .assist-ellipse.two {
    width: 100%;
    max-width: 575px;
    bottom: -40px;
  }
}
@media (max-width: 1070px) {
  .assist-wrapper .assist-ellipse.two {
    max-width: 400px;
    left: -25px;
    bottom: -60px;
  }
}
@media (max-width: 768px) {
  .assist-wrapper .assist-ellipse.two {
    bottom: 50px;
    left: -25px;
  }
}
@media (max-width: 650px) {
  .assist-wrapper .assist-ellipse.two {
    bottom: 120px;
  }
}
.assist-wrapper::before {
  content: "AI-ассистент";
  position: absolute;
  top: 50%;
  left: -120px;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  text-align: center;
  color: var(--dark-400);
}
@media (max-width: 1844px) {
  .assist-wrapper::before {
    left: -40px;
  }
}
.assist-dog {
  position: absolute;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  right: -50px;
}
@media (max-width: 1540px) {
  .assist-dog {
    width: 100%;
    max-width: 650px;
  }
}
@media (max-width: 1340px) {
  .assist-dog {
    right: -140px;
  }
}
@media (max-width: 1070px) {
  .assist-dog {
    right: 0;
  }
}
@media (max-width: 1000px) {
  .assist-dog {
    right: -130px;
  }
}
@media (max-width: 768px) {
  .assist-dog {
    position: static;
    transform: none;
    max-width: 500px;
    margin-inline: auto;
    transform: translateX(-25px);
    display: block;
  }
}

#service {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-top: 128px;
  position: relative;
  max-width: 1920px;
  overflow: visible;
  margin-inline: auto;
}
@media (max-width: 768px) {
  #service {
    margin-top: 50px;
  }
}
#service .container {
  position: relative;
  z-index: 3;
}
#service .info {
  width: 100%;
  max-width: 523px;
}
#service .info-mobile {
  display: none;
}
@media (max-width: 1340px) {
  #service .info {
    max-width: 473px;
  }
}
@media (max-width: 1070px) {
  #service .info-desktop {
    display: none;
  }
  #service .info-mobile {
    display: block;
    margin-bottom: 32px;
  }
}
#service .info span {
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--dark-200);
}
#service .info h2 {
  margin-block: 24px;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: var(--dark-1, 50);
}
@media (max-width: 1540px) {
  #service .info h2 {
    margin-block: 10px;
  }
}
@media (max-width: 840px) {
  #service .info h2 {
    font-size: 24px;
  }
}
#service .info p {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--dark-50);
}
#service .slider-btns {
  display: flex;
}
#service .slider-btns-mobile {
  display: none;
}
@media (max-width: 1070px) {
  #service .slider-btns-desktop {
    display: none;
  }
  #service .slider-btns-mobile {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 3;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
#service .slider-btns button {
  width: 64px;
  height: 64px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
@media (max-width: 1070px) {
  #service .slider-btns button {
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    margin-top: 32px;
  }
}
#service::after {
  content: "Лучшие мировые текстовые модели";
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%) rotate(90deg);
  z-index: 2;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--dark-400);
}
@media (max-width: 1070px) {
  #service::after {
    display: none;
  }
}
#service .mini-globe {
  position: absolute;
  z-index: -1;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1540px) {
  #service .mini-globe {
    width: 100%;
    bottom: -130px;
  }
}
@media (max-width: 1070px) {
  #service .mini-globe {
    bottom: -90px;
  }
}
@media (max-width: 768px) {
  #service .mini-globe {
    bottom: -60px;
    left: auto;
    right: -10%;
    transform: none;
    width: 1278px;
  }
}
@media (max-width: 450px) {
  #service .mini-globe {
    bottom: -90px;
  }
}
#service .ellipse {
  position: absolute;
  z-index: -1;
  top: calc(50% + 100px);
  left: calc(50% + 400px);
  transform: translate(-50%, -50%);
}
@media (max-width: 1540px) {
  #service .ellipse {
    width: 100%;
    max-width: 600px;
    left: calc(50% + 100px);
  }
}
@media (max-width: 1070px) {
  #service .ellipse {
    top: calc(50% + 200px);
    left: calc(50% + 70px);
  }
}
@media (max-width: 910px) {
  #service .ellipse {
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  #service .ellipse {
    top: calc(50% + 170px);
    left: 50%;
  }
}
@media (max-width: 450px) {
  #service .ellipse {
    max-width: 250px;
    left: 35%;
  }
}
#service .dog {
  position: absolute;
  left: -180px;
  bottom: -115px;
  z-index: 2;
}
@media (max-width: 1540px) {
  #service .dog {
    width: 100%;
    max-width: 860px;
    bottom: -95px;
  }
}
@media (max-width: 1070px) {
  #service .dog {
    max-width: 690px;
    bottom: -140px;
  }
}
@media (max-width: 768px) {
  #service .dog {
    width: 500px;
    bottom: 0;
    left: -50px;
  }
}
@media (max-width: 450px) {
  #service .dog {
    width: 399px;
  }
}
#service .blocks {
  position: absolute;
  bottom: 150px;
  right: 320px;
  z-index: -1;
}
@media (max-width: 1540px) {
  #service .blocks {
    width: 100%;
    max-width: 135px;
    bottom: 145px;
    right: 220px;
  }
}
@media (max-width: 1070px) {
  #service .blocks {
    max-width: 85px;
    bottom: 105px;
    right: 140px;
  }
}
@media (max-width: 768px) {
  #service .blocks {
    bottom: 135px;
    right: 0;
  }
}
@media (max-width: 450px) {
  #service .blocks {
    max-width: 73px;
    height: auto;
    display: block;
    bottom: 105px;
  }
}

.swiper-service {
  width: 100%;
  position: relative;
  max-width: 1920px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .swiper-service {
    position: relative;
    z-index: 3;
  }
}
.swiper-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 689px;
  height: 620px;
  background: linear-gradient(90deg, #0c1221 0%, rgba(12, 18, 33, 0) 100%);
}
@media (max-width: 1540px) {
  .swiper-service::before {
    width: 300px;
    height: 350px;
  }
}
@media (max-width: 1070px) {
  .swiper-service::before {
    display: none;
  }
}
.swiper-service::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 689px;
  height: 620px;
  background: linear-gradient(-90deg, #0c1221 0%, rgba(12, 18, 33, 0) 100%);
}
@media (max-width: 1540px) {
  .swiper-service::after {
    width: 300px;
    height: 350px;
  }
}
@media (max-width: 1070px) {
  .swiper-service::after {
    display: none;
  }
}
.swiper-service .swiper-slide {
  width: 100%;
  max-width: 388px;
}
@media (max-width: 1540px) {
  .swiper-service .swiper-slide {
    max-width: 280px;
  }
}
@media (max-width: 768px) {
  .swiper-service .swiper-slide {
    max-width: 304px;
  }
}
@media (max-width: 350px) {
  .swiper-service .swiper-slide {
    max-width: 260px;
  }
}

.service-wrapper {
  margin-top: 200px;
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 83px;
       column-gap: 83px;
  justify-content: flex-end;
}
@media (max-width: 1540px) {
  .service-wrapper {
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
}
@media (max-width: 1070px) {
  .service-wrapper {
    margin-top: 150px;
  }
}
@media (max-width: 768px) {
  .service-wrapper {
    margin-top: 220px;
  }
}
@media (max-width: 450px) {
  .service-wrapper {
    margin-top: 170px;
  }
}
.service-wrapper .btn {
  width: 100%;
  max-width: 388px;
}
@media (max-width: 1540px) {
  .service-wrapper .btn {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
@media (max-width: 1070px) {
  .service-wrapper .btn {
    max-width: 280px;
  }
}
@media (max-width: 550px) {
  .service-wrapper .btn {
    max-width: 100%;
  }
}
.service-card {
  border: 1px solid var(--dark-800);
  border-radius: 24px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.service-card__img {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.service-card__about {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 48px 24px;
}
@media (max-width: 1540px) {
  .service-card__about {
    padding-block: 24px;
  }
}
.service-card__about::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  width: 100%;
  max-width: 373px;
  inset-block: 0;
  background: linear-gradient(90deg, #0c1221 0%, rgba(12, 18, 33, 0) 100%);
}
.service-card__about h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #fff;
}
@media (max-width: 768px) {
  .service-card__about h3 {
    font-size: 18px;
  }
}
.service-card__about .series {
  margin-top: 24px;
  list-style: none;
}
@media (max-width: 1540px) {
  .service-card__about .series {
    margin-top: 15px;
  }
}
.service-card__about .series .serie:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 1540px) {
  .service-card__about .series .serie:not(:last-child) {
    margin-bottom: 10px;
  }
}
.service-card__about .series b {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: var(--dark-1, 50);
}
@media (max-width: 768px) {
  .service-card__about .series b {
    font-size: 14px;
  }
}
.service-card__about .series p {
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--dark-400);
}

#agent {
  margin-top: 128px;
}
@media (max-width: 768px) {
  #agent {
    margin-top: 50px;
  }
}
#agent .agent-btn-mobile {
  display: none;
}
@media (max-width: 1070px) {
  #agent .agent-btn-mobile {
    display: block;
    margin-top: 25px;
    width: 100%;
    max-width: 388px;
    margin-left: auto;
  }
}
@media (max-width: 700px) {
  #agent .agent-btn-mobile {
    max-width: 100%;
  }
}

.agent-wrapper {
  display: grid;
  grid-template-columns: 1fr 388px;
  align-items: stretch;
  -moz-column-gap: 16px;
       column-gap: 16px;
  position: relative;
}
@media (max-width: 1340px) {
  .agent-wrapper {
    grid-template-columns: 1fr 280px;
  }
}
@media (max-width: 1070px) {
  .agent-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.agent-wrapper::before {
  content: "AI-агент";
  position: absolute;
  top: 50%;
  left: -100px;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  text-align: center;
  color: var(--dark-400);
}
@media (max-width: 1844px) {
  .agent-wrapper::before {
    left: -40px;
  }
}
.agent-wrapper__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(208px, auto);
  gap: 16px;
}
@media (max-width: 1070px) {
  .agent-wrapper__cards {
    order: 2;
    margin-top: 200px;
  }
}
@media (max-width: 700px) {
  .agent-wrapper__cards {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(176px, auto);
  }
}
@media (max-width: 400px) {
  .agent-wrapper__cards {
    margin-top: 95px;
  }
}
.agent-wrapper__cards .card {
  border: 1px solid var(--dark-400);
  border-radius: 24px;
  padding: 32px 24px 24px;
  backdrop-filter: blur(20px);
  background: rgba(251, 251, 252, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 550px) {
  .agent-wrapper__cards .card {
    padding: 16px;
    border-radius: 16px;
  }
}
.agent-wrapper__cards .card h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: var(--dark-1, 50);
}
@media (max-width: 1340px) {
  .agent-wrapper__cards .card h3 {
    font-size: 20px;
  }
}
@media (max-width: 550px) {
  .agent-wrapper__cards .card h3 {
    font-size: 18px;
  }
}
.agent-wrapper__cards .card p {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--dark-50);
  margin-top: 5px;
}
@media (max-width: 550px) {
  .agent-wrapper__cards .card p {
    font-size: 12px;
  }
}
.agent-wrapper__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.agent-wrapper__right span {
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--dark-300);
}
.agent-wrapper__right h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: var(--dark-1, 50);
  margin-block: 15px;
}
@media (max-width: 550px) {
  .agent-wrapper__right h3 {
    font-size: 24px;
    margin-block: 10px;
  }
}
.agent-wrapper__right p {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--dark-50);
}
.agent-wrapper__right .btn {
  width: 100%;
}
@media (max-width: 1070px) {
  .agent-wrapper__right .btn {
    display: none;
  }
}
.agent-wrapper__right .agent-detail {
  position: absolute;
  z-index: -1;
  right: -150px;
  top: -50px;
}
@media (max-width: 1340px) {
  .agent-wrapper__right .agent-detail {
    width: 550px;
    right: -100px;
    top: 0;
  }
}
@media (max-width: 1070px) {
  .agent-wrapper__right .agent-detail {
    right: 0;
  }
}
@media (max-width: 550px) {
  .agent-wrapper__right .agent-detail {
    right: -60px;
  }
}
@media (max-width: 400px) {
  .agent-wrapper__right .agent-detail {
    width: 281.08px;
    right: -30px;
    top: 50px;
  }
}

#plans {
  padding-top: 128px;
  position: relative;
}
@media (max-width: 768px) {
  #plans {
    padding-top: 50px;
  }
}
#plans .title-block {
  text-align: center;
}
@media (max-width: 768px) {
  #plans .title-block {
    text-align: start;
  }
}
#plans .title-block h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: var(--dark-1, 50);
}
@media (max-width: 550px) {
  #plans .title-block h2 {
    font-size: 24px;
  }
}
@media (max-width: 390px) {
  #plans .title-block h2 {
    font-size: 24px;
  }
}
#plans .title-block h5 {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--dark-50);
  margin-top: 15px;
}
@media (max-width: 390px) {
  #plans .title-block h5 {
    font-size: 14px;
  }
}
@media (max-width: 550px) {
  #plans .title-block h5 {
    margin-top: 10px;
  }
}

.plans-cards {
  display: flex;
  align-items: stretch;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin-top: 50px;
  position: relative;
}
@media (max-width: 1340px) {
  .plans-cards {
    flex-wrap: wrap;
    row-gap: 16px;
    justify-content: center;
  }
}
.plans-cards::after {
  content: "Тарифы";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  right: -100px;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  text-align: center;
  color: var(--dark-400);
}
@media (max-width: 1844px) {
  .plans-cards::after {
    right: -40px;
  }
}
@media (max-width: 1070px) {
  .plans-cards::after {
    display: none;
  }
}
.plans-card {
  width: 100%;
  min-height: 560px;
  height: auto;
  flex: 1;
  border: 1px solid var(--dark-1, 50);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 40px;
}
@media (max-width: 1340px) {
  .plans-card {
    flex: none;
    width: calc(33.3333333333% - 11px);
  }
}
@media (max-width: 1070px) {
  .plans-card {
    min-height: auto;
  }
}
@media (max-width: 992px) {
  .plans-card {
    width: calc(50% - 8px);
  }
}
@media (max-width: 650px) {
  .plans-card {
    padding: 24px;
  }
}
@media (max-width: 600px) {
  .plans-card {
    width: 100%;
  }
}
.plans-card__wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.plans-card__header {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.plans-card__header .icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--bg);
  align-content: center;
  border-radius: 50%;
}
.plans-card__header .icon img {
  display: block;
  margin-inline: auto;
}
.plans-card__header h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  color: var(--dark-1, 50);
}
.plans-card__header p {
  margin-top: 5px;
  font-weight: 400;
  font-size: 10px;
  line-height: 140%;
  color: var(--dark-400);
}
.plans-card .prices {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.plans-card .prices .price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.plans-card .prices .price h2 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: var(--dark-1, 50);
}
.plans-card .prices .price h2 span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--dark-400);
}
.plans-card .prices .price sub {
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  color: var(--dark-400);
}
.plans-card .prices .price:first-child h2 {
  font-size: 32px;
}
.plans-card .prices .price .discount {
  border: 1px solid rgba(109, 113, 122, 0.2);
  border-radius: 6px;
  padding: 5px 10px;
  backdrop-filter: blur(20px);
  background-color: var(--accent-color-3);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  color: var(--dark-900);
}
.plans-card .plans-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.plans-card .plans-list li {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--dark-200);
}
.plans-card .plan-btn {
  width: 100%;
}
.plans-card .plan-btn.free-btn {
  border: 1px solid var(--dark-1, 50);
}
/* Полупрозрачный фон .btn + backdrop-filter blur на iOS Safari над золотыми
   свечениями карточек тарифов давал «белую» кнопку → белый текст (--dark-1
   #fbfbfc) исчезал (не видно кнопки «Оформить» на мобильном, скрин 17.07).
   Делаем фон непрозрачным и убираем зависимость от backdrop-filter — текст
   читаем на любом браузере. btn-primary (золотой градиент) не трогаем. */
.plans-card .plan-btn:not(.btn-primary) {
  background-color: var(--dark-800);
  backdrop-filter: none;
}
@media (max-width: 390px) {
  .plans-card .plan-btn {
    font-size: 14px;
  }
}
.plans-card.ekipaj {
  border: 2px solid var(--accent-color-4);
  background-color: #3d251a;
  position: relative;
}
.plans-card.ekipaj::before {
  content: "ПОПУЛЯРНЫЙ";
  position: absolute;
  top: -18px;
  right: 30px;
  border-radius: 28px;
  padding-inline: 16px;
  height: 30.81px;
  align-content: center;
  backdrop-filter: blur(23.703704834px);
  background-color: var(--accent-color-4);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  text-align: center;
}
.plans-card .plan-gift {
  margin-top: 10px;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 992px) {
  .plans-card.ekipaj::before {
    height: 24px;
    top: -12px;
  }
}
.plans-card.ekipaj .card-noise {
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  opacity: 0.4;
}

#comments {
  padding-top: 128px;
}
#comments .title-block {
  text-align: center;
}
@media (max-width: 768px) {
  #comments .title-block {
    text-align: start;
  }
}
#comments .title-block h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: var(--dark-1, 50);
}
@media (max-width: 550px) {
  #comments .title-block h2 {
    font-size: 24px;
  }
}
#comments .title-block h5 {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--dark-50);
  margin-top: 15px;
}
@media (max-width: 550px) {
  #comments .title-block h5 {
    margin-top: 10px;
  }
}

.comments-wrapper {
  position: relative;
  max-width: 1920px;
  margin-inline: auto;
  overflow: hidden;
}
.comments-wrapper::before {
  content: "Отзывы пользователей";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: -12px;
  transform: translateY(-50%) rotate(-90deg);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  text-align: center;
  color: var(--dark-400);
}
@media (max-width: 1070px) {
  .comments-wrapper::before {
    display: none;
  }
}

.comments-swiper {
  margin-top: 50px;
  position: relative;
}
.comments-swiper::before, .comments-swiper::after {
  position: absolute;
  z-index: 2;
  width: 318px;
  inset-block: 0;
}
.comments-swiper::before {
  content: "";
  left: 0;
  background: linear-gradient(90deg, #0c1221 0%, rgba(12, 18, 33, 0) 100%);
}
@media (max-width: 992px) {
  .comments-swiper::before {
    width: 150px;
  }
}
@media (max-width: 768px) {
  .comments-swiper::before {
    display: none;
  }
}
.comments-swiper::after {
  content: "";
  right: 0;
  background: linear-gradient(-90deg, #0c1221 0%, rgba(12, 18, 33, 0) 100%);
}
@media (max-width: 992px) {
  .comments-swiper::after {
    width: 150px;
  }
}
@media (max-width: 768px) {
  .comments-swiper::after {
    display: none;
  }
}
.comments-swiper .swiper-slide {
  width: 100%;
  max-width: 388px;
  height: auto;
}
@media (max-width: 1540px) {
  .comments-swiper .swiper-slide {
    max-width: 280px;
  }
}
@media (max-width: 992px) {
  .comments-swiper .swiper-slide {
    max-width: 350px;
  }
}
@media (max-width: 450px) {
  .comments-swiper .swiper-slide {
    max-width: 304px;
  }
}
@media (max-width: 350px) {
  .comments-swiper .swiper-slide {
    max-width: 280px;
  }
}

.comment-card {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid var(--dark-600);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(20px);
  background-color: rgba(251, 251, 252, 0.1);
  height: 100%;
}
@media (max-width: 768px) {
  .comment-card {
    height: auto;
  }
}
.comment-card__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.comment-card__header img {
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  width: 54px;
  height: 54px;
}
.comment-card__header .flex {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.comment-card__header h5 {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: var(--dark-1, 50);
}
.comment-card__header h6 {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--dark-400);
  margin-top: 5px;
}
.comment-card__header span {
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--dark-600);
}
.comment-card .comment-txt {
  margin-top: 24px;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--dark-50);
}

.start-cta {
  margin-top: 150px;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  row-gap: 24px;
  position: relative;
}
@media (max-width: 1070px) {
  .start-cta {
    width: 100%;
    max-width: calc(100% - 50px);
    margin-inline: auto;
  }
}
@media (max-width: 768px) {
  .start-cta {
    row-gap: 32px;
    margin-top: 50px;
  }
}
@media (max-width: 550px) {
  .start-cta {
    max-width: calc(100% - 40px);
  }
}
.start-cta .title-block {
  text-align: center;
  width: 100%;
}
@media (max-width: 768px) {
  .start-cta .title-block {
    text-align: start;
  }
}
.start-cta .title-block p {
  margin-top: 24px;
}
@media (max-width: 550px) {
  .start-cta .title-block p {
    margin-top: 15px;
  }
}
.start-cta h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: var(--dark-1, 50);
}
.start-cta p {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--dark-50);
}
.start-cta .btn {
  width: 100%;
  max-width: 388px;
}
@media (max-width: 768px) {
  .start-cta .btn {
    max-width: 100%;
  }
}
.start-cta ul {
  width: 100%;
  max-width: 768px;
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  list-style: none;
}
@media (max-width: 768px) {
  .start-cta ul {
    flex-wrap: wrap;
    row-gap: 32px;
  }
}
@media (max-width: 650px) {
  .start-cta ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
}
.start-cta ul li {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  color: #fff;
}
@media (max-width: 450px) {
  .start-cta ul li {
    font-size: 14px;
  }
}

#requests {
  padding-top: 150px;
  position: relative;
}
@media (max-width: 768px) {
  #requests {
    padding-top: 100px;
  }
}
#requests .title-block {
  text-align: center;
}
@media (max-width: 768px) {
  #requests .title-block {
    text-align: start;
  }
}
#requests .title-block h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: var(--dark-1, 50);
  margin-top: 15px;
}
@media (max-width: 550px) {
  #requests .title-block h2 {
    font-size: 24px;
    margin-top: 10px;
  }
}
#requests .title-block h5 {
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--dark-300);
}
#requests .ellipse {
  position: absolute;
  z-index: -1;
}
#requests .ellipse.first {
  top: -300px;
  left: -150px;
}
@media (max-width: 910px) {
  #requests .ellipse.first {
    width: 100%;
    max-width: 500px;
    top: -260px;
    left: auto;
    right: -180px;
  }
}
@media (max-width: 768px) {
  #requests .ellipse.first {
    max-width: 400px;
    top: -210px;
    right: -160px;
  }
}
#requests .ellipse.second {
  bottom: -400px;
  right: -150px;
}
@media (max-width: 910px) {
  #requests .ellipse.second {
    right: auto;
    left: -130px;
    bottom: 0;
    width: 100%;
    max-width: 500px;
  }
}
#requests .fictional-planet {
  position: absolute;
  z-index: -1;
  top: calc(-100% + 300px);
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  #requests .fictional-planet {
    width: 100%;
    top: -440px;
    width: 686px;
  }
}
@media (max-width: 550px) {
  #requests .fictional-planet {
    width: 660px;
    top: -420px;
  }
}

.requests-wrapper {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-inline: auto;
  position: relative;
}
.requests-wrapper::after {
  content: "FAQ";
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(50%) rotate(90deg);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  text-align: center;
  color: var(--dark-400);
}
@media (max-width: 1844px) {
  .requests-wrapper::after {
    right: -40px;
  }
}
.requests-wrapper details {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  width: 100%;
  max-width: 793px;
  margin-inline: auto;
}
.requests-wrapper details::before {
  content: "";
  opacity: 0;
  transition: ease-in opacity 0.2s;
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 24px;
  background: linear-gradient(to right, #ee1224 0%, #ffc31f 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  pointer-events: none;
}
.requests-wrapper details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: var(--dark-1, 50);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--dark-600);
  backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 550px) {
  .requests-wrapper details summary {
    font-size: 14px;
  }
}
.requests-wrapper details summary svg {
  flex-shrink: 0;
  transition: ease-in transform 0.3s;
}
.requests-wrapper details p {
  padding-block: 0 12px;
  padding-inline: 24px;
  font-family: var(--font3);
  font-weight: 400;
  font-size: 14px;
  line-height: 155%;
  color: rgba(255, 255, 255, 0.85);
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.requests-wrapper details [itemprop="text"] > :last-child {
  padding-bottom: 24px;
}
.requests-wrapper details ul {
  margin: 0;
  padding: 0 24px 12px 44px;
  font-family: var(--font3);
  font-weight: 400;
  font-size: 14px;
  line-height: 155%;
  color: rgba(255, 255, 255, 0.85);
}
.requests-wrapper details ul li + li {
  margin-top: 6px;
}
.requests-wrapper details p a {
  color: rgba(255, 255, 255, 0.7);
}
.requests-wrapper details[open] {
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.1);
}
.requests-wrapper details[open]::before {
  opacity: 1;
  border-radius: 16px;
}
.requests-wrapper details[open] summary {
  backdrop-filter: blur(0);
  background-color: transparent;
  border-color: transparent;
}
.requests-wrapper details[open] summary svg {
  transform: rotate(45deg);
}
.requests-wrapper details[open] summary svg g rect {
  fill: var(--accent-color-3);
}

footer {
  margin-top: 150px;
  padding-bottom: 50px;
  position: relative;
}
@media (max-width: 768px) {
  footer {
    padding-bottom: 30px;
  }
}
footer .footer-bg {
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
}
@media (max-width: 1000px) {
  footer .footer-bg {
    width: 120%;
  }
}
@media (max-width: 850px) {
  footer .footer-bg {
    width: 150%;
  }
}
footer .container {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(109, 113, 122, 0.2);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  background-color: rgba(182, 184, 188, 0.05);
}
@media (max-width: 1070px) {
  footer .container {
    max-width: calc(100% - 50px);
  }
}
@media (max-width: 550px) {
  footer .container {
    max-width: calc(100% - 40px);
  }
}
@media (max-width: 450px) {
  footer .container {
    padding: 20px;
  }
}

.footer-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
@media (max-width: 1340px) {
  .footer-wrapper {
    flex-direction: column;
    row-gap: 25px;
  }
}
.footer-wrapper__left {
  text-align: center;
}
@media (max-width: 650px) {
  .footer-wrapper__left {
    margin-inline: auto;
  }
}
.footer-wrapper__left img {
  display: block;
  margin-bottom: 32px;
}
@media (max-width: 1340px) {
  .footer-wrapper__left img {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
  }
}
.footer-wrapper__left span {
  font-weight: 400;
  font-size: 10px;
  line-height: 140%;
  color: #676e7b;
  opacity: 0.6;
}
.footer-wrapper__left .footer-requisites {
  display: block;
  margin-top: 12px;
  opacity: 0.75;
}
.footer-wrapper__left .footer-requisites a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-series {
  width: 100%;
  max-width: 1059px;
  margin-left: auto;
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 17px;
       column-gap: 17px;
}
@media (max-width: 850px) {
  .footer-series {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 25px;
  }
}
@media (max-width: 650px) {
  .footer-series {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer-series .serie {
  flex-grow: 1;
}
.footer-series .serie strong {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: var(--dark-1, 50);
}
.footer-series .serie ul {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.footer-series .serie ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--dark-300);
  text-decoration: none;
}
.footer-series .serie.no-title ul {
  margin-top: 52.56px;
}
@media (max-width: 650px) {
  .footer-series .serie.no-title ul {
    margin-top: 0;
    margin-top: -24px;
  }
}
.footer-btns {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (max-width: 650px) {
  .footer-btns {
    flex-direction: column;
    row-gap: 16px;
  }
}
.footer-btns a {
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 650px) {
  .footer-btns a {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */