:root {
  --color-text: #ffffff;
  --color-background: rgba(0, 17, 38, 1);
  --color-border: rgba(255, 255, 255, 0.12);
  --color-accent: #2f6fed;
  --container-width: 1856px;
  --container-padding: 32px;
  --layout-gap: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-background);
  overflow-x: hidden;
}

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

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

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

.site-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-background {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-background::after {
  content: "";
  position: absolute;
  top: var(--bg-fade-start, 100%);
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 17, 38, 0) 0%,
    rgba(0, 17, 38, 0.88) var(--bg-fade-solid-at, 50%),
    rgba(0, 17, 38, 1) 100%
  );
}

.page-background img {
  display: block;
  width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: calc(var(--container-width) + (var(--container-padding) * 2));
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.header__container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--layout-gap);
  padding-top: 19px;
  padding-bottom: 19px;
}

.site-header {
  position: relative;
  z-index: 20;
}

.site-logo {
  justify-self: start;
}

.site-logo__image {
  width: auto;
  max-width: 100%;
  height: auto;
}

.site-logo__image--mobile {
  display: none;
}

.mobile-menu-button {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  justify-self: start;
  cursor: pointer;
}

.mobile-menu-button img {
  display: block;
  width: auto;
  height: auto;
}

.mobile-site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 25;
  margin-top: 16px;
}

.mobile-site-nav__inner {
  width: 100%;
  padding: 32px 16px;
  background-color: rgba(0, 17, 38, 1);
  border-radius: 16px;
}

.mobile-site-nav.is-open .mobile-site-nav__inner {
  animation: mobile-menu-fade-in 0.24s ease;
}

.mobile-site-nav__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mobile-site-nav__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(230, 233, 237, 1);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.1px;
  text-align: center;
}

.mobile-site-nav__item.is-active a {
  width: 100%;
  padding: 20px 16px;
  color: rgba(72, 222, 170, 1);
  background-color: rgba(0, 188, 138, 0.1);
  border-radius: 24px;
}

@keyframes mobile-menu-fade-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-nav {
  justify-self: center;
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.menu-item + .menu-item {
  margin-left: 50px;
}

.menu-item.is-active {
  margin-left: 20px;
}

.menu-item.is-active + .menu-item {
  margin-left: 20px;
}

.site-nav__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: rgba(230, 233, 237, 1);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.1px;
}

.menu-item.is-active a {
  padding: 8px 32px;
  color: rgba(72, 222, 170, 1);
  background-color: rgba(0, 188, 138, 0.1);
  border-radius: 16px;
}

.site-main {
  flex: 1 1 auto;
}

.hero-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.hero-section__inner {
  width: 100%;
  max-width: 1006px;
  margin: 0 auto;
}

.hero-section__title {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 1);
  font-size: 57px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: -0.25px;
  text-align: center;
}

.hero-section__subtitle {
  margin: 0;
  color: rgba(168, 179, 194, 1);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
}

.hero-media {
  margin-top: 61px;
  position: relative;
}

.hero-media__inner {
  position: relative;
  width: 100%;
  max-width: 1272px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-media__item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.hero-media__item img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.hero-media__item--left,
.hero-media__item--right {
  z-index: 1;
  flex: 0 0 auto;
  width: auto;
  height: 340px;
  margin-bottom: 2px;
}

.hero-media__item--center {
  z-index: 2;
  flex: 0 0 auto;
  width: auto;
  height: 486px;
  margin: 0 -208px;
}

.hero-section__actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 64px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: rgba(26, 48, 69, 1);
  color: rgba(168, 179, 194, 1);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  z-index: 0;
}

.hero-tag::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -30%;
  width: 20%;
  background: rgba(182, 200, 228, 0.2);
  transform: skewX(-20deg);
  transition: left 0.35s ease;
  pointer-events: none;
  z-index: -1;
}

.hero-tag:hover {
  background-color: rgba(182, 200, 228, 0.2);
  color: rgba(230, 233, 237, 1);
}

.hero-tag:hover::before,
.hero-tag:focus-visible::before {
  left: 115%;
}

.solutions-section {
  padding-bottom: 64px;
}

.solutions-section__inner {
  padding: 64px;
  border-radius: 32px;
  background-image: url("../img/3917acb9afed51b6bf92a107041ac56373cf2e27.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.section-title,
.solutions-section__title,
.features-section__title {
  margin: 0 0 32px;
  color: rgba(230, 233, 237, 1);
  font-size: 45px;
  font-weight: 600;
  line-height: 52px;
  letter-spacing: 0;
  text-align: center;
}

.features-section {
  padding-bottom: 64px;
}

.features-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.features-section__label {
  color: rgba(168, 179, 194, 1);
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: 0;
}

.features-section__button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  background-color: rgba(26, 48, 69, 1);
  color: rgba(72, 222, 170, 1);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.1px;
  cursor: pointer;
  transition: background-color 0.45s ease, color 0.45s ease;
}

.features-section__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -12%;
  width: 124%;
  height: 100%;
  background-color: rgba(42, 64, 87, 1);
  transform: skewX(-18deg) translateX(-115%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.features-section__button span,
.features-section__button img {
  position: relative;
  z-index: 1;
}

.features-section__button img {
  width: auto;
  height: 14px;
}

.features-section__button:hover::before,
.features-section__button:focus-visible::before {
  transform: skewX(-18deg) translateX(0);
}

.features-section__button:hover,
.features-section__button:focus-visible {
  background-color: rgba(42, 64, 87, 1);
}

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

.features-gallery {
  margin-top: 32px;
}

.news-section {
  padding-top: 32px;
  padding-bottom: 64px;
}

.stats-section {
  padding-top: 64px;
  padding-bottom: 64px;
  margin-bottom: 64px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.stats-card {
  width: 100%;
  max-width: 306px;
  text-align: center;
}

.stats-card__value {
  margin-bottom: 20px;
  color: rgba(189, 233, 255, 1);
  font-size: 57px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: -0.25px;
  text-align: center;
}

.stats-card__text {
  color: rgba(168, 179, 194, 1);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 100px;
  height: 100%;
  padding: 0 16px 36px;
  border-radius: 8px;
}

.pricing-card__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 30px;
  padding: 24px;
  border-radius: 0 0 16px 16px;
  background-color: rgba(60, 74, 94, 1);
  color: rgba(230, 233, 237, 1);
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
}

.pricing-card__label--accent {
  margin-bottom: 58px;
  background-color: rgba(139, 208, 239, 1);
  color: rgba(0, 17, 38, 1);
}

.pricing-card__description {
  margin: 0 0 32px;
  color: rgba(230, 233, 237, 1);
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
}

.pricing-card__content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.pricing-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 32px;
}

.pricing-feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 9px 17px;
  border-radius: 4px;
  background-color: rgba(0, 17, 38, 1);
  text-align: left;
}

