.apps-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 140px 0 70px;
  overflow: hidden;
}
.apps-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(99, 102, 241, 0.18), transparent 45%),
    radial-gradient(circle at 84% 72%, rgba(214, 203, 180, 0.14), transparent 48%);
  pointer-events: none;
}
.apps-hero-content { position: relative; z-index: 1; max-width: 820px; }
.apps-eyebrow {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #b9bbe0;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.apps-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  color: #fff;
  margin: 0 0 22px;
}
.apps-hero p {
  color: #b9bbe0;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
  max-width: 680px;
}
.apps-section { padding: 40px 0 120px; }
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.app-card {
  position: relative;
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 22px;
  padding: 34px;
  border-radius: 30px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background:
    radial-gradient(circle at 84% 16%, var(--card-glow), transparent 46%),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.app-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 84% 16%, var(--card-glow), transparent 48%),
    rgba(255, 255, 255, 0.055);
}
.app-card-content { position: relative; z-index: 2; align-self: start; }
.app-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg);
  color: var(--icon-color);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 22px;
}
.app-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.app-tags span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #b9bbe0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.app-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  margin: 0 0 14px;
}
.app-card p {
  color: #b9bbe0;
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 28px;
}
.app-link { color: #fff; font-weight: 700; }
.mini-phone {
  position: absolute;
  right: 28px;
  bottom: -54px;
  width: 170px;
  aspect-ratio: 9 / 19.5;
  border-radius: 30px;
  background: #0d0f1a;
  padding: 8px;
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.45);
  transform: rotate(6deg);
}
.app-card:nth-child(even) .mini-phone { transform: rotate(-5deg); }
.mini-phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 14px;
  border-radius: 999px;
  background: #050505;
  z-index: 2;
}
.mini-phone-screen { width: 100%; height: 100%; border-radius: 23px; overflow: hidden; }
.mini-phone-screen img { width: 100%; height: 100%; display: block; }
@media (max-width: 760px) {
  .app-card { grid-template-columns: 1fr; min-height: 520px; }
  .mini-phone { right: 50%; transform: translateX(50%) rotate(3deg); }
  .app-card:nth-child(even) .mini-phone { transform: translateX(50%) rotate(-3deg); }
}
