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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 18px clamp(60px, 6.5vw, 94px);
  gap: 40px;
}

@media (min-width: 1920px) {
  .nav {
    padding-left: 250px;
    padding-right: 250px;
  }
}

.nav-logo { height: 38px; flex-shrink: 0; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 48px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 0.8; }

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #30B0FF;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: white;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #30B0FF;
  color: white;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__lang {
  position: absolute;
  top: 20px;
  left: 16px;
  min-width: 119px;
  height: 40px;
  padding: 4px 9px 4px 6px;
  border: 4px solid #fff;
  border-radius: 999px;
  background: #30B0FF;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mobile-menu__lang img {
  width: 28px;
  height: 28px;
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #30B0FF;
  cursor: pointer;
}

.mobile-menu__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 3px;
  border-radius: 999px;
  background: white;
  transform-origin: center;
}

.mobile-menu__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__links {
  position: absolute;
  top: 162px;
  left: 0;
  right: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-menu__links a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  line-height: 1.16;
  font-weight: 400;
}

.mobile-menu__logo {
  position: absolute;
  left: 50%;
  bottom: 27px;
  width: 168px;
  transform: translateX(-50%);
}

body.menu-open {
  overflow: hidden;
}

.lang-switcher {
  position: relative;
  flex-shrink: 0;
}

.lang-btn {
  width: 248px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 6px;
  background: #4bbfff;
  border: 2px solid #fff;
  border-radius: 999px;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lang-btn:hover {
  background: #3eb8fb;
}

.lang-btn:focus-visible,
.lang-menu__item:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.55);
  outline-offset: 2px;
}

