/* === PROGRESS BAR === */
.progress-wrap {
  margin: 24px 0;
}

.progress-label {
  font-weight: 600;
  color: #05367B;
  margin-bottom: 6px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: #E6ECF8;
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #305CDE, #05367B);
  width: 0%;
  transition: width 0.4s ease;
}
