.process {
  padding: 80px 20px;
  position: relative;
  background: transparent;
}

.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(192, 192, 192, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.process-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.process h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffd700, #ffb6c1, #c0c0c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.step {
  position: relative;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(15px);
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease-out;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.step:hover::before {
  opacity: 1;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2), 0 0 30px rgba(255, 182, 193, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  border: 2px solid rgba(255, 215, 0, 0.4);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700, #ffb6c1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffd700, #ffb6c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step p {
  color: #d0d0d0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process h2 {
    font-size: 2rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
