/* ============================================================
   PROCESS
   ============================================================ */

.process {
  background: var(--bg);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 30px rgba(59,130,246,0.4);
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.process-connector {
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0.3;
  margin-top: 31px; /* align with center of circle */
  width: 40px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .process-step {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    padding: 0 0 0 0;
    max-width: 480px;
    width: 100%;
  }

  .step-number { margin-bottom: 0; flex-shrink: 0; }

  .process-connector {
    width: 2px;
    height: 32px;
    margin-top: 0;
    margin-left: 31px;
    background: linear-gradient(180deg, var(--blue), var(--cyan));
  }
}