.pricing-feature-card__badge {
  position: absolute;
  top: 0;
  right: 6.67px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 4px;
  border-radius: 0 0 4px 4px;
  background-color: rgba(38, 71, 119, 1);
  color: rgba(214, 227, 255, 1);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1px;
}

.pricing-feature-card__icon {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
}

.pricing-feature-card__value {
  color: rgba(230, 233, 237, 1);
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
}

.pricing-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 16px;
  border-radius: 8px;
  background-color: rgba(0, 17, 38, 1);
}

.pricing-card--accent .pricing-summary {
  background-color: transparent;
  background-image: url("../img/Frame 498.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.pricing-summary__label {
  margin: 0 0 8px;
  color: rgba(168, 179, 194, 1);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  overflow-wrap: anywhere;
  white-space: normal;
}

.pricing-summary__value {
  margin: 0;
  color: rgba(230, 233, 237, 1);
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: 0;
}

.pricing-summary__item:last-child .pricing-summary__label {
  text-align: right;
}

.pricing-summary__item:last-child .pricing-summary__value {
  text-align: right;
}

.pricing-card__note {
  margin: 16px 0 20px;
  color: rgba(230, 233, 237, 1);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
}

.pricing-card__list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card__list li {
  position: relative;
  padding-left: 14px;
  color: rgba(168, 179, 194, 1);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.25px;
}

.pricing-card__list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(168, 179, 194, 1);
}

.pricing-card__button {
  width: 100%;
  margin-bottom: 20px;
}

.pricing-card__actions {
  margin-top: auto;
  padding-top: 32px;
}

.pricing-card__secondary-button {
  width: 100%;
  margin-bottom: 0;
}

.pricing-section {
  padding-bottom: 64px;
}

.pricing-section__actions {
  display: flex;
  justify-content: center;
}

.faq-section {
  padding-bottom: 64px;
}

.faq-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
}

.faq-column {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(168, 179, 194, 0.22);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
  border: 0;
  background: transparent;
  color: rgba(230, 233, 237, 1);
  text-align: left;
  cursor: pointer;
}

.faq-item__lead {
  display: inline-flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}

.faq-item__dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 10px;
}

.faq-item__question {
  color: rgba(230, 233, 237, 1);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.15px;
}

.faq-item__icon {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.faq-item__icon img {
  position: absolute;
  inset: 0;
  width: 24px;
  height: 24px;
  transition: opacity 0.25s ease;
}

.faq-item__icon-remove {
  opacity: 0;
}

.faq-item.is-open .faq-item__icon-add,
.faq-item__trigger[aria-expanded="true"] .faq-item__icon-add {
  opacity: 0;
}

.faq-item.is-open .faq-item__icon-remove,
.faq-item__trigger[aria-expanded="true"] .faq-item__icon-remove {
  opacity: 1;
}

.faq-item__content {
  padding: 0 64px 16px 52px;
}

.faq-item__answer {
  margin: 0;
  color: rgba(168, 179, 194, 1);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.25px;
}

.faq-section__actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.site-footer {
  width: 100%;
  padding: 50px 0;
  border-radius: 64px 64px 0 0;
  background-image: url("../img/footer_1920.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.footer-top {
  display: flex;
  align-items: center;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(107, 122, 143, 1);
}

.footer-top__logo {
  flex: 0 0 auto;
  width: 200px;
  height: 102px;
  object-fit: contain;
}

.footer-top__logo--mobile {
  display: none;
}

.footer-top__description {
  width: 100%;
  max-width: 358px;
  margin: 0 0 0 20px;
  color: rgba(230, 233, 237, 1);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
}

.footer-top__banks {
  flex: 0 0 auto;
  margin-left: auto;
}

.footer-top__banks-image {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer-top__banks-image--mobile {
  display: none;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(107, 122, 143, 1);
}

.footer-menu__item {
  width: 200px;
}

.footer-meta {
  margin-left: auto;
}

.footer-menu__title {
  margin: 0;
  margin-bottom: 12px;
  padding: 8px 0;
  color: rgba(230, 233, 237, 1);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.1px;
  text-align: center;
}

.footer-menu__title-link {
  color: inherit;
  text-decoration: none;
}

.footer-menu__title-link:hover {
  color: inherit;
  text-decoration: none;
}

.footer-menu__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu__link {
  display: block;
  padding: 4px 0;
  color: rgba(168, 179, 194, 1);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.1px;
  text-align: center;
}

.footer-meta__text {
  margin: 0;
  margin-bottom: 24px;
  color: rgba(168, 179, 194, 1);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.25px;
  text-align: right;
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.footer-socials__link {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 8px;
  background-color: rgba(72, 222, 170, 1);
  transition: background-color 0.45s ease;
}

.footer-socials__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -12%;
  width: 124%;
  height: 100%;
  background-color: rgba(0, 17, 38, 0.2);
  transform: skewX(-18deg) translateX(-115%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-socials__link:hover::before,
.footer-socials__link:focus-visible::before {
  transform: skewX(-18deg) translateX(0);
}

.footer-socials__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 3px;
}

.footer-socials__icon {
  position: relative;
  z-index: 1;
  display: block;
}

.footer-bottom {
  display: flex;
  align-items: center;
}

.footer-bottom__copyright {
  margin: 0;
  color: rgba(230, 233, 237, 1);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
}

.footer-bottom__nav {
  display: flex;
  align-items: center;
  gap: 92px;
  margin-left: auto;
}

.footer-bottom__link {
  color: rgba(230, 233, 237, 1);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.1px;
  text-align: center;
}

.pricing-card--default {
  background-color: rgba(13, 36, 56, 1);
}

.pricing-card--accent {
  background-color: rgba(42, 64, 87, 1);
}

.news-section__actions {
  display: flex;
  justify-content: center;
}

.news-section__button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 31px;
  border: 1px solid rgba(72, 222, 170, 1);
  border-radius: 32px;
  background-color: transparent;
  color: rgba(72, 222, 170, 1);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.1px;
  transition: background-color 0.45s ease, color 0.45s ease, border-color 0.45s ease;
}

.news-section__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -12%;
  width: 124%;
  height: 100%;
  background-color: rgba(42, 64, 87, 1);
  transform: skewX(-18deg) translateX(-115%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-section__button span,
.news-section__button img {
  position: relative;
  z-index: 1;
}

.news-section__button img {
  width: auto;
  height: 20px;
}

.news-section__button:hover::before,
.news-section__button:focus-visible::before {
  transform: skewX(-18deg) translateX(0);
}

.news-section__button:hover,
.news-section__button:focus-visible {
  background-color: rgba(42, 64, 87, 1);
}

.features-grid__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  overflow: hidden;
  border-radius: 8px;
  background-color: rgba(26, 48, 69, 1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 17, 38, 0) 0%,
    rgba(0, 17, 38, 0.18) 62%,
    rgba(0, 17, 38, 0.8) 100%
  );
}

.feature-card--h449 {
  min-height: 449px;
}

.feature-card--h253 {
  min-height: 253px;
}

.feature-card--h55 {
  min-height: 55px;
}

.feature-card--full {
  min-height: 797px;
}

.feature-card__title {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.15px;
}

.media-links-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 32px;
  overflow: hidden;
}

.media-links-grid::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 170px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 17, 38, 0) 0%,
    rgba(0, 17, 38, 1) calc(100% - 30px),
    rgba(0, 17, 38, 1) 100%
  );
}

