.app-page {
  background: #ffffff;
  font-family: 'Roboto Condensed', 'Inter', sans-serif;
}

.app-hero {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: flex-end;
  color: #ffffff;
  background-image:
    linear-gradient(90deg, rgba(18, 22, 26, 0.68) 0%, rgba(18, 22, 26, 0.16) 42%, rgba(18, 22, 26, 0.1) 100%),
    url('../../assets/icons/appbg.png');
  background-size: cover;
  background-position: center center;
}

.app-hero__content {
  padding: 0 0 74px;
  max-width: 560px;
}

.app-hero__title {
  margin: 0;
  font-size: clamp(1.95rem, 3.3vw, 3rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.app-hero__subtitle {
  margin: 14px 0 0;
  font-size: clamp(1rem, 1.55vw, 1.45rem);
  line-height: 1.32;
  color: rgba(255, 255, 255, 0.92);
}

.app-hero__cta {
  margin-top: 28px;
  min-width: 168px;
  padding: 10px 20px;
  font-size: 1.05rem;
  font-weight: 600;
}

.app-overview {
  padding: 28px 0 56px;
  background: #ffffff;
  border-top: 1px solid #dde2e6;
}

.app-overview__grid {
  display: grid;
  grid-template-columns: minmax(290px, 1.05fr) 1.95fr;
  gap: 44px;
  align-items: start;
}

.app-overview__title {
  margin: 0;
  font-size: clamp(1.85rem, 2.6vw, 2.9rem);
  line-height: 1.12;
  font-weight: 700;
  color: #17212b;
}

.app-overview__text {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.48;
  color: #39434d;
}

.app-features {
  padding: 10px 0 64px;
  background: #ffffff;
}

.app-features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 38px;
}

.app-feature__icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.app-feature__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.app-feature__title {
  margin: 16px 0 8px;
  font-size: 1.62rem;
  line-height: 1.14;
  font-weight: 700;
  color: #19222c;
}

.app-feature__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.42;
  color: #4c5762;
}

@media (max-width: 1100px) {
  .app-hero {
    min-height: 430px;
  }

  .app-hero__content {
    padding-bottom: 56px;
  }

  .app-overview__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .app-features__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .app-hero {
    min-height: 350px;
  }

  .app-hero__content {
    padding-bottom: 40px;
  }

  .app-hero__subtitle {
    font-size: 1rem;
  }

  .app-overview {
    padding: 22px 0 44px;
  }

  .app-overview__title {
    font-size: 1.68rem;
  }

  .app-overview__text,
  .app-feature__text {
    font-size: 0.94rem;
  }

  .app-feature__title {
    font-size: 1.38rem;
  }
}
