/* ══════════════════════════════════════════════════════════════
   COMPONENT: App Features (checkmark list grid)
   Used on: home-security, security-cameras, access-control, location pages
   ══════════════════════════════════════════════════════════════ */

.app-features {
  list-style: none; margin: 16px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.app-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--navy);
}
.app-features li svg {
  width: 18px; height: 18px; color: var(--yellow); flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .app-features { grid-template-columns: 1fr; }
}
