.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

.tile {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 212, 255, 0.1);
  display: flex;
  flex-direction: column;
  text-align: center;
  color: inherit;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.tile:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.tile img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 1.25rem;
  filter: brightness(1.1);
  transition: transform 0.3s ease;
}

.tile:hover img {
  transform: scale(1.1);
}

/* Icon styling */
.icon-center {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.tile:hover .icon-center {
  transform: scale(1.12);
}

/* Status Indicator */
.status-dot {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--card-bg);
  transition: all 0.3s ease;
  z-index: 10;
}

.status-dot.online {
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
}

.status-dot.offline {
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
}