.media-links-grid > * {
  position: relative;
  z-index: 1;
}

.media-link-card {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background-color: rgba(19, 42, 63, 1);
}

.media-link-card__image {
  position: relative;
  height: 253px;
  border-radius: 8px 8px 0 0;
  background-color: rgba(26, 48, 69, 1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.media-link-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: auto;
  transform: translate(-50%, -50%);
}

.media-link-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 20px;
}

.media-link-card__name {
  color: rgba(230, 233, 237, 1);
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
}

.media-link-card__time {
  flex: 0 0 auto;
  color: rgba(0, 188, 138, 1);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.1px;
}

.solutions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.solutions-card {
  position: relative;
  display: flex;
  width: 293px;
  height: 293px;
  padding: 28px;
  background-color: rgba(0, 17, 38, 1);
  transition: padding 0.35s ease;
}

.solutions-card__icon {
  position: absolute;
  top: 28px;
  right: 28px;
  display: block;
  width: fit-content;
  height: 110px;
  transition: top 0.35s ease, right 0.35s ease;
}

.solutions-card__icon img {
  position: absolute;
  top: 0;
  right: 0;
  max-width: none;
  width: auto;
  height: 110px;
  transition: opacity 0.35s ease, height 0.35s ease;
}

.solutions-card__icon-default {
  opacity: 1;
}

.solutions-card__icon-hover {
  opacity: 0;
}

.solutions-card__title {
  align-self: flex-end;
  color: rgba(168, 179, 194, 1);
  font-size: 28px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0;
  transition: transform 0.35s ease;
}

.solutions-card:hover,
.solutions-card:focus-visible {
  padding: 16px;
}

.solutions-card:hover .solutions-card__icon,
.solutions-card:focus-visible .solutions-card__icon {
  top: 16px;
  right: 16px;
}

.solutions-card:hover .solutions-card__icon-default,
.solutions-card:focus-visible .solutions-card__icon-default {
  opacity: 0;
  height: 120px;
}

.solutions-card:hover .solutions-card__icon-hover,
.solutions-card:focus-visible .solutions-card__icon-hover {
  opacity: 1;
  height: 120px;
}

.solutions-card:hover .solutions-card__title,
.solutions-card:focus-visible .solutions-card__title {
  color: rgba(230, 233, 237, 1);
  transform: none;
}

.hero-media > .section-bottom-gradient {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  height: 170px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 17, 38, 0) 0%,
    rgba(0, 17, 38, 1) calc(100% - 30px),
    rgba(0, 17, 38, 1) 100%
  );
}

.features-grid.section-bottom-gradient {
  position: relative;
  overflow: hidden;
}

.features-grid.section-bottom-gradient::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 170px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 17, 38, 0) 0%,
    rgba(0, 17, 38, 1) calc(100% - 30px),
    rgba(0, 17, 38, 1) 100%
  );
}

.features-grid.section-bottom-gradient > * {
  position: relative;
  z-index: 1;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  border: none;
  border-radius: 32px;
  background-color: rgba(0, 188, 138, 1);
  color: rgba(0, 17, 38, 1);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.1px;
  cursor: pointer;
  transition: color 0.45s ease, background-color 0.45s ease;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -12%;
  width: 124%;
  height: 100%;
  background-color: rgba(0, 17, 38, 0.2);
  transform: skewX(-18deg) translateX(-115%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.button span {
  position: relative;
  z-index: 1;
}

.button__icon {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-left: 8px;
}

.button:hover::before,
.button:focus-visible::before {
  transform: skewX(-18deg) translateX(0);
}

.button:hover,
.button:focus-visible {
  color: rgba(0, 17, 38, 1);
}

.button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 3px;
}

.header__button {
  justify-self: end;
}

.header__button--user {
  padding: 13px;
}

.header__button-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.auth-page {
  padding-top: 64px;
  padding-bottom: 128px;
}

.pricing-page-hero {
  padding-top: 80px;
  padding-bottom: 70px;
}

.pricing-page-hero__inner {
  max-width: 1230px;
  margin: 0 auto;
}

.pricing-page-hero__title {
  margin: 0;
  color: rgba(230, 233, 237, 1);
  font-family: "Mulish", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 52px;
  letter-spacing: 0;
  text-align: center;
}

.pricing-page-hero__description {
  max-width: 1000px;
  margin: 16px auto 0;
  color: rgba(168, 179, 194, 1);
  font-family: "Mulish", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0;
  text-align: center;
}

.pricing-page-hero__periods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.faq-page-search {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 73px;
}

.faq-page-search__field {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100%, 600px);
  min-width: 0;
}

.faq-page-search__input {
  width: 100%;
  min-width: 0;
  padding: 10px 28px;
  border: 1px solid rgba(230, 233, 237, 1);
  border-radius: 999px;
  background: transparent;
  color: rgba(230, 233, 237, 1);
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
}

.faq-page-search__input::placeholder {
  color: rgba(168, 179, 194, 1);
}

