/* variables */
:root {
  --black: #110e12;
  --dark--light: #322b37;
  --dark-grey: #7a7482;
  --light-gray: #efecf0;
  --container-max: 1440px;
  --container-pad: 0px;
  --container-pad-legal: -60px;
  --container-max-tablet: 1024px;
  --container-pad-tablet: 80px;
  --container-max-mobile: 450px;
  --container-pad-mobile: 20px;
  --site-header-h: 80px;
}

/* fonts */
@font-face {
  font-family: "inter-regular";
  src:
    url(../fonts/inter-regular.woff2) format("woff2"),
    url(../fonts/inter-regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "inter-medium";
  src:
    url(../fonts/inter-medium.woff2) format("woff2"),
    url(../fonts/inter-medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "merriweather-light";
  src:
    url(../fonts/Merriweather-Light.woff2) format("woff2"),
    url(../fonts/Merriweather-Light.woff) format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "montserrat-bold";
  src:
    url(../fonts/Montserrat-Bold.woff2) format("woff2"),
    url(../fonts/Montserrat-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "spacegrotesk-light";
  src: url(../fonts/SpaceGrotesk-Light.ttf) format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "spacegrotesk-regular";
  src: url(../fonts/SpaceGrotesk-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "spacegrotesk-medium";
  src: url(../fonts/SpaceGrotesk-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "spacegrotesk-bold";
  src: url(../fonts/SpaceGrotesk-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* main styles */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 10;
  background-color: #ffffffb2;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.container-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
  position: relative;
  padding: 0 40px;
}
.main {
  padding-top: 96px;
}
.logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.logo p {
  font-family: "spacegrotesk-bold", sans-serif;
  color: var(--dark--light);
  font-size: 18px;
  line-height: 100%;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 24px;
  padding: 8px;
  border-radius: 80px;
  background: transparent;
}
.header__nav::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 80px;
  padding: 1px;
  background: linear-gradient(
    90deg,
    rgba(175, 163, 238, 0.6),
    rgba(211, 203, 255, 0.6),
    rgba(175, 163, 238, 0.6)
  );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.header__nav a {
  font-family: "spacegrotesk-regular", sans-serif;
  color: var(--black);
  padding: 8px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  line-height: 16px;
  width: 86px;
  transition: all 0.2s ease;
}
.header__nav a:hover {
  font-family: "spacegrotesk-medium", sans-serif;
}
.header__nav a.active {
  font-family: "spacegrotesk-medium", sans-serif;
  background: linear-gradient(
    90deg,
    rgba(175, 163, 238, 0.3),
    rgba(211, 203, 255, 0.3),
    rgba(175, 163, 238, 0.3)
  );
}

.header__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.header__buttons button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(
        90deg,
        rgba(175, 163, 238, 1),
        rgba(211, 203, 255, 1),
        rgba(175, 163, 238, 1)
      )
      border-box;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "inter-regular", sans-serif;
}
.header__buttons a {
  background: linear-gradient(90deg, #afa3ee 0%, #d3cbff 50%, #afa3ee 100%);
  background-size: 200% 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 138px;
  border-radius: 999px;
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
  font-family: "spacegrotesk-regular", sans-serif;
  transition: background-position 1s ease;
}
.header__buttons a:hover {
  background-position: 100% 0;
  font-family: "spacegrotesk-medium", sans-serif;
}
.footer {
  padding: 44px 0;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.footer__bottom a {
  font-family: "spacegrotesk-light", sans-serif;
  line-height: 100%;
  font-size: 14px;
  text-decoration: underline;
  color: #000;
}
.footer__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer__nav a {
  font-size: 16px;
  line-height: 16px;
  color: var(--dark--light);
  font-family: "spacegrotesk-regular", sans-serif;
  transition: all 0.2s ease;
}
.footer__nav a:hover {
  font-family: "spacegrotesk-medium", sans-serif;
}
.footer__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #7b69dd;
  margin-top: 2px;
}
.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer__socials a {
  width: 28px;
  height: 28px;
}
.footer__socials a img {
  width: 28px;
  height: 28px;
}

/* ABOUT */

.about {
  padding: 64px 0 80px;
}
.about__inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
.about h1 {
  text-align: center;
  font-size: 56px;
  font-family: "spacegrotesk-bold", sans-serif;
  color: var(--black);
  line-height: 60px;
}

.chips {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 24px;
  overflow: visible;
}

.chips__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.chip {
  appearance: none;
  border: 1.5px solid transparent;
  background-color: #fff;
  color: var(--dark--light);
  border-radius: 999px;
  font-size: 16px;
  line-height: 100%;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 230px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 24px;
  font-family: "spacegrotesk-regular", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  z-index: 0;
  position: relative;
}

.chip:hover {
  font-family: "spacegrotesk-medium", sans-serif;
  font-weight: 500;
}
.chip::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: #7A7482;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 1;
  transition: opacity 0.6s ease;
}

/* hover-версия */
.chip::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    90deg,
    rgba(175, 163, 238, 0.6),
    rgba(211, 203, 255, 0.9),
    rgba(175, 163, 238, 1)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;
  transition: opacity 0.6s ease;
}
.chip:hover::before {
  opacity: 0;
}

.chip:hover::after {
  opacity: 1;
}
.chip-wrap {
  position: relative;
  display: inline-flex;
}

.chip-pop {
  position: absolute;
  left: 50%;
  top: calc(100% + 24px);
  transform: translateX(-50%) translateY(6px) scale(0.98);
  width: max-content;
  max-width: min(269px, calc(100vw - 24px));
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 0px 14px rgba(112, 101, 172, 0.15);
  padding: 14px;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  will-change: transform;
}

.chip-pop__tail {
  position: absolute;
  left: 50%;
  top: -19px;
  transform: translateX(-50%) translateX(var(--tail-offset, 0px));
  width: 46px;
  height: 19px;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.chip-pop__tail-svg {
  display: block;
  transform: translateY(0);
  filter: drop-shadow(0 0px 14px rgba(112, 101, 172, 0.15));
}

.chip-pop__body {
  position: relative;
  z-index: 1;
}

.chip-pop.is-bottom {
  transform: translateY(-8px) scale(0.98);
  transform-origin: center top;
}

.chip-wrap.is-open .chip-pop {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.chip-pop__desc {
  font-size: 13px;
  line-height: 1.35;
  color: rgba(31, 30, 38, 0.75);
}
.chips__row--tablet {
  display: none;
}

.about__title--seconadary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__title--seconadary p {
  text-align: center;
  font-family: "spacegrotesk-regular", sans-serif;
  font-size: 24px;
  line-height: 31px;
  color: var(--dark--light);
  max-width: 712px;
}
.about-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.about-cta p {
  font-family: "spacegrotesk-regular", sans-serif;
  color: var(--dark-grey);
  font-size: 16px;
  line-height: 20px;
}
.about-cta__buttons {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  width: 100%;
}
.about-cta__buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--black);
  font-size: 20px;
  line-height: 24px;
  font-family: "spacegrotesk-regular", sans-serif;
  max-width: 237px;
  width: 100%;
  height: 56px;
  border-radius: 999px;
}
.about-cta__button--start {
  background: linear-gradient(90deg, #afa3ee 0%, #d3cbff 50%, #afa3ee 100%);
  background-size: 200% 100%;
  background-position: 0% 0;
  transition: background-position 1s ease;
  stroke-width: 1.5px;
}

.about-cta__button--start:hover {
  background-position: 100% 0;
  font-family: "spacegrotesk-medium", sans-serif;
}
.about-cta__button--start:hover svg {
  stroke-width: 2px;
}
.about-cta__button--see {
  position: relative;
  border: 1.5px solid transparent;
  background: #fff;
  z-index: 0;
  overflow: hidden;
}
.about-cta__button--see:hover {
  font-family: "spacegrotesk-medium", sans-serif;
  font-weight: 500;
}
.about-cta__button--see::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    90deg,
    rgba(175, 163, 238, 0.6),
    rgba(211, 203, 255, 0.9),
    rgba(175, 163, 238, 1)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 1;
  transition: opacity 0.6s ease;
}

/* hover-версия */
.about-cta__button--see::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    90deg,
    rgba(175, 163, 238, 1),
    rgba(211, 203, 255, 0.9),
    rgba(175, 163, 238, 0.6)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;
  transition: opacity 0.6s ease;
}
.about-cta__button--see:hover::before {
  opacity: 0;
}

.about-cta__button--see:hover::after {
  opacity: 1;
}

/* VIDEO */

.video__inner {
  display: flex;
  justify-content: center;
}

.video-card {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 1200 / 738;
  border-radius: 24px;
  overflow: hidden;
  background: var(--light-gray);
}

.video-card__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.video-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 14, 18, 0.33);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: none;
}

.video-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 999px;
  padding: 8px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.video-card__play:hover {
  background: #ffffff66;
}

.video-card__play:active {
  transform: translate(-50%, -50%) scale(0.98);
}

.video-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.video-card__bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card.is-playing .video-card__poster,
.video-card.is-playing .video-card__overlay,
.video-card.is-playing .video-card__play {
  display: none;
}

.video-card.is-playing .video-card__video {
  display: block;
}

.video-card__bg-video,
.video-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* слои */
.video-card__bg-video {
  z-index: 1;
}

.video-card__overlay {
  z-index: 2;
}

.video-card__play {
  z-index: 3;
}

.video-card__video {
  z-index: 4;
  display: none;
}

/* когда играет */
.video-card.is-playing .video-card__bg-video {
  display: none;
}

.video-card.is-playing .video-card__overlay,
.video-card.is-playing .video-card__play {
  display: none;
}

.video-card.is-playing .video-card__video {
  display: block;
}

/* FEATURES */
.features {
  padding: 120px 0 80px;
}

.features-case {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
}
.features-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.features-title h2 {
  text-align: center;
  font-family: "spacegrotesk-bold", sans-serif;
  font-size: 36px;
  line-height: 46px;
  color: var(--black);
}
.features-title p {
  color: var(--black);
  font-family: "spacegrotesk-regular", sans-serif;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
}
.features-switcher {
  position: relative;
  display: flex;
  max-width: 572px;
  width: 100%;
  height: 48px;
  background: #fff;
  border-radius: 100px;
  padding: 1.5px;
  gap: 8px;
  border: 2px solid transparent;
  box-sizing: border-box;
  user-select: none;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(
        90deg,
        rgba(175, 163, 238, 0.6),
        rgba(211, 203, 255, 0.9),
        rgba(175, 163, 238, 1)
      )
      border-box;
}
.features-switcher__item {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 16px;
  line-height: 16px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  color: var(--black);
  border-radius: 100px;
  font-family: "spacegrotesk-regular", sans-serif;
  height: calc(100% - 0.8px);
}
.features-switcher__item.active {
  color: #fff;
  font-family: "spacegrotesk-medium", sans-serif;
}
.features-switcher__thumb {
  position: absolute;
  top: 3px;
  left: 0;
  height: calc(100% - 4.8px);
  background-color: var(--black);
  border-radius: 100px;
  transition:
    transform 0.3s ease,
    width 0.3s ease;
  pointer-events: none;
  will-change: transform, width;
  width: 0;
}
.feature-tabs {
  padding: 56px 0 0;
  background: #fff;
}
.feature-tabs__container {
  gap: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-tabs__items {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-tabs__item {
  padding: 14px 24px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--light-gray);
  transition: all 0.2s ease;
  border-radius: 14px;
}

.feature-tabs__item:hover {
  background: linear-gradient(
    90deg,
    rgba(175, 163, 238, 0.15),
    rgba(211, 203, 255, 0.15),
    rgba(175, 163, 238, 0.15)
  );
}
.feature-tabs__item.is-active {
  background: linear-gradient(
    90deg,
    rgba(175, 163, 238, 0.15),
    rgba(211, 203, 255, 0.15),
    rgba(175, 163, 238, 0.15)
  );
  border-bottom: none;
  gap: 8px;
}
.feature-tabs__item.is-active svg {
  opacity: 0;
  transform: translateY(3px);
  transition: all 0.2s ease;
}
.feature-tabs__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}
.feature-tabs__head svg {
  width: 24px;
  height: 24px;
}
.feature-tabs__title {
  font-size: 20px;
  font-family: "spacegrotesk-medium", sans-serif;
  color: var(--black);
  max-width: 402px;
}
.feature-tabs__text {
  font-size: 14px;
  color: var(--black);
  text-align: left;
  font-family: "spacegrotesk-regular", sans-serif;
  line-height: 18px;
}

.feature-tabs__frame {
  border: 3px solid #343240;
  border-radius: 14px;
  background: #fff;
  max-width: 668px;
  width: 100%;
  height: 436.5px;
  margin-bottom: 36px;
}

.feature-tabs__image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  opacity: 1;
  transition: opacity 0.25s ease;
}
.feature-tabs__image.is-fading {
  opacity: 0;
}

