/* ══════════════════════════════════════════════════════════════
   COMPONENT: Industry Cards (Navy Background Grid)
   Used on: security-cameras, business-security, location pages
   ══════════════════════════════════════════════════════════════ */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.industry-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius-sm);
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
.industry-card:hover {
  border-color: rgba(245,197,24,0.3);
  background: rgba(245,197,24,0.08);
  transform: translateY(-2px);
}
.industry-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(245,197,24,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.industry-icon svg { width: 24px; height: 24px; color: var(--yellow); }
.industry-card h3 {
  font-size: 16px; font-weight: 600; color: var(--white);
  margin-bottom: 4px;
}
.industry-card p {
  font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6;
}

/* ── Light background overrides (non-navy sections) ── */
.section:not(.section-navy) .industry-card {
  background: var(--white);
  border-color: var(--gray-100);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.section:not(.section-navy) .industry-card:hover {
  background: var(--white);
  border-color: rgba(245,197,24,0.4);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.section:not(.section-navy) .industry-card h3 {
  color: var(--navy);
}
.section:not(.section-navy) .industry-card p {
  color: var(--gray-600);
}

/* ── Responsive ── */
@media (max-width: 968px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .industry-grid { grid-template-columns: 1fr; gap: 12px; }
  .industry-card { padding: 24px 20px; }
}