.faq-page-search__input:focus {
  outline: none;
  border-color: rgba(72, 222, 170, 1);
}

.faq-page-search__icon {
  position: absolute;
  right: 28px;
  width: 24px;
  height: 24px;
  object-fit: contain;
  pointer-events: none;
  opacity: 0.85;
}

.faq-page-search__button {
  flex: 0 0 auto;
  min-width: 144px;
  justify-content: center;
}

.faq-solutions-section {
  padding-bottom: 64px;
}

.faq-solutions-section__inner {
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.faq-solutions-section__title {
  margin: 0 0 32px;
  color: rgba(230, 233, 237, 1);
  font-size: 45px;
  font-weight: 600;
  line-height: 52px;
  letter-spacing: 0;
  text-align: center;
}

.faq-solutions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.faq-solutions-card {
  position: relative;
  overflow: hidden;
  display: flex;
  width: 293px;
  height: 293px;
  padding: 28px;
  background-color: rgba(7, 27, 46, 1);
  transition: padding 0.35s ease;
}

.faq-solutions-card::before {
  content: "";
  position: absolute;
  left: -92px;
  bottom: -92px;
  z-index: 0;
  width: 259px;
  height: 259px;
  border-radius: 50%;
  background: rgba(0, 120, 154, 1);
  opacity: 0;
  filter: blur(150px);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.faq-solutions-card__icon {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 1;
  display: block;
  width: fit-content;
  height: 110px;
  transition: top 0.35s ease, right 0.35s ease;
}

.faq-solutions-card__icon img {
  position: absolute;
  top: 0;
  right: 0;
  max-width: none;
  width: auto;
  height: 110px;
  transition: opacity 0.35s ease, height 0.35s ease, transform 0.35s ease;
}

.faq-solutions-card__icon-default {
  opacity: 1;
}

.faq-solutions-card__icon-hover {
  opacity: 0;
  transform: rotate(0deg);
}

.faq-solutions-card__title {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  color: rgba(168, 179, 194, 1);
  font-size: 28px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0;
  transition: transform 0.35s ease;
}

.faq-solutions-card:hover,
.faq-solutions-card:focus-visible,
.faq-solutions-card.is-active {
  padding: 16px;
}

.faq-solutions-card:hover::before,
.faq-solutions-card:focus-visible::before,
.faq-solutions-card.is-active::before {
  opacity: 1;
}

.faq-solutions-card:hover .faq-solutions-card__icon,
.faq-solutions-card:focus-visible .faq-solutions-card__icon,
.faq-solutions-card.is-active .faq-solutions-card__icon {
  top: 16px;
  right: 16px;
}

.faq-solutions-card:hover .faq-solutions-card__icon-default,
.faq-solutions-card:focus-visible .faq-solutions-card__icon-default,
.faq-solutions-card.is-active .faq-solutions-card__icon-default {
  opacity: 0;
  height: 120px;
}

.faq-solutions-card:hover .faq-solutions-card__icon-hover,
.faq-solutions-card:focus-visible .faq-solutions-card__icon-hover,
.faq-solutions-card.is-active .faq-solutions-card__icon-hover {
  opacity: 1;
  height: 120px;
  transform: rotate(180deg);
}

.faq-solutions-card:hover .faq-solutions-card__title,
.faq-solutions-card:focus-visible .faq-solutions-card__title,
.faq-solutions-card.is-active .faq-solutions-card__title {
  color: rgba(230, 233, 237, 1);
  transform: none;
}

.faq-section__empty {
  width: 100%;
  padding: 24px;
  border: 1px solid rgba(182, 200, 228, 0.12);
  border-radius: 24px;
  color: rgba(168, 179, 194, 1);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-align: center;
}

.pricing-page-hero__period-card {
  position: relative;
  overflow: hidden;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid rgba(72, 222, 170, 1);
  border-radius: 8px;
  background: transparent;
  color: rgba(72, 222, 170, 1);
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.1px;
  text-align: center;
  transition: color 0.45s ease, background-color 0.45s ease, border-color 0.45s ease;
}

.pricing-page-hero__period-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -12%;
  width: 124%;
  height: 100%;
  background-color: rgba(72, 222, 170, 0.2);
  transform: skewX(-18deg) translateX(-115%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-page-hero__period-card span {
  position: relative;
  z-index: 1;
}

.pricing-page-hero__period-card:hover::before,
.pricing-page-hero__period-card:focus-visible::before,
.pricing-page-hero__period-card--active::before {
  transform: skewX(-18deg) translateX(0);
}

.pricing-page-hero__period-card:focus-visible {
  outline: 2px solid rgba(72, 222, 170, 0.45);
  outline-offset: 2px;
}

.pricing-page-hero__period-card--active {
  background: rgba(72, 222, 170, 0.08);
}

.pricing-section--page .pricing-grid {
  margin-bottom: 0;
}

.pricing-page-banner-section {
  padding-bottom: 64px;
}

.pricing-comparison-section {
  padding-bottom: 64px;
}

.pricing-page-banner {
  max-width: 1244px;
  padding: 64px;
  border-radius: 32px;
  margin: 0 auto;
  background-image: url("/static/front-home/assets/img/footer_1920.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.pricing-page-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pricing-page-banner__copy {
  max-width: 760px;
}

.pricing-page-banner__title {
  margin: 0 0 16px;
  color: rgba(230, 233, 237, 1);
  font-family: "Mulish", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: 0;
}

.pricing-page-banner__description {
  margin: 0;
  color: rgba(168, 179, 194, 1);
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
}

.pricing-page-banner__button {
  flex-shrink: 0;
  margin-left: auto;
}

.pricing-comparison {
  max-width: 1244px;
  margin: 0 auto;
}

.pricing-comparison__title {
  margin: 0 0 32px;
  color: rgba(230, 233, 237, 1);
  font-family: "Mulish", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: 0;
  text-align: center;
}

.pricing-comparison__table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(58, 78, 101, 1);
  border-radius: 20px;
  background: rgba(4, 20, 41, 1);
}

.pricing-comparison__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

.pricing-comparison__table th,
.pricing-comparison__table td {
  padding: 16px 28px;
  border-bottom: 1px solid rgba(58, 78, 101, 1);
  color: rgba(230, 233, 237, 1);
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.15px;
  text-align: center;
  vertical-align: middle;
}

.pricing-comparison__table thead th {
  background: rgba(47, 69, 94, 1);
  font-weight: 400;
}

.pricing-comparison__table th:first-child,
.pricing-comparison__table td:first-child {
  text-align: left;
  width: 32%;
}

.pricing-comparison__table tbody tr:last-child td {
  border-bottom: none;
}

.auth-page__title {
  margin: 0;
  margin-bottom: 64px;
  text-align: center;
}

.auth-page__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
}

.auth-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 300px;
  padding: 7px;
  border-radius: 4px;
  background: rgba(26, 42, 59, 1);
  color: rgba(230, 233, 237, 1);
  font-family: "Mulish", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.auth-page__button:hover,
.auth-page__button:focus-visible {
  background: rgba(72, 222, 170, 0.1);
}

.auth-page__button img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.auth-page__separator {
  margin: 0 0 32px;
  color: rgba(168, 179, 194, 1);
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-align: center;
}

.auth-page__description {
  max-width: 450px;
  margin: 0 auto 64px;
  color: rgba(168, 179, 194, 1);
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-align: center;
}

.auth-page__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.auth-page__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  width: 100%;
  max-width: 300px;
}

.auth-page__fields--wide-gap {
  margin-bottom: 64px;
}

.auth-page__field {
  position: relative;
  width: 100%;
}

.auth-page__input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: rgba(26, 42, 59, 1);
  color: rgba(230, 233, 237, 1);
  font-family: "Mulish", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.4px;
  outline: none;
  transition: border-color 0.2s ease;
}

