  .page-head {
    padding: 56px 0 24px;
    position: relative;
    overflow: hidden;
  }
  .page-head__motif {
    position: absolute;
    top: -40px;
    left: 10%;
    width: 180px;
    color: var(--accent);
    opacity: 0.12;
    pointer-events: none;
  }
  .page-head h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
  .page-head p {
    color: var(--ink-mute);
    font-size: 1.1rem;
    max-width: 660px;
    margin-top: 12px;
  }
  .disclaimer {
    background: color-mix(in srgb, var(--accent-soft) 50%, var(--bg-warm));
    border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    gap: 12px;
    color: var(--ink-2);
    font-size: 0.9rem;
    margin-top: 24px;
    line-height: 1.8;
  }
  .disclaimer svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

  /* TEST LIST */
  .tests-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
  }
  @media (max-width: 760px) { .tests-grid { grid-template-columns: 1fr; } }

  .test-card {
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-radius: 22px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.2s;
  }
  .test-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--sage-2); }
  .test-card__motif {
    position: absolute;
    top: -20px; left: -20px;
    width: 90px;
    opacity: 0.1;
    pointer-events: none;
  }
  .test-card__icon {
    width: 56px; height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
  }
  .test-card__icon--anxiety { background: color-mix(in srgb, var(--accent-soft) 70%, transparent); color: color-mix(in srgb, var(--accent) 70%, var(--ink)); }
  .test-card__icon--depression { background: color-mix(in srgb, var(--sage-1) 60%, transparent); color: var(--sage-3); }
  .test-card__icon--stress { background: color-mix(in srgb, #b8d0dc 55%, transparent); color: #3e5f7a; }
  .test-card__icon--personality { background: color-mix(in srgb, #d4b8dc 55%, transparent); color: #5a3e7a; }

  .test-card__name { font-size: 1.3rem; font-weight: 700; line-height: 1.3; }
  .test-card__code { color: var(--ink-mute); font-size: 0.85rem; font-weight: 500; margin-top: 2px; }
  .test-card__desc { color: var(--ink-mute); font-size: 0.95rem; line-height: 1.85; }
  .test-card__meta {
    display: flex;
    gap: 16px;
    color: var(--ink-2);
    font-size: 0.85rem;
    padding: 12px 0;
    border-top: 1px dashed var(--line);
    border-bottom: 1px dashed var(--line);
  }
  .test-card__meta-item { display: flex; align-items: center; gap: 6px; }
  .test-card__cta { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; }

  /* TEST RUNNER */
  .runner {
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    padding: 40px 48px;
    max-width: 720px;
    margin: 32px auto 0;
    position: relative;
    overflow: hidden;
  }
  .runner__motif {
    position: absolute;
    top: -40px; left: -40px;
    width: 200px;
    color: var(--sage-2);
    opacity: 0.07;
    pointer-events: none;
  }
  .runner__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
  }
  .runner__close {
    background: none;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 8px 14px;
    color: var(--ink-mute);
    font-family: inherit;
    font-size: 0.88rem;
    cursor: pointer;
  }
  .runner__close:hover { background: var(--bg-warm); }
  .progress {
    height: 6px;
    background: var(--bg-deep);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 8px;
  }
  .progress__fill {
    height: 100%;
    background: var(--sage-3);
    border-radius: 999px;
    transition: width 0.3s ease;
  }
  .runner__step-num { color: var(--ink-mute); font-size: 0.88rem; margin-bottom: 32px; }
  .runner__q {
    font-size: 1.45rem;
    line-height: 1.55;
    font-weight: 600;
    margin-bottom: 12px;
    text-wrap: balance;
  }
  .runner__qsub { color: var(--ink-mute); margin-bottom: 28px; }
  .options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }
  .option {
    background: var(--bg);
    border: 1.5px solid var(--line);
    border-radius: 14px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--ink);
    text-align: right;
    width: 100%;
  }
  .option:hover {
    border-color: var(--sage-2);
    background: var(--bg-card);
    transform: translateX(-4px);
  }
  .option.is-selected {
    border-color: var(--sage-3);
    background: color-mix(in srgb, var(--sage-1) 20%, var(--bg-card));
  }
  .option__dot {
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 2px solid var(--line);
    flex-shrink: 0;
    display: grid;
    place-items: center;
    transition: all 0.15s;
  }
  .option.is-selected .option__dot {
    border-color: var(--sage-3);
    background: var(--sage-3);
  }
  .option.is-selected .option__dot::after {
    content: '';
    width: 8px; height: 8px;
    background: white;
    border-radius: 50%;
  }
  .runner__nav { display: flex; justify-content: space-between; gap: 12px; }

  /* RESULT */
  .result {
    text-align: center;
    padding: 12px 0;
  }
  .result__circle {
    width: 180px; height: 180px;
    margin: 0 auto 24px;
    position: relative;
  }
  .result__circle svg { width: 100%; height: 100%; transform: rotate(-90deg); }
  .result__circle-bg { fill: none; stroke: var(--bg-deep); stroke-width: 14; }
  .result__circle-fg { fill: none; stroke-width: 14; stroke-linecap: round; transition: stroke-dashoffset 1s ease; }
  .result__circle-num {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ink);
  }
  .result__circle-num small { display: block; font-size: 0.75rem; color: var(--ink-mute); font-weight: 500; margin-top: 2px; }

  .result__band {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .result__band--low { background: color-mix(in srgb, #4ea76b 18%, transparent); color: #2e6b40; }
  .result__band--mid { background: color-mix(in srgb, var(--accent) 22%, transparent); color: color-mix(in srgb, var(--accent) 60%, var(--ink)); }
  .result__band--high { background: color-mix(in srgb, #c4584d 22%, transparent); color: #8a2a22; }

  .result__interp {
    max-width: 480px;
    margin: 0 auto 24px;
    color: var(--ink-2);
    line-height: 1.9;
  }
  .result__next {
    background: color-mix(in srgb, var(--sage-1) 22%, var(--bg-warm));
    padding: 20px 24px;
    border-radius: 16px;
    text-align: right;
    margin: 24px 0;
  }
  .result__next h4 { margin-bottom: 8px; font-size: 1rem; color: var(--sage-4); }
  .result__next ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
  .result__next li { display: flex; gap: 10px; font-size: 0.95rem; color: var(--ink-2); }
  .result__next li svg { color: var(--sage-3); flex-shrink: 0; margin-top: 4px; }
  .result__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

  @media (max-width: 600px) {
    .runner { padding: 28px 24px; }
    .runner__q { font-size: 1.2rem; }
  }
