:root {
  --safe-area-top: env(safe-area-inset-top, 0px);
}

html,
body {
  background-color: #fff;
}

html {
  height: 100%;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: calc(124px + var(--safe-area-top));
}

body {
  min-height: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #fff;
}

.site {
  flex: 1 0 auto;
}

.container {
  max-width: 1432px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.footer {
  flex: 0 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  box-sizing: border-box;
  padding-top: var(--safe-area-top);
  background-color: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 68px;
  height: 100px;
  background-color: #fff;
}

.header-inner .logo {
  flex-shrink: 0;
}

.header-inner .menu {
  flex-grow: 1;
}

.header-actions {
  flex-shrink: 0;
  display: flex;
  gap: 56px;
  align-items: center;
}

.header-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header-buttons .button {
  height: 44px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 14px;
  border-radius: 16px;
}

.header-user {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #440E48;
  border-radius: 12px;
  width: 48px;
  height: 40px;
  box-sizing: border-box;
  padding: 0;
  border: none;
  outline: none;
  text-decoration: none;
}

.header-user svg {
  width: 24px;
  height: 24px;
  display: block;
}

.header-toggle {
  padding: 0;
  background-color: transparent;
  border: none;
  color: #19041B;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
}

.header-toggle svg {
  width: 30px;
  height: 30px;
}

.header-toggle-icon-close {
  display: none;
}

.logo {
  display: flex;
  text-decoration: none;
  color: #2C102E;
}

.logo .logo-icon {
  width: 148px;
  height: 25px;
  display: block;
}

.menu .menu-actions {
  display: none;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.menu-list a {
  text-decoration: none;
  color: #1F2937;
  transition: 0.2s;
}

.menu-list a:hover {
  color: #440E48;
}

.language-switcher {
  background-color: #F3F4F6;
  border: 1px solid #E5E7EB;
  padding: 4px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  box-sizing: border-box;
  position: relative;
  width: 160px;
  transition: 0.3s;
  overflow: hidden;
}

.language-switcher:not(:hover) {
  width: 51px;
  background-color: transparent;
  border-color: transparent;
}

.language-switcher:not(:hover) .language-switcher-item.active {
  color: #1F2937;
  background-color: transparent;
}

.language-switcher-item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  width: 43px;
  background-color: transparent;
  border-radius: 12px;
  padding: 0;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  height: 36px;
  color: #1F2937;
  letter-spacing: 0.01em;
  line-height: 20px;
}

.language-switcher-item:hover {
  background-color: #e7e7e7;
}

.language-switcher-item.active {
  background-color: #440E48;
  color: #fff;
  cursor: auto;
}

.language-switcher-item:not(.active) {
  transition: background-color 0.2s;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #440E48;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  height: 56px;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 0 24px;
  transition: 0.2s;
  letter-spacing: 0.01em;
}

.button:hover {
  background-color: #602A63;
}

.button.button-outline {
  background-color: transparent;
  border: 1px solid #E5E7EB;
  color: #1F2937;
}

.button.button-outline:hover {
  background-color: #f7f7f7;
}

.button.button-white {
  background-color: #fff;
  color: #1F2937;
}

.button.button-white:hover {
  background-color: #e7e7e7;
}

.text-highlight {
  color: #2C102E;
  position: relative;
  display: inline-block;
  white-space: nowrap;
  z-index: 0;
}

.text-highlight::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFB70E;
  border-radius: 2px;
  z-index: -1;
}

.text-highlight-large::after {
  top: 10px;
}

.text-highlight-medium::after {
  top: 4px;
}

.text-highlight-solid {
  color: #000;
  background-color: #FFB70E;
  border-radius: 2px;
  padding: 0 3px 8px;
  line-height: 1;
}

.text-highlight-solid::after {
  content: none;
}

.text-highlight-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  color: #000;
  background-color: #FFB70E;
  border-radius: 2px;
  padding: 0 2px 6px;
  font-family: "Exo 2", sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}

.text-highlight-label::after {
  content: none;
}

.text-highlight-mt {
  margin-top: 10px;
}

.hero-slider {
  --swiper-pagination-bullet-horizontal-gap: 0;
  --swiper-pagination-bullet-inactive-opacity: 1;
}

