/* Progress bar */
.cl-progress-track {
  height: 5px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  margin-bottom: 30px;
}
.cl-progress-bar {
  height: 100%;
  background: #009AC4;
  border-radius: 9999px;
  transition: width 320ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 0%;
}

/* Counter */
.cl-counter {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #009AC4;
  margin-bottom: 12px;
  display: block;
}

/* Question */
.cl-question {
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.25;
  color: #fff;
  margin: 0 0 24px;
  min-height: 64px;
}

/* Options */
.cl-options {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cl-opt-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(127, 208, 229, 0.22);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}
.cl-opt-btn:hover,
.cl-opt-btn.selected {
  background: rgba(0, 154, 196, 0.28);
  border-color: #009AC4;
}
.cl-opt-check {
  flex: none;
  display: none;
}
.cl-opt-btn.selected .cl-opt-check {
  display: block;
}

/* Back button */
.cl-back-btn {
  margin-top: 22px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  display: none;
  padding: 15px 28px;
  border-radius: 100px;

}

.cl-back-btn:hover{
  background-color: #ffffff;
  color: #0a2540;
}

/* Result view */
.cl-result-icon {
  width: 52px;
  height: 52px;
  border-radius: 9999px;
  background: rgba(0, 154, 196, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.cl-result h3 {
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  color: #fff;
  margin: 0 0 16px;
}
.cl-result p {
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 22px;
}
.cl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.cl-chip {
  font-size: 13px;
  color: #009AC4;
  background: rgba(127, 208, 229, 0.12);
  border-radius: 9999px;
  padding: 7px 14px;
}
.cl-chip span {
  opacity: 0.7;
}
.cl-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #009AC4;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 180ms ease;
}
.cl-cta-btn:hover {
  background: #009AC4;
  color: #0A2540;
}
.cl-restart-btn {
  display: block;
  margin-top: 18px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 15px 28px;
  border-radius: 100px;
}

.cl-restart-btn:hover{
  background-color: #ffffff;
  color: #0a2540;
}