.auth-page__input::placeholder {
  color: rgba(230, 233, 237, 1);
  opacity: 1;
}

.auth-page__input:focus,
.auth-page__input:not(:placeholder-shown) {
  border-color: rgba(72, 222, 170, 1);
}

.auth-page__input--error,
.auth-page__input--error:focus,
.auth-page__input--error:not(:placeholder-shown) {
  border-color: rgba(255, 180, 171, 1);
}

.auth-page__field--password .auth-page__input {
  padding-right: 50px;
}

.auth-page__error {
  display: block;
  margin-top: 2px;
  color: rgba(255, 180, 171, 1);
  font-family: "Mulish", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.5px;
}

.auth-page__notice {
  max-width: 450px;
  margin: 0 auto 32px;
  color: rgba(168, 179, 194, 1);
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-align: center;
}

.auth-page__notice--ok {
  color: rgba(72, 222, 170, 1);
}

.auth-page__notice--bad {
  color: rgba(255, 180, 171, 1);
}

.auth-page__toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
  cursor: pointer;
}

.auth-page__toggle img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.auth-page__options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.auth-page__remember {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(230, 233, 237, 1);
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.auth-page__checkbox {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: rgba(26, 42, 59, 1);
}

.auth-page__forgot {
  color: rgba(168, 179, 194, 1);
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 10%;
  text-underline-offset: 20%;
  text-decoration-skip-ink: auto;
}

.auth-page__submit {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

.auth-page__register {
  margin: 64px 0 0;
  color: rgba(230, 233, 237, 1);
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-align: center;
}

.auth-page__register-link {
  margin-left: 6px;
  color: rgba(168, 179, 194, 1);
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 10%;
  text-underline-offset: 20%;
  text-decoration-skip-ink: auto;
}

.account-page {
  padding-top: 150px;
  padding-bottom: 150px;
}

.account-page__container {
  max-width: 1230px;
  margin: 0 auto;
}

.account-page__content {
  width: 100%;
}

.account-page__main {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.account-page__sidebar {
  height: 100%;
  min-height: 100%;
  padding: 16px;
  border-radius: 8px;
  background: rgba(13, 36, 56, 1);
}

.account-page__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
  min-height: 100%;
}

.account-page__nav-spacer {
  flex: 1 1 auto;
}

.account-page__nav-link {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 8px;
  color: rgba(230, 233, 237, 1);
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.1px;
  text-align: center;
  transition: background-color 0.45s ease, color 0.45s ease;
}

.account-page__nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -12%;
  z-index: 0;
  width: 124%;
  height: 100%;
  background-color: rgba(0, 17, 38, 0.2);
  transform: skewX(-18deg) translateX(-115%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.account-page__nav-link span,
.account-page__nav-link img {
  position: relative;
  z-index: 1;
}

.account-page__nav-link:hover,
.account-page__nav-link:focus-visible,
.account-page__nav-link--active {
  background: rgba(0, 188, 138, 0.1);
}

.account-page__nav-link:hover::before,
.account-page__nav-link:focus-visible::before,
.account-page__nav-link--active::before {
  transform: skewX(-18deg) translateX(0);
}

.account-page__nav-link:focus-visible {
  outline: 1px solid rgba(72, 222, 170, 0.45);
  outline-offset: 2px;
}

.account-page__nav-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.account-page__nav-link--logout {
  margin-top: auto;
}

.account-page__panel {
  min-height: 1px;
}

.account-page__title {
  margin: 0 0 32px;
  color: rgba(230, 233, 237, 1);
  font-family: "Mulish", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: 0;
  text-align: left;
}

.account-page__profile-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: 8px;
  background-image: url("/static/front-home/assets/img/footer_1920.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.account-page__profile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 107px;
}

.account-page__profile-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(230, 233, 237, 1);
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.1px;
  text-align: center;
}

.account-page__profile-label-icon,
.account-page__edit-button-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 auto;
}

.account-page__edit-button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.account-page__profile-avatar-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.account-page__profile-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  border-radius: 999px;
  background: rgba(72, 222, 170, 1);
}

.account-page__profile-avatar--image {
  width: 92px;
  height: 92px;
  padding: 0;
  overflow: hidden;
  background: rgba(13, 36, 56, 1);
}

.account-page__profile-avatar-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 auto;
}

.account-page__profile-avatar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.account-page__profile-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.account-page__profile-login {
  color: rgba(168, 179, 194, 1);
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-align: right;
}

.account-page__profile-name {
  color: rgba(230, 233, 237, 1);
  font-family: "Mulish", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: 0;
  text-align: right;
}

.account-page__overview {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  margin-top: 20px;
}

.account-page__overview-card {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-radius: 8px;
  background: rgba(13, 36, 56, 1);
}

.account-page__overview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.account-page__overview-card--balance .account-page__overview-head {
  margin-bottom: 59px;
}

.account-page__overview-card--history .account-page__overview-head {
  margin-bottom: 25px;
}