.hero-slider .swiper {
  background: radial-gradient(120% 130% at 84% 16%, #4C0C51 0%, #2C102E 72%);
  border-radius: 20px;
}

.hero-slider .swiper-slide {
  height: auto;
}

.hero-slider-pagination {
  padding-left: 60px;
  margin-top: 16px;
}

.hero-slider-pagination .swiper-pagination {
  position: static;
  display: flex;
  gap: 12px;
}

.hero-slider-pagination .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.24);
  width: 16px;
  height: 4px;
  border-radius: 100px;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
}

.hero-slider-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #2C102E;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left center;
}

.hero-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 64px;
}

.hero-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  transform: scaleX(var(--bullet-progress));
}

.hero-slider-item {
  height: 100%;
}

.hero-content {
  padding: 60px;
  position: relative;
  z-index: 1;
  height: 100%;
  box-sizing: border-box;
}

.hero-image {
  width: 470px;
  height: 470px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 110px;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.hero-image.hero-image-bottom {
  width: 486px;
  height: 486px;
  top: auto;
  bottom: 0;
  transform: none;
}

.hero-main {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-main > .hero-image {
  position: static;
  transform: none;
  max-width: 220px;
  width: 100%;
  height: auto;
  margin-right: auto;
  margin-top: 24px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 80px;
  line-height: 1;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  color: #fff;
  max-width: 702px;
}

.hero-features {
  flex-grow: 1;
  align-items: start;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  max-width: 648px;
}

.hero-features-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: rgba(214, 214, 214, 0.1);
  border-radius: 16px;
  padding: 16px;
  box-sizing: border-box;
}

.hero-features-icon {
  display: flex;
}

.hero-features-icon svg {
  width: 16px;
  height: 16px;
  color: #fff;
  display: block;
}

.hero-features-text {
  color: #fff;
  font-size: 14px;
}

.hero-button {
  margin-top: 74px;
}

.hero-numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 60px;
  padding: 36px 0;
  margin-top: 28px;
}

.hero-numbers-title {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  font-family: "Exo 2", sans-serif;
}

.hero-numbers-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.hero-numbers-item {
  text-align: center;
}

.hero-numbers-value {
  font-size: 40px;
  font-weight: 600;
  font-family: "Exo 2", sans-serif;
}

.hero-numbers-label {
  margin-top: 4px;
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
  font-weight: 500;
}

.hero-pricing {
  display: flex;
  gap: 60px;
  padding: 60px;
  box-sizing: border-box;
}

.hero-pricing .pricing-options-card-price {
  font-size: 28px;
}

.hero-pricing .pricing-options-card {
  gap: 46px;
  min-height: 0;
}

.hero-pricing .pricing-options-card-body {
  gap: 32px;
}

.hero-pricing-left {
  padding-top: 60px;
  flex-basis: 270px;
  flex-shrink: 0;
}

.hero-pricing-title {
  font-family: "Exo 2", sans-serif;
  line-height: 1;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}

.hero-pricing-right {
  flex-grow: 1;
}

.hero-pricing-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.section-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  padding-top: 48px;
  padding-bottom: 48px;
  margin-top: 28px;
}

.section-col-content {
  padding-top: 60px;
}

.section-header {
  margin-bottom: 48px;
}

.section-title {
  font-size: 64px;
  font-weight: 700;
  color: #000;
  font-family: "Exo 2", sans-serif;
  line-height: 1.09;
}

.section-nav {
  list-style: none;
  font-size: 28px;
  font-weight: 600;
  font-family: "Exo 2", sans-serif;
  margin: 0;
  padding: 0;
}

.section-nav-item:not(:last-child) {
  margin-bottom: 16px;
}

.section-nav-item a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.4);
}

.section-nav-item.active a {
  color: #000;
  position: relative;
}

.section-nav-item.active a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: #FFB70E;
  border-radius: 2px;
  z-index: -1;
}

.cards-item {
  position: relative;
  padding-bottom: 114%;
  border-radius: 20px;
  overflow: hidden;
}