.feature-tabs__body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.4s ease;
  will-change: max-height, opacity, transform;
}

.feature-tabs__item.is-active .feature-tabs__body {
  max-height: var(--ft-body-h, 200px);
  opacity: 1;
  transform: translateY(0);
}

.feature-tabs__body > * {
  margin: 0;
}

/* WHY */

.why {
  padding: 120px 0 100px;
  background: linear-gradient(
    90deg,
    rgba(175, 163, 238, 0.1),
    rgba(211, 203, 255, 0.1),
    rgba(175, 163, 238, 0.1)
  );
}
.why__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.why__inner h2 {
  text-align: center;
  font-family: "spacegrotesk-bold", sans-serif;
  font-size: 36px;
  line-height: 46px;
  color: var(--black);
}
.why-blocks {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  align-items: stretch;
}

.why-block {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 14px;
  border: 1px solid var(--light-gray);
  height: 169px;
}
.why-block__inner {
  padding: 40px 31px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  height: 100%;
}
.why-block__inner h3 {
  font-family: "montserrat-bold", sans-serif;
  font-size: 16px;
  color: var(--black);
}
.why-block__inner p {
  font-family: "spacegrotesk-regular", sans-serif;
  font-size: 14px;
  color: var(--black);
  line-height: 18px;
}