.account-page__overview-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(230, 233, 237, 1);
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.1px;
}

.account-page__overview-label-icon,
.account-page__overview-balance-icon,
.account-page__overview-stat-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 auto;
}

.account-page__overview-button {
  flex-shrink: 0;
}

.account-page__overview-balance {
  margin-bottom: 34px;
}

.account-page__overview-balance-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.account-page__overview-balance-label,
.account-page__overview-plan-label,
.account-page__overview-last-label,
.account-page__overview-last-time,
.account-page__overview-stat-label,
.account-page__overview-stat-note,
.account-page__overview-last-subtitle {
  margin: 0;
  color: rgba(168, 179, 194, 1);
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
}

.account-page__overview-balance-label {
  margin-bottom: 4px;
}

.account-page__overview-history-label {
  margin: 0;
  color: rgba(168, 179, 194, 1);
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.25px;
}

.account-page__overview-balance-value {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: rgba(230, 233, 237, 1);
  font-family: "Mulish", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: 0;
  text-align: center;
}

.account-page__overview-plan {
  margin-top: 0;
}

.account-page__overview-plan-value,
.account-page__overview-last-title {
  margin: 16px 0 0;
  color: rgba(230, 233, 237, 1);
  font-family: "Mulish", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: 0;
}

.account-page__overview-plan-value {
  max-width: 100%;
  word-break: break-word;
  margin-top: 4px;
  text-align: right;
}

.account-page__overview-plan-label {
  text-align: right;
}

.account-page__overview-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 2px;
}

.account-page__overview-stat {
  padding: 8px;
  border-radius: 8px;
  background: rgba(38, 57, 79, 1);
}

.account-page__overview-stat-value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: rgba(230, 233, 237, 1);
  font-family: "Mulish", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
}

.account-page__overview-last {
  margin-top: 16px;
}

.account-page__overview-last-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 2px;
}

.account-page__overview-last-body {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.account-page__overview-last-cover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(38, 57, 79, 1);
}

.account-page__overview-last-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-page__overview-last-cover span {
  color: rgba(72, 222, 170, 1);
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.1px;
}

.account-page__overview-last-meta {
  min-width: 0;
}

.account-page__overview-last-title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0;
  max-width: 31ch;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.account-page__overview-last-subtitle {
  margin: 0;
}

.account-page__overview-last-amount {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: rgba(230, 233, 237, 1);
  font-family: "Mulish", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
  text-align: right;
}

.account-page__overview-last-amount-placeholder,
.account-page__overview-last-empty {
  color: rgba(168, 179, 194, 1);
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
}

.account-page__overview-last-empty {
  margin-top: 16px;
}

@media (min-width: 769px) and (max-width: 1100px) {
  .account-page {
    padding-top: 72px;
    padding-bottom: 96px;
  }

  .account-page__main {
    grid-template-columns: 1fr;
  }

  .account-page__sidebar {
    display: none;
  }

  .account-page__title {
    margin-bottom: 24px;
  }

  .account-page__profile-card {
    padding: 16px;
    gap: 12px;
  }

  .account-page__profile-head {
    margin-bottom: 0;
  }

  .account-page__profile-avatar-wrap {
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-direction: row-reverse;
  }

  .account-page__profile-meta {
    align-items: flex-start;
    flex: 1 1 auto;
  }

  .account-page__profile-login,
  .account-page__profile-name {
    text-align: left;
  }

  .account-page__profile-name {
    font-size: 28px;
    line-height: 36px;
  }

  .account-page__profile-avatar {
    padding: 18px;
  }

  .account-page__profile-avatar--image {
    width: 92px;
    height: 92px;
    padding: 0;
  }

  .account-page__profile-avatar-icon {
    width: 32px;
    height: 32px;
  }

  .account-page__edit-button,
  .account-page__overview-button {
    width: 56px;
    min-width: 56px;
    height: 40px;
    padding: 0;
    justify-content: center;
    gap: 0;
  }

  .account-page__edit-button span,
  .account-page__overview-button span {
    display: none;
  }

  .account-page__overview {
    grid-template-columns: 1fr;
  }

  .account-page__overview-card--balance {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 16px;
  }

  .account-page__overview-card--balance .account-page__overview-head {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }

  .account-page__overview-balance {
    grid-column: 2;
    grid-row: 2;
    margin-bottom: 0;
  }

  .account-page__overview-plan {
    grid-column: 1;
    grid-row: 2;
  }

  .account-page__overview-plan-label,
  .account-page__overview-plan-value {
    text-align: left;
  }

  .account-page__overview-plan-value,
  .account-page__overview-balance-value {
    font-size: 28px;
    line-height: 36px;
  }

  .account-page__overview-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .account-page__overview-last-title {
    max-width: 26ch;
  }
}

@media (max-width: 1440px) {
  .hero-media {
    margin-top: 64px;
  }

  .hero-media__inner {
    max-width: 1080px;
  }

  .hero-media__item--center {
    height: 415px;
  }

  .hero-media__item--left,
  .hero-media__item--right {
    height: 287px;
  }

  .features-grid.section-bottom-gradient .feature-card--h449 {
    min-height: 329px;
  }

  .features-grid.section-bottom-gradient .feature-card--h253 {
    min-height: 185px;
  }

  .features-grid.section-bottom-gradient .feature-card--full {
    min-height: 609px;
  }

  .features-grid.section-bottom-gradient::after {
    background: linear-gradient(
      180deg,
      rgba(0, 17, 38, 0) 20%,
      rgba(0, 17, 38, 1) calc(100% - 30px),
      rgba(0, 17, 38, 1) 100%
    );
  }

  .pricing-feature-card__value {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
  }

  .footer-menu__item {
    width: 140px;
  }

  .footer-bottom__nav {
    gap: 50px;
  }

  .faq-layout {
    max-width: 1144px;
  }

}