.cards-item::after {
  content: "";
  display: block;
  width: 100%;
  height: 44%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

.cards-item > picture {
  display: contents;
}

.cards-content {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  z-index: 3;
  padding: 60px;
  box-sizing: border-box;
  width: 100%;
}

.cards-content-text {
  flex-grow: 1;
}

.cards-title {
  font-family: "Exo 2", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}

.cards-text {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 16px;
  font-size: 18px;
}

.cards-button {
  flex-shrink: 0;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  width: 56px;
  height: 80px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.cards-button svg {
  width: 24px;
  height: 24px;
  display: block;
}

.cards-button.cards-button-sm {
  width: 56px;
  height: 56px;
}

.cards-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.scroll-cards {
  --scroll-cards-top: calc(110px + var(--safe-area-top));
  --scroll-cards-segment: 0.55;
  --scroll-cards-mobile-segment: 0.8;
  --scroll-cards-viewport: 100vh;
  position: relative;
}

html.is-scroll-cards-scrolling {
  scroll-behavior: auto;
}

.scroll-cards.is-scroll-cards-ready > .container,
.scroll-cards.is-scroll-cards-ready .section-inner {
  height: 100%;
}

.scroll-cards.is-scroll-cards-ready .section-row {
  position: relative;
  align-items: start;
  min-height: 100%;
  box-sizing: border-box;
}

.scroll-cards.is-scroll-cards-ready .section-col-cards,
.scroll-cards.is-scroll-cards-ready .section-col-content {
  min-width: 0;
}

.scroll-cards.is-scroll-cards-ready .cards {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 100/114;
  transform: translateZ(0);
}

.scroll-cards.is-scroll-cards-ready .cards-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 0;
  transform: translate3d(0, 100%, 0);
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  will-change: transform;
}

.scroll-cards.is-scroll-cards-ready .cards-item.is-active {
  pointer-events: auto;
}

.scroll-cards.is-scroll-cards-ready .cards-item:not(.is-active) {
  pointer-events: none;
}

.scroll-cards.is-scroll-cards-ready .section-nav-item a {
  display: inline-block;
  position: relative;
}

.scroll-cards .cards-button {
  border: 0;
  cursor: pointer;
}

.pricing-options {
  background: radial-gradient(120% 130% at 84% 16%, #4C0C51 0%, #2C102E 72%);
  overflow: hidden;
}

.pricing-options-inner {
  display: grid;
  grid-template-columns: 242px minmax(0, 1fr);
  gap: 60px;
  padding-top: 140px;
  padding-bottom: 140px;
}

.pricing-options-header {
  padding-top: 60px;
  padding-bottom: 60px;
}

.pricing-options-title {
  font-family: "Exo 2", sans-serif;
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0;
}

.pricing-options-slider {
  min-width: 0;
}

.pricing-options-slider .swiper {
  overflow: visible;
}

.pricing-options-slider .swiper-wrapper {
  align-items: stretch;
}

.pricing-options-slider .swiper-slide {
  height: auto;
}

.pricing-options-card {
  height: 100%;
  min-height: 514px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  background-color: rgba(214, 214, 214, 0.15);
  border-radius: 20px;
  padding: 44px;
  box-sizing: border-box;
  color: #fff;
  border: 2px solid transparent;
}

.pricing-options-card.pricing-options-card-accent {
  border-color: #FFB70E;
}

.pricing-options-card-price {
  font-family: "Exo 2", sans-serif;
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}

.pricing-options-card-note {
  margin-top: 4px;
  font-family: "Exo 2", sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0;
}

.pricing-options-card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  flex-grow: 1;
}

.pricing-options-card-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-options-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}

.pricing-options-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pricing-options-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-options-icon svg {
  display: block;
  color: #fff;
}

.pricing-options-icon-warning svg {
  width: 2px;
  height: 14px;
}

.pricing-options-button {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.005em;
}

.pricing-options-button.button-white {
  color: #000;
}

.pricing-options-button.button-yellow {
  background-color: #FFB70E;
  color: #000;
}

.pricing-options-button.button-yellow:hover {
  background-color: #ffc642;
}

.pricing-options-pagination {
  display: none;
}

