/* =========================
   HERO
========================= */

.apps-hero {
  margin-bottom: 96px;
}

/* =========================
   APPS GRID
========================= */

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 96px;
}

/* =========================
   APP CARD
========================= */

.app-card {
  border-radius: 32px;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.app-card img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 24px;
}

.app-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.app-card p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
}

/* STATUS PILL */

.status {
  margin-top: auto;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  background: rgba(0,0,0,0.12);
}

/* =========================
   COLORS (GLOBAL PALETTE)
========================= */

.app-card.green  { background: #B5EAD7; }
.app-card.yellow { background: #FFD97D; }
.app-card.blue   { background: #B9CCED; }

/* =========================
   FOOTER SECTION
========================= */

.apps-footer {
  text-align: center;
  margin-bottom: 96px;
}

.apps-footer p {
  font-size: 20px;
  margin-bottom: 32px;
}

.apps-footer img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

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

}

@media (max-width: 600px) {

  .apps-grid {
    grid-template-columns: 1fr;
  }

  .app-card {
    padding: 24px;
  }

  .apps-footer p {
    font-size: 18px;
  }
}
