html {
  scroll-behavior: smooth;
}

/* vps-hero.css — Safe, isolated, with image + overlay */
.vps-hero {
  position: relative;
  padding: 120px 20px 80px; /* Extra top padding to clear fixed menu */
  overflow: hidden;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Background Image — Far Back */
.vps-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2; /* Behind everything */
}

/* Gradient Overlay — On top of image, under text */
.vps-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  z-index: -1; /* Above image, below content */
}

/* Optional: Keep your subtle radial accent (on top of overlay) */
.vps-hero .vps-accent-glow {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.vps-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1; /* Ensures text is above all layers */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 3.5rem;
}

/* Rest of your scoped styles (unchanged) */
.vps-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(16, 185, 129, 0.2);
  font-family: inherit;
}

.vps-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(to right, #f8fafc, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: inherit;
}

.vps-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-family: inherit;
}

.vps-cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.vps-btn {
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: inherit;
  text-align: center;
}

.vps-btn-primary {
  background: #0ea5e9;
  color: white;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
}
.vps-btn-primary:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(14, 165, 233, 0.6);
}

.vps-btn-secondary {
  background: transparent;
  color: #f1f5f9;
  border: 2px solid rgba(241, 245, 249, 0.2);
}
.vps-btn-secondary:hover {
  background: rgba(241, 245, 249, 0.05);
  transform: translateY(-2px);
}

.vps-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 900px;
}

.vps-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(30, 41, 59, 0.4);
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  font-family: inherit;
}

.vps-feature-text {
  font-size: 1rem;
  font-weight: 500;
  color: #f1f5f9;
}

/* Responsive */
@media (max-width: 768px) {
  .vps-hero {
    padding: 90px 20px 60px;
  }
  .vps-title { font-size: 2.5rem; }
  .vps-subtitle { font-size: 1.1rem; }
  .vps-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .vps-btn {
    width: 100%;
    max-width: 300px;
  }
}