/* ══════════════════════════════
   APPS PAGE
══════════════════════════════ */
#page-apps .page-hero {
  padding: 80px 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.app-showcase {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 100px;
}
.app-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}
.app-row:nth-child(even) {
  direction: rtl;
}
.app-row:nth-child(even) > * {
  direction: ltr;
}
.app-row + .app-row {
  border-top: 1px solid var(--border2);
}
.app-mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.app-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 30%,
    var(--purple-glow),
    transparent 65%
  );
}
.app-mockup-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  position: relative;
}
.app-mockup-name {
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  position: relative;
}
.app-mockup-pill {
  margin-top: 12px;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.25);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--purple-light);
  position: relative;
}
.app-info .label {
  margin-top: 0;
}
.app-name {
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.app-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 24px;
}
.app-points {
  list-style: none;
  margin-bottom: 32px;
}
.app-points li {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.app-points li:last-child {
  border-bottom: none;
}
.app-points li .icon {
  color: var(--purple-light);
  font-size: 0.9rem;
}

/* Apps responsive */
@media (max-width: 768px) {
  .app-row {
    grid-template-columns: 1fr;
  }
  .app-row:nth-child(even) {
    direction: ltr;
  }
}
