.triage-new {
  .form-wrapper {
    max-width: 100%;
    margin: 0 auto;
  }

  /* Cards */
  .card {
    border: 0;
  }


  .intro-title {
    color: #202124;
    margin-bottom: 16px;
  }

  .intro-body {
    color: #202124;
  }

  .intro-body li { margin: 3px 0; }

  /* Question */
  .question-title {
  }

  .question-desc {
    margin-bottom: 16px;
  }

  /* Radio list */
  .options-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .option-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 6px;
    cursor: pointer;
    transition: background .12s;
  }

  .option-item:hover { background: rgba(192,72,0,.05); }

  .option-item input[type="radio"] {
    accent-color: #c04800;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
  }

  .option-label {
    cursor: pointer;
    color: #202124;
  }

  .result-body {
    color: #202124;
  }

  /* Nav row */
  .nav-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    flex-wrap: wrap;
  }

  /* Error */
  .error-msg {
    color: #b3261e;
    margin-top: 10px;
    display: none;
  }
  .error-msg.show { display: block; }

  /* Progress */
  .progress-wrap {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .progress-track {
    flex: 1;
    height: 4px;
    background: #e0e0e0;
    overflow: hidden;
  }

  .progress-fill {
    height: 100%;
    background: #c04800;
    transition: width .3s ease;
  }

  .progress-text {
    color: #5f6368;
    white-space: nowrap;
  }

  .hidden { display: none !important; }

  /* Advanced Forms callback embed */
  .callback-embed {
    margin-top: 16px;
    width: 100%;
  }

  .callback-embed iframe {
    display: block;
    width: 100%;
    min-height: 600px;
  }

  .action-options-title {
    margin-top: 20px;
    margin-bottom: 8px;
    color: #202124;
    font-weight: 600;
  }
}
