/* How It Works Section Styles */
.how-it-works-section {
  padding: 5rem 1rem;
  background: white;
}

@media (min-width: 640px) {
  .how-it-works-section {
    padding: 5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .how-it-works-section {
    padding: 5rem 2rem;
  }
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #8B2FC9, #E91E8C, #F5A623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #6B7280;
  max-width: 42rem;
  margin: 0 auto;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
}

.step-card {
  background: white;
  border: 2px solid #E5E7EB;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border-color: #8B2FC9;
  box-shadow: 0 10px 40px rgba(139, 47, 201, 0.15);
}

.step-card:hover {
  transform: translateY(-0.25rem);
}

.step-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #8B2FC9, #E91E8C);
  transition: color 0.2s ease;
}

.step-icon i {
  width: 2rem;
  height: 2rem;
  color: white;
}

.step-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #8B2FC9;
  transition: color 0.2s ease;
}

.step-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.75rem;
}

.step-description {
  color: #6B7280;
  line-height: 1.625;
}

/* Step Arrow */
.step-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  color: #8B2FC9;
}

@media (min-width: 768px) {
  .step-arrow {
    display: flex;
  }
}

.step-arrow i {
  width: 1.5rem;
  height: 1.5rem;
}

/* Info Box */
.info-box {
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  background-color: rgba(139, 47, 201, 0.08);
}

.info-text {
  color: #374151;
}

.info-highlight {
  font-weight: 600;
  color: #8B2FC9;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.125rem;
  }
  
  .step-card {
    padding: 1.5rem;
  }
  
  .step-icon {
    width: 3rem;
    height: 3rem;
  }
  
  .step-icon i {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .step-number {
    font-size: 2rem;
  }
}
