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

@font-face {
  font-family: "Super Vanilla";
  src: url("/public/fonts/Super\ Vanilla.ttf");
}

@font-face {
  font-family: "Gilroy";
  src: url("/public/fonts/Gilroy-Light.otf");
}

:root {
  --primary-orange: #ff8c42;
  --primary-yellow: #ffd93d;
  --purple-light: #e6d5f7;
  --purple-medium: #9370db;
  --green-light: #90ee90;
  --pink-light: #ffb6c1;
  --blue-light: #87ceeb;
  --orange-light: #ffa500;
  --yellow-light: #ffd700;
  --brown-dark: #8b4513;
  --brown-medium: #a0522d;
  --text-dark: #1a1a1a;
  --text-white: #ffffff;
  --bg-cream: #fffef9;
  --bg-yellow: #fff8dc;
}

body {
  font-family: "Super Vanilla", Arial, sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header Styles */
.mojik-header {
  padding: 1.5rem 2rem;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.hero-title-stars {
  position: absolute;
  top: 13%;
  right: -2%;
}

.header-content {
  /* max-width: 1400px; */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-title-ears {
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  transform: translate(-40%, -60%);
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 1px;
}

.orange-line-left {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 460px;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.social-link:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.3);
}

.social-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.social-link.telegram {
  background-color: rgba(110, 163, 250, 0.8);
}

.social-link.inst {
  background-color: rgba(255, 154, 238, 0.8);
}

.social-link.tiktok {
  background-color: rgba(0, 0, 0, 0.8);
}

.social-link.x {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
  background-image: url("/public/images/first_image.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--brown-dark) 0%,
    var(--brown-medium) 100%
  );
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%238B4513" width="1200" height="800"/></svg>');
  z-index: -1;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--text-white);
  letter-spacing: -2px;
}

.title-line {
  display: block;
  margin-bottom: 0.5rem;
}

.title-imagination {
  display: flex;
  gap: 5px;
}

.title-imagination .letter {
  display: inline-block;
  color: var(--color);
  font-size: 1.2em;
  animation: letterPop 0.5s ease-out;
  animation-fill-mode: both;
}

.mobile-screenshot {
  display: none;
}

.title-imagination .letter:nth-child(1) {
  animation-delay: 0.1s;
}
.title-imagination .letter:nth-child(2) {
  animation-delay: 0.15s;
}
.title-imagination .letter:nth-child(3) {
  animation-delay: 0.2s;
}
.title-imagination .letter:nth-child(4) {
  animation-delay: 0.25s;
}
.title-imagination .letter:nth-child(5) {
  animation-delay: 0.3s;
}
.title-imagination .letter:nth-child(6) {
  animation-delay: 0.35s;
}
.title-imagination .letter:nth-child(7) {
  animation-delay: 0.4s;
}
.title-imagination .letter:nth-child(8) {
  animation-delay: 0.45s;
}
.title-imagination .letter:nth-child(9) {
  animation-delay: 0.5s;
}
.title-imagination .letter:nth-child(10) {
  animation-delay: 0.55s;
}
.title-imagination .letter:nth-child(11) {
  animation-delay: 0.6s;
}

@keyframes letterPop {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--text-white);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Gilroy";
}
.success-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  backdrop-filter: blur(5px);
}
.success-popup-content {
  background: linear-gradient(135deg, #90ee90, #ffb6c1);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: successSlideIn 0.4s ease-out;
}
@keyframes successSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.success-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  font-weight: bold;
  color: #90ee90;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.success-title {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.success-message {
  font-size: 16px;
  color: white;
  line-height: 1.5;
  opacity: 0.95;
}
.success-close {
  background: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  color: #90ee90;
  margin-top: 20px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.success-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button {
  font-family: "Gilroy";
  background: var(--primary-orange);
  color: var(--text-white);
  border: none;
  padding: 1.25rem 3rem;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 140, 66, 0.4);
  letter-spacing: 0.5px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 140, 66, 0.5);
  background: #ff9a55;
}

.cta-button:active {
  transform: translateY(-1px);
}

