@charset "UTF-8";

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
}

html,
body,
.page {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  color: #1a1a1a;
  background-color: #fff;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
textarea,
button,
select {
  font-family: inherit;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  flex: 1 0 auto;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 16px;
}

.section {
  padding-block: 40px;
}

.section__header {
  margin-bottom: 32px;
  text-align: left;
}

.section__header--left {
  text-align: left;
}

.section__title {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
}

.section__subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #707070;
}

.pink-url {
  font-weight: bold;
  color: #ffa5e3;
  text-decoration: underline;
  transition: opacity 0.25s ease;
}

.pink-url:hover {
  opacity: 0.8;
}

.pink-url:active {
  opacity: 0.6;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 600px;
  padding-top: 120px;
  padding-bottom: 0;
  overflow: hidden;
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.4)),
    url("../assets/images/backgrounds/hero-bg.webp");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.hero__container {
  position: relative;
  z-index: 5;
  padding-bottom: 120px;
}

.hero__content {
  max-width: 920px;
}

.hero__title {
  z-index: 1001;
  margin: 0 0 16px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.hero__title-accent {
  background: linear-gradient(120deg, #ffcceb 0%, #ffffff 40%, #ffcceb 80%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: accentWave 4s ease-in-out infinite;
}

.hero__text {
  max-width: 550px;
  margin: 0 0 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  opacity: 0.9;
}

.hero__petals {
  position: absolute;
  inset: 0;
  z-index: 211;
  width: 100%;
  height: 100%;
  pointer-events: none;
  image-rendering: pixelated;
}

.hero-title--mobile {
  display: none;
}

@keyframes accentWave {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 96px;
  padding-top: 24px;
  pointer-events: none;
  transform: translateY(0);
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.hero-nav-wrap.is-hidden {
  transform: translateY(-120%);
}

.hero-nav-wrap.glow-white {
  box-shadow: inset rgba(255, 255, 255, 0.5) 0 120px 49px -108px;
}

.hero-nav-wrap.glow-black {
  box-shadow: inset rgb(0, 0, 0) 0 120px 49px -108px;
}

.hero-nav {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
  width: calc(100% - 32px);
  max-width: 1140px;
  height: 72px;
  padding-inline: 40px;
  border-radius: 20px;
  pointer-events: auto;
  background: rgba(247, 247, 247, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  transform: translateZ(0);
  will-change: backdrop-filter;
}

.hero-nav.is-scrolled {
  background: rgba(0, 0, 0, 0.693);
  color: #fff;
}

.hero-nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 32px;
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap;
}

.hero-nav__logo-img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  object-fit: contain;
}

.hero-nav__menu {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 24px;
  min-width: 0;
  font-size: 18px;
  font-weight: 500;
}

.hero-nav__link {
  display: inline-flex;
  align-items: center;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.hero-nav__link:hover {
  opacity: 0.7;
}

.hero-nav__link:active {
  opacity: 0.45;
}

.hero-nav__link .text-short {
  display: none;
}

.hero-nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

.hero-nav__tg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 999px;
}

.hero-nav__tg-icon {
  display: block;
  width: 30px;
  height: 30px;
  transition: transform 0.2s ease;
}

.hero-nav__tg-icon:hover {
  transform: scale(1.1);
}

.hero-nav__tg-icon:active {
  transform: scale(1);
}

.hero-nav__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.hero-nav__burger span {
  position: relative;
  display: block;
  width: 26px;
  height: 3.6px;
  background: #fff;
}

.hero-nav__burger span::before,
.hero-nav__burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 3.6px;
  background: #fff;
}

.hero-nav__burger span::before {
  top: -10.5px;
}

.hero-nav__burger span::after {
  top: 10.5px;
}

.hero-form {
  display: inline-flex;
  gap: 0;
  overflow: hidden;
  border-radius: 6px;
  background-color: #fff;
}

.hero-form:hover .hero-form__fake {
  color: #404040;
}

.hero-form:active .hero-form__fake {
  color: #000000;
}

.hero-form__input {
  min-width: 260px;
  padding: 20px 28px;
  border: none;
  outline: none;
  box-shadow: none;
  font-size: 18px;
  font-weight: 200;
  color: #1a1a1a;
}

.hero-form__input::placeholder {
  color: #b0b0b0;
}

.hero-form__fake {
  display: flex;
  align-items: center;
  height: 100%;
  color: rgb(161, 161, 161);
  cursor: pointer;
  transition: color 0.25s ease;
}

.hero-form__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px 30px;
  border: none;
  background-color: #E33629;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.hero-form:hover .hero-form__button {
  background-color: #c4281d;
}

