.wrapper {
  max-width: 620px;
  padding: 0 20px 60px;
}

/* ── PROGRESS ── */
.progress-area {
  padding: 28px 0 24px;
  opacity: 0;
  animation: fadeUp 0.5s ease forwards 0.1s;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.progress-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
}

.progress-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

.progress-bar-bg {
  width: 100%;
  height: 5px;
  background: var(--gold-light);
  border-radius: 100px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  border-radius: 100px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── QUESTION CARDS ── */
.question-card {
  display: none;
  animation: fadeUp 0.45s ease forwards;
}

.question-card.active { display: block; }

.question-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
  margin-bottom: 12px;
}

.question-text {
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 8px;
}

.question-sub {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.6;
}

.question-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  border-radius: 2px;
  margin: 20px 0 24px;
}

/* ── OPTIONS ── */
.options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--card-bg);
  border: 2px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  min-height: 48px;
}

.option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.06), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.option:hover {
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.option:hover::before { opacity: 1; }

.option.selected {
  border-color: var(--selected-border);
  background: var(--selected);
  box-shadow: 0 4px 16px rgba(184,134,11,0.15);
}

.option.selected::before { opacity: 1; }

.option-icon { font-size: 22px; flex-shrink: 0; width: 36px; text-align: center; }
.option-content { flex: 1; }

.option-title { font-size: 15px; font-weight: 600; color: var(--dark); line-height: 1.3; }
.option-desc  { font-size: 12px; color: var(--text-soft); font-weight: 300; margin-top: 2px; line-height: 1.4; }

.option-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 11px;
  color: transparent;
}

.option.selected .option-check {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

/* ── NEXT BUTTON ── */
.btn-next {
  display: none;
  width: 100%;
  margin-top: 24px;
  background: linear-gradient(135deg, #C9A96E 0%, #B8860B 100%);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 28px rgba(184,134,11,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  min-height: 48px;
}

.btn-next.visible { display: block; animation: fadeUp 0.3s ease forwards; }

.btn-next::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn-next:hover::before { left: 100%; }
.btn-next:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(184,134,11,0.4); }
.btn-next:active { transform: translateY(0); }

/* ── LOADING SCREEN ── */
#loading-screen {
  text-align: center;
  padding-top: 24px;
  animation: fadeUp 0.5s ease forwards;
}

.loading-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.loading-icon {
  font-size: 52px;
  margin-bottom: 14px;
  display: block;
  animation: loadingPulse 1.8s ease-in-out infinite;
}

.loading-title {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.loading-title em { font-style: italic; color: var(--accent); }

.loading-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  border-radius: 2px;
  margin: 0 auto 20px;
}

.loading-message {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.6;
  min-height: 22px;
  transition: opacity 0.3s ease;
}

.loading-bar-bg {
  width: 100%;
  height: 6px;
  background: var(--gold-light);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 14px;
}

.loading-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  border-radius: 100px;
  transition: width 8s cubic-bezier(0.1, 0.4, 0.8, 1);
}

.loading-sub {
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 300;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.loading-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: left;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.loading-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 400;
}

.loading-step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-light);
  flex-shrink: 0;
}

.loading-step-dot.active {
  background: var(--gold);
}

.loading-step-dot.pulse {
  background: var(--gold);
  animation: dotPulse 1.2s ease-in-out infinite;
}

@keyframes loadingPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(0.92); opacity: 0.75; }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ── RESULT SCREEN ── */
#result-screen {
  display: none;
  animation: fadeUp 0.5s ease forwards;
  text-align: center;
  padding-top: 16px;
}

.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.result-icon { font-size: 48px; margin-bottom: 12px; display: block; }

.result-title {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.result-title em { font-style: italic; color: var(--accent); }

.result-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  border-radius: 2px;
  margin: 0 auto 20px;
}

.result-desc {
  font-size: 15px;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 28px;
}

.result-desc strong { color: var(--text); font-weight: 600; }

.diagnosis-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  text-align: left;
}

.diagnosis-header {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
  margin-bottom: 16px;
}

.diagnosis-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.diagnosis-item:last-child { margin-bottom: 0; }

.diag-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.diag-text { font-size: 14px; color: var(--text); line-height: 1.55; font-weight: 400; }
.diag-text strong { font-weight: 600; color: var(--dark); }

.btn-result {
  display: inline-block;
  width: 100%;
  max-width: 460px;
  background: linear-gradient(135deg, #C9A96E 0%, #B8860B 100%);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding: 20px 40px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 32px rgba(184,134,11,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-height: 48px;
}

.btn-result::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn-result:hover::before { left: 100%; }
.btn-result:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(184,134,11,0.45); }

.btn-sub {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ── MOBILE ── */
@media (max-width: 480px) {
  .option { padding: 14px 16px; }
  .option-title { font-size: 14px; }
}