.lang-btn__flag,
.lang-menu__flag {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.lang-btn__label {
  flex: 1;
  min-width: 0;
  overflow: visible;
}

.lang-btn__chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.lang-switcher.is-open .lang-btn__chevron {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 248px;
  padding: 4px;
  background: #4bbfff;
  border: 2px solid #fff;
  border-radius: 22px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lang-menu[hidden] {
  display: none;
}

.lang-menu__item {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 6px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lang-menu__item:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 950px;
  background-image: url('assets/images/background.png');
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

.hero-content {
  text-align: center;
  z-index: 2;
  padding: 225px 40px 0;
  max-width: 880px;
  width: 100%;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(56px, 4.45vw, 64px);
  font-weight: 500;
  color: white;
  line-height: 1.2;
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 100px;
}

.hero-buttons .btn {
  border: 4px solid #fff;
  border-radius: 12px;
  font-weight: 600;
}

.hero-buttons .btn:hover {
  box-shadow: none;
}

@media (min-width: 1920px) {
  .hero-title {
    font-size: 72px;
  }
  .hero {
    min-height: 1150px;
  }
  .hero-buttons {
    margin-top: 175px;
  }
  .about {
    padding-top: 220px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 44px;
  height: 70px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  text-transform: uppercase;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

.btn-play {
  background: #4BBFFF;
  color: white;
  min-width: 298px;
}

.btn-download {
  background: #7BD144;
  border: none;
  color: white;
  min-width: 298px;
  gap: 8px;
}

/* ===== WAVE HERO → ORANGE ===== */
.wave-hero-bottom {
  position: absolute;
  bottom: -150px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 1;
}

.wave-hero-bottom img {
  width: 100%;
  height: 160px;
  display: block;
}

/* ===== ABOUT (ORANGE) ===== */
.about {
  background: #E46E48;
  padding: 136px 0 0;
  position: relative;
  z-index: 30;
}

/* Decorative leaves */
.about::before,
.about::after {
  content: '';
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}
.about::before {
  background-image: url('assets/images/leftLeaf.svg');
  width: 400px;
  height: 479px;
  top: 420px;
  left: -10px;
}
.about::after {
  background-image: url('assets/images/rightLeaf.svg');
  width: 200px;
  height: 424px;
  top: 20px;
  right: -40px;
}

.about-text {
  position: relative;
  z-index: 1;
  width: 700px;
  margin: 0 auto;
  padding: 0;
}

.about-title {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: white;
  line-height: 1.2;
  margin-bottom: 36px;
  text-align: center;
  letter-spacing: -0.3px;
}

.about-highlight {
  color: #FFD04B;
  font-weight: 700;
}

.about-para {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

/* Screenshots marquee */
.screenshots-strip {
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
  margin-top: 150px;
  padding: 16px 0 180px;
}

.screenshots-strip::before,
.screenshots-strip::after {
  content: '';
  position: absolute;
  top: 105px;
  left: 0;
  right: 0;
}

.screenshots-strip::before {
  bottom: 0;
  background: white;
  z-index: 1;
}

.screenshots-strip::after {
  height: 320px;
  background: #E46E48;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 2;
}

.screenshots-track {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 48s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.screenshot-card {
  flex-shrink: 0;
  width: 510px;
  border: 4px solid #fff;
  border-radius: 18px;
  overflow: hidden;
  background: white;
}

.screenshot-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== ADVANTAGES (WHITE) ===== */
.advantages {
  background: white;
  padding: 0 0 110px;
}

.advantages-title {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: #222;
  line-height: 1.35;
  padding: 0 40px;
  max-width: 700px;
  margin: 0 auto 80px;
}

.text-blue { color: #30B0FF; }

.features {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
}

.feature-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-row--right {
  flex-direction: row;
}

.feature-image-wrap {
  flex: 0 0 460px;
  width: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-img {
  width: 400px;
  height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.12));
}

.feature-text {
  flex: 0 0 460px;
  width: 460px;
  padding: 0;
}

.feature-row--right .feature-text {
  padding: 0;
}

.feature-title {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.2;
  white-space: nowrap;
}

.feature-text p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #323232;
  line-height: 1.75;
}

/* Dashed connector between feature rows */
.feature-connector {
  display: flex;
  justify-content: center;
  height: 240px;
  margin: -66px 0 -58px;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.feature-connector svg {
  display: block;
  width: 100%;
  height: 240px;
  flex-shrink: 0;
  overflow: visible;
}

.feature-connector__line {
  fill: none;
  stroke: #4BBFFF;
  stroke-width: 3;
  stroke-dasharray: 8 9;
  stroke-linecap: round;
}

/* ===== BLUE WAVES ===== */
.blue-wave {
  position: relative;
  z-index: 3;
  line-height: 0;
  pointer-events: none;
  overflow: hidden;
}

.blue-wave img {
  display: block;
  width: calc(100% + 160px);
  height: 164px;
  margin-left: -80px;
  object-fit: fill;
}

.blue-wave--top {
  background: linear-gradient(to bottom, white 0 50%, #30B0FF 50% 100%);
  margin-bottom: -72px;
}

.blue-wave--bottom {
  background: linear-gradient(to bottom, #30B0FF 0 50%, #8A55D4 50% 100%);
  margin-top: -72px;
  margin-bottom: -72px;
}

/* ===== CHARACTERS (BLUE) ===== */
.characters {
  background: #30B0FF;
  padding: 48px 0 74px;
  position: relative;
}

/* Decorative leaves */
.characters::before,
.characters::after {
  content: '';
  position: absolute;
  z-index: 4;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}
.characters::before {
  background-image: url('assets/images/blueLeaf.png');
  width: 364px;
  height: 362px;
  top: 70px;
  left: 36px;
}
.characters::after  {
  background-image: url('assets/images/blueLeafRight.png');
  width: 370px;
  height: 407px;
  right: 0;
  bottom: 30px;
}

.characters-title {
  position: relative;
  z-index: 5;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 500;
  color: white;
  line-height: 1.3;
  margin-bottom: 38px;
  padding: 0 20px;
}

/* Carousel */
.carousel-wrapper {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 40px;
}

.carousel-3 {
  display: flex;
  align-items: center;
  gap: 92px;
  width: auto;
  flex-shrink: 0;
}

.char-card {
  flex: 0 0 268px;
  width: 268px;
  height: 378px;
  background: #D8F0FF;
  border-radius: 18px;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 1;
}

.char-card--center {
  flex: 0 0 404px;
  width: 404px;
  height: 570px;
  padding: 0;
  background: white;
  border-radius: 28px;
  box-shadow: 0 22px 55px rgba(0, 91, 154, 0.18);
}

/* Inner content sits above the SVG background */
.card-inner {
  position: relative;
  z-index: 1;
  padding: 24px 20px 18px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.char-name {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #29B6F6;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.char-card--center .char-name {
  font-size: 32px;
  margin-bottom: 16px;
}

.char-frame {
  position: relative;
  display: block;
  flex-shrink: 0;
  margin-bottom: 12px;
}

.char-frame svg {
  display: block;
}

.char-img {
  position: absolute;
  top: 3%;
  left: 3%;
  width: 94%;
  height: 94%;
  object-fit: contain;
  object-position: center bottom;
}

.char-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #297AAD;
  line-height: 1.45;
  flex: 1;
  max-width: 250px;
}

.char-card--center .char-desc {
  color: #0875B8;
  font-size: 18px;
  line-height: 1.35;
  max-width: 390px;
}

.carousel-btn {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.34);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.carousel-btn:hover { background: rgba(255,255,255,0.48); }
.carousel-btn svg { width: 28px; height: 28px; }

@media (max-width: 1300px) {
  .carousel-wrapper {
    padding: 0;
    overflow: hidden;
  }

  .carousel-btn {
    position: absolute;
    top: 50%;
    z-index: 8;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.42);
  }

  .carousel-btn--prev {
    left: 16px;
  }

  .carousel-btn--next {
    right: 16px;
  }
}

/* ===== STATS (PURPLE) ===== */
.stats {
  background: #8A55D4;
  padding: 80px 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-flower {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.stats-flower--left {
  width: 184px;
  left: -18px;
  bottom: 400px;
}

.stats-flower--right {
  width: 239px;
  right: 0;
  top: 118px;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 260px;
  margin-top: 100px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 72px;
  font-weight: 500;
  color: white;
  line-height: 1;
  letter-spacing: -2px;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  margin-top: 10px;
}

.device-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
  transform: translateY(-47px);
}

.tablet-image {
  display: block;
  width: 1252px;
  max-width: 100%;
  height: auto;
}

/* ===== PURPLE CHEVRON ===== */
.purple-chevron {
  line-height: 0;
  background: white;
  margin-top: -556px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.purple-chevron svg {
  width: 100%;
  height: 320px;
  display: block;
}

/* ===== CTA ===== */
.cta {
  background: white;
  padding: 60px 60px 0;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content {
  text-align: center;
  flex: 1;
  max-width: 680px;
  padding-bottom: 80px;
}

.cta-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 500;
  color: #222;
  line-height: 1.4;
  margin-bottom: 36px;
  letter-spacing: -0.3px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #30B0FF;
  color: white;
  text-decoration: none;
  padding: 8px 18px 8px 10px;
  border: none;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0;
  width: 345px;
  min-height: 72px;
  justify-content: flex-start;
  text-transform: uppercase;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-store__icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-store__icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.btn-store:hover {
  transform: translateY(-2px);
}

.cta-char {
  height: 460px;
  object-fit: contain;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transform: translateY(104px);
}

.cta-char--left { align-self: flex-end; margin-right: -20px; }
.cta-char--right { align-self: flex-end; margin-left: -20px; }

/* Footer top */
.footer-top-wrap {
  position: relative;
  z-index: 1;
  margin-top: -90px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  line-height: 0;
}

.footer-top {
  width: 100%;
  display: block;
  height: 80px;
  object-fit: cover;
}

/* ===== FOOTER ===== */
.footer {
  background: #7AD144;
  min-height: 360px;
  padding: 30px 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
}

.footer p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #366f12;
  line-height: 1.6;
  max-width: 700px;
}

@media (max-width: 1200px) {
  .nav {
    padding: 18px 66px;
  }

  .lang-btn {
    width: 119px;
    border-width: 4px;
  }

  .lang-btn__label {
    font-size: 0;
  }

  .lang-btn__label::before {
    content: 'Тат';
    font-size: 18px;
  }

  .lang-menu {
    width: 210px;
  }

  .hero {
    min-height: 860px;
    padding-top: 0;
  }

  .hero-content {
    max-width: 668px;
    padding-top: 256px;
  }

  .hero-title {
    max-width: 588px;
    margin: 0 auto;
    font-size: 56px;
    line-height: 1.14;
  }

  .hero-buttons {
    margin-top: 76px;
  }

  .btn-play,
  .btn-download {
    min-width: 284px;
  }

  .about {
    padding-top: 90px;
  }

  .about-text {
    width: 588px;
  }

  .about-title {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .screenshots-strip {
    margin-top: 96px;
    padding-bottom: 150px;
  }

  .screenshot-card {
    width: 436px;
    border-radius: 16px;
  }

  .advantages-title {
    max-width: 588px;
    margin-bottom: 80px;
    font-size: 36px;
  }

  .features {
    max-width: 892px;
  }

  .advantages {
    padding-bottom: 230px;
  }

  .feature-image-wrap {
    flex-basis: 360px;
    width: 360px;
  }

  .feature-img {
    width: 360px;
    height: 312px;
  }

  .feature-text {
    flex-basis: 436px;
    width: 436px;
  }

  .feature-title {
    font-size: 30px;
  }

  .feature-text p {
    font-size: 16px;
    line-height: 1.6;
  }

  .feature-connector {
    height: 130px;
    margin: -2px 0;
  }

  .feature-connector svg {
    height: 130px;
  }

  .carousel-3 {
    gap: 60px;
  }

  .characters {
    padding-bottom: 374px;
  }

  .char-card--center {
    flex-basis: 380px;
    width: 380px;
    height: 536px;
  }

  .stats {
    padding-left: 66px;
    padding-right: 66px;
    padding-bottom: 96px;
  }

  .purple-chevron {
    margin-top: -480px;
  }

  .footer-top-wrap {
    margin-top: -4px;
  }

  .stats-grid {
    gap: 150px;
  }

  .tablet-image {
    width: 892px;
  }

  .cta-inner {
    max-width: 892px;
  }

  .cta-char {
    height: 370px;
  }
}

@media (max-width: 900px) {
  .nav {
    padding: 18px 32px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .lang-switcher {
    margin-left: auto;
  }

  .hero {
    min-height: 850px;
    background-size: cover;
    background-position: center top;
  }

  .hero-content {
    max-width: 704px;
    padding-top: 203px;
  }

  .hero-title {
    max-width: 584px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 150px;
  }

  .btn-play,
  .btn-download {
    width: 342px;
    min-width: 0;
  }

  .wave-hero-bottom {
    bottom: -140px;
  }

  .wave-hero-bottom img {
    height: 150px;
  }

  .about {
    padding-top: 150px;
  }

  .about::before {
    width: 300px;
    height: 360px;
    top: 380px;
    left: -20px;
  }

  .about::after {
    width: 170px;
    height: 360px;
    top: 50px;
    right: -25px;
  }

  .about-text {
    width: calc(100% - 52px);
    max-width: 704px;
  }

  .about-title {
    max-width: 716px;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 46px;
  }

  .about-para {
    line-height: 1.22;
  }

  .screenshots-strip {
    margin-top: 145px;
  }

  .screenshots-strip::before {
    top: -21px;
  }

  .screenshots-strip::after {
    top: -21px;
    left: 50%;
    right: auto;
    width: 1450px;
    height: 276px;
    transform: translateX(-50%);
  }

  .screenshots-track {
    gap: 20px;
  }

  .screenshot-card {
    width: 342px;
  }

  .advantages {
    padding-top: 55px;
    padding-bottom: 230px;
  }

  .advantages-title {
    max-width: 584px;
  }

  .features {
    max-width: 704px;
  }

  .feature-image-wrap {
    flex-basis: 282px;
    width: 282px;
  }

  .feature-img {
    width: 282px;
    height: 246px;
  }

  .feature-text {
    flex-basis: 342px;
    width: 342px;
  }

  .feature-title {
    font-size: 32px;
    line-height: 1.18;
    margin-bottom: 20px;
    white-space: normal;
  }

  .feature-text p {
    font-size: 18px;
    line-height: 1.22;
  }

  .blue-wave img {
    width: 2136px;
    height: 325px;
    margin-left: -684px;
  }

  .blue-wave--top {
    margin-top: -10px;
    margin-bottom: -223px;
  }

  .blue-wave--bottom {
    margin-top: -175px;
    margin-bottom: -12px;
  }

  .characters {
    padding-bottom: 0;
  }

  .characters::before {
    width: 250px;
    height: 248px;
    top: 50px;
    left: -10px;
  }

  .characters::after {
    width: 260px;
    height: 286px;
    right: -10px;
    bottom: 40px;
  }

  .characters-title {
    max-width: 588px;
    margin: 0 auto 46px;
    font-size: 36px;
    line-height: 1.22;
  }

  .carousel-3 {
    gap: 20px;
  }

  .char-card--center {
    flex-basis: 342px;
    width: 342px;
    height: 512px;
  }

  .stats {
    padding-top: 100px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 200px;
  }

  .stats-grid {
    gap: 80px;
    margin-top: 0;
    margin-bottom: 140px;
  }

  .stat-item {
    flex: 0 0 181px;
  }

  .stat-number {
    font-size: 64px;
    letter-spacing: 0;
  }

  .stat-label {
    font-size: 18px;
    margin-top: 20px;
  }

  .tablet-image {
    width: 892px;
    max-width: none;
  }

  .purple-chevron {
    margin-top: -728px;
  }

  .purple-chevron svg {
    width: 1920px;
    height: 459px;
    max-width: none;
    transform: translateX(-576px);
  }

  .cta {
    padding: 0;
    overflow: visible;
  }

  .cta-inner {
    display: block;
    width: 100%;
    max-width: none;
    height: 450px;
  }

  .cta-content {
    width: 584px;
    max-width: 584px;
    margin: 0 auto;
    padding: 98px 0 0;
  }

  .cta-title {
    font-size: 36px;
    line-height: 1.17;
    margin-bottom: 46px;
  }

  .cta-char {
    position: absolute;
    z-index: 3;
    transform: none;
    margin: 0;
  }

  .cta-char--left {
    left: -17px;
    bottom: -117px;
    height: 377px;
  }

  .cta-char--right {
    right: -16px;
    bottom: -134px;
    height: 322px;
  }

  .footer-top-wrap {
    margin-top: 0;
  }

  .footer {
    min-height: 439px;
  }

  .footer p {
    max-width: 616px;
    line-height: 1.22;
    transform: translateY(40px);
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 20px 16px;
  }

  .nav-logo {
    height: 32px;
  }

  .nav .lang-switcher {
    display: none;
  }

  .menu-toggle {
    margin-left: auto;
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 768px;
    background-size: cover;
    background-position: center top;
  }

  .hero-content {
    max-width: none;
    padding: 169px 16px 0;
  }

  .hero-title {
    max-width: none;
    font-size: 48px;
    line-height: 1.16;
  }

  .hero-buttons {
    margin-top: 123px;
    gap: 12px;
  }

  .btn {
    height: 70px;
    font-size: 18px;
  }

  .btn-play,
  .btn-download {
    width: 343px;
  }

  .wave-hero-bottom {
    bottom: -120px;
  }

  .wave-hero-bottom img {
    height: 130px;
  }

  .about {
    padding-top: 100px;
  }

  .about::before {
    width: 230px;
    height: 275px;
    top: 560px;
    left: -40px;
  }

  .about::after {
    width: 160px;
    height: 340px;
    top: 86px;
    right: -50px;
  }

  .screenshots-strip {
    width: 100vw;
    margin: 80px calc(50% - 50vw) 0;
    padding: 0 0 130px;
  }

  .screenshots-strip::before {
    top: 200px;
  }

  .screenshots-strip::after {
    left: 0;
    right: 0;
    width: auto;
    transform: none;
    top: 200px;
    height: 80px;
  }

  .screenshots-track {
    gap: 8px;
    transform: translateX(-336px);
    animation: none;
  }

  .screenshot-card {
    width: 344px;
    border-width: 3px;
    border-radius: 10px;
  }

  .advantages {
    padding: 72px 16px 80px;
  }

  .advantages-title {
    max-width: 344px;
    padding: 0;
    margin-bottom: 60px;
    font-size: 32px;
    line-height: 1.18;
  }

  .features {
    max-width: 344px;
  }

  .feature-row,
  .feature-row--right {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-image-wrap {
    order: 0;
    width: 100%;
    flex-basis: auto;
    height: 164px;
    margin-bottom: 12px;
  }

  .feature-text {
    order: 1;
    width: 100%;
    flex-basis: auto;
  }

  .feature-img {
    width: 256px;
    height: 164px;
  }

  .feature-row:nth-of-type(1) .feature-img,
  .feature-row:nth-of-type(3) .feature-img {
    width: 212px;
  }

  .feature-title {
    font-size: 26px;
    line-height: 1.23;
    white-space: normal;
    margin-bottom: 20px;
  }

  .feature-text p {
    font-size: 18px;
    line-height: 1.22;
  }

  .feature-connector {
    height: 80px;
    margin: 10px 0;
  }

  .feature-connector svg {
    display: none;
  }

  .feature-connector::before {
    content: '';
    display: block;
    height: 80px;
    border-left: 3px dashed #30B0FF;
  }

  .blue-wave img {
    width: calc(100% + 160px);
    height: 80px;
    margin-left: -80px;
  }

  .blue-wave--top,
  .blue-wave--bottom {
    margin-top: 0;
    margin-bottom: 0;
  }

  .characters {
    padding: 80px 0 70px;
  }

  .characters::before,
  .characters::after {
    opacity: 0.55;
  }

  .characters::before {
    width: 180px;
    height: 179px;
    top: 30px;
    left: -20px;
  }

  .characters::after {
    width: 200px;
    height: 220px;
    right: -20px;
    bottom: 40px;
  }

  .characters-title {
    max-width: 344px;
    margin: 0 auto 36px;
    font-size: 32px;
    line-height: 1.18;
  }

  .carousel-wrapper {
    overflow: hidden;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
  }

  .carousel-btn svg {
    width: 22px;
    height: 22px;
  }

  .carousel-btn--prev {
    left: 8px;
  }

  .carousel-btn--next {
    right: 8px;
  }

  .carousel-3 {
    gap: 8px;
  }

  .char-card {
    flex-basis: 268px;
    width: 268px;
    height: 378px;
  }

  .char-card--center {
    flex-basis: 326px;
    width: 326px;
    height: 487px;
  }

  .card-inner {
    padding: 20px;
  }

  .char-card--center .char-name {
    font-size: 26px;
    line-height: 1.23;
  }

  .char-card--center .char-desc {
    font-size: 18px;
    line-height: 1.22;
  }

  .stats {
    padding: 80px 16px 80px;
  }

  .stats-flower,
  .device-mockup {
    display: none;
  }

  .stats-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin: 0;
  }

  .stat-item {
    flex: 0 1 auto;
  }

  .stat-number {
    font-size: 56px;
    letter-spacing: 0;
  }

  .stat-label {
    font-size: 18px;
    margin-top: 12px;
  }

  .purple-chevron {
    margin-top: -1px;
  }

  .purple-chevron svg {
    width: 100%;
    height: 80px;
    transform: none;
  }

  .cta {
    padding: 80px 16px 0;
    overflow: hidden;
  }

  .cta-inner {
    display: block;
    width: auto;
    height: auto;
    max-width: 344px;
  }

  .cta-content {
    width: auto;
    max-width: 344px;
    padding-top: 0;
    padding-bottom: 80px;
  }

  .cta-title {
    font-size: 32px;
    line-height: 1.18;
    margin-bottom: 36px;
  }

  .cta-char {
    display: none;
  }

  .btn-store {
    width: 344px;
    min-height: 70px;
    font-size: 18px;
    gap: 12px;
  }

  .footer-top-wrap {
    margin-top: 0;
  }

  .footer {
    min-height: 360px;
    padding: 30px 16px;
  }

  .footer p {
    max-width: 317px;
    transform: none;
  }
}