/* PRICING */

.pricing {
  padding: 120px 0 40px;
}
.pricing__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.pricing-benefits {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
}
.pricing-benefits h2 {
  text-align: center;
  font-family: "spacegrotesk-bold", sans-serif;
  font-size: 36px;
  line-height: 46px;
  color: var(--black);
}
.pricing-benefits__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.pricing-benefits__item {
  padding: 8px 20px 8px 14px;
  box-shadow: 0px 4px 10px 0px rgba(112, 101, 172, 0.1);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: "spacegrotesk-regular", sans-serif;
  font-size: 16px;
  color: var(--dark--light);
  border: 1px solid var(--light-gray);
  height: 48px;
}
.pricing-benefits p {
  font-family: "spacegrotesk-regular", sans-serif;
  font-size: 20px;
  color: var(--black);
  text-align: center;
}
.pricing-plans {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  gap: 32px;
}
.pricing-plan {
  border-radius: 8px;
  border: 1px solid var(--light-gray);
  background-color: #fff;
  max-width: 400px;
  width: 100%;
  display: flex;
}
.pricing-plan:first-child {
  background: linear-gradient(
    90deg,
    rgba(175, 163, 238, 0.1),
    rgba(211, 203, 255, 0.1),
    rgba(175, 163, 238, 0.1)
  );
}

.pricing-plan__title {
  padding: 38px 40px 24px 40px;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing-plan__title h3 {
  font-family: "montserrat-bold", sans-serif;
  font-size: 20px;
  color: var(--black);
}
.pricing-plan__title p {
  font-size: 16px;
  line-height: 20px;
  font-family: "inter-medium", sans-serif;
  color: #242424;
}
.pricing-plan__title span {
  color: #5c677d;
  font-family: "inter-regular", sans-serif;
  line-height: 100%;
}
.pricing-plan__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.pricing-plan__included {
  display: flex;
  flex-direction: column;
  padding: 24px 40px;
  gap: 14px;
  margin-bottom: auto;
}
.pricing-plan__included p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "spacegrotesk-regular", sans-serif;
  font-size: 14px;
  color: #000;
}
.pricing-plan__included h4 {
  font-family: "spacegrotesk-medium", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.pricing-plan__footer {
  padding: 14px 32px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pricing-plan__footer a {
  height: 40px;
  border-radius: 999px;
  gap: 8px;
  background-color: #fff;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 16px;
  line-height: 24px;
  font-family: "spacegrotesk-regular", sans-serif;
  width: 158px;
  white-space: nowrap;
}
.pricing-plan:first-child a {
  background: linear-gradient(90deg, #afa3ee 0%, #d3cbff 50%, #afa3ee 100%);
  background-size: 200% 100%;
  background-position: 0% 0;
  transition: background-position 1s ease;
}
.pricing-plan:first-child a:hover {
  background-position: 100% 0;
  font-family: "spacegrotesk-medium", sans-serif;
}

.pricing-plan:last-child a {
  border: 1.5px solid transparent;
  z-index: 0;
  overflow: hidden;
  background: #fff;
  position: relative;
}

.pricing-plan:last-child a:hover {
  font-family: "spacegrotesk-medium", sans-serif;
  font-weight: 500;
}
.pricing-plan:last-child a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    90deg,
    rgba(175, 163, 238, 0.6),
    rgba(211, 203, 255, 0.9),
    rgba(175, 163, 238, 1)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 1;
  transition: opacity 0.6s ease;
}
.pricing-plan:last-child a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    90deg,
    rgba(175, 163, 238, 1),
    rgba(211, 203, 255, 0.9),
    rgba(175, 163, 238, 0.6)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;
  transition: opacity 0.6s ease;
}
.pricing-plan:last-child a:hover::before {
  opacity: 0;
}

.pricing-plan:last-child a:hover::after {
  opacity: 1;
}

/* REVIEWS */

.reviews {
  padding: 120px 0 80px;
}

.reviews__container {
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  align-items: flex-start;
  gap: 18px;
}

.reviews__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 6px;
}

.reviews__nav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(
        90deg,
        rgba(175, 163, 238, 0.7),
        rgba(211, 203, 255, 0.9),
        rgba(175, 163, 238, 0.8)
      )
      border-box;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.reviews__nav:active {
  transform: translateY(0px);
  box-shadow: none;
}

.reviews__nav:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.25);
  outline-offset: 3px;
}

.reviews__track {
  display: flex;
  width: 100%;
  will-change: transform;
  max-width: 100%;
  transition: all 0.5s ease;
  touch-action: pan-y;
}

