/* ===== Flow ===== */
.flow {
  background: var(--white);
}

.flow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
}

.flow-step {
  flex: 1;
  text-align: center;
  max-width: 180px;
}

.flow-step-number {
  width: 48px;
  height: 48px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 12px;
}

.flow-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.flow-step-desc {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
}

.flow-arrow {
  display: flex;
  align-items: center;
  padding-top: 12px;
  color: var(--cream-deep);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.flow-arrow svg {
  width: 24px;
  height: 24px;
  stroke: var(--cream-deep);
  fill: none;
  stroke-width: 2;
}
