.services__grid-button {
  padding: 12px 24px;
  background: linear-gradient(135deg, #7d53de 0%, #9c7ae8 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(125, 83, 222, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: fit-content;
  outline: none;
  display: inline-block;
}

.services__grid-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.services__grid-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(125, 83, 222, 0.4);
  color: white;
  text-decoration: none;
}

.services__grid-button:hover::before {
  left: 100%;
}

.services__grid-button span {
  position: relative;
  z-index: 1;
}
