/* ── service cards ───────────────────────────────────────────────── */
.card-grid { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.card {
  background: linear-gradient(135deg, rgba(26, 26, 38, 0.6) 0%, rgba(18, 18, 26, 0.8) 100%);
  border-radius: 16px; padding: 1.5rem;
  position: relative; overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 57, 70, 0.15);
  width: 100%; box-sizing: border-box;
}
.card-icon { font-size: 2rem; margin-bottom: 0.8rem; filter: drop-shadow(0 0 10px var(--accent-red)); }
.card-title {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem; font-weight: 600;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-silver));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.card-description { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; }

