/* ===============================
   App Landing Page - Unique CSS
   Prefix: app-landing_
================================ */

.app-landing_page {
  background: linear-gradient(180deg, #fff7fb 0%, #ffe7f3 46%, #fff7fb 100%);
  color: #111827;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.app-landing_page * {
  box-sizing: border-box;
}

/* Hero */

.app-landing_hero {
  width: 100%;
}

.app-landing_banner-img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-top: 100px;
}

/* Shared */

.app-landing_container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* Download card */

.app-landing_download-card {
  width: min(700px, calc(100% - 40px));
  margin: -58px auto 34px;
  background: #fff;
  border-radius: 18px;
  padding: 24px 34px 28px;
  position: relative;
  z-index: 2;
  text-align: center;
  box-shadow: 0 18px 45px rgba(249, 0, 123, 0.16);
}

.app-landing_download-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #111827;
}

.app-landing_download-title i {
  color: #f9007b;
}

/* Store buttons */

.app-landing_store-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.app-landing_store-buttons--left {
  justify-content: flex-start;
  margin-bottom: 22px;
}

.app-landing_store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 170px;
  padding: 13px 20px;
  background: #f9007b;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(249, 0, 123, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.app-landing_store-button:hover {
  transform: translateY(-2px);
  background: #df006f;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(249, 0, 123, 0.3);
  opacity: 1;
}

.app-landing_store-button i {
  font-size: 18px;
}

.app-landing_store-button img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.app-landing_store-button--small {
  min-width: auto;
  padding: 10px 15px;
  font-size: 13px;
}

/* White cards */

.app-landing_intro-card,
.app-landing_start-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(31, 40, 62, 0.08);
}

/* Intro card */

.app-landing_intro-card {
  position: relative;
  overflow: visible;
  max-width: 1180px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  padding: 58px 72px;
  align-items: center;
  margin-top: 34px;
}



.app-landing_intro-content,
.app-landing_stats,
.app-landing_intro-feature-title {
  position: relative;
  z-index: 1;
}

.app-landing_intro-content h1 {
  font-size: 36px;
  line-height: 1.18;
  font-weight: 900;
  margin: 0 0 18px;
  color: #111827;
}

.app-landing_intro-content h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 20px;
  color: #111827;
}

.app-landing_intro-content p {
  font-size: 16px;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 0 22px;
  color: #111827;
}

.app-landing_intro-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.app-landing_intro-content li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.35;
  color: #111827;
}

.app-landing_intro-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: #f9007b;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
}

/* Stats */

.app-landing_stats {
  position: relative;
  display: grid;
  gap: 26px;
}

.app-landing_stats::before {
  content: "";
  position: absolute;
  top: -55px;
  right: -40px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #ffd6e8;
  z-index: -1;
}

.app-landing_stats::after {
  content: "";
  position: absolute;
  top: 25px;
  right: -80px;
  width: 95px;
  height: 120px;
  background-image: radial-gradient(#f9007b 1.8px, transparent 1.8px);
  background-size: 12px 12px;
  opacity: 0.45;
  z-index: -1;
}

.app-landing_stat-box {
  min-height: 132px;
  border-radius: 18px;
  padding: 28px 38px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(249, 0, 123, 0.08);
}

.app-landing_stat-box--yellow {
  background: linear-gradient(135deg, #fff8bf 0%, #ffffff 100%);
}

.app-landing_stat-box--pink {
  background: linear-gradient(135deg, #ffe2f0 0%, #ffffff 100%);
}

.app-landing_stat-icon {
  width: 78px;
  height: 78px;
  border: 3px solid #f9007b;
  border-radius: 22px;
  color: #f9007b;
  display: grid;
  place-items: center;
  font-size: 34px;
  flex: 0 0 auto;
}

.app-landing_stat-box strong {
  display: block;
  color: #f9007b;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.app-landing_stat-box span {
  display: block;
  margin-top: 9px;
  font-size: 21px;
  font-weight: 800;
  color: #111827;
}

.app-landing_stat-box div:last-child {
  position: relative;
}

.app-landing_stat-box div:last-child::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  border-radius: 20px;
  background: #f9007b;
  margin-top: 12px;
}

/* Section title */

.app-landing_section-title {
  width: min(1180px, calc(100% - 48px));
  margin: 52px auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}

.app-landing_section-title span {
  width: 70px;
  height: 3px;
  background: #f9007b;
  border-radius: 99px;
}

.app-landing_section-title h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  color: #111827;
}

/* Preview cards */

.app-landing_preview-section {
  margin-bottom: 44px;
  padding: 0;
  background: transparent;
  text-align: initial;
}

.app-landing_previews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.app-landing_preview-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(31, 40, 62, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-landing_preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(31, 40, 62, 0.15);
}

.app-landing_preview-card img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.2s ease;
}

