.new-onboarding .acc {
  margin-bottom: 8px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}

.new-onboarding .acc-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  cursor: pointer;
  transition: background .2s;
}
.new-onboarding .acc-head:hover { background: var(--sand-light) }

.new-onboarding .acc-icon { font-size: 18px; flex-shrink: 0 }
.new-onboarding .acc-title { font-size: 14.5px; font-weight: 600; color: var(--text-primary); flex: 1 }
.new-onboarding .acc-sub { font-size: 12px; color: var(--text-hint); margin-top: 1px }

.new-onboarding .acc-arrow {
  font-size: 12px;
  color: var(--text-hint);
  transition: transform .25s;
  flex-shrink: 0;
}
.new-onboarding .acc.open .acc-arrow { transform: rotate(180deg) }

.new-onboarding .acc-body { max-height: 0; overflow: hidden; transition: max-height .3s ease }
.new-onboarding .acc.open .acc-body { max-height: 500px }

.new-onboarding .acc-body-inner {
  padding: 0 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.new-onboarding .acc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s;
  font-size: 13.5px;
  color: var(--text-secondary);
}
.new-onboarding .acc-item.sel { border-color: var(--coral); background: var(--coral-glow); color: var(--text-primary) }

.new-onboarding .acc-chk {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.new-onboarding .acc-item.sel .acc-chk { border-color: var(--coral); background: var(--coral) }
.new-onboarding .acc-chk svg { width: 12px; height: 12px; stroke: var(--white); opacity: 0; transition: opacity .15s }
.new-onboarding .acc-item.sel .acc-chk svg { opacity: 1 }

/* Severity slider (inline with checkbox options) */
.new-onboarding .oc-severity {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .3s ease, opacity .3s ease;
}
.new-onboarding .oc.sel + .oc-severity { max-height: 140px; opacity: 1; margin: 8px 0; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 12px; background: var(--sand-light) }

.new-onboarding .sev-display { text-align: center; margin-bottom: 8px }
.new-onboarding .sev-num { font-family: var(--font-d); font-size: 28px; font-weight: 700; color: var(--coral); line-height: 1 }
.new-onboarding .sev-lbl { font-size: 12px; color: var(--text-hint); margin-top: 3px }
.new-onboarding .sev-prompt { text-align: center; font-size: 12px; color: var(--text-hint); margin-bottom: 8px }

.new-onboarding .sev-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
}
.new-onboarding .sev-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--coral);
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .15);
}

.new-onboarding .sev-labels { display: flex; justify-content: space-between; margin-top: 4px }
.new-onboarding .sev-labels span { font-size: 10.5px; color: var(--text-hint) }

/* More/Less toggle */
.new-onboarding .more-toggle { text-align: center; padding: 10px 0; color: var(--coral); font-size: 13px; font-weight: 600; cursor: pointer }
.new-onboarding .more-section { max-height: 0; overflow: hidden; transition: max-height .35s ease }
.new-onboarding .more-section.show { max-height: 600px }