.qr-code {
  --qr-code-right: 60px;
  --qr-code-top: 110px;
  --qr-code-bottom: 60px;
  --qr-code-shift-y: calc(100vh - var(--qr-code-top) - var(--qr-code-bottom) - 100%);
  --qr-code-scale: 0;
  position: fixed;
  right: var(--qr-code-right);
  top: var(--qr-code-top);
  background: radial-gradient(120% 130% at 84% 16%, #4C0C51 0%, #2C102E 72%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  box-sizing: border-box;
  z-index: 4;
  border-radius: 24px;
  box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(var(--qr-code-shift-y)) scale(var(--qr-code-scale));
  transform-origin: center;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.qr-code.is-visible {
  --qr-code-scale: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.qr-code.is-top {
  --qr-code-shift-y: 0px;
}

.qr-code-text {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  font-family: "Exo 2", sans-serif;
}

.qr-code-image {
  pointer-events: none;
}

.qr-code-image img {
  width: 105px;
  height: 105px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.footer {
  background: radial-gradient(120% 130% at 84% 16%, #4C0C51 0%, #2C102E 72%);
  color: #fff;
}

.footer-faq {
  padding-top: 124px;
  padding-bottom: 200px;
}

.footer-faq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.footer-faq-header {
  padding-top: 60px;
}

.footer-faq-title {
  font-family: "Exo 2", sans-serif;
  font-size: 64px;
  line-height: 1.09;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
}

.footer-faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-faq-item {
  background-color: #fff;
  border-radius: 20px;
  color: #000;
  padding: 40px 32px;
  box-sizing: border-box;
}

.footer-faq-button {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  padding: 0;
  border: none;
  background-color: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  outline: none;
  border-radius: 2px;
}

.footer-faq-button:focus-visible {
  box-shadow: 0 0 0 2px rgba(230, 169, 6, 0.45);
}

.footer-faq-question {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.footer-faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: #E6A906;
  transition: 0.2s;
}

.footer-faq-icon svg {
  display: block;
}

.footer-faq-item.active .footer-faq-icon {
  transform: rotate(45deg);
}

.footer-faq-answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.25s, opacity 0.2s;
}

.footer-faq-answer p {
  margin: 0;
  padding-top: 20px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.footer-faq-item.active .footer-faq-answer {
  opacity: 1;
}

.footer-main-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-brand {
  font-family: "Exo 2", sans-serif;
  font-size: 64px;
  line-height: 1.09;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 8px;
}

.footer-nav a {
  font-family: "Exo 2", sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: 0.2s;
}

.footer-nav a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-nav .footer-nav-email {
  margin-top: 40px;
}

.footer-copy {
  padding-bottom: 60px;
  font-size: 12px;
  color: rgba(237, 231, 234, 0.2);
}

@media (min-width: 768px) {
  .desktop-hidden {
    display: none;
  }

  .cards-button > span {
    display: none;
  }

  .scroll-cards.is-scroll-cards-ready .section-col-cards,
  .scroll-cards.is-scroll-cards-ready .section-col-content {
    position: sticky;
    top: var(--scroll-cards-top);
  }
}

@media (min-width: 1024px) {
  .header-user {
    display: none;
  }

  .header-toggle {
    display: none;
  }

  .hero-main > .hero-image {
    display: none;
  }

  .hero-button .button {
    height: 62px;
    font-size: 18px;
    border-radius: 16px;
    min-width: 187px;
  }

  .footer-faq-header {
    position: sticky;
    top: 124px;
  }
}

@media (max-width: 1440px) {
  .hero-image.hero-image-center {
    right: 40px;
  }

  .hero-image.hero-image-bottom {
    right: 40px;
  }

  .hero-pricing {
    gap: 24px;
  }

  .hero-pricing-left {
    padding-top: 32px;
  }

  .hero-pricing-row {
    gap: 24px;
  }

  .section-title {
    font-size: 50px;
  }

  .cards-title {
    font-size: 32px;
  }
}

@media (max-width: 1280px) {
  .header-inner {
    gap: 24px;
  }

  .header-actions {
    gap: 16px;
  }

  .menu-list {
    justify-content: space-evenly;
    gap: 16px;
  }

  .text-highlight-label {
    font-size: 22px;
  }

  .hero-title {
    font-size: 68px;
  }

  .hero-features {
    max-width: 540px;
  }

  .hero-features-text {
    font-size: 13px;
  }

  .hero-pricing .pricing-options-card {
    padding: 24px;
  }

  .hero-pricing-left {
    flex-basis: 220px;
  }

  .hero-pricing-title {
    font-size: 32px;
  }

  .section-row {
    gap: 24px;
  }

  .cards-content {
    padding: 40px;
  }

  .cards-title {
    font-size: 24px;
  }

  .pricing-options-inner {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 32px;
  }

  .pricing-options-title {
    font-size: 32px;
  }

  .pricing-options-card {
    padding: 36px;
    gap: 48px;
    min-height: 480px;
  }

  .pricing-options-card-price {
    font-size: 32px;
  }

  .pricing-options-card-note {
    font-size: 22px;
  }

  .pricing-options-list {
    font-size: 16px;
  }

  .footer-faq-title {
    font-size: 52px;
  }

  .footer-brand {
    font-size: 52px;
  }
}

@media (max-width: 1170px) {
  .hero-image.hero-image-center {
    right: 20px;
    width: 360px;
    height: 360px;
  }

  .hero-image.hero-image-bottom {
    right: 20px;
    width: 400px;
    height: 400px;
  }

  .hero-numbers-title {
    font-size: 32px;
  }

  .hero-numbers-row {
    gap: 16px;
  }

  .hero-numbers-value {
    font-size: 32px;
  }
}

@media (max-width: 1023.98px) {
  html {
    scroll-padding-top: calc(88px + var(--safe-area-top));
  }

  a,
  button,
  [role=button],
  input,
  label,
  select,
  textarea {
    -webkit-tap-highlight-color: transparent;
  }

  .header {
    border-bottom: 1px solid #E5E7EB;
  }

  .header.is-mobile-menu-open {
    background: radial-gradient(120% 130% at 84% 16%, #5A0B5F 0%, #2C102E 72%);
    border-bottom: none;
    color: #fff;
  }

  .header.is-mobile-menu-open .logo {
    color: #fff;
  }

  .header.is-mobile-menu-open .header-inner {
    background-color: transparent;
  }

  .header.is-mobile-menu-open .header-user {
    display: none;
  }

  .header.is-mobile-menu-open .header-toggle {
    color: #fff;
  }

  .header.is-mobile-menu-open .header-toggle-icon-menu {
    display: none;
  }

  .header.is-mobile-menu-open .header-toggle-icon-close {
    display: block;
  }

  .header.is-mobile-menu-open .header-actions > .language-switcher {
    display: flex;
  }

  .header.is-mobile-menu-open .menu {
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.65);
  }

  .header-inner {
    min-height: 72px;
    height: auto;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    background-color: #fff;
  }

  .header-inner > .menu {
    display: none;
  }

  .header.is-mobile-menu-open .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 72px auto;
    align-items: center;
    align-content: stretch;
    gap: 0 18px;
    min-height: 0;
  }

  .header.is-mobile-menu-open .header-inner .logo {
    grid-column: 1;
    grid-row: 1;
  }

  .header.is-mobile-menu-open .header-inner .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .header.is-mobile-menu-open .header-inner .menu {
    grid-column: 1/-1;
    grid-row: 2;
    align-self: stretch;
    justify-self: stretch;
    min-height: 0;
  }

  .header-actions > .header-buttons {
    display: none;
  }

  .header-actions > .language-switcher {
    display: none;
  }

  .logo .logo-icon {
    width: 120px;
    height: 20px;
  }

  .menu {
    display: none;
    flex-direction: column;
    flex: 0 0 100%;
    align-self: stretch;
    box-sizing: border-box;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    padding: 28px 20px 28px;
    color: #fff;
    z-index: 1;
  }

  .menu .menu-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 40px;
  }

  .menu .menu-actions .button {
    width: 100%;
    max-width: 320px;
    height: 40px;
    font-size: 14px;
    border-radius: 8px;
  }

  .menu .menu-actions .button-outline {
    color: #fff;
    border-color: #fff;
  }

  .menu .menu-actions .button-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .menu-list {
    justify-content: flex-start;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    gap: 24px;
    padding: 0;
    color: #fff;
    font-family: "Exo 2", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
  }

  .menu-list a {
    color: #fff;
  }

  .menu-list a:hover {
    color: #fff;
  }

  .header.is-mobile-menu-open .language-switcher {
    width: auto;
    min-width: 0;
    gap: 4px;
    justify-content: flex-start;
    background-color: #F3F4F6;
    border-color: #E5E7EB;
    border-radius: 12px;
  }

  .header.is-mobile-menu-open .language-switcher:not(:hover) {
    width: auto;
    background-color: #F3F4F6;
    border-color: #E5E7EB;
  }

  .header.is-mobile-menu-open .language-switcher .language-switcher-item {
    width: 35px;
    height: 24px;
    font-size: 14px;
    border-radius: 8px;
  }

  .header.is-mobile-menu-open .language-switcher .language-switcher-item.active {
    color: #fff;
    background-color: #5A0B5F;
  }

  .button {
    font-size: 16px;
    height: 48px;
  }

  .text-highlight-large::after {
    top: 2px;
  }

  .text-highlight-medium::after {
    top: 2px;
  }

  .hero {
    margin-top: 20px;
  }

  .hero-content {
    padding: 32px;
  }

  .hero-content > .hero-image {
    display: none;
  }

  .hero-main > .hero-image {
    margin-left: 0;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-features {
    max-width: 100%;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
    align-content: start;
  }

  .hero-features-item {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    flex-direction: row;
  }

  .hero-button {
    margin-top: 36px;
  }

  .hero-numbers {
    padding: 28px 0;
    gap: 24px;
    margin-top: 0;
  }

  .hero-numbers-title {
    font-size: 20px;
  }

  .hero-numbers-value {
    font-size: 20px;
  }

  .hero-numbers-label {
    font-size: 12px;
  }

  .hero-pricing {
    flex-wrap: wrap;
    padding: 32px;
  }

  .hero-pricing-left {
    flex-basis: 100%;
    padding-top: 0;
  }

  .section-title {
    font-size: 40px;
  }

  .section-nav {
    font-size: 20px;
  }

  .cards-content {
    padding: 32px;
  }

  .cards-title {
    font-size: 20px;
  }

  .cards-button {
    width: 40px;
    height: 64px;
  }

  .scroll-cards {
    --scroll-cards-top: calc(72px + var(--safe-area-top));
  }

  .pricing-options-inner {
    grid-template-columns: repeat(1, 1fr);
    padding-top: 72px;
    padding-bottom: 72px;
    gap: 32px;
  }

  .pricing-options-header {
    padding: 0;
  }

  .pricing-options-title {
    font-size: 32px;
    max-width: 420px;
  }

  .qr-code {
    display: none;
  }

  .footer-faq {
    padding-top: 72px;
    padding-bottom: 96px;
  }

  .footer-faq-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }

  .footer-faq-header {
    padding-top: 0;
  }

  .footer-faq-title {
    font-size: 40px;
  }

  .footer-brand {
    font-size: 40px;
  }
}

@media (max-width: 767.98px) {
  body.is-mobile-menu-open {
    overflow: hidden;
  }

  .mobile-hidden {
    display: none;
  }

  .header.is-mobile-menu-open {
    position: fixed;
    left: 0;
    right: 0;
    height: 100svh;
    overflow: hidden;
  }

  .header.is-mobile-menu-open .container {
    height: 100%;
  }

  .header.is-mobile-menu-open .header-inner {
    grid-template-rows: 72px minmax(0, 1fr);
    height: 100%;
  }

  .menu {
    padding: 28px 20px 28px;
    overflow-y: auto;
  }

  .menu .menu-actions .button {
    max-width: 100%;
  }

  .menu-list {
    flex: 1 1 auto;
  }

  .button {
    font-size: 14px;
    height: 40px;
  }

  .text-highlight-large::after {
    height: 110%;
  }

  .text-highlight-label {
    font-size: 20px;
  }

  .hero-slider-pagination {
    padding-left: 0;
  }

  .hero-slider-pagination .swiper-pagination {
    justify-content: center;
  }

  .hero-main > .hero-image {
    margin-left: auto;
  }

  .hero-button .button {
    width: 100%;
  }

  .hero-numbers {
    grid-template-columns: repeat(1, 1fr);
  }

  .hero-numbers-row {
    gap: 8px;
  }

  .hero-pricing .pricing-options-card {
    gap: 28px;
    padding: 20px;
  }

  .hero-pricing .pricing-options-card-content {
    gap: 20px;
  }

  .hero-pricing .pricing-options-button {
    display: none;
  }

  .hero-pricing .pricing-options-icon {
    display: none;
  }

  .hero-pricing-title {
    font-size: 40px;
  }

  .hero-pricing-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }

  .section-row {
    grid-template-columns: repeat(1, 1fr);
  }

  .section-col-content {
    order: -1;
    padding-top: 0;
  }

  .section-header {
    margin-bottom: 16px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-nav {
    font-size: 14px;
  }

  .section-nav-item:not(:last-child) {
    margin-bottom: 10px;
  }

  .cards-content {
    flex-wrap: wrap;
    gap: 24px;
  }

  .cards-content-text {
    flex-basis: 100%;
  }

  .cards-text {
    font-size: 15px;
  }

  .cards-button {
    flex-basis: 100%;
    height: 40px;
  }

  .cards-button svg {
    display: none;
  }

  .cards-button.cards-button-sm {
    width: 40px;
    height: 40px;
  }

  .scroll-cards {
    --scroll-cards-top: calc(72px + var(--safe-area-top));
  }

  .scroll-cards.is-scroll-cards-ready .section-inner {
    position: sticky;
    top: var(--scroll-cards-top);
    height: calc(min(var(--scroll-cards-viewport, 100svh), 100svh) - var(--scroll-cards-top));
    min-height: min(560px, min(var(--scroll-cards-viewport, 100svh), 100svh) - var(--scroll-cards-top));
    display: flex;
    overflow: hidden;
  }

  .scroll-cards.is-scroll-cards-ready .section-row {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    padding-top: 16px;
    padding-bottom: 16px;
    margin-top: 0;
  }

  .scroll-cards.is-scroll-cards-ready .section-col-content {
    order: 0;
    flex: 0 0 auto;
    padding-top: 0;
  }

  .scroll-cards.is-scroll-cards-ready .section-col-cards {
    order: 1;
    flex: 1 1 auto;
    min-height: 0;
  }

  .scroll-cards.is-scroll-cards-ready .section-header {
    margin-bottom: 12px;
  }

  .scroll-cards.is-scroll-cards-ready .cards {
    height: 100%;
    min-height: 320px;
    aspect-ratio: auto;
    border-radius: 20px;
  }

  .scroll-cards.is-scroll-cards-ready .section-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .scroll-cards.is-scroll-cards-ready .section-nav-item {
    margin-bottom: 0 !important;
  }

  .pricing-options-inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .pricing-options-title {
    font-size: 28px;
  }

  .pricing-options-card {
    padding: 28px;
    gap: 40px;
    min-height: 0;
  }

  .pricing-options-card-price {
    font-size: 28px;
  }

  .pricing-options-card-note {
    font-size: 20px;
  }

  .pricing-options-card-body {
    gap: 36px;
  }

  .pricing-options-list {
    font-size: 14px;
    line-height: 1.25;
  }

  .pricing-options-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }

  .pricing-options-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.35);
    opacity: 1;
    margin: 0 !important;
    transition: 0.2s;
  }

  .pricing-options-pagination .swiper-pagination-bullet-active {
    width: 24px;
    background-color: #fff;
  }

  .footer-faq {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .footer-faq-title {
    font-size: 32px;
  }

  .footer-faq-list {
    gap: 14px;
  }

  .footer-faq-item {
    padding: 22px;
    border-radius: 18px;
  }

  .footer-faq-button {
    gap: 18px;
  }

  .footer-faq-question {
    font-size: 17px;
    line-height: 1.2;
  }

  .footer-faq-answer p {
    font-size: 15px;
    line-height: 1.35;
  }

  .footer-main-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .footer-brand {
    font-size: 28px;
  }

  .footer-nav {
    gap: 10px;
    padding-top: 0;
  }

  .footer-nav a {
    font-size: 18px;
  }

  .footer-nav .footer-nav-email {
    margin-top: 22px;
  }

  .footer-nav a {
    font-size: 14px;
  }

  .footer-copy {
    padding-bottom: 36px;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-pricing-title {
    font-size: 36px;
  }
}

@media (max-width: 380px) {
  .scroll-cards.is-scroll-cards-ready .section-inner {
    min-height: min(520px, min(var(--scroll-cards-viewport, 100svh), 100svh) - var(--scroll-cards-top));
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cards.is-scroll-cards-ready .cards-item {
    will-change: auto;
  }
}