.hero-mojik {
  position: absolute;
  right: 10%;
  bottom: 10%;
  width: 200px;
  height: 200px;
  background: var(--primary-yellow);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-mojik::before {
  content: "😺";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
}

/* Banner Section */
.banner-section {
  background: var(--brown-dark);
  padding: 4rem 2rem;
  text-align: center;
}

.banner-content {
  max-width: 1400px;
  margin: 0 auto;
}

.banner-text {
  display: block;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.banner-imagination {
  display: inline-block;
}

.banner-imagination .letter {
  display: inline-block;
  color: var(--color);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  margin: 0 2px;
}

.second-image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: 0;
}

.child-first {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--text-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 4;
}

.child-two {
  position: absolute;
  right: 5%;
  top: 30%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--text-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 4;
}
.app-screenshot {
  position: absolute;
  right: 0;
}
/* Features Section */
.features {
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  background-color: #fccf80;
}

.orange-wave {
  background-image: url("/public/images/orange_wave.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 80px;
  width: 100%;
  position: absolute;
  bottom: 0;
}

.features-content {
  max-width: 1400px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.features-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.features-subtitle {
  font-size: 70px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: auto;
}

.features-center {
  position: relative;
  min-height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.title-block {
  width: 100%;
  max-width: 1000px;
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.mojik-illustration {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.mojik-image {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

/* Bubble content wrapper */
.bubble-content {
  position: relative;
  display: inline-block;
}

.bubble-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: 600;
  color: #555;
  text-align: center;
  white-space: nowrap;
  z-index: 2;
  pointer-events: none;
  font-family: "Gilroy";
}

/* Bubble positioning relative to features-center */
.orange-bubble {
  position: absolute;
  right: 0;
  top: 20%;
  left: 70%;
  z-index: 3;
}

.orange-bubble img {
  width: auto;
  height: auto;

  display: block;
}

.green-bubble {
  position: absolute;
  right: 0;
  left: 72%;
  top: 40%;
  z-index: 3;
}

.green-bubble img {
  width: auto;
  height: auto;

  display: block;
}

.red-bubble {
  position: absolute;
  right: 0;
  bottom: 15%;
  left: 70%;
  z-index: 3;
}

.red-bubble img {
  width: auto;
  height: auto;

  display: block;
}

.purple-bubble {
  position: absolute;
  left: 50%;
  bottom: 0%;
  transform: translateX(-50%);
  z-index: 3;
}

.purple-bubble img {
  width: auto;
  height: auto;

  display: block;
}

.orange-bubble-left {
  position: absolute;
  left: 0%;
  bottom: 15%;
  z-index: 3;
}

.orange-bubble-left img {
  width: auto;
  height: auto;

  display: block;
}

.blue-bubble {
  position: absolute;
  left: -10%;
  top: 45%;
  z-index: 3;
}

.blue-bubble img {
  width: auto;
  height: auto;

  display: block;
}

.red-bubble-left {
  position: absolute;
  left: 10%;
  top: 20%;
  z-index: 3;
}

.red-bubble-left img {
  width: auto;
  height: auto;

  display: block;
}

/* App Section */
.app-section {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  background-color: #aca2ff;
}

.purple_wave {
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
}

.red-bubble-left {
  position: absolute;
  top: 25%;
  left: -5%;
}

.app-content {
  position: relative;
}

.app-text {
  color: var(--text-white);
}

.app-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 3rem;
  color: var(--text-white);
}

.app-title-highlight .letter {
  display: inline-block;
  color: var(--color);
  font-size: 1.1em;
}
.maskot-original {
  display: none;
}
.check-icon {
  width: 30px;
  height: 30px;
}

.app-features-list {
  list-style: none;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 2;
  font-family: "Gilroy";
}

.app-features-list li {
  position: relative;
  margin-bottom: 1rem;
  color: var(--text-white);
  display: flex;
  align-items: center;
}

.app-screenshot {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background: var(--text-white);
  border-radius: 30px;
  padding: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-cream);
  border-radius: 20px;
  padding: 20px;
  overflow-y: auto;
}

.app-header {
  margin-bottom: 20px;
}

.app-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple-medium);
}

.app-stats {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.mojik-image-mobile-background {
  display: none;
}
.mojik-image-mobile-hearts {
  display: none;
}
.stat-item {
  flex: 1;
  background: var(--text-white);
  padding: 15px;
  border-radius: 12px;
  text-align: center;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple-medium);
}

.app-highlights {
  margin-top: 20px;
}

.highlight-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.highlight-card {
  background: var(--text-white);
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.card-button {
  background: var(--primary-orange);
  color: var(--text-white);
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
}

/* Pre-order Section */
.pre-order {
  background: #95bdff;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("/public/images/hearts.png");
}

.pre-order-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.pre-order-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 3rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pre-order-images {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.pre-order-image {
  position: absolute;
}

.image-left {
  left: 0;
  top: 10%;
}

.image-right {
  right: 5%;
  bottom: 15%;
}

/* Footer */
.footer {
  position: relative;
  background: #fccf80;
  padding: 3rem 2rem 2rem;
  color: var(--text-white);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.image-left {
  width: 550px;
  height: 450px;

  & > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.app-screenshot {
  top: -17%;
}

.image-right {
  width: 550px;
  height: 350px;

  & > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.footer-social .social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-copyright {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 1400px;
  margin: 0 auto;
}

.slogan-mobile {
  display: none;
}

.footer-privacy {
  color: #fff;
}

/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-content {
  background: var(--bg-cream);
  border-radius: 25px;
  padding: 3rem;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--primary-orange);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-dark);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}

.modal-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.3;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  position: relative;
}

.waitlist-form input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--text-white);
  transition: all 0.3s ease;
}

.waitlist-form input:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

.waitlist-form input::placeholder {
  color: #999;
}

.form-submit {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #ff9a55 100%);
  color: var(--text-white);
  border: none;
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 140, 66, 0.4);
  margin-top: 0.5rem;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 140, 66, 0.5);
}

