#platform {
  background: var(--white);
}

.pipeline-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 40px;
}

.pipe-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 80px;
}

.pipe-circle {
  width: 62px;
  height: 62px;
  border: 2px solid var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: var(--cream);
  transition: all 0.3s;
}

.pipe-circle:hover {
  background: var(--green-dark);
  transform: scale(1.1);
}

.pipe-circle:hover i {
  color: white !important;
}

.pipe-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pipe-dash {
  flex: 1;
  min-width: 20px;
  max-width: 40px;
  border-top: 2px dashed var(--green-pale);
  margin-bottom: 28px;
}
