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

.apps-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-image:
    linear-gradient(180deg, rgba(13, 16, 22, 0.14) 0%, rgba(13, 16, 22, 0.54) 78%),
    url('../../assets/images/appandonlineservice.jpg');
  background-size: cover;
  background-position: center;
}

.apps-hero__content {
  padding: 0 0 62px;
  max-width: 620px;
}

.apps-hero__title {
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
}

.apps-hero__subtitle {
  margin: 10px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.45rem);
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.95);
}

.apps-overview {
  padding: 32px 0 68px;
}

.apps-overview__title {
  margin: 0;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  line-height: 1.14;
  color: #152230;
}

.apps-overview__text {
  margin: 16px 0 0;
  max-width: 1140px;
  font-size: 1.03rem;
  line-height: 1.45;
  color: #37424d;
}

.apps-cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.9fr 0.9fr;
  gap: 36px;
}

.apps-card {
  color: #1f2933;
}

.apps-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 300px;
}

.apps-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.apps-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 18px 16px;
  background: linear-gradient(180deg, rgba(8, 11, 16, 0) 52%, rgba(8, 11, 16, 0.62) 82%, rgba(8, 11, 16, 0.84) 100%);
}

.apps-card__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
  line-height: 1.1;
  font-weight: 700;
}

.apps-card__text {
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.45;
  color: #3e4a56;
}

.apps-card__link {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.02rem;
  font-weight: 700;
  color: #11839a;
  text-decoration: none;
}

.apps-card__link:hover {
  color: #0c6f84;
}

.apps-card__link svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1100px) {
  .apps-cards {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .apps-card__media {
    height: 260px;
  }
}

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

  .apps-hero__content {
    padding-bottom: 42px;
  }

  .apps-overview {
    padding: 26px 0 44px;
  }

  .apps-card__title {
    font-size: 1.95rem;
  }
}