.hero-form:active .hero-form__button {
  background-color: #a9180e;
}

.hero-form__button:hover {
  background-color: #217f31;
}

.hero-form__button:active {
  background-color: #176724;
}

.hero-form__icon {
  width: 12px;
  height: 12px;
  transform-origin: center;
}

.hero-form__button::before,
.hero-form__button::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid white;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.2);
}

.hero-form:hover .hero-form__button::after {
  animation: macRipple 1.2s ease-out infinite;
}

.hero-form:hover .hero-form__button::before {
  animation: macRipple 1.2s ease-out infinite;
  animation-delay: 0.6s;
}

.hero-tg-text-full {
  display: inline;
}

.hero-tg-text-short1,
.hero-tg-text-short2 {
  display: none;
}

@keyframes macRipple {
  0% {
    opacity: 0.9;
    transform: scale(0.2);
  }

  70% {
    opacity: 0.35;
    transform: scale(3.2);
  }

  100% {
    opacity: 0;
    transform: scale(4);
  }
}

.features {
  background-color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 20px 24px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  transition: background-color 0.25s ease;
}

.feature-card:hover {
  background-color: rgba(172, 189, 205, 0.16);
}

.feature-card:hover .feature-card__icon {
  background-color: #ffa5e3;
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 12px;
  background-color: #d4d8e3;
  transition: background-color 0.5s ease;
}

.feature-card__icon img {
  z-index: 2;
  width: 25px;
  height: 25px;
  pointer-events: none;
}

.feature-card__icon .feature-card__icon-subs {
  width: 26px;
  height: 27px;
}

.feature-card__icon .feature-card__icon-inf {
  width: 27px;
  height: 27px;
}

.feature-card__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.feature-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #707070;
}

.download-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 30px;
}

.download-flow__step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.download-flow__circle {
  display: flex;
  flex: 0 0 55px;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(120deg, #ffcceb 0%, #ff9fd9 40%, #ffcceb 80%);
  background-size: 200% 200%;
  animation: circleWave 4s ease-in-out infinite;
}

.download-flow__content {
  width: 100%;
}

.download-flow__content h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
}

.download-flow__content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #707070;
}

.download-flow__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 0;
  border: none;
  background: transparent;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.download-flow__toggle:hover {
  opacity: 0.75;
}

.download-flow__sign {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.download-flow__toggle.is-open .download-flow__sign {
  transform: rotate(45deg);
}

.download-flow__image-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.35s ease;
}

.download-flow__image-wrap.is-open {
  max-height: 1200px;
  margin-top: 14px;
}

