/* Wrapper global */
.ithk-progress-wrap{
  max-width: 780px;
  margin: 32px auto 40px;
  padding: 0 18px;
  font-family: inherit;
}

/* Barre horizontale */
.ithk-progress-bar{
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: #E5E7EB;             /* gris clair */
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  margin-bottom: 26px;
}

.ithk-progress-bar-fill{
  height: 100%;
  border-radius: 999px;
  background: #111827;             /* noir intheskAI */
  transition: width .25s ease-out;
}

/* Steps */
.ithk-progress-steps{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  font-size: 13px;
}

.ithk-progress-step{
  text-align: center;
  color: #6B7280;
}

.ithk-progress-step-index{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid #D1D5DB;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
  background: #fff;
}

.ithk-progress-step-label{
  display: block;
  font-weight: 500;
  white-space: nowrap;
}

/* Étapes complétées */
.ithk-progress-step.is-complete .ithk-progress-step-index{
  background: #111827;
  color: #fff;
  border-color: #111827;
}

.ithk-progress-step.is-complete .ithk-progress-step-label{
  color: #111827;
}

/* Étape courante */
.ithk-progress-step.is-current .ithk-progress-step-index{
  background: #fff;
  color: #111827;
  border-color: #111827;
}

.ithk-progress-step.is-current .ithk-progress-step-label{
  font-weight: 700;     /* gras */
  color: #111827;       /* noir intheskAI */
}

/* Étapes à venir */
.ithk-progress-step.is-upcoming .ithk-progress-step-index{
  background: #F9FAFB;
  color: #9CA3AF;
  border-color: #E5E7EB;
}

.ithk-progress-step.is-upcoming .ithk-progress-step-label{
  color: #9CA3AF;
}

/* Responsive */
@media (max-width: 600px){
  .ithk-progress-wrap{
    margin: 24px auto 30px;
  }
  .ithk-progress-steps{
    font-size: 11px;
    gap: 4px;
  }
  .ithk-progress-step-label{
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