.reviews__slide {
  position: relative;
  flex: 0 0 100%;
  opacity: 1;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 43px;
  max-width: none;
  max-width: 100%;
}

.reviews__slide > * {
  max-width: 804px;
}

.reviews__quote {
  font-size: 32px;
  text-align: center;
  font-family: "merriweather-light", sans-serif;
  color: var(--black);
}

.reviews__author {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.reviews__user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.reviews__name {
  font-size: 24px;
  line-height: 24px;
  font-family: "spacegrotesk-medium", sans-serif;
  color: var(--black);
}

.reviews__role {
  font-size: 16px;
  color: var(--black);
  font-family: "spacegrotesk-regular", sans-serif;
  line-height: 100%;
}
.reviews__hint {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 48px;
  font-family: "spacegrotesk-regular", sans-serif;
  font-size: 14px;
  line-height: 100%;
  color: var(--black);
}

/* FAQ */

.faq {
  padding: 120px 0 40px;
  background: linear-gradient(
    90deg,
    rgba(175, 163, 238, 0.1),
    rgba(211, 203, 255, 0.1),
    rgba(175, 163, 238, 0.1)
  );
}
.faq__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.faq__inner h2 {
  text-align: center;
  font-family: "spacegrotesk-bold", sans-serif;
  font-size: 36px;
  line-height: 46px;
  color: var(--black);
}
.faq-questions {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  width: 100%;
}
.faq-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 588px;
  width: 100%;
}

.faq__item {
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: 18px;
  overflow: hidden;
  padding: 16px 16px;
  cursor: pointer;
}

.faq__btn {
  width: 100%;
  height: 52px;
  border: 0;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: inherit;
}