.form-submit:active {
  transform: translateY(0);
}

.header-content-mobile {
  display: none;
}
.hero-description-mobile {
  display: none;
}
.mojik-image-mobile {
  display: none;
}

@media (max-width: 1440px) {
  .first-kid {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 10%;
    left: 5%;
  }

  .second-kid {
    position: absolute;
    width: 200px;
    height: 150px;
    top: 65%;
    left: 5%;
  }

  .third-kid {
    position: absolute;
    width: 200px;
    height: 150px;
    top: 25%;
    right: 5%;
  }

  .fourth-kid {
    position: absolute;
    width: 200px;
    height: 150px;
    top: 55%;
    right: 5%;
  }
}

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

  .features-center {
    min-height: 400px;
  }
  .image-left {
    width: 350px;
    height: 350px;
    top: 20%;
  }

  .image-right {
    right: -15%;
    height: 350px;
  }
}

@media (max-width: 768px) {
  .mojik-header {
    padding: 1rem 1.5rem;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
    position: relative;
  }

  .hero-mojik {
    width: 150px;
    height: 150px;
    right: 5%;
    bottom: 5%;
  }

  .features,
  .app-section,
  .pre-order {
    padding: 4rem 1.5rem;
  }

  .mojik-illustration {
    width: 200px;
    height: 200px;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
  }

  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .slogan-mobile {
    display: block;
    position: relative;
    background-color: #fccf80;
  }
  .brown-mobile {
    position: absolute;
    left: 0;
    top: -28%;
    width: 100%;
    z-index: -1;
  }
  .features {
    padding-bottom: 150px;
  }
  .logo {
    display: none;
  }
  .social-icons {
    flex-direction: column;
    position: absolute;
    right: 10px;
    top: 20%;
  }
  .header-content-mobile {
    display: block;
    font-size: 24px;
    color: white;
  }
  .header-content {
    justify-content: center;
  }
  .title-line {
    display: none;
  }
  .mojik-image-mobile-background {
    display: block;
  }
  .mojik-image-mobile-hearts {
    display: block;
  }
  .title-imagination {
    display: none;
  }
  .hero-description {
    display: none;
  }
  .hero-description-mobile {
    max-width: 400px;
    display: block;
    color: #fccf80;
    margin-bottom: 10px;
  }
  .orange-wave {
    display: none;
  }
  .slogan-mobile {
    display: block !important;
    z-index: 5;
    position: relative;
    text-align: center;
    width: 100%;
  }
  .slogan-mobile .title-line {
    display: block !important;
    color: var(--text-white);
  }
  .slogan-mobile .title-imagination {
    display: inline-block !important;
  }
  .slogan-mobile .hero-title {
    color: var(--text-white);
    font-size: clamp(2rem, 6vw, 3rem);
    margin: 0;
  }
  .slogan-mobile .letter {
    display: inline-block !important;
  }
  .features-subtitle {
    font-size: 16px;
  }
  .first-kid {
    width: 180px;
    height: 160px;
  }
  .fourth-kid {
    display: none;
  }
  .mojik-image {
    display: none;
  }
  .mojik-image-mobile {
    display: block;
  }
  .orange-bubble {
    display: none;
  }
  .blue-bubble {
    display: none;
  }
  .purple-bubble {
    bottom: -30%;
    width: 150px;
    height: 100px;

    & > .bubble-content > .bubble-text {
      font-size: 12px;
      transform: translate(-50%, -20%);
    }

    & > .bubble-content > img {
      width: 150px;
      height: 100px;
    }
  }
  .orange-bubble-left {
    display: none;
  }
  .red-bubble {
    display: none;
  }
  .red-bubble-left {
    top: 0;
    left: -50%;
    & > .bubble-content > .bubble-text {
      font-size: 11px;
      transform: translate(-50%, -50%);
    }

    & > .bubble-content > img {
      width: 150px;
      height: 65px;
    }
  }

  .orange-line-right {
    display: none;
  }

  .green-bubble {
    right: -80%;
    & > .bubble-content > .bubble-text {
      font-size: 11px;
      transform: translate(-50%, -50%);
    }

    & > .bubble-content > img {
      width: 170px;
      height: 65px;
    }
  }

  .app-features-list li {
    font-size: 12px;
  }
  .check-icon {
    width: 12px;
    height: 12px;
  }
  .app-text {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .app-title {
    margin-bottom: 10rem;
  }

  .maskot-original {
    display: block;
    position: absolute;
    width: 200px;
    height: 300px;
    top: 0%;
    left: -20%;
    transform: rotate(90deg);
    /* transform: translate(-50%, -50%); */
  }

  .image-left {
    left: -10%;
    top: 30%;
    height: 200px;
  }
  .image-right {
    right: -30%;
    height: auto;
  }
  .pre-order {
    min-height: 500px;
  }

  .footer-privacy {
    display: none;
  }

  .footer {
    padding: 24px 12px;
  }

  .footer-content {
    flex-direction: row;
  }
  .social-link {
    border-radius: 22px;
  }
  .app-screenshot {
    width: 265px;
    height: 365px;

    & > img {
      width: 100%;
      height: 100%;
    }
  }
  .mojik-image-mobile-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mojik-image-mobile {
    position: absolute;
    z-index: 2;
    top: -10%;
  }

  .mojik-image-mobile-hearts {
    position: absolute;
    z-index: 1;
  }
  .app-title-highlight,
  .app-title {
    font-size: 15px;
  }
}

@media (max-width: 425px) {
  .logo {
    font-size: 1rem;
  }

  .social-link {
    width: 40px;
    height: 40px;

    & > img {
      width: 10px;
      height: 10px;
    }
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description-mobile {
    font-size: 13px;
    width: 277px;
  }

  .cta-button {
    font-size: 11px;
    padding: 10px 40px;
  }

  .features-title {
    font-size: 2rem;
  }

  .app-title,
  .pre-order-title {
    font-size: 1.5rem;
  }

  .modal-content {
    padding: 2rem 1.5rem;
  }

  .modal-title {
    font-size: 1.25rem;
  }
  .orange-line-left {
    width: 50%;
    height: 50%;
  }
  .purple-bubble {
    bottom: -30%;
  }
  .green-bubble {
    right: -40%;
    top: 60%;
    transform: rotate(15deg);
  }
  .red-bubble-left {
    right: 60%;
    top: 30%;
  }
  .first-kid {
    width: 80px;
    height: 80px;
  }
  .second-kid {
    width: 100px;
    height: 100px;
  }
  .third-kid {
    width: 80px;
    height: 60px;
  }
  .app-features-list {
    font-size: 11px;

    & > li {
      margin-bottom: 0;
    }
  }
  .maskot-original {
    left: -35%;
  }
  .phone-screenshot {
    display: none;
  }
  .mobile-screenshot {
    display: block;
    position: absolute;
  }
  .phone-screenshot {
    display: none;
  }
  .app-title {
    font-size: 15px;
  }
  .app-screenshot {
    position: absolute;
    top: 0;
    left: 50%;

    & > img {
      width: auto;
      height: auto;
    }
  }
  .image-left {
    left: -20%;
    top: 25%;

    & > img {
      width: 250px;
    }
  }
  .image-right {
    left: 70%;
    top: 35%;

    & > img {
      width: 220px;
      height: 140px;
    }
  }

  .pre-order-content {
    padding: 20px 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.25); /* полупрозрачный белый */
    backdrop-filter: blur(10px); /* размытие фона */
    -webkit-backdrop-filter: blur(10px); /* для Safari */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
  }
}

.first-kid {
  position: absolute;
  top: 20%;
  left: 5%;
}

.second-kid {
  position: absolute;
  top: 65%;
  left: 5%;
}

.third-kid {
  position: absolute;
  top: 25%;
  right: 5%;
}

.fourth-kid {
  position: absolute;
  top: 55%;
  right: 5%;
}
