.apps-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 20px 60px;
}

.apps-hero {
  text-align: center;
  margin-bottom: 34px;
}

.apps-kicker {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #4f8f72;
  background: #e9f7ef;
  border: 2px solid #bfe5cf;
  border-radius: 999px;
}

.apps-title {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #1f1720;
}

.apps-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #6b7280;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  align-items: stretch;
}

.app-card {
  position: relative;
}

.app-card-inner {
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: 3px solid #1f1720;
  border-radius: 30px;
  padding: 26px 22px 22px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.app-card:hover .app-card-inner {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
  border-color: #45b983;
}

.app-logo-wrap {
  width: 112px;
  height: 112px;
  margin: 0 auto 18px;
  padding: 10px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #eef7f2 100%);
  border: 2px solid #d9e7de;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatLogo 3.2s ease-in-out infinite;
}

.app-logo-wrap img {
  width: 84px;
  max-width: 100%;
  height: auto;
  display: block;
}

.app-card h2 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  line-height: 1.15;
  color: #1f1720;
}

.app-card p {
  margin: 0 0 20px;
  min-height: 52px;
  color: #6b7280;
  line-height: 1.5;
}

.app-btn {
  display: inline-block;
  width: 100%;
  padding: 14px 18px;
  border-radius: 18px;
  background: #66d19e;
  color: #111;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  border: 3px solid #1f1720;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.app-btn:hover {
  background: #45b983;
  transform: translateY(-2px);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.1);
}

.app-btn:active {
  transform: translateY(1px);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
}

@keyframes floatLogo {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 640px) {
  .apps-page {
    padding: 30px 16px 44px;
  }

  .apps-grid {
    gap: 18px;
  }

  .app-card-inner {
    padding: 22px 18px 18px;
    border-radius: 24px;
  }

  .app-logo-wrap {
    width: 96px;
    height: 96px;
  }

  .app-logo-wrap img {
    width: 70px;
  }

  .app-card h2 {
    font-size: 1.35rem;
  }
}