/* ===== Services ===== */
.services {
  position: relative;
  z-index: 2;
  padding: 8rem 0;
  background: var(--bg-secondary);
}

.services__header {
  text-align: center;
  margin-bottom: 4rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.services__item {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s var(--ease-out);
  will-change: transform, opacity;
}

.services__item:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 47, 167, 0.2);
  box-shadow: var(--shadow-soft);
}

.services__item-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.services__item-icon svg {
  width: 100%;
  height: 100%;
}

.services__item-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.services__item-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== Responsive services ===== */
@media (max-width: 768px) {
  .services {
    padding: 5rem 0;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }
}
