 
    /* =========================================================
       UNITORIA SOFT SKILLS TEST
       Полностью изолированный CSS
       ========================================================= */

    #unitoria-softskills-test,
    #unitoria-softskills-test * {
      box-sizing: border-box;
    }

    #unitoria-softskills-test {
      --ust-blue: #155eef;
      --ust-blue-dark: #123b83;
      --ust-blue-light: #eef4ff;
      --ust-cyan: #53b8df;
      --ust-text: #172033;
      --ust-muted: #667085;
      --ust-border: #e4e7ec;
      --ust-bg: #f7f9fc;
      --ust-white: #ffffff;
      --ust-green: #12b76a;
      --ust-orange: #f79009;
      --ust-red: #f04438;

      width: 100%;
      max-width: 1120px;
      margin: 0 auto;
      color: var(--ust-text);
      font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
      font-size: 16px;
      line-height: 1.5;
    }

    #unitoria-softskills-test button,
    #unitoria-softskills-test input {
      font: inherit;
    }

    /* =========================
       COMMON
       ========================= */

    .ust-hidden {
      display: none !important;
    }

    .ust-screen {
      width: 100%;
    }

    .ust-card {
      background: var(--ust-white);
      border: 1px solid var(--ust-border);
      border-radius: 24px;
      box-shadow: 0 10px 35px rgba(16, 24, 40, 0.06);
    }

    .ust-btn {
      appearance: none;
      border: 0;
      border-radius: 12px;
      min-height: 48px;
      padding: 0 24px;
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
      transition:
        transform .18s ease,
        box-shadow .18s ease,
        background .18s ease,
        opacity .18s ease;
    }

    .ust-btn:hover {
      transform: translateY(-1px);
    }

    .ust-btn:active {
      transform: translateY(0);
    }

    .ust-btn-primary {
      color: #fff;
      background: var(--ust-blue);
      box-shadow: 0 7px 18px rgba(21, 94, 239, .2);
    }

    .ust-btn-primary:hover {
      background: #0d52dc;
    }

    .ust-btn-secondary {
      color: var(--ust-blue-dark);
      background: #f2f5fa;
    }

    .ust-btn-secondary:hover {
      background: #e8edf5;
    }

    .ust-btn-light {
      color: var(--ust-text);
      background: #fff;
      border: 1px solid var(--ust-border);
    }

    .ust-btn-light:hover {
      background: #f8fafc;
    }

    .ust-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 28px;
    }

    .ust-actions-right {
      display: flex;
      gap: 10px;
      margin-left: auto;
    }

    /* =========================
       START
       ========================= */

    .ust-start {
      padding: 46px;
      overflow: hidden;
      position: relative;
    }

    .ust-start::before {
      content: "";
      position: absolute;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: rgba(83, 184, 223, .12);
      right: -150px;
      top: -160px;
      pointer-events: none;
    }

    .ust-start::after {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(21, 94, 239, .06);
      left: -100px;
      bottom: -120px;
      pointer-events: none;
    }

    .ust-kicker {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 5px 12px;
      border-radius: 999px;
      background: var(--ust-blue-light);
      color: var(--ust-blue);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .02em;
      margin-bottom: 18px;
    }

    .ust-start h1 {
      position: relative;
      z-index: 1;
      margin: 0 0 16px;
      color: var(--ust-blue-dark);
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.08;
      letter-spacing: -.035em;
    }

    .ust-lead {
      position: relative;
      z-index: 1;
      max-width: 760px;
      margin: 0;
      color: var(--ust-muted);
      font-size: 18px;
      line-height: 1.65;
    }

    .ust-start-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin: 32px 0;
    }

    .ust-start-stat {
      padding: 20px;
      border: 1px solid var(--ust-border);
      border-radius: 16px;
      background: rgba(255,255,255,.78);
    }

    .ust-start-stat strong {
      display: block;
      color: var(--ust-blue-dark);
      font-size: 25px;
      line-height: 1;
      margin-bottom: 7px;
    }

    .ust-start-stat span {
      color: var(--ust-muted);
      font-size: 14px;
    }

    .ust-start-note {
      position: relative;
      z-index: 1;
      margin: 0 0 26px;
      padding: 16px 18px;
      border-left: 4px solid var(--ust-cyan);
      background: #f8fbfd;
      color: #475467;
      border-radius: 0 12px 12px 0;
      font-size: 14px;
    }

    /* =========================
       TEST HEADER
       ========================= */

    .ust-test {
      overflow: hidden;
    }

    .ust-test-head {
      padding: 28px 32px 22px;
      border-bottom: 1px solid var(--ust-border);
      background: #fff;
    }

    .ust-progress-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      margin-bottom: 12px;
    }

    .ust-progress-label {
      color: var(--ust-muted);
      font-size: 13px;
      font-weight: 700;
    }

    .ust-progress-number {
      color: var(--ust-blue);
      font-weight: 800;
      font-size: 13px;
    }

    .ust-progress {
      height: 8px;
      width: 100%;
      overflow: hidden;
      border-radius: 999px;
      background: #edf0f5;
    }

    .ust-progress > span {
      display: block;
      height: 100%;
      width: 0;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--ust-blue), var(--ust-cyan));
      transition: width .3s ease;
    }

    .ust-section-title {
      margin: 24px 0 5px;
      color: var(--ust-blue-dark);
      font-size: clamp(24px, 3vw, 32px);
      line-height: 1.15;
      letter-spacing: -.025em;
    }

    .ust-section-description {
      margin: 0;
      color: var(--ust-muted);
      font-size: 15px;
    }

    /* =========================
       QUESTION AREA
       ========================= */

    .ust-question-area {
      padding: 30px 32px 34px;
      background: var(--ust-bg);
    }

    .ust-part-label {
      margin: 0 0 14px;
      color: var(--ust-blue);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .05em;
    }

    .ust-question-list {
      display: grid;
      gap: 14px;
    }

    .ust-question {
      background: #fff;
      border: 1px solid var(--ust-border);
      border-radius: 18px;
      padding: 20px;
    }

    .ust-question-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: var(--ust-blue-light);
      color: var(--ust-blue);
      font-size: 12px;
      font-weight: 800;
      margin-right: 8px;
      vertical-align: middle;
    }

    .ust-question-text {
      display: inline;
      color: var(--ust-text);
      font-weight: 700;
      font-size: 16px;
      line-height: 1.45;
    }

    /* =========================
       SELF ASSESSMENT
       ========================= */

    .ust-scale-hint {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      margin: 12px 0 9px;
      color: var(--ust-muted);
      font-size: 12px;
    }

    .ust-scale {
      display: grid;
      grid-template-columns: repeat(5, minmax(80px, 1fr));
      gap: 8px;
    }

    .ust-scale-option {
      position: relative;
    }

    .ust-scale-option input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .ust-scale-option label {
      display: flex;
      min-height: 58px;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 9px 6px;
      border: 1px solid var(--ust-border);
      border-radius: 11px;
      background: #fff;
      cursor: pointer;
      text-align: center;
      transition:
        background .15s ease,
        border-color .15s ease,
        box-shadow .15s ease,
        transform .15s ease;
    }

    .ust-scale-option label:hover {
      border-color: #b9c8e6;
      background: #f9fbff;
    }

    .ust-scale-option input:checked + label {
      border-color: var(--ust-blue);
      background: var(--ust-blue-light);
      color: var(--ust-blue-dark);
      box-shadow: inset 0 0 0 1px var(--ust-blue);
    }

    .ust-scale-num {
      font-size: 18px;
      font-weight: 800;
    }

    .ust-scale-text {
      font-size: 11px;
      line-height: 1.15;
      color: var(--ust-muted);
    }

    .ust-scale-option input:checked + label .ust-scale-text {
      color: var(--ust-blue-dark);
      font-weight: 600;
    }

    /* =========================
       SJT
       ========================= */

    .ust-sjt {
      margin-top: 8px;
    }

    .ust-sjt-intro {
      margin: 0 0 13px;
      color: var(--ust-muted);
      font-size: 13px;
    }

    .ust-sjt-options {
      display: grid;
      gap: 8px;
    }

    .ust-sjt-option {
      position: relative;
    }

    .ust-sjt-option input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .ust-sjt-option label {
      display: grid;
      grid-template-columns: 30px 1fr;
      align-items: start;
      gap: 10px;
      padding: 12px 14px;
      border: 1px solid var(--ust-border);
      border-radius: 11px;
      background: #fff;
      cursor: pointer;
      transition:
        background .15s ease,
        border-color .15s ease,
        box-shadow .15s ease;
    }

    .ust-sjt-option label:hover {
      border-color: #b9c8e6;
      background: #fafcff;
    }

    .ust-sjt-option input:checked + label {
      border-color: var(--ust-blue);
      background: var(--ust-blue-light);
      box-shadow: inset 0 0 0 1px var(--ust-blue);
    }

    .ust-sjt-letter {
      width: 27px;
      height: 27px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: #f2f4f7;
      color: #475467;
      font-weight: 800;
      font-size: 12px;
    }

    .ust-sjt-option input:checked + label .ust-sjt-letter {
      background: var(--ust-blue);
      color: #fff;
    }

    .ust-sjt-text {
      color: #344054;
      font-size: 14px;
      line-height: 1.45;
    }

    /* =========================
       ERROR
       ========================= */

    .ust-error {
      display: none;
      margin-top: 16px;
      padding: 12px 15px;
      border-radius: 10px;
      background: #fff1f0;
      border: 1px solid #fecdca;
      color: #b42318;
      font-size: 14px;
      font-weight: 600;
    }

    .ust-error.is-visible {
      display: block;
    }

    /* =========================
       RESULTS
       ========================= */

    .ust-results {
      overflow: hidden;
    }

    .ust-results-head {
      padding: 40px 42px 30px;
      background:
        radial-gradient(circle at 90% 10%, rgba(83,184,223,.15), transparent 28%),
        linear-gradient(135deg, #f7faff, #fff);
      border-bottom: 1px solid var(--ust-border);
    }

    .ust-results-kicker {
      color: var(--ust-blue);
      font-weight: 800;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .ust-results-head h2 {
      margin: 7px 0 6px;
      color: var(--ust-blue-dark);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.1;
      letter-spacing: -.035em;
    }

    .ust-results-subtitle {
      margin: 0;
      max-width: 760px;
      color: var(--ust-muted);
      font-size: 16px;
    }

    .ust-overall {
      display: grid;
      grid-template-columns: 190px 1fr;
      gap: 30px;
      align-items: center;
      margin-top: 30px;
    }

    .ust-score-circle {
      width: 175px;
      height: 175px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: #fff;
      border: 12px solid #e9f0ff;
      box-shadow: 0 8px 25px rgba(21,94,239,.08);
    }

    .ust-score-circle strong {
      color: var(--ust-blue);
      font-size: 46px;
      line-height: 1;
      letter-spacing: -.04em;
    }

    .ust-score-circle span {
      margin-top: 6px;
      color: var(--ust-muted);
      font-size: 12px;
      font-weight: 700;
    }

    .ust-level {
      display: inline-flex;
      margin-bottom: 9px;
      padding: 7px 12px;
      border-radius: 999px;
      background: var(--ust-blue-light);
      color: var(--ust-blue);
      font-size: 13px;
      font-weight: 800;
    }

    .ust-overall-text h3 {
      margin: 0 0 7px;
      color: var(--ust-blue-dark);
      font-size: 24px;
    }

    .ust-overall-text p {
      margin: 0;
      color: var(--ust-muted);
      line-height: 1.65;
    }

    .ust-results-body {
      padding: 30px 32px 40px;
      background: var(--ust-bg);
    }

    .ust-result-section {
      margin-bottom: 24px;
    }

    .ust-result-section:last-child {
      margin-bottom: 0;
    }

    .ust-result-title {
      margin: 0 0 14px;
      color: var(--ust-blue-dark);
      font-size: 22px;
      letter-spacing: -.02em;
    }

    /* =========================
       RADAR
       ========================= */

    .ust-radar-card {
      background: #fff;
      border: 1px solid var(--ust-border);
      border-radius: 20px;
      padding: 18px;
      overflow: hidden;
    }

    .ust-radar-wrap {
      width: 100%;
      max-width: 820px;
      margin: 0 auto;
      position: relative;
    }

    .ust-radar-svg {
      display: block;
      width: 100%;
      height: auto;
      overflow: visible;
    }

    .ust-radar-grid {
      fill: none;
      stroke: #e6eaf0;
      stroke-width: 1;
    }

    .ust-radar-axis {
      stroke: #e0e5ec;
      stroke-width: 1;
    }

    .ust-radar-area {
      fill: rgba(21,94,239,.14);
      stroke: var(--ust-blue);
      stroke-width: 2.5;
      stroke-linejoin: round;
    }

    .ust-radar-point {
      fill: #fff;
      stroke: var(--ust-blue);
      stroke-width: 2;
    }

    .ust-radar-label {
      fill: #344054;
      font-size: 12px;
      font-weight: 700;
    }

    .ust-radar-score {
      fill: var(--ust-blue);
      font-size: 12px;
      font-weight: 900;
    }

    /* =========================
       BARS
       ========================= */

    .ust-bars {
      display: grid;
      gap: 12px;
    }

    .ust-bar-card {
      padding: 15px 16px;
      background: #fff;
      border: 1px solid var(--ust-border);
      border-radius: 14px;
    }

    .ust-bar-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
    }

    .ust-bar-name {
      font-weight: 700;
      color: #344054;
      font-size: 14px;
    }

    .ust-bar-score {
      color: var(--ust-blue);
      font-weight: 900;
      font-size: 14px;
    }

    .ust-bar-track {
      height: 9px;
      overflow: hidden;
      border-radius: 999px;
      background: #edf0f5;
    }

    .ust-bar-fill {
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--ust-blue), var(--ust-cyan));
      width: 0;
      transition: width .7s ease;
    }

    /* =========================
       SELF / SJT
       ========================= */

    .ust-compare {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .ust-compare-card {
      padding: 20px;
      border: 1px solid var(--ust-border);
      border-radius: 16px;
      background: #fff;
    }

    .ust-compare-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
    }

    .ust-compare-name {
      font-size: 14px;
      font-weight: 800;
      color: #344054;
    }

    .ust-compare-value {
      font-weight: 900;
      color: var(--ust-blue);
    }

    .ust-compare-track {
      height: 8px;
      border-radius: 999px;
      background: #edf0f5;
      overflow: hidden;
    }

    .ust-compare-fill {
      height: 100%;
      border-radius: inherit;
      background: var(--ust-blue);
    }

    /* =========================
       INSIGHTS
       ========================= */

    .ust-insights {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .ust-insight {
      background: #fff;
      border: 1px solid var(--ust-border);
      border-radius: 18px;
      padding: 20px;
    }

    .ust-insight-label {
      margin-bottom: 5px;
      color: var(--ust-muted);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .04em;
    }

    .ust-insight h4 {
      margin: 0 0 6px;
      color: var(--ust-blue-dark);
      font-size: 18px;
    }

    .ust-insight p {
      margin: 0;
      color: var(--ust-muted);
      font-size: 14px;
      line-height: 1.55;
    }

    .ust-recommendations {
      display: grid;
      gap: 10px;
    }

    .ust-recommendation {
      display: grid;
      grid-template-columns: 36px 1fr;
      gap: 12px;
      align-items: start;
      padding: 15px 16px;
      background: #fff;
      border: 1px solid var(--ust-border);
      border-radius: 14px;
    }

    .ust-recommendation-number {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 9px;
      background: var(--ust-blue-light);
      color: var(--ust-blue);
      font-size: 13px;
      font-weight: 900;
    }

    .ust-recommendation strong {
      display: block;
      margin-bottom: 3px;
      color: #344054;
      font-size: 14px;
    }

    .ust-recommendation span {
      color: var(--ust-muted);
      font-size: 13px;
      line-height: 1.5;
    }

    .ust-result-actions {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }

    .ust-disclaimer {
      margin-top: 24px;
      padding: 15px 17px;
      border-radius: 13px;
      background: #f8fafc;
      color: #667085;
      font-size: 12px;
      line-height: 1.55;
      border: 1px solid var(--ust-border);
    }

    /* =========================
       RESPONSIVE
       ========================= */

    @media (max-width: 760px) {
      .ust-start,
      .ust-results-head {
        padding: 28px 20px;
      }

      .ust-test-head,
      .ust-question-area,
      .ust-results-body {
        padding-left: 18px;
        padding-right: 18px;
      }

      .ust-start-grid {
        grid-template-columns: 1fr;
      }

      .ust-overall {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .ust-score-circle {
        margin: 0 auto;
      }

      .ust-compare,
      .ust-insights {
        grid-template-columns: 1fr;
      }

      .ust-actions {
        flex-direction: column-reverse;
        align-items: stretch;
      }

      .ust-actions-right {
        width: 100%;
      }

      .ust-actions .ust-btn {
        width: 100%;
      }

      .ust-scale {
        grid-template-columns: repeat(5, 1fr);
        gap: 5px;
      }

      .ust-scale-option label {
        min-height: 58px;
        flex-direction: column;
        gap: 1px;
        padding: 6px 2px;
      }

      .ust-scale-text {
        font-size: 9px;
      }

      .ust-scale-num {
        font-size: 16px;
      }

      .ust-radar-card {
        padding: 5px;
      }
    }

    @media (max-width: 480px) {
      .ust-scale-hint {
        font-size: 10px;
      }

      .ust-question {
        padding: 15px;
      }

      .ust-question-text {
        font-size: 14px;
      }

      .ust-sjt-option label {
        padding: 10px;
      }

      .ust-sjt-text {
        font-size: 13px;
      }
    }

    @media print {
      #unitoria-softskills-test .ust-result-actions {
        display: none !important;
      }

      #unitoria-softskills-test {
        max-width: none;
      }

      #unitoria-softskills-test .ust-results-body {
        background: #fff;
      }

      #unitoria-softskills-test .ust-card,
      #unitoria-softskills-test .ust-radar-card,
      #unitoria-softskills-test .ust-bar-card,
      #unitoria-softskills-test .ust-compare-card,
      #unitoria-softskills-test .ust-insight,
      #unitoria-softskills-test .ust-recommendation {
        box-shadow: none;
      }
    }
 