/* ===========================================================
   Services page — service cards grid + CTA banner.
   =========================================================== */

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .services__grid { grid-template-columns: 1fr; } }

.service-card {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 300ms var(--ease);
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--accent-hot);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--accent-hot);
  position: relative;
  z-index: 1;
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(180deg, #f3f4f6, #6b7280);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  z-index: 1;
  line-height: 1.25;
}
.service-card__desc {
  color: var(--text-dim);
  font-size: 0.92rem;
  flex: 1;
  margin: 0;
  position: relative;
  z-index: 1;
}

.services__cta-banner {
  margin-top: 4rem;
  padding: 3rem;
  text-align: center;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.08);
}
.services__cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}
.services__cta-banner p {
  max-width: 560px;
  margin: 0 auto 1.5rem;
}