.faq__title {
  font-size: 20px;
  font-family: "spacegrotesk-medium", sans-serif;
  color: var(--black);
  line-height: 26px;
  max-width: 496px;
  width: 100%;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.faq__icon {
  transition: all 0.3s ease;
}

.faq__item.is-open .faq__panel {
  margin-top: 24px;
  max-height: var(--faq-h, 200px);
  opacity: 1;
  transform: translateY(0);
}

.faq__item.is-open .faq__icon {
  transform: rotate(-180deg);
}

.faq__panel {
  margin-top: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.4s ease;
  will-change: max-height, opacity, transform;
}

.faq__text {
  font-size: 14px;
  color: #000;
  font-family: "spacegrotesk-regular", sans-serif;
  line-height: 18px;
}
.display-768 {
  display: none;
}
.scale-viewport {
  overflow: hidden;
  width: 100%;
}

.scale-viewport.is-scaling {
  overflow: hidden;
}

.scale-viewport:not(.is-scaling) {
  overflow: visible;
}

.scale-root {
  width: 1440px;
  transform-origin: top left;
}

.scale-root.is-scale-off {
  width: 100% !important;
  transform: none !important;
}
.menu-modal {
  display: none;
}
.footer__nav--tablet {
  display: none;
}
.menu-button__svg {
  display: none;
}
.display-450 {
  display: none;
}
.feature-tabs__mobile-frame {
  display: none;
}
.pricing-benefits p br {
  display: none;
}
.reviews__hint br {
  display: none;
}
.footer__socials--mobile {
  display: none;
}
.support-wrap {
  position: fixed;
  right: calc(
    max(
      var(--container-pad),
      (100vw - min(100vw, var(--container-max))) / 2 + var(--container-pad)
    )
  );
  bottom: 40px;
  z-index: 8;
  width: 80px;
  height: 80px;
}
.support-wrap__legal {
    right: calc(
    max(
      var(--container-pad-legal),
      (100vw - min(100vw, var(--container-max))) / 2 + var(--container-pad-legal)
    )
  );
}

.support {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: linear-gradient(
    90deg,
    rgba(175, 163, 238, 0.35),
    rgba(211, 203, 255, 0.35),
    rgba(175, 163, 238, 0.35)
  );
  transition: all 0.2s ease;
  will-change: transform;
}
.support:hover {
  background: linear-gradient(
    90deg,
    rgba(175, 163, 238, 0.7),
    rgba(211, 203, 255, 0.7),
    rgba(175, 163, 238, 0.7)
  );
}
.support:active {
  transform: translateY(1px) scale(0.99);
}
.support-pop {
  position: absolute;
  bottom: calc(100% + 20px);
  width: 306px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
  border: 1px solid var(--light-gray);
  left: 50%;
  right: auto;
  translate: -50% 0;
  transform-origin: 50% 100%;
  z-index: 4;
}
.support-pop.is-edge-right {
  left: auto;
  right: 0;
  translate: 0 0;
  transform-origin: 85% 100%;
}

/* если когда-то понадобится прижать к левой стороне кнопки */
.support-pop.is-edge-left {
  left: 0;
  right: auto;
  translate: 0 0;
  transform-origin: 15% 100%;
}

.support-wrap.is-open .support-pop {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.support-pop__head {
  padding: 32px 20px;
  background: linear-gradient(
    90deg,
    rgba(175, 163, 238, 0.2),
    rgba(211, 203, 255, 0.2),
    rgba(175, 163, 238, 0.2)
  );
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.support-pop__title {
  font-size: 16px;
  color: var(--dark--light);
  font-family: "spacegrotesk-medium", sans-serif;
}
.support-pop__sub {
  font-size: 14px;
  color: var(--dark--light);
  font-family: "spacegrotesk-regular", sans-serif;
}

.support-pop__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.support-pop__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0px;
  border-radius: 12px;
  text-decoration: none;
  height: 50px;
  color: var(--dark--light);
  font-size: 14px;
  font-family: "spacegrotesk-regular", sans-serif;
}
.input-error {
  border: 1px solid #FF2D554D !important;
  background: #FFF4F6;
}

.error-text {
  color: #FF2D55;
  font-size: 12px;
  line-height: 130%;
  font-family: "inter-regular", sans-serif;
}
.helper-text.error {
  color: #FF2D55;
}
.overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(255, 254, 254, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal {
  width: 500px;
  border: 1px solid var(--light-gray);
  border-radius: 14px;
  background: #fff;
  max-height: calc(100vh - 80px);
}

.contact-modal__inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contact-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 20px;
  background: linear-gradient(
    90deg,
    rgba(175, 163, 238, 0.2),
    rgba(211, 203, 255, 0.2),
    rgba(175, 163, 238, 0.2)
  );
  border-radius: 14px 14px 0 0;
}

.contact-modal__title {
  font-size: 20px;
  font-family: "spacegrotesk-medium", sans-serif;
  color: var(--dark--light);
  font-weight: 500;
}

.contact-modal__body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: calc(100vh - 200px);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.contact-modal__body::-webkit-scrollbar {
  display: none;
}
.contact-modal__body form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-modal__body form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.contact-modal__body form label span {
  font-family: "spacegrotesk-regular", sans-serif;
  font-size: 14px;
  color: var(--black);
}
.contact-modal__body form label p {
  color: var(--dark-grey);
  font-size: 12px;
  line-height: 130%;
  font-family: "spacegrotesk-regular", sans-serif;
}
.contact-modal__body form label input {
  width: 100%;
  border-radius: 8px;
  padding: 12px;
  border: 1px solid var(--light-gray);
  font-family: "spacegrotesk-regular", sans-serif;
  font-size: 14px;
  color: var(--dark--light);
}
.contact-modal__body form label input::placeholder {
  color: var(--dark-grey);
}

.contact-modal__body form label textarea {
  min-height: 120px;
  border-radius: 8px;
  border: 1px solid var(--light-gray);
  color: var(--dark--light);
  font-size: 14px;
  font-family: "spacegrotesk-regular", sans-serif;
  padding: 12px;
}
.contact-modal__body form label textarea::placeholder {
  color: var(--dark-grey);
}
.contact-modal__body form strong {
  text-align: center;
  font-family: "spacegrotesk-regular", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--black);
}
.contact-modal__button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-modal__button button {
  height: 56px;
  background: linear-gradient(90deg, #afa3ee 0%, #d3cbff 50%, #afa3ee 100%);
  background-size: 200% 100%;
  background-position: 0% 0;
  transition: background-position 1s ease;
  width: 237px;
  border-radius: 999px;
  font-family: "spacegrotesk-regular", sans-serif;
  font-size: 20px;
  line-height: 24px;
  color: var(--black);
}
.contact-modal__button button:hover {
  background-position: 100% 0;
  font-family: "spacegrotesk-medium", sans-serif;
}


.contact-sentinel {
  height: 1px;
}
.legal__inner {
  display: flex;
  gap: 24px;
}

.legal__sidebar {
  position: sticky;
  top: 96px;
  height: fit-content;
  flex: 0 0 350px;
  width: 350px;
  background: linear-gradient(
    90deg,
    rgba(175, 163, 238, 0.1),
    rgba(211, 203, 255, 0.1),
    rgba(175, 163, 238, 0.1)
  );
  border-radius: 14px;
  height: calc(100vh - 96px);
  max-height: 860px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.legal__sidebar-inner {
  flex: 1;
  min-height: 0;
  overflow: auto;

  display: flex;
  flex-direction: column;
  gap: 24px;

  padding: 32px;
  width: 100%;

  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.legal__sidebar-inner::-webkit-scrollbar {
  display: none;
}


.legal__link-page {
  width: 100%;
  height: 54px;
}


.legal__content {
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-right: 52px;
}
.legal__content p {
  font-family: "spacegrotesk-regular", sans-serif;
  color: var(--dark--light);
  font-size: 16px;
  line-height: 24px;
}
.legal__content p b {
  font-family: "spacegrotesk-bold", sans-serif;
  color: var(--dark--light);
  font-size: 16px;
  line-height: 24px;
}
.legal__content p strong {
  font-family: "spacegrotesk-bold", sans-serif;
  color: var(--dark--light);
  font-size: 16px;
  line-height: 24px;
}
.legal__content ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal__list-parent li::before {
  width: 3.5px !important;
  height: 3.5px !important;
}
.legal__list-parent ul li {
  padding-left: 50px !important;
}
.legal__list-parent ul li::before {
  left: 35px !important;
  width: 4.5px !important;
  height: 4.5px !important;
}
.legal__content h3 {
  font-family: "spacegrotesk-bold", sans-serif;
  font-size: 20px;
  color: var(--black);
}
.legal__content ul li {
  padding-left: 25px;
  position: relative;
}
.legal__content ul li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0.75em;
  width: 4.5px;
  height: 4.5px;
  border-radius: 50%;
  background: var(--dark--light);
  transform: translateY(-50%);
}
.legal__title {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.legal__title h1 {
  font-size: 44px;
  color: var(--black);
  line-height: 52px;
  font-family: "spacegrotesk-bold", sans-serif;
}
.legal__title p {
  color: var(--black);
}
.legal__title p b {
  color: var(--black);
}
.legal__title-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.legal__title-header a {
  display: none;
}
.legal__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-margin-top: 140px;
}
.legal__section h2 {
  color: var(--black);
  font-family: "spacegrotesk-bold", sans-serif;
  font-size: 24px;
}
.container-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
  position: relative;
}
.legal__header {
  margin-bottom: 8px;
  padding: 32px 32px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal__panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.legal__toggle {
  display: none;
}
.header__legal--no {
  display: none !important;
}








.legal__sidebar-groups {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal__sidebar-group {
  display: flex;
  flex-direction: column;
}

.legal__header-link {
  position: relative;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--dark--light);
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
  font-family: "spacegrotesk-regular", sans-serif;
  height: 54px;
  padding: 8px 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 999px;
}
.legal__header-link.active {
  font-family: "spacegrotesk-medium", sans-serif;
  background: linear-gradient(
    90deg,
    rgba(175, 163, 238, 0.3),
    rgba(211, 203, 255, 0.3),
    rgba(175, 163, 238, 0.3)
  );
}

.legal__sidebar-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.legal__sidebar-group.is-open .legal__sidebar-panel {
  max-height: 2000px;
}

.legal__sidebar-arrow {
  flex: 0 0 auto;
  transition: transform 0.28s ease;
}

.legal__sidebar-group.is-open .legal__sidebar-arrow {
  transform: rotate(180deg);
}

.legal__sidebar {
  position: sticky;
  top: 96px;
  flex: 0 0 350px;
  width: 350px;
  background: linear-gradient(
    90deg,
    rgba(175, 163, 238, 0.1),
    rgba(211, 203, 255, 0.1),
    rgba(175, 163, 238, 0.1)
  );
  border-radius: 14px;
  height: calc(100vh - 96px);
  max-height: 860px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.legal__sidebar-scroll {
  flex: 1;
  min-height: 0;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  width: 100%;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.legal__sidebar-scroll::-webkit-scrollbar {
  display: none;
}

.legal__sidebar-group {
  display: flex;
  flex-direction: column;
}

.legal__sidebar-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}
.legal__sidebar-toggle:hover {
  background: linear-gradient(
    90deg,
    rgba(175, 163, 238, 0.2),
    rgba(211, 203, 255, 0.2),
    rgba(175, 163, 238, 0.2)
  );
}
.legal__sidebar-toggle span {
  color: var(--black);
  font-size: 16px;
  line-height: 16px;
  font-family: "spacegrotesk-medium", sans-serif;
  font-weight: 500;
}
.legal__sidebar-toggle.is-active {
  background: linear-gradient(
    90deg,
    rgba(175, 163, 238, 0.2),
    rgba(211, 203, 255, 0.2),
    rgba(175, 163, 238, 0.2)
  );
}

.legal__sidebar-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.legal__sidebar-group.is-open .legal__sidebar-panel {
  max-height: 2000px;
}

.legal__sidebar-arrow {
  flex: 0 0 auto;
  transition: transform 0.28s ease;
}

.legal__sidebar-group.is-open .legal__sidebar-arrow {
  transform: rotate(180deg);
}

.legal__nav {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0 0 10px;
  width: 100%;
}

.legal__nav::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 10px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(175, 163, 238, 0.1),
    rgba(211, 203, 255, 0.1),
    rgba(175, 163, 238, 0.1)
  );
}

.legal__indicator {
  position: absolute;
  left: 1px;
  top: 2px;
  width: 2px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(175, 163, 238, 1),
    rgba(211, 203, 255, 1),
    rgba(175, 163, 238, 1)
  );
  transform: translateY(0);
  transition: transform 0.18s ease, height 0.18s ease;
}

.legal__link {
  position: relative;
  display: block;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--dark--light);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.legal__link span {
  display: inline-block;
  width: 210px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "spacegrotesk-regular", sans-serif;
  font-size: 16px;
  line-height: 16px;
}

.legal__link:hover span,
.legal__link.is-active span {
  color: #7b69dd;
  font-family: "spacegrotesk-bold", sans-serif !important;
}

@media (max-width: 1025px) {
  .container-header {
    padding: 0 32px;
  }
  .about h1 {
    font-size: 44px;
    line-height: 52px;
  }
  .header__nav,
  .header__buttons,
  .about-cta__button--start svg,
  .pricing-benefits__items,
  .footer__nav {
    display: none;
  }
  .chip {
    height: 34px;
    padding: 8px 16px;
    width: auto;
    font-size: 14px;
    white-space: nowrap;
  }
  .about__title--seconadary p {
    font-size: 18px;
    max-width: 534px;
    width: 100%;
    line-height: 26px;
  }
  .about-cta__buttons a {
    height: 40px;
    width: 196px;
    font-size: 16px;
    line-height: 24px;
  }
  .about-cta {
    margin-top: 8px;
  }
  .about-cta p {
    font-size: 12px;
  }
  .about__inner {
    gap: 40px;
  }
  .main {
    padding-top: 80px;
  }
  .about {
    padding: 24px 0 48px;
  }
  .features {
    padding: 48px 0 0;
  }
  .features-title h2 {
    font-size: 24px;
    line-height: 31px;
  }
  .features-title p {
    font-size: 16px;
  }
  .feature-tabs__container {
    flex-direction: column;
  }
  .feature-tabs__items {
    max-width: none;
  }
  .feature-tabs__title {
    max-width: 582px;
    font-size: 16px;
  }
  .why {
    padding: 64px 20px 40px;
  }
  .why-blocks {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
    column-gap: 16px;
  }
  .why-block__inner {
    gap: 16px;
    padding: 32px 24px;
  }
  .why-block__inner h3 {
    font-size: 14px;
  }
  .pricing-benefits {
    gap: 14px;
  }
  .pricing-benefits h2 {
    font-size: 24px;
    line-height: 100%;
  }
  .pricing-benefits p {
    font-size: 16px;
  }
  .pricing__inner {
    gap: 32px;
  }
  .pricing {
    padding: 64px 0 40px;
  }
  .pricing-plans {
    gap: 24px;
  }
  .pricing-plan__title h3 {
    font-size: 16px;
  }
  .pricing-plan__title p {
    max-width: 260px;
    width: 100%;
  }
  .pricing-plan__title {
    padding: 38px 27px 24px 40px;
  }
  .reviews {
    padding: 40px 0;
  }
  .reviews__slide > * {
    max-width: 568px;
  }
  .reviews__quote {
    font-size: 20px;
  }
  .reviews__slide {
    gap: 16px;
  }
  .reviews__user svg {
    width: 20px;
    height: 20px;
  }
  .reviews__name {
    font-size: 16px;
  }
  .reviews__author {
    gap: 12px;
  }
  .reviews__user {
    gap: 8px;
  }
  .reviews__role {
    font-size: 14px;
  }
  .reviews__hint {
    margin-top: 24px;
  }
  .faq {
    padding: 64px 20px 40px;
    background: linear-gradient(
      90deg,
      rgba(175, 163, 238, 0.1),
      rgba(211, 203, 255, 0.1),
      rgba(175, 163, 238, 0.1)
    );
  }
  .faq__inner {
    gap: 24px;
  }
  .faq__inner h2 {
    font-size: 24px;
  }
  .faq-questions {
    flex-direction: column;
    gap: 12px;
  }
  .faq-column {
    max-width: none;
    gap: 12px;
  }
  .faq__title {
    font-size: 16px;
    max-width: 560px;
  }
  .footer {
    padding: 32px 20px;
  }
  .reviews__nav {
    width: 32px;
    height: 32px;
    border: 2px solid transparent;
  }
  .reviews__nav svg {
    height: 16px;
    width: 8px;
  }
  .display-768 {
    display: block;
  }
  .display-no-768 {
    display: none;
  }
  .chips {
    gap: 16px;
  }
  .header__burger {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
    height: 32px;
    width: 32px;
  }
  .header__burger span {
    background-color: var(--black);
    height: 2px;
    border-radius: 999px;
  }
  .header__burger span:nth-child(1) {
    width: 16px;
    height: 2.5px;
  }
  .header__burger span:nth-child(2) {
    width: 21.33px;
    height: 2.4px;
  }
  .header__burger span:nth-child(3) {
    width: 11px;
    height: 2.5px;
  }
  .chips__row {
    display: none;
  }
  .chips__row--tablet {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .footer__nav--tablet {
    display: flex;
    justify-content: space-between;
  }
  .footer__top {
    margin-bottom: 0;
  }
  .footer__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .menu-modal {
    display: flex;
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: all 0.2s ease;
  }

  .menu-modal.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .menu-modal__overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    pointer-events: none;
  }
  .menu-modal__overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .menu-modal__panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(450px, 78vw);
    border-bottom-left-radius: 8px;
    transform: translateX(16px);
    opacity: 0;
    transition: all 0.2s ease;
    background-color: #fff;
    border: 1px solid transparent;
    background:
      linear-gradient(#fff, #fff) padding-box,
      linear-gradient(
          90deg,
          rgba(175, 163, 238, 1),
          rgba(211, 203, 255, 1),
          rgba(175, 163, 238, 1)
        )
        border-box;
    height: 100%;
    max-height: 614px;
    transform: translateX(16px);
    z-index: 10000;
  }
  .menu-modal.is-open .menu-modal__panel {
    transform: translateX(0);
    opacity: 1;
  }
  .menu-modal__inner {
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .menu-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 52px;
  }

  .menu-modal__close {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menu-modal__close-icon {
    width: 16px;
    height: 16px;
    stroke: #110e12;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
  }
  .logo__menu p {
    font-size: 16px;
  }
  .logo__menu img {
    width: 28px;
    height: 28px;
  }

  .menu-modal__content {
    display: flex;
    flex-direction: column;
  }
  .is-locked {
    overflow: hidden;
    touch-action: none;
  }
  .menu-modal__buttons {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
  }
  .menu-modal__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 74px;
    margin-bottom: 74px;
    gap: 32px;
    border-bottom: 1px solid var(--light-gray);
  }
  .menu-modal__links a {
    color: var(--dark--light);
    font-size: 20px;
    line-height: 16px;
    font-family: "spacegrotesk-regular", sans-serif;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .reviews__container {
    width: 100%;
    max-width: 100%;
  }
  .support {
    bottom: 40px;
    right: calc(
      max(
        var(--container-pad-tablet),
        (100vw - min(100vw, var(--container-max-tablet))) / 2 +
          var(--container-pad-tablet)
      )
    );
  }
  .legal__sidebar {
    flex: 0 0 250px;
    width: 250px;
  }
  .legal__header {
    padding: 32px 0 0;
  }
  .legal__sidebar-inner {
    padding: 0 14px 32px;
  }
  .legal__link span {
    width: 178px;
    font-size: 14px;
  }
  .legal__title h1 {
    font-size: 32px;
  }
  .legal__content p {
    font-size: 14px;
  }
  .legal__content p b {
    font-size: 14px;
  }
  .legal__content p strong {
    font-size: 14px;
  }
  .legal__section h2 {
    font-size: 20px;
  }
  .header__legal--display {
    display: flex;
  }
  .legal__sidebar {
    top: 88px;
  }
  .legal__content {
    padding-top: 112px;
  }
  .contact-modal {
    max-width: 560px;
    width: 100%;
  }
  .support-wrap {
    bottom: 40px;
    right: 8px;
  }
}
@media (max-width: 450px) {
  .about h1 {
    font-size: 36px;
    line-height: 40px;
  }
  .chip {
    font-size: 12px;
    padding: 8px;
  }
  .chips__row--tablet {
    display: none;
  }
  .chips__row--mobile {
    display: flex;
    gap: 10px;
  }
  .about__title--seconadary p {
    max-width: 279px;
    font-size: 16px;
    line-height: 24px;
  }
  .menu-modal__overlay {
    display: none;
  }
  .menu-modal__panel {
    width: auto;
    top: 80px;
    border-radius: 24px;
    left: 4px;
    right: 4px;
    height: calc(100% - 84px);
    max-height: 705px;
  }
  .menu-modal__inner {
    padding: 24px 32px;
  }
  .logo__menu {
    display: none;
  }
  .menu-modal__header {
    justify-content: center;
  }
  .menu-modal__links {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
    gap: 0px;
  }
  .menu-modal__links a:first-child {
    padding: 0 0 16px;
  }
  .menu-modal__links a {
    padding: 24px;
    border-bottom: 1px solid var(--light-gray);
  }
  .menu-modal__content {
    justify-content: space-between;
    height: 100%;
  }
  .header__buttons button {
    width: 50px;
    height: 50px;
  }
  .header__buttons a {
    height: 56px;
    gap: 24px;
    width: 237px;
    font-size: 18px;
    line-height: 24px;
  }
  .menu-button__svg {
    display: flex;
  }
  .display-450 {
    display: flex;
  }
  .about-cta__buttons {
    flex-direction: column;
    gap: 24px;
  }
  .about-cta {
    gap: 24px;
  }
  .about-cta__buttons a {
    height: 56px;
    width: 237px;
    font-size: 18px;
    gap: 24px;
  }
  .about-cta__button--start svg {
    display: flex;
  }
  .video__container {
    padding: 0 16px;
  }
  .video-card__full {
    position: absolute;
    right: 34px;
    bottom: 18px;
  }
  .video-card.is-playing .video-card__full {
    opacity: 0;
    pointer-events: none;
  }
  .video-card__full svg {
    width: 24px;
    height: 24px;
  }
  .video-card__play {
    width: 50px;
    height: 50px;
  }
  .video-card__play svg {
    width: 14.5px;
    height: 15.5px;
  }
  .features {
    padding: 56px 0 56px;
  }
  .feature-tabs__frame {
    display: none;
  }
  .feature-tabs__wrapper.is-active .feature-tabs__mobile-frame {
    display: block;
  }
  .feature-tabs__wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .feature-tabs__mobile-frame {
    display: none;
    border: 3px solid var(--black);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 342 / 223;
  }

  .feature-tabs__mobile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .feature-tabs__item.is-active + .feature-tabs__mobile-frame {
    display: block;
  }
  .features-switcher__item {
    font-size: 14px;
    line-height: 13px;
    height: 32px;
  }
  .features-switcher__thumb {
    height: 32px;
    top: 1.5px;
  }
  .features-title h2 {
    font-size: 20px;
    line-height: 100%;
    letter-spacing: -2%;
  }
  .features-title h2 br {
    display: none;
  }
  .features-title {
    gap: 14px;
  }
  .features-title p {
    max-width: 300px;
  }
  .features-case {
    gap: 24px;
  }
  .features-switcher {
    height: 38px;
  }
  .why__inner h2 {
    font-size: 20px;
  }
  .why__inner {
    gap: 16px;
  }
  .why-blocks {
    display: flex;
    flex-direction: column;
  }
  .why {
    padding: 56px 16px;
  }
  .why-block__inner {
    padding: 24px;
  }
  .why-block__inner h3 {
    font-size: 16px;
  }
  .why-block__inner p {
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 2%;
  }
  .why-blocks {
    gap: 12px;
  }
  .pricing-benefits h2 {
    font-size: 20px;
  }
  .pricing-benefits p br {
    display: flex;
  }
  .pricing {
    padding: 56px 0;
  }
  .pricing-benefits {
    gap: 12px;
  }
  .pricing-plans {
    flex-direction: column;
  }
  .pricing-plans {
    gap: 32px;
  }
  .pricing-plan__title h3 {
    font-size: 20px;
  }
  .pricing-plan__title {
    padding: 24px 40px;
  }
  .pricing-plan__included h4 {
    font-size: 16px;
  }
  .pricing-plan__footer a {
    height: 56px;
    width: 237px;
    font-size: 18px;
    line-height: 24px;
  }
  .reviews__container {
    grid-template-columns: 32px 1fr 32px;
    gap: 16px;
  }
  .reviews__hint {
    text-align: center;
  }
  .reviews__hint br {
    display: flex;
  }
  .reviews__role {
    font-size: 16px;
  }
  .faq {
    padding: 56px 0;
  }
  .faq__inner h2 {
    font-size: 20px;
  }
  .faq__title {
    line-height: 100%;
  }
  .footer__nav--tablet {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    row-gap: 24px;
  }
  .footer__nav--tablet a {
    font-size: 20px;
  }
  .footer__socials {
    display: none;
  }
  .footer__socials--mobile {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .footer__socials a {
    width: 32px;
    height: 32px;
  }
  .footer__socials a img {
    width: 32px;
    height: 32px;
  }
  .footer__top {
    justify-content: center;
  }
  .footer__bottom a {
    font-size: 12px;
  }
  .footer {
    padding: 40px 0;
  }
  .footer__inner {
    gap: 32px;
  }
  .support {
    width: 72px;
    height: 72px;
    bottom: 16px;
    right: calc(
      max(
        var(--container-pad-mobile),
        (100vw - min(100vw, var(--container-max-mobile))) / 2 +
          var(--container-pad-mobile)
      )
    );
  }
  .support svg {
    width: 36px;
    height: 36px;
  }
  .legal__section {
    border: 1px solid var(--light-gray);
    border-radius: 14px;
    padding: 10px 16px;
    overflow: hidden;
    gap: 8px;
  }
  .legal__content {
    gap: 8px;
  }
  .legal__section.is-collapsed .legal__panel {
    max-height: 0;
    opacity: 0;
    padding-bottom: 0;
    border-top-color: transparent;
    overflow: hidden;
  }
  .legal__section.is-collapsed {
    height: 68px;
    gap: 0;
  }

  .legal__section h2 {
    display: none;
  }

  .legal__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    height: 52px;
  }
  .legal__toggle span {
    font-family: "spacegrotesk-medium", sans-serif;
    font-size: 14px;
  }
  .legal__panel {
    opacity: 1;
    transition:
      max-height 0.25s ease,
      opacity 0.2s ease;
  }

  .legal__section svg {
    transition: all 0.2s ease;
  }
  .legal__section.is-collapsed svg {
    transform: rotate(-180deg);
  }
  .legal__sidebar {
    display: none;
  }
  .header__legal--display {
    display: none !important;
  }
  .header__legal--no {
    display: flex !important;
  }
  .legal__content {
    padding-top: 80px;
    padding-right: 0;
  }
  .container-legal {
    padding: 0 16px;
  }
  .legal__title h1 {
    font-size: 24px;
    line-height: 32px;
  }
  .legal__title {
    gap: 8px;
    margin-bottom: 16px;
  }
  .container-header {
    padding: 0 16px;
  }
  .legal__content p {
    font-family: "spacegrotesk-regular", sans-serif;
    font-size: 14px;
    font-weight: 400;
  }
  .legal__content p b {
    font-family: "spacegrotesk-bold", sans-serif;
    font-weight: 700;
  }
    .overlay {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: calc(var(--site-header-h) + 12px) 12px 12px;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    overflow-y: auto;
    z-index: 9;
    background-color: #fff;
  }

  .contact-modal {
    width: 100%;
    max-width: 420px;
    max-height: calc(100dvh - (var(--site-header-h) + 24px));
    border-radius: 14px;
    display: flex;
  }

  .contact-modal__inner {
    width: 100%;
    max-height: inherit;
    display: flex;
    flex-direction: column;
  }

  .contact-modal__header {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 18px 16px;
  }

  .contact-modal__title {
    font-size: 18px;
  }

  /* Скроллится только тело */
  .contact-modal__body {
    padding: 16px;
    max-height: none;     /* убираем твой max-height */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .contact-modal__body form {
    gap: 16px;
  }

  .contact-modal__button button {
    width: 100%;
    max-width: 280px;
    font-size: 18px;
    height: 52px;
  }
  .overlay.is-open .support-wrap {
    display: none;
  }
  .support-pop__head {
    padding: 16px
  }
  .support-pop__body {
    gap: 8px;
    padding: 16px;
  }
  .support-pop__item {
    height: 32px;
    font-size: 12px;
  }
  .support-pop__item svg {
    height: 32px;
    width: 32px;
  }
  .support-wrap {
    width: 72px;
    height: 72px;
  }
  .legal__title-header a {
    display: flex;
  }
}
