/* ══════════════════════════════════════
   AWS Partner Fit Assessment
   ══════════════════════════════════════ */

.pf-progress-text {
  font-size: .78rem;
  color: var(--n-text-mute);
  margin-bottom: 8px;
}

.pf-progress-wrap {
  height: 4px;
  background: rgba(201, 184, 219, .1);
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}

.pf-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--n-orange), var(--n-pink));
  border-radius: 4px;
  transition: width .3s ease;
  width: 0;
}

.pf-q-number {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--n-pink);
  margin-bottom: 6px;
}

.pf-q-text {
  font-size: .95rem;
  color: var(--n-white);
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.5;
}

.pf-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.pf-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(30, 21, 51, .6);
  border: 1px solid rgba(201, 184, 219, .1);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  font-size: .88rem;
  color: var(--n-text-dim);
}

.pf-option:hover {
  border-color: rgba(232, 67, 147, .3);
  background: rgba(30, 21, 51, .8);
}

.pf-option.selected {
  border-color: var(--n-pink);
  background: rgba(232, 67, 147, .08);
  color: var(--n-white);
}

.pf-option input[type="radio"] {
  display: none;
}

.pf-option-radio {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(201, 184, 219, .25);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color .2s;
}

.pf-option.selected .pf-option-radio {
  border-color: var(--n-pink);
}

.pf-option.selected .pf-option-radio::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: var(--n-pink);
  border-radius: 50%;
}

.pf-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pf-btn-back {
  background: none;
  border: none;
  color: var(--n-text-mute);
  font-size: .85rem;
  cursor: pointer;
  padding: 8px 0;
  font-family: inherit;
  transition: color .2s;
}

.pf-btn-back:hover:not(:disabled) {
  color: var(--n-white);
}

.pf-btn-back:disabled {
  opacity: .3;
  cursor: default;
}

.pf-result {
  display: none;
  text-align: center;
}

.pf-score-display {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.pf-score-circle {
  width: 100px;
  height: 100px;
  border: 3px solid;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pf-score-num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.pf-score-of {
  font-size: .75rem;
  color: var(--n-text-mute);
}

.pf-result-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pf-result-desc {
  font-size: .88rem;
  color: var(--n-text-dim);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .pf-q-text {
    font-size: .88rem;
  }
  .pf-option {
    padding: 10px 14px;
    font-size: .82rem;
  }
  .pf-score-circle {
    width: 80px;
    height: 80px;
  }
  .pf-score-num {
    font-size: 1.8rem;
  }
}
