/* ====================================
   Process Section Component
   ==================================== */

.process-section {
  padding: 100px 0 120px;
  background: var(--bg-card);
  position: relative;
  z-index: 1;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 64px;
}

.process-line {
  position: absolute;
  top: 24px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--border);
}

.process-line-fill {
  width: 0;
  height: 100%;
  background: var(--black);
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-page);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
  color: var(--text-primary);
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  transition: all 0.4s;
}

.step-number.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.step-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s;
}

.step-name.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s 0.1s;
}

.step-desc.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CTA Section (part of process) */
.cta-section {
  padding: 100px 0 120px;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }

  .process-line {
    display: none;
  }
}

@media (max-width: 600px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