.app-landing_preview-card:hover img {
  transform: scale(1.02);
}

.app-landing_preview-caption {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  background: #fff;
}

.app-landing_preview-caption i {
  width: 42px;
  height: 42px;
  border: 2px solid #f9007b;
  color: #f9007b;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
  flex: 0 0 auto;
}

.app-landing_preview-caption p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  color: #111827;
}

/* Start card */

.app-landing_start-card {
  max-width: 1180px;
  padding: 34px 54px 42px;
  margin-top: 28px;
  margin-bottom: 46px;
}

.app-landing_start-card h2 {
  text-align: center;
  font-size: 30px;
  margin: 0 0 28px;
  font-weight: 900;
  color: #111827;
}

.app-landing_start-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.app-landing_steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.app-landing_step {
  text-align: center;
}

.app-landing_step-circle {
  width: 112px;
  height: 112px;
  background: #ffe1f0;
  border-radius: 50%;
  color: #f9007b;
  display: grid;
  place-items: center;
  position: relative;
  margin: 0 auto 14px;
}

.app-landing_step-circle span {
  position: absolute;
  top: -8px;
  left: 12px;
  width: 30px;
  height: 30px;
  background: #f9007b;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 14px;
}

.app-landing_step-circle i {
  font-size: 38px;
}

.app-landing_step p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  color: #111827;
}

.app-landing_step-arrow {
  font-size: 52px;
  font-weight: 300;
  color: #111827;
  margin-top: -36px;
}

.app-landing_start-text {
  border-left: 1px solid #ddd;
  padding-left: 40px;
}

.app-landing_start-text p {
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 20px;
  color: #111827;
}

/* Tablet */

@media (max-width: 1024px) {
  .app-landing_banner-img {
    height: 340px;
  }

  .app-landing_intro-card,
  .app-landing_start-grid {
    grid-template-columns: 1fr;
  }

  .app-landing_intro-card {
    padding: 42px 34px;
  }

  .app-landing_stats::before,
  .app-landing_stats::after,
  .app-landing_intro-card::before,
  .app-landing_intro-card::after {
    display: none;
  }

  .app-landing_previews {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-landing_preview-card img {
    height: 340px;
  }

  .app-landing_start-text {
    border-left: 0;
    border-top: 1px solid #ddd;
    padding-left: 0;
    padding-top: 32px;
  }
}

/* Mobile */

@media (max-width: 640px) {
  .app-landing_container,
  .app-landing_section-title {
    width: calc(100% - 24px);
  }

  .app-landing_banner-img {
    height: 260px;
    margin-top: 70px;
  }

  .app-landing_download-card {
    width: calc(100% - 24px);
    margin-top: -28px;
    padding: 20px 18px;
    border-radius: 16px;
  }

  .app-landing_download-title {
    font-size: 22px;
  }

  .app-landing_store-button {
    width: 100%;
    min-width: 0;
  }

  .app-landing_intro-card {
    padding: 34px 22px;
    border-radius: 18px;
  }

  .app-landing_intro-content h1 {
    font-size: 30px;
  }

  .app-landing_intro-content h3 {
    font-size: 19px;
  }

  .app-landing_intro-content p,
  .app-landing_intro-content li,
  .app-landing_start-text p {
    font-size: 16px;
  }

  .app-landing_stat-box {
    padding: 24px 20px;
    min-height: auto;
  }

  .app-landing_stat-icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }

  .app-landing_stat-box strong {
    font-size: 34px;
  }

  .app-landing_stat-box span {
    font-size: 18px;
  }

  .app-landing_stat-box div:last-child::after {
    width: 48px;
    height: 3px;
  }

  .app-landing_section-title span {
    display: none;
  }

  .app-landing_section-title h2 {
    font-size: 22px;
  }

  .app-landing_previews {
    grid-template-columns: 1fr;
  }

  .app-landing_preview-card img {
    height: auto;
  }

  .app-landing_start-card {
    padding: 32px 20px;
    border-radius: 18px;
  }

  .app-landing_start-card h2 {
    font-size: 28px;
  }

  .app-landing_steps {
    flex-direction: column;
  }

  .app-landing_step-arrow {
    transform: rotate(90deg);
    margin: -8px 0;
  }

  .app-landing_store-buttons--left {
    justify-content: center;
  }
}
