/* ============================================
   How It Works Section
   ============================================ */

.how-section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.03) 50%, transparent 100%);
}

.how-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all var(--transition-normal);
}

.step:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin: 0 auto 24px;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.6;
}

/* Connector lines between steps */
.step::after {
  content: '';
  position: absolute;
  top: 68px;
  right: -32px;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  display: none;
}

.step:not(:last-child)::after {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .how-section {
    padding: 60px 0;
  }
  
  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .step::after {
    display: none !important;
  }
}