@media (max-width: 768px) {
  .auth-page {
    padding-top: 32px;
    padding-bottom: 64px;
  }

  .pricing-page-hero {
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .pricing-page-banner-section {
    padding-bottom: 50px;
  }

  .pricing-comparison-section {
    padding-bottom: 50px;
  }

  .pricing-page-hero__title {
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
  }

  .pricing-page-hero__description {
    font-size: 24px;
    line-height: 32px;
  }

  .faq-page-search {
    flex-direction: column;
    gap: 20px;
    margin-top: 56px;
  }

  .faq-page-search__field {
    width: 100%;
  }

  .faq-page-search__button {
    width: 100%;
    max-width: 320px;
  }

  .faq-solutions-section__inner {
    padding: 0;
  }

  .faq-solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-solutions-card {
    width: 100%;
    max-width: 100%;
    height: 218px;
    padding: 28px 32px;
    border-radius: 16px;
  }

  .faq-solutions-card__icon {
    top: 28px;
    right: 18px;
    height: 160px;
  }

  .faq-solutions-card__icon img {
    height: 160px;
  }

  .faq-solutions-card__title {
    max-width: 220px;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: 0;
  }

  .pricing-page-banner {
    padding: 32px;
    border-radius: 24px;
  }

  .pricing-page-banner__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-page-banner__title {
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
  }

  .pricing-page-banner__description {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
  }

  .pricing-page-banner__button {
    margin-left: 0;
  }

  .pricing-comparison__title {
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
  }

  .pricing-comparison__table th,
  .pricing-comparison__table td {
    padding: 16px 20px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.15px;
  }

  .auth-page__title {
    margin-bottom: 32px;
  }

  .auth-page__description {
    margin-bottom: 48px;
  }

  .auth-page__fields--wide-gap {
    margin-bottom: 48px;
  }

  .account-page {
    padding-top: 32px;
    padding-bottom: 64px;
  }

  .account-page__main {
    grid-template-columns: 1fr;
  }

  .account-page__overview {
    grid-template-columns: 1fr;
  }

  .account-page__profile-card {
    padding: 24px;
  }

  .account-page__profile-head {
    margin-bottom: 20px;
    flex-direction: row;
    align-items: flex-start;
  }

  .account-page__profile-avatar-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  .account-page__profile-meta {
    align-items: center;
  }

  .account-page__profile-login,
  .account-page__profile-name {
    text-align: center;
  }

  .account-page__profile-name {
    font-size: 28px;
    line-height: 36px;
  }

  .account-page__profile-avatar {
    order: -1;
    padding: 22px;
  }

  .account-page__profile-avatar--image {
    width: 92px;
    height: 92px;
    padding: 0;
  }

  .account-page__edit-button,
  .account-page__overview-button {
    width: 48px;
    min-width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
    gap: 0;
  }

  .account-page__edit-button span,
  .account-page__overview-button span {
    display: none;
  }

  .account-page__edit-button-icon,
  .account-page__overview-button .button__icon {
    margin: 0;
  }

  .account-page__overview-head {
    flex-direction: row;
    align-items: flex-start;
  }

  .account-page__overview-card--balance {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px;
  }

  .account-page__overview-card--balance .account-page__overview-head {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }

  .account-page__overview-balance {
    grid-column: 2;
    grid-row: 2;
    margin-bottom: 0;
  }

  .account-page__overview-plan {
    grid-column: 1;
    grid-row: 2;
  }

  .account-page__overview-plan-label,
  .account-page__overview-plan-value {
    text-align: left;
  }

  .account-page__overview-balance-meta {
    align-items: flex-end;
  }

  .account-page__overview-balance-value,
  .account-page__overview-plan-value {
    font-size: 28px;
    line-height: 36px;
  }

  .account-page__overview-stats {
    grid-template-columns: 1fr;
  }

  .account-page__overview-last-head,
  .account-page__overview-last-body {
    grid-template-columns: 1fr;
    display: grid;
    justify-content: stretch;
  }

  .account-page__overview-last-head {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .account-page__overview-last-body {
    grid-template-columns: 70px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }

  .account-page__overview-last-cover {
    width: 70px;
    height: 70px;
  }

  .account-page__overview-last-amount {
    justify-content: flex-end;
  }

  .site-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-site-nav.is-open {
    display: block;
  }

  .header__container {
    grid-template-columns: 1fr auto 1fr;
    justify-items: stretch;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .hero-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hero-section__title {
    font-size: 45px;
    line-height: 52px;
    margin-bottom: 34px;
  }

  .hero-section__subtitle {
    font-size: 24px;
    line-height: 32px;
  }

  .hero-media {
    margin-top: 32px;
  }

  .hero-media__inner {
    max-width: 100%;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
  }

  .hero-tags {
    margin-top: 32px;
  }

  .solutions-section__inner {
    padding: 32px;
  }

  .features-section__head {
    flex-wrap: wrap;
  }

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

  .features-grid.section-bottom-gradient > .features-grid__column:nth-child(n + 3) {
    display: none;
  }

  .features-grid.section-bottom-gradient .feature-card--h449 {
    min-height: 197px;
  }

  .features-grid.section-bottom-gradient .feature-card--h253 {
    min-height: 350px;
  }

  .features-grid.section-bottom-gradient .feature-card--h55 {
    display: none;
  }

  .features-grid.section-bottom-gradient .feature-card--full {
    min-height: 567px;
  }

  .media-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .footer-top {
    padding-bottom: 33px;
    margin-bottom: 33px;
  }

  .footer-menu {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
    column-gap: 20px;
    row-gap: 12px;
    align-items: start;
    padding-bottom: 33px;
    margin-bottom: 33px;
  }

  .footer-menu__item {
    width: auto;
    grid-column: 1;
  }

  .footer-menu__title {
    margin-bottom: 0;
    padding: 8px 0;
    text-align: left;
  }

  .footer-menu__list {
    display: none;
  }

  .footer-meta {
    display: contents;
  }

  .footer-meta__text {
    grid-column: 2;
    grid-row: 1 / span 6;
    align-self: start;
    margin: 0;
    text-align: right;
  }

  .footer-socials {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 24px;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 20px;
    align-items: start;
  }

  .footer-bottom__copyright {
    max-width: 190px;
    align-self: center;
    line-height: 36px;
  }

  .footer-bottom__nav {
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
    margin-left: 0;
  }

  .footer-bottom__link {
    text-align: right;
  }

  .footer-top__banks-image--desktop {
    display: none;
  }

  .footer-top__banks-image--mobile {
    display: block;
  }

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

  .stats-card {
    max-width: none;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-item__question {
    font-size: 18px;
    line-height: 26px;
  }

  .faq-item__content {
    padding: 0 24px 16px 48px;
  }

  .solutions-card {
    width: 100%;
    max-width: 293px;
  }

  .hero-media__item--left,
  .hero-media__item--right,
  .hero-media__item--center {
    width: auto;
    max-width: none;
    flex: 0 0 auto;
  }

  .hero-media__item--left,
  .hero-media__item--right {
    height: 177px;
    margin-bottom: 2px;
  }

  .hero-media__item--center {
    height: 266px;
    margin: 0 -108px;
  }

  .site-logo {
    justify-self: center;
  }

  .header__button {
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .pricing-page-banner__content {
    align-items: center;
    text-align: center;
  }

  .pricing-page-banner__copy {
    max-width: none;
  }

  .pricing-page-banner__title {
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
    text-align: center;
  }

  .pricing-page-banner__description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.5px;
    text-align: center;
  }

  .pricing-page-banner__button {
    margin-right: auto;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header__container {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero-section {
    padding-top: 0;
  }

  .hero-section__title {
    margin-bottom: 18px;
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0;
  }

  .hero-section__subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.5px;
  }

  .hero-section__actions {
    margin-top: 37px;
  }

  .hero-media__inner {
    display: block;
  }

  .hero-media__item--left,
  .hero-media__item--right {
    display: none;
  }

  .hero-media__item--center {
    width: 100%;
    height: 237px;
    margin: 0;
  }

  .hero-media__item img {
    width: 100%;
  }

  .hero-media > .section-bottom-gradient {
    height: 96px;
    background: linear-gradient(
      180deg,
      rgba(0, 17, 38, 0) 0%,
      rgba(0, 17, 38, 1) calc(100% - 20px),
      rgba(0, 17, 38, 1) 100%
    );
  }

  .solutions-section__inner {
    padding: 32px 16px;
  }

  .solutions-section {
    padding-bottom: 32px;
  }

  .solutions-card {
    border-radius: 8px;
    max-width: 100%;
  }

  .section-title,
  .solutions-section__title,
  .features-section__title {
    margin-bottom: 32px;
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0;
  }

  .features-section__label {
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0;
  }

  .features-section__button span {
    display: none;
  }

  .features-section__button {
    padding: 16px;
  }

  .features-grid.section-bottom-gradient {
    grid-template-columns: 1fr;
  }

  .features-grid.section-bottom-gradient .features-grid__column {
    width: 100%;
  }

  .features-grid.section-bottom-gradient .feature-card {
    width: 100%;
  }

  .features-grid.section-bottom-gradient .feature-card--h449 {
    min-height: 193px;
  }

  .features-grid.section-bottom-gradient .feature-card--h253 {
    min-height: 343px;
  }

  .features-grid.section-bottom-gradient .feature-card--h55 {
    display: block;
    min-height: 50px;
  }

  .features-grid.section-bottom-gradient .feature-card--full {
    display: none;
  }

  .media-links-grid {
    grid-template-columns: 1fr;
  }

  .media-link-card {
    width: 100%;
  }

  .features-section {
    padding-bottom: 0;
  }

  .news-section {
    padding-top: 0;
  }

  .stats-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .stats-card {
    width: 100%;
    max-width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    padding-bottom: 32px;
  }

  .site-footer {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
  }

  .footer-top__logo--desktop {
    display: none;
  }

  .footer-top__logo--mobile {
    display: block;
  }

  .footer-top__banks-image--desktop {
    display: block;
  }

  .footer-top__banks-image--mobile {
    display: none;
  }

  .footer-top__description {
    margin-left: 0;
    text-align: center;
  }

  .footer-top__banks {
    margin-top: 16px;
    margin-left: 0;
  }

  .footer-menu {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 8px;
  }

  .footer-menu__item {
    grid-column: auto;
  }

  .footer-menu__title {
    text-align: center;
  }

  .footer-meta__text {
    grid-column: auto;
    grid-row: auto;
    text-align: center;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 16px;
  }

  .footer-bottom__copyright {
    max-width: none;
    text-align: center;
  }

  .footer-bottom__nav {
    align-items: center;
  }

  .footer-bottom__link {
    text-align: center;
  }

  .site-logo__image--desktop {
    display: none;
  }

  .site-logo__image--mobile {
    display: block;
  }
}

@media (max-width: 375px) {
  .pricing-page-hero__description {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
  }

  .faq-page-search {
    margin-top: 48px;
  }

  .faq-page-search__input {
    padding: 10px 28px;
  }

  .faq-page-search__icon {
    right: 20px;
    width: 22px;
    height: 22px;
  }

  .faq-solutions-section {
    padding-bottom: 32px;
  }

  .faq-solutions-section__inner {
    padding: 0;
  }

  .faq-solutions-section__title {
    margin-bottom: 32px;
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0;
  }

  .faq-solutions-card {
    height: 218px;
    padding: 28px 32px;
    border-radius: 16px;
    max-width: 100%;
  }

  .faq-solutions-card__icon {
    top: 28px;
    right: 18px;
    height: 160px;
  }

  .faq-solutions-card__icon img {
    height: 160px;
  }

  .faq-solutions-card__title {
    max-width: 220px;
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0;
  }

  .pricing-page-banner {
    padding: 24px 16px;
  }

  .pricing-comparison__title {
    font-size: 28px;
    line-height: 36px;
  }
}

.legal-page {
  padding: 80px 0 128px;
}

.legal-page__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 40px;
  border: 1px solid rgba(46, 74, 101, 1);
  border-radius: 32px;
  background: rgba(10, 21, 36, 0.92);
}

.legal-page__title {
  margin: 0 0 32px;
  color: rgba(230, 233, 237, 1);
  font-family: "Mulish", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 52px;
  letter-spacing: 0;
  text-align: center;
}

.legal-page__content {
  color: rgba(168, 179, 194, 1);
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
}

.legal-page__content p {
  margin: 0 0 16px;
}

.legal-page__content ul {
  margin: 0 0 16px;
  padding-left: 24px;
}

.legal-page__content li {
  margin-bottom: 8px;
}

.legal-page__content a {
  color: rgba(72, 222, 170, 1);
  text-decoration: underline;
  text-underline-offset: 20%;
}

.legal-page__section + .legal-page__section {
  margin-top: 32px;
}

.legal-page__section h2 {
  margin: 0 0 20px;
  color: rgba(230, 233, 237, 1);
  font-family: "Mulish", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 32px 0 64px;
  }

  .legal-page__inner {
    padding: 32px 20px;
    border-radius: 24px;
  }

  .legal-page__title {
    font-size: 32px;
    line-height: 40px;
  }

  .legal-page__section h2 {
    font-size: 24px;
    line-height: 32px;
  }
}
