.cta-links {
  max-width: 1100px;
  margin: 6rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

.cta-links h2 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, #00e5ff, #4facfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.cta-links ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.cta-links li {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 1.5rem 1.75rem;
  transition: all 0.35s ease;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 188, 212, 0.08);
}

.cta-links li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
  transition: left 0.6s ease;
  z-index: 0;
}

.cta-links li:hover::before {
  left: 100%;
}

.cta-links li:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 188, 212, 0.15);
  border-color: rgba(0, 188, 212, 0.3);
}

.cta-links a {
  position: relative;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  z-index: 1;
  transition: color 0.3s ease;
}

.cta-links a:hover {
  color: #00e5ff;
}

@media (max-width: 640px) {
  .cta-links ul {
    grid-template-columns: 1fr;
  }

  .cta-links li {
    width: 100%;
  }
}