.download-flow__image {
  display: block;
  width: calc(50% - 7px);
  max-width: 340px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-flow__image:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

@keyframes circleWave {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.download-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.download-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.download-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.download-lightbox__dialog {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(96vw, 1400px);
  max-height: 92vh;
}

.download-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: 92vh;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.download-lightbox__close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.download-lightbox__close:hover {
  transform: scale(1.06);
}

.download-lightbox__close:active {
  transform: scale(0.98);
}

body.is-lightbox-open {
  overflow: hidden;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.tariff-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 78px 80px 64px;
  overflow: hidden;
  border: 1px solid rgba(117, 117, 117, 0.12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.tariff-card--accent {
  border-color: rgba(255, 165, 227, 0.55);
  box-shadow: 0 12px 30px rgba(255, 165, 227, 0.12);
}

.tariff-card__petals {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  image-rendering: pixelated;
}

.tariff-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px 26px;
  border-bottom-left-radius: 14px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}

.tariff-card__badge--popular {
  background: linear-gradient(120deg, #ffcceb 0%, #ff9fd9 40%, #ffcceb 80%);
  background-size: 200% 200%;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(255, 143, 211, 0.35);
  animation: badgeWave 3.5s ease-in-out infinite;
}

.tariff-card__title {
  margin: 0 0 20px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  color: #111;
}

.tariff-card__price-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 12px;
}

.tariff-card__price {
  font-size: 54px;
  font-weight: 800;
  line-height: 0.95;
  color: #111;
}

.tariff-card__period {
  padding-bottom: 6px;
  font-size: 22px;
  font-weight: 500;
  color: #7b879d;
}

.tariff-card__desc {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.6;
  color: #707070;
}

.tariff-card__list {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tariff-card__item {
  position: relative;
  padding-left: 28px;
  font-size: 18px;
  line-height: 1.45;
  color: #222;
}

.tariff-card__item::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 700;
  color: #ff86d6;
}

.tariff-card__buttonFree {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 18px 20px;
  border-radius: 10px;
  background: rgb(8 8 8 / 30%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.tariff-card__buttonFree:hover {
  opacity: 0.8;
}

.tariff-card__buttonFree:active {
  opacity: 0.6;
}

.tariff-card__buttonPopular {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 10px;
  background: linear-gradient(120deg, #ffcceb 0%, #ff9fd9 40%, #ffcceb 80%);
  background-size: 200% 200%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  animation: tariffButtonWave 3.5s ease-in-out infinite;
}

.tariff-card__buttonPopular:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 24px rgba(255, 134, 214, 0.35);
}

.tariff-card__buttonPopular:active {
  transform: scale(1.01);
}

@keyframes badgeWave {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes tariffButtonWave {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.reviews-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 32px;
  margin-top: 24px;
  padding: 36px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.reviews-showcase__content {
  max-width: 680px;
}

.reviews-showcase__text {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.75;
  color: #707070;
}

.reviews-showcase__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.reviews-showcase__image {
  display: block;
  width: 100%;
  max-width: 320px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.reviews-showcase__hint {
  max-width: 320px;
  margin-top: 10px;
  font-size: 14px;
  text-align: left;
  color: #707070;
}

.reviews-quote {
  margin-top: 18px;
  padding-left: 18px;
  border-left: 4px solid #ff86d6;
}

.reviews-quote p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.7;
  color: #707070;
}

.reviews-quote p:last-child {
  margin-bottom: 0;
}

.faq__item {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.faq__item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.faq__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
}

.faq__q {
  font-size: 14px;
  font-weight: 400;
  color: #111;
}

.faq__sign {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: color 0.2s ease;
}

.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__content {
  padding: 0 0 22px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.65);
}

.faq__footer {
  margin-top: 24px;
  font-size: 13px;
  text-align: center;
  color: #707070;
}

.faq__link {
  color: #ffa5e3;
  transition: transform 0.15s ease, opacity 0.2s ease;
}

.faq__link:hover {
  opacity: 0.92;
}

.faq__link:active {
  opacity: 0.7;
}

.footer {
  flex-shrink: 0;
  padding-block: 40px;
  background-color: #111;
  color: #f5f5f5;
}

.footer__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  font-size: 13px;
}

.footer__left {
  max-width: 420px;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer__brand-logo {
  display: block;
  width: 45px;
  height: 45px;
}

.footer__brand-name {
  margin-top: 5px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.footer__text {
  margin: 0 0 16px;
  line-height: 1.5;
  color: #bbb;
}

.footer__copy {
  margin: 0;
  font-size: 12px;
  color: #888;
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 220px;
  text-align: right;
}

.footer__links {
  line-height: 1.6;
  color: #fff;
  transition: transform 0.15s ease, opacity 0.2s ease;
}

.footer__links a:hover {
  text-decoration: underline;
}

.footer__links a:active {
  opacity: 0.7;
}

.footer__telegram {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer__telegram-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.footer__telegram-text {
  white-space: nowrap;
  color: #f5f5f5;
  transition: transform 0.15s ease, opacity 0.2s ease;
}

.footer__telegram-text a {
  color: #ff9fd9;
}

.footer__telegram-text a:hover {
  text-decoration: underline;
}

.footer__telegram-text a:active {
  opacity: 0.7;
}

@media (max-width: 960px) {
  .features-grid,
  .price-grid,
  .reviews-showcase {
    grid-template-columns: 1fr;
  }

  .reviews-showcase {
    gap: 24px;
  }

  .reviews-showcase__media {
    justify-content: flex-start;
  }

  .reviews-showcase__image {
    max-width: 280px;
  }
}

@media (max-width: 844px) {
  .hero-nav__link .text-full {
    display: none;
  }

  .hero-nav__link .text-short {
    display: inline;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 360px;
    padding-top: 24px;
  }

  .hero__container {
    padding-bottom: 0;
  }

  .hero__content {
    margin-top: 95px;
  }

  .hero__text {
    display: none;
  }

  .hero__title {
    font-size: 23px;
  }

  .hero__bg {
    background-position: center top;
    background-size: cover;
  }

  .hero-title--desktop {
    display: none;
  }

  .hero-title--mobile {
    display: block;
  }

  .hero-form {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    overflow: hidden;
    border-radius: 6px;
  }

  .hero-form__input {
    width: 100%;
    min-width: 250px;
    padding: 20px 16px;
    font-size: 16px;
  }

  .hero-form__button {
    width: 100px;
    padding: 0;
    font-size: 15px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .hero-nav {
    margin-bottom: 0;
    padding-inline: 16px;
    border-radius: 17px;
  }

  .hero-nav__actions {
    position: absolute;
    top: 50%;
    right: 15px;
    gap: 10px;
    margin-left: 0;
    transform: translateY(-50%);
  }

  .hero-nav__menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: 26px;
    margin-top: 8px;
    padding: 12px 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    background: #fff;
    backdrop-filter: blur(12px);
  }

  .hero-nav__menu--open {
    display: flex;
  }

  .hero-nav__link {
    color: #000;
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    white-space: nowrap;
    opacity: 1;
  }

  .hero-nav__link:hover {
    opacity: 0.7;
  }

  .hero-nav__link:active {
    color: #000;
    opacity: 1;
  }

  .hero-nav__burger {
    display: inline-flex;
  }

  .download-lightbox {
    padding: 14px;
  }

  .download-lightbox__dialog {
    width: 100%;
    max-height: 90vh;
  }

  .download-lightbox__image {
    max-height: 90vh;
    border-radius: 14px;
  }

  .download-lightbox__close {
    top: -10px;
    right: -2px;
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .tariff-card {
    padding: 78px 64px 64px;
    border-radius: 18px;
  }

  .tariff-card__title {
    margin-bottom: 16px;
    font-size: 24px;
  }

  .tariff-card__price {
    font-size: 42px;
  }

  .tariff-card__period {
    padding-bottom: 4px;
    font-size: 18px;
  }

  .tariff-card__desc {
    margin-bottom: 18px;
    font-size: 15px;
  }

  .tariff-card__item {
    padding-left: 24px;
    font-size: 16px;
  }

  .tariff-card__buttonFree {
    margin-top: 22px;
  }

  .reviews-showcase__text {
    font-size: 15px;
    line-height: 1.7;
  }

  .footer__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__right {
    align-items: center;
    text-align: center;
  }

  .footer__links a {
    text-align: center;
  }

  .footer__telegram {
    align-items: center;
  }

  .download-flow__image-wrap {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .download-flow__image {
    width: 100%;
    max-width: 340px;
  }
}

@media (max-width: 720px) {
  .hero-form {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border-radius: 6px;
  }

  .hero-form__input {
    width: 100%;
    min-width: 0;
    padding: 20px 16px;
    font-size: 16px;
  }

  .hero-form__button {
    flex: 1 1 80px;
    padding: 10px 25px;
    font-size: 15px;
    line-height: 1.1;
    white-space: nowrap;
  }
}

@media (max-width: 600px) {
  .hero-tg-text-full {
    display: none;
  }

  .hero-tg-text-short1 {
    display: inline;
  }
}

@media (max-width: 400px) {
  .hero-tg-text-short1 {
    display: none;
  }

  .hero-tg-text-short2 {
    display: inline;
  }
}

@media (max-width: 1024px) {
  .hero__petals {
    display: none;
  }
}