  :root {
    --navy: #1F3A6A;
    --navy-700: #16294C;
    --navy-900: #0E1B33;
    --navy-50: #EEF2F9;

    --accent: #3FB8C8;
    --accent-600: #2E9CAB;
    --accent-50: #E8F7F9;

    --bg: #FFFFFF;
    --bg-soft: #F5F7FA;
    --line: #E6EAF0;
    --line-strong: #D2D8E2;

    --ink: #1A1F2B;
    --ink-2: #3F4756;
    --ink-3: #6B7480;

    --radius: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 1px 1px rgba(15,23,42,.03);
    --shadow-md: 0 6px 24px -8px rgba(15,23,42,.18), 0 2px 6px rgba(15,23,42,.05);
    --container: 760px;
  }

  html[data-accent="turquoise"] { --accent:#3FB8C8; --accent-600:#2E9CAB; --accent-50:#E8F7F9; }
  html[data-accent="orange"]    { --accent:#FF7A3D; --accent-600:#E5632A; --accent-50:#FFEFE6; }
  html[data-accent="green"]     { --accent:#1F8A5B; --accent-600:#176E48; --accent-50:#E6F3EC; }

  *,*::before,*::after { box-sizing: border-box; }
  html, body { margin:0; padding:0; }
  body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg-soft);
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    min-height: 100dvh;
    display: flex; flex-direction: column;
  }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; }
  h1, h2, h3 { margin: 0; letter-spacing: -0.02em; text-wrap: balance; }

  /* ─── header ─── */
  .topbar {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky; top: 0; z-index: 10;
  }
  .topbar__row {
    max-width: var(--container);
    margin: 0 auto;
    padding: 16px 20px;
    display: flex; align-items: center; gap: 16px;
  }
  .wordmark {
    display: inline-flex; align-items: center; gap: 2px;
    color: var(--navy); line-height: 1;
  }
  .wordmark__img { display: block; height: 36px; width: auto; }
  @media (max-width: 480px) { .wordmark__img { height: 30px; } }
  .wordmark__a { font-weight: 800; font-size: 20px; padding-right: 2px; }
  .wordmark__bud {
    font-weight: 800; font-size: 16px;
    color: #fff; background: var(--navy);
    padding: 5px 7px 4px; border-radius: 5px;
  }
  .topbar__exit {
    margin-left: auto;
    color: var(--ink-3);
    font-size: 14px;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 10px; border-radius: 8px;
  }
  .topbar__exit:hover { background: var(--bg-soft); color: var(--ink); }

  /* ─── progress ─── */
  .progress {
    max-width: var(--container);
    margin: 0 auto;
    padding: 20px 20px 0;
  }
  .progress__head {
    display: flex; justify-content: space-between; align-items: baseline;
    font-size: 13px; color: var(--ink-3); font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: .04em;
  }
  .progress__head strong { color: var(--ink); }
  .progress__bar {
    height: 6px; border-radius: 999px;
    background: #E1E6EF;
    overflow: hidden;
  }
  .progress__fill {
    height: 100%; background: var(--accent);
    width: 0%;
    border-radius: 999px;
    transition: width .35s cubic-bezier(.6,.0,.4,1);
  }

  /* ─── main ─── */
  main {
    flex: 1;
    max-width: var(--container);
    width: 100%;
    margin: 0 auto;
    padding: 28px 20px 80px;
  }

  .step {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    padding: clamp(24px, 4vw, 40px);
    box-shadow: var(--shadow-sm);
    display: none;
  }
  .step[data-active="true"] { display: block; animation: fadeIn .25s ease; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

  .step__eyebrow {
    font-size: 12px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent-600);
    display: inline-flex; align-items: center; gap: 8px;
  }
  html[data-accent="turquoise"] .step__eyebrow { color: #1F6E78; }
  .step__eyebrow::before { display: none; }

  .step h1 {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--ink);
    margin: 14px 0 12px;
  }
  .step h2 {
    font-size: clamp(20px, 2.6vw, 24px);
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--ink);
  }
  .step__lede {
    color: var(--ink-2);
    font-size: 16.5px;
    max-width: 54ch;
    margin-bottom: 28px;
  }

  .field { margin-top: 24px; }
  .field__label {
    display: block;
    font-size: 14px; font-weight: 600; color: var(--ink-2);
    margin-bottom: 10px;
  }

  /* ─── option grid ─── */
  .options {
    display: grid; gap: 10px;
    grid-template-columns: 1fr;
  }
  .options--2 { grid-template-columns: 1fr; }
  @media (min-width: 560px) {
    .options--2 { grid-template-columns: repeat(2, 1fr); }
    .options--3 { grid-template-columns: repeat(3, 1fr); }
  }

  .opt {
    display: flex; align-items: center; gap: 14px;
    width: 100%;
    padding: 16px 18px;
    border: 1.5px solid var(--line);
    background: #fff;
    border-radius: 14px;
    text-align: left;
    color: var(--ink);
    font-weight: 600; font-size: 15.5px;
    transition: all .15s ease;
    min-height: 60px;
  }
  .opt:hover { border-color: var(--accent); background: var(--accent-50); }
  .opt[aria-pressed="true"] {
    border-color: var(--accent);
    background: var(--accent-50);
    box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 16%, transparent);
  }
  .opt__radio {
    width: 22px; height: 22px; border-radius: 999px;
    border: 2px solid var(--line-strong);
    flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    transition: border-color .15s ease;
  }
  .opt[aria-pressed="true"] .opt__radio {
    border-color: var(--accent);
  }
  .opt[aria-pressed="true"] .opt__radio::after {
    content: ""; width: 10px; height: 10px; border-radius: 999px;
    background: var(--accent);
  }
  .opt__icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: var(--navy-50); color: var(--navy);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .opt__text { display: flex; flex-direction: column; gap: 2px; }
  .opt__sub { font-size: 13px; font-weight: 500; color: var(--ink-3); }

  /* compact option (for short labels) */
  .opt--compact {
    flex-direction: column; align-items: center;
    text-align: center;
    padding: 18px 12px;
    gap: 8px;
    min-height: 92px;
  }
  .opt--compact .opt__radio { display: none; }
  .opt--compact .opt__sub { font-size: 12px; }

  /* multi-select option (checkbox style) */
  .opt__check {
    width: 22px; height: 22px; border-radius: 6px;
    border: 2px solid var(--line-strong);
    flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    transition: all .15s ease;
  }
  .opt[aria-pressed="true"] .opt__check {
    background: var(--accent); border-color: var(--accent); color: #08252A;
  }
  .opt[aria-pressed="true"] .opt__check::after {
    content: ""; width: 11px; height: 6px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg) translate(1px, -1px);
  }

  /* ─── numeric/text inputs ─── */
  .ifield {
    display: flex; align-items: stretch;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: border-color .15s ease, box-shadow .15s ease;
  }
  .ifield:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 16%, transparent);
  }
  .ifield input {
    flex: 1; min-width: 0;
    border: 0; outline: 0; background: transparent;
    padding: 14px 16px;
    font: inherit; color: var(--ink);
    font-weight: 600;
  }
  .ifield__unit {
    background: var(--bg-soft);
    color: var(--ink-3);
    font-size: 13px; font-weight: 600;
    padding: 0 14px;
    display: inline-flex; align-items: center;
    border-left: 1px solid var(--line);
  }

  .ifields { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
  @media (max-width: 480px) { .ifields { grid-template-columns: 1fr; } }
  .ifield__group { display: flex; flex-direction: column; gap: 6px; }
  .ifield__group label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
  .ifield__hint { font-size: 12px; color: var(--ink-3); margin-top: 4px; }

  /* ─── upload ─── */
  .upload {
    display: block;
    margin-top: 14px;
    border: 2px dashed var(--line-strong);
    border-radius: 14px;
    padding: 22px;
    text-align: center;
    color: var(--ink-3);
    background: var(--bg-soft);
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
  }
  .upload:hover { border-color: var(--accent); background: var(--accent-50); }
  .upload strong { display: block; color: var(--ink); font-size: 15px; margin-bottom: 2px; }
  .upload input { display: none; }

  /* ─── alert / warning ─── */
  .alert {
    background: var(--accent-50);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 18px 20px;
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.6;
    margin-top: 22px;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }
  .alert strong { color: var(--navy); display: block; margin-bottom: 6px; font-size: 16px; }
  @media (max-width: 480px) {
    .alert { padding: 16px 14px; font-size: 14.5px; }
    .step h1 { font-size: clamp(22px, 6vw, 28px); }
  }

  /* ─── nav buttons ─── */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    height: 52px; padding: 0 26px;
    border-radius: 14px;
    font-weight: 700; font-size: 16px;
    letter-spacing: -.005em;
    border: 1px solid transparent;
    transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
    text-align: center;
  }
  .btn:active { transform: translateY(1px); }
  .btn--primary {
    background: var(--accent); color: #fff;
    box-shadow: 0 8px 20px -8px color-mix(in oklab, var(--accent) 70%, transparent),
                0 2px 4px -2px color-mix(in oklab, var(--accent) 50%, transparent);
  }
  .btn--primary:hover {
    background: var(--accent-600);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px -8px color-mix(in oklab, var(--accent) 75%, transparent),
                0 3px 6px -2px color-mix(in oklab, var(--accent) 50%, transparent);
  }
  .btn--primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px -4px color-mix(in oklab, var(--accent) 60%, transparent);
  }
  .btn--primary:disabled {
    background: var(--line-strong); color: #fff;
    cursor: not-allowed; opacity: .8;
    box-shadow: none; transform: none;
  }
  .btn--ghost { background: transparent; color: var(--ink-2); }
  .btn--ghost:hover { background: var(--bg-soft); color: var(--ink); }
  .btn--lg { height: 60px; padding: 0 32px; font-size: 17px; }

  .nav {
    margin-top: 32px;
    display: flex; align-items: center; gap: 10px;
    justify-content: space-between;
  }
  .nav__hint {
    font-size: 13px; color: var(--ink-3);
  }
  @media (max-width: 480px) {
    .nav__hint { display: none; }
  }

  /* ─── start screen ─── */
  .start__art {
    width: 80px; height: 80px;
    margin-bottom: 18px;
    border-radius: 22px;
    background: var(--accent-50);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--navy);
  }
  .meta {
    display: flex; gap: 22px; flex-wrap: wrap;
    margin-top: 24px;
    color: var(--ink-3);
    font-size: 14px;
  }
  .meta span {
    display: inline-flex; align-items: center; gap: 8px;
  }
  .meta svg { width: 16px; height: 16px; color: var(--accent-600); }
  html[data-accent="turquoise"] .meta svg { color: #1F6E78; }

  /* ─── result screen ─── */
  .recommend {
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: clamp(24px, 4vw, 36px);
    margin-top: 20px;
    position: relative; overflow: hidden;
  }
  .recommend::before {
    content: ""; position: absolute; right: -100px; top: -100px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, var(--accent), transparent 70%);
    opacity: .25; pointer-events: none;
  }
  .recommend__kicker {
    font-size: 12px; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
  }
  .recommend h2 {
    color: #fff;
    font-size: clamp(26px, 4vw, 34px);
    margin: 8px 0 14px;
  }
  .recommend__why {
    color: rgba(255,255,255,.86);
    font-size: 16px;
    max-width: 50ch;
    position: relative; z-index: 1;
  }
  .recommend__specs {
    display: grid; gap: 14px 24px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.16);
    position: relative; z-index: 1;
  }
  .recommend__specs .v {
    font-weight: 800; font-size: 20px; color: var(--accent);
    line-height: 1;
  }
  .recommend__specs .k {
    font-size: 12.5px; color: rgba(255,255,255,.6);
    margin-top: 4px;
  }

  /* ─── result card (document-style, prints to PDF) ─── */
  .result-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-top: 24px;
  }
  .result-card__head {
    background: var(--navy);
    color: #fff;
    padding: 20px clamp(20px, 4vw, 32px);
    display: grid; gap: 18px;
    grid-template-columns: 1fr;
  }
  @media (min-width: 600px) {
    .result-card__head { grid-template-columns: 1fr auto; align-items: center; }
  }
  .result-card__brand { display: flex; align-items: center; gap: 14px; }
  .result-card__wordmark {
    font-weight: 800; font-size: 20px; letter-spacing: -0.01em;
    color: #fff; display: inline-flex; align-items: baseline;
  }
  .result-card__wordmark em {
    background: var(--accent); color: var(--navy);
    font-style: normal; font-weight: 800;
    padding: 1px 6px; border-radius: 4px;
    margin-left: 2px; font-size: 16px;
  }
  .result-card__brand-meta {
    font-size: 11.5px; color: rgba(255,255,255,.65);
    line-height: 1.4;
  }
  .result-card__doctype {
    text-align: left;
  }
  @media (min-width: 600px) { .result-card__doctype { text-align: right; } }
  .result-card__doctype-kicker {
    font-size: 10.5px; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
  }
  .result-card__doctype-id {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 13px;
    color: #fff;
    margin-top: 4px;
  }
  .result-card__doctype-date {
    font-size: 12px; color: rgba(255,255,255,.7);
    margin-top: 2px;
  }
  .result-card__body {
    padding: clamp(28px, 5vw, 44px);
  }
  .result-card__section + .result-card__section {
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px dashed var(--line);
  }
  .result-card__eyebrow {
    font-size: 10.5px; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--ink-3);
  }
  .result-card__product-name {
    font-size: clamp(24px, 3.6vw, 32px);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--navy);
    margin: 6px 0 12px;
  }
  .result-card__kicker {
    display: inline-block;
    background: var(--accent-50);
    color: var(--accent-ink);
    border: 1px solid var(--accent-100);
    padding: 4px 10px; border-radius: 999px;
    font-size: 12px; font-weight: 700;
    margin-bottom: 8px;
  }
  .result-card__why {
    color: var(--ink-2);
    font-size: 15.5px;
    max-width: 58ch;
  }
  .result-card__specs {
    display: grid; gap: 14px 24px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 18px;
    padding: 18px;
    background: var(--bg-soft);
    border-radius: 12px;
  }
  @media (min-width: 600px) {
    .result-card__specs { grid-template-columns: repeat(4, 1fr); }
  }
  .result-card__specs .v {
    font-weight: 800; font-size: 20px; color: var(--navy); line-height: 1.1;
  }
  .result-card__specs .k {
    font-size: 12px; color: var(--ink-2); margin-top: 4px;
  }
  .result-card__h3 {
    font-size: 14px; font-weight: 800;
    color: var(--navy);
    margin: 0 0 10px;
    letter-spacing: -0.005em;
  }
  .result-card__chips {
    display: flex; flex-wrap: wrap; gap: 6px;
  }
  .result-card__chips .chip {
    background: #fff;
    border: 1px solid var(--line);
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 12.5px;
    color: var(--ink-2);
  }
  .result-card__next {
    display: grid; gap: 14px;
    grid-template-columns: 1fr;
    counter-reset: step;
  }
  @media (min-width: 600px) {
    .result-card__next { grid-template-columns: repeat(3, 1fr); }
  }
  .result-card__next-item {
    background: var(--bg-soft);
    border-radius: 12px;
    padding: 16px 18px;
    position: relative;
    counter-increment: step;
  }
  .result-card__next-item::before {
    content: "0" counter(step);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 11px; font-weight: 700;
    color: var(--accent-ink);
    display: block;
    margin-bottom: 6px;
  }
  .result-card__next-item h4 {
    font-size: 14px; font-weight: 700; color: var(--navy);
    margin: 0 0 4px;
  }
  .result-card__next-item p {
    font-size: 13px; color: var(--ink-2); margin: 0; line-height: 1.45;
  }
  .result-card__foot {
    background: var(--bg-soft);
    padding: 18px clamp(20px, 4vw, 32px);
    display: grid; gap: 16px;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--ink-2);
  }
  @media (min-width: 600px) {
    .result-card__foot { grid-template-columns: 1fr 1fr 1fr; align-items: start; }
  }
  .result-card__foot strong { color: var(--navy); font-weight: 700; display: block; margin-bottom: 3px; font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase; }
  .result-card__foot a { color: var(--navy); font-weight: 600; }
  .result-card__sig {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    display: flex; align-items: center; gap: 12px;
    font-size: 13px; color: var(--ink-2);
  }
  .result-card__sig-name { font-weight: 500; color: var(--navy); }

  .result-actions {
    display: flex; flex-direction: column; align-items: center;
    gap: 14px;
    margin-top: 28px;
  }
  .result-actions__primary { display: flex; justify-content: center; width: 100%; }
  .result-actions__primary .btn { min-width: min(280px, 100%); max-width: 100%; }
  @media (max-width: 480px) {
    .result-actions__primary .btn { width: 100%; min-width: 0; }
  }
  .result-actions__secondary {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 8px 22px;
  }
  .result-actions__secondary .btn--link {
    background: transparent; border: 0; padding: 8px 10px;
    color: var(--ink-2); font-weight: 600; font-size: 14px;
    display: inline-flex; align-items: center; gap: 6px;
    cursor: pointer;
  }
  .result-actions__secondary .btn--link:hover { color: var(--navy); }

  /* ─── "Готове рішення" layout (DWM / S1000 recommendation) ─── */
  .rec-hero {
    margin: 0 0 36px;
    background:
      radial-gradient(circle at 50% 30%, rgba(63, 184, 200, .14), transparent 65%),
      linear-gradient(180deg, var(--navy-50) 0%, #fff 100%);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    min-height: 360px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    position: relative;
  }
  @media (min-width: 480px) {
    .rec-hero { padding: 44px 32px; min-height: 340px; margin-bottom: 32px; }
  }
  @media (min-width: 720px) {
    .rec-hero { min-height: 360px; padding: 48px 40px; margin-bottom: 36px; }
  }
  .rec-hero img {
    max-width: 80%; max-height: 280px;
    width: auto; height: auto;
    object-fit: contain; object-position: center;
    display: block;
    filter: drop-shadow(0 24px 40px rgba(15, 40, 80, .18));
    transition: transform .4s ease;
  }
  @media (min-width: 720px) {
    .rec-hero img { max-width: 45%; max-height: 280px; }
  }

  /* ─── Desktop only: повне центрування результату + білий фон під фото ─── */
  /* (Високий пріоритет через !important — щоб перебити пізніші base-правила) */
  @media (min-width: 720px) {
    .step[data-step="result"] .rec-hero {
      background: #fff !important;
      padding: 32px;
      min-height: 320px;
      margin-bottom: 28px;
    }
    .step[data-step="result"] .rec-hero img {
      filter: drop-shadow(0 18px 28px rgba(15, 40, 80, .14));
    }
    /* Шапка результат-step (eyebrow + h1 + lede) — по центру */
    .step[data-step="result"] .step__eyebrow,
    .step[data-step="result"] h1,
    .step[data-step="result"] .step__lede {
      text-align: center !important;
    }
    .step[data-step="result"] .step__eyebrow {
      display: block;
    }
    .step[data-step="result"] .step__lede {
      max-width: 56ch;
      margin-left: auto;
      margin-right: auto;
    }
    /* Усі тексти у result-card — по центру */
    .step[data-step="result"] .result-card__section,
    .step[data-step="result"] .result-card__kicker,
    .step[data-step="result"] .result-card__product-name,
    .step[data-step="result"] .result-card__why,
    .step[data-step="result"] .rec-removes,
    .step[data-step="result"] .rec-removes__title,
    .step[data-step="result"] .rec-benefits__title,
    .step[data-step="result"] .rec-tagline,
    .step[data-step="result"] .rec-interior figcaption,
    .step[data-step="result"] .result-card__sig,
    .step[data-step="result"] .result-card__sig-name,
    .step[data-step="result"] .result-card__disclaimer {
      text-align: center !important;
    }
    .step[data-step="result"] .result-card__why {
      max-width: 56ch;
      margin-left: auto;
      margin-right: auto;
    }
    /* Chips та highlights — по центру */
    .step[data-step="result"] .rec-highlights,
    .step[data-step="result"] .rec-removes__chips {
      justify-content: center !important;
    }
    /* Tagline БЕЗ бічної смужки — щоб композиція була симетрична */
    .step[data-step="result"] .rec-tagline {
      border-left: none !important;
      padding: 18px 22px !important;
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
    }
    /* Benefit cards — icon зверху, текст під ним */
    .step[data-step="result"] .rec-benefits {
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
    }
    .step[data-step="result"] .rec-benefit {
      flex-direction: column !important;
      align-items: center !important;
      text-align: center !important;
      gap: 12px;
      padding: 24px 18px;
    }
    .step[data-step="result"] .rec-benefit__text {
      text-align: center !important;
    }
    /* Signature: вертикально по центру */
    .step[data-step="result"] .result-card__sig {
      flex-direction: column !important;
      align-items: center !important;
      gap: 4px;
    }
    /* Disclaimer: icon зверху + текст під ним */
    .step[data-step="result"] .result-card__disclaimer {
      flex-direction: column !important;
      align-items: center !important;
      gap: 10px !important;
    }
  }

  /* Highlights chips під назвою */
  .rec-highlights {
    margin: 20px 0 32px;
    padding: 0;
    list-style: none;
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .rec-highlights li {
    display: inline-flex; align-items: center;
    padding: 8px 14px;
    background: var(--bg-soft);
    color: var(--navy);
    border-radius: 999px;
    font-size: 14px; font-weight: 600;
    border: 1px solid var(--line);
  }
  .rec-highlights li::before {
    content: ""; display: inline-block;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    margin-right: 8px;
  }
  @media (min-width: 600px) {
    .rec-highlights { gap: 10px; margin: 24px 0 36px; }
    .rec-highlights li { font-size: 14.5px; padding: 9px 16px; }
  }

  /* Bottom result footnote (disclaimer) */
  .result-footnote {
    margin: 24px 0 0;
    text-align: center;
    font-size: 13px;
    color: var(--ink-3);
    line-height: 1.5;
    padding: 0 12px;
  }

  .rec-removes {
    margin: 0 0 32px;
  }
  .rec-removes__title {
    font-size: 14px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 14px;
  }
  .rec-removes__chips {
    display: flex; flex-wrap: wrap; gap: 10px;
  }
  .rec-removes__chips span {
    display: inline-flex; align-items: center;
    padding: 10px 16px;
    background: var(--accent-50);
    color: var(--navy);
    border-radius: 999px;
    font-size: 15px; font-weight: 600;
    border: 1px solid color-mix(in oklab, var(--accent) 20%, transparent);
  }

  .rec-tagline {
    font-size: 16px; line-height: 1.6;
    color: var(--ink-2);
    margin: 0 0 36px;
    padding: 18px 22px;
    background: var(--bg-soft);
    border-radius: 14px;
    border-left: 3px solid var(--accent);
  }

  .rec-benefits__title {
    font-size: clamp(20px, 2.6vw, 24px); font-weight: 800; color: var(--navy);
    margin: 0 0 18px;
  }
  .rec-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0 0 36px;
  }
  @media (min-width: 600px) {
    .rec-benefits { grid-template-columns: 1fr 1fr; gap: 14px; }
  }
  .rec-benefit {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  }
  .rec-benefit:hover {
    border-color: color-mix(in oklab, var(--accent) 40%, transparent);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px -8px rgba(15, 40, 80, .12);
  }
  .rec-benefit__icon {
    flex: 0 0 auto; width: 44px; height: 44px;
    background: var(--accent-50);
    color: var(--accent-600);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
  }
  html[data-accent="turquoise"] .rec-benefit__icon { color: #1F6E78; }
  .rec-benefit__text {
    flex: 1; font-size: 15.5px; line-height: 1.5;
    color: var(--ink); font-weight: 600;
  }

  .rec-interior {
    margin: 0; padding: 0;
  }
  .rec-interior img {
    width: 100%; max-width: 540px;
    margin: 0 auto; display: block;
    aspect-ratio: 4/3;
    object-fit: cover; object-position: center;
    border-radius: var(--radius-lg);
    background: var(--bg-soft);
  }
  .rec-interior figcaption {
    margin: 14px 0 0;
    text-align: center;
    color: var(--ink-3);
    font-size: 14px;
  }

  /* Контакт-блок перед CTA */
  .result-contact {
    margin: 32px 0 0;
    padding: 28px 24px;
    background: linear-gradient(135deg, var(--navy-50) 0%, var(--accent-50) 100%);
    border-radius: var(--radius-lg);
    text-align: center;
  }
  .result-contact__lede {
    font-size: 15px; color: var(--ink-2);
    margin-bottom: 18px;
  }
  .result-contact__row {
    display: flex; flex-direction: column; gap: 12px;
    align-items: center; justify-content: center;
  }
  @media (min-width: 480px) {
    .result-contact__row { flex-direction: row; flex-wrap: wrap; gap: 14px; }
  }
  .result-contact__phone {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--navy);
    font-weight: 800; font-size: 17px;
    transition: border-color .2s ease, transform .2s ease;
    white-space: nowrap;
  }
  .result-contact__phone:hover {
    border-color: var(--navy);
    transform: translateY(-1px);
  }
  .result-contact__msg {
    display: flex; gap: 8px;
  }
  .result-contact__msg-btn {
    width: 44px; height: 44px;
    border-radius: 14px;
    background: #fff;
    color: var(--btn-color, var(--navy));
    border: 1px solid var(--line);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
  }
  .result-contact__msg-btn:hover {
    background: var(--btn-color, var(--navy));
    color: #fff;
    border-color: var(--btn-color, var(--navy));
    transform: translateY(-1px);
  }
  .result-contact__addr {
    margin-top: 16px;
    font-size: 14px;
    color: var(--ink-3);
  }

  /* Print: hide everything except the result card */
  @media print {
    @page { size: A4; margin: 12mm; }
    html, body { background: #fff !important; }
    body * { visibility: hidden !important; }
    .result-card, .result-card * { visibility: visible !important; }
    .result-card {
      position: absolute; left: 0; top: 0;
      width: 100%;
      box-shadow: none !important;
      border: none !important;
      margin: 0 !important;
      page-break-inside: avoid;
    }
    .progress, .meta, .nav, .step__eyebrow, .result-actions, .tweaks, header, footer { display: none !important; }
    .step h1 { display: none !important; }
    .result-card__head { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .result-card__specs, .result-card__next-item, .result-card__foot { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  }

  /* ─── contact form ─── */
  .form__row {
    display: grid; gap: 14px;
    grid-template-columns: 1fr;
  }
  @media (min-width: 560px) {
    .form__row { grid-template-columns: 1fr 1fr; }
  }
  .checkbox {
    display: flex; align-items: flex-start; gap: 10px;
    margin-top: 18px;
    font-size: 14px; color: var(--ink-2);
    cursor: pointer;
    line-height: 1.5;
  }
  .checkbox input { display: none; }
  .checkbox__box {
    width: 22px; height: 22px; border-radius: 6px;
    border: 1.5px solid var(--line-strong);
    flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    transition: all .15s ease;
    margin-top: 1px;
  }
  .checkbox input:checked + .checkbox__box {
    background: var(--accent); border-color: var(--accent);
    color: #08252A;
  }
  .checkbox input:checked + .checkbox__box::after {
    content: ""; width: 12px; height: 6px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg) translate(1px, -1px);
  }

  /* ─── thank you ─── */
  .thanks { text-align: center; padding: 20px 0 10px; }
  .thanks__art {
    width: 96px; height: 96px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: var(--accent-50);
    color: var(--navy);
    display: flex; align-items: center; justify-content: center;
  }
  .thanks__art svg { width: 44px; height: 44px; }

  /* ─── helper ─── */
  .sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }

  .answer-summary {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-top: 16px;
  }
  .chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.86);
    font-size: 12.5px; font-weight: 500;
    border: 1px solid rgba(255,255,255,.16);
  }

  /* tweaks panel (same as main page) */
  .tweaks {
    position: fixed; right: 18px; bottom: 18px; z-index: 70;
    background: #fff; border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 16px 40px -10px rgba(15,23,42,.25);
    padding: 16px; width: 240px;
    display: none; font-size: 14px;
  }
  .tweaks[data-open="true"] { display: block; }
  .tweaks__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
  .tweaks__title { font-weight: 800; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
  .tweaks__close { width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--line); background: #fff; display: inline-flex; align-items: center; justify-content: center; }
  .swatches { display: flex; gap: 8px; }
  .swatch { flex: 1; padding: 8px; border: 1.5px solid var(--line); background: #fff; border-radius: 10px; cursor: pointer; display: flex; flex-direction: column; gap: 4px; text-align: center; }
  .swatch[aria-pressed="true"] { border-color: var(--ink); }
  .swatch__dot { width: 100%; height: 22px; border-radius: 6px; }
  .swatch__name { font-size: 11px; font-weight: 600; color: var(--ink-2); }
  .tweaks__row > label { font-size: 12px; color: var(--ink-3); font-weight: 600; display: block; margin-bottom: 8px; }
