.client-onboarding-guide {
  border-color: rgba(14, 116, 144, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 249, 255, 0.9));
}

.onboarding-progress-card {
  min-width: 150px;
  padding: 10px 14px;
  border: 1px solid rgba(14, 116, 144, 0.18);
  border-radius: 10px;
  background: #fff;
  text-align: right;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.onboarding-progress-card strong {
  display: block;
  color: #075985;
  font-size: 24px;
  line-height: 1;
}

.onboarding-progress-card span {
  color: #475569;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.onboarding-step-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0 12px;
}

.setup-guide-template-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 0 12px;
  padding: 10px;
  border: 1px solid rgba(14, 116, 144, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
}

.setup-guide-template-row button {
  height: 34px;
}

.setup-guide-template-status {
  color: #475569;
  font-size: 12px;
  font-weight: 800;
}

.onboarding-step-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.onboarding-step-pill b {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #075985;
}

.onboarding-step-pill.complete {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.onboarding-step-pill.complete b {
  background: #22c55e;
  color: #fff;
}

.onboarding-step-pill.review {
  border-color: #fde68a;
  background: #fffbeb;
  color: #92400e;
}

.onboarding-step-pill.review b {
  background: #f59e0b;
  color: #fff;
}

.onboarding-step-pill.needed {
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.onboarding-step-pill.needed b {
  background: #ef4444;
  color: #fff;
}

.onboarding-guide-wrap {
  max-height: none;
  overflow: visible;
}

.onboarding-status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.onboarding-status.complete {
  background: #dcfce7;
  color: #166534;
}

.onboarding-status.review {
  background: #fef3c7;
  color: #92400e;
}

.onboarding-status.needed {
  background: #fee2e2;
  color: #991b1b;
}

.onboarding-jump {
  min-width: 128px;
}

@media (max-width: 980px) {
  .onboarding-step-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .onboarding-progress-card {
    text-align: left;
  }
}
