.trial-onboarding-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 520px;
  margin: 0 auto 1.25rem;
  padding: 0.65rem 0.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.8rem;
}

.trial-onboarding-step {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  padding: 0.35rem 0.5rem;
}

.trial-onboarding-step-label {
  display: block;
  font-weight: 800;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  margin-bottom: 0.15rem;
}

.trial-onboarding-step-name {
  display: block;
  font-weight: 600;
  color: #94a3b8;
  line-height: 1.3;
}

.trial-onboarding-step--current {
  background: #eff6ff;
  border-radius: 8px;
}

.trial-onboarding-step--current .trial-onboarding-step-label {
  color: #1d4ed8;
}

.trial-onboarding-step--current .trial-onboarding-step-name {
  color: #0b1f4d;
  font-weight: 700;
}

.trial-onboarding-step--completed .trial-onboarding-step-name {
  color: #15803d;
}

.trial-onboarding-step--completed .trial-onboarding-step-label {
  color: #166534;
}

.trial-onboarding-step-status {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 0.1rem;
}

.trial-onboarding-step--completed .trial-onboarding-step-status {
  color: #15803d;
}

.trial-onboarding-step--current .trial-onboarding-step-status {
  color: #2563eb;
}

.trial-onboarding-connector {
  flex: 0 0 28px;
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, #cbd5e1 0%, #93c5fd 100%);
  margin: 0 0.15rem;
}

.trial-onboarding-connector--done {
  background: linear-gradient(90deg, #86efac 0%, #93c5fd 100%);
}

@media (max-width: 479.98px) {
  .trial-onboarding-steps {
    flex-direction: column;
    gap: 0.35rem;
    max-width: 100%;
  }

  .trial-onboarding-connector {
    flex: 0 0 auto;
    width: 2px;
    height: 16px;
    margin: 0 auto;
    background: #cbd5e1;
  }

  .trial-onboarding-connector--done {
    background: #86efac;
  }
}
