:root {
  /* Logo colors */
  --primary: #3074F3;
  --primary-600: #2560d9;
  --primary-700: #1e4fb3;
  --primary-50: #eaf2fe;
  --primary-100: #d4e4fd;
  --accent-sky: #9FD4EF;
  --neutral: #A0A4AD;

  --text: #0f1e36;
  --text-muted: #5b6573;
  --border: #e3e8ef;
  --border-strong: #cfd6e0;
  --bg-base: #f3f6fb;
  --surface: #ffffff;
  --danger: #ef4444;
  --success: #10b981;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-lg: 0 24px 60px rgba(30, 79, 179, 0.08);
  --shadow-md: 0 4px 20px rgba(30, 79, 179, 0.06);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  background: linear-gradient(180deg, #f3f6fb 0%, #eef3fa 50%, #e8eef7 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ===== Animated background blobs ===== */
.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  animation: float 18s ease-in-out infinite;
}
.blob-1 { width: 480px; height: 480px; background: #9FD4EF; top: -160px; left: -120px; }
.blob-2 { width: 420px; height: 420px; background: #3074F3; top: 30%; right: -160px; animation-delay: -6s; opacity: 0.2; }
.blob-3 { width: 380px; height: 380px; background: #cbd5e1; bottom: -140px; left: 25%; animation-delay: -12s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* ===== Topbar ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(207, 214, 224, 0.5);
}
.topbar__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.85rem 2rem;
}
.topbar__brand {
  display: flex;
  align-items: center;
}
.topbar__brand img { height: 32px; width: auto; display: block; }
.topbar__nav {
  display: flex;
  gap: 0.25rem;
  margin-left: 1rem;
  flex: 1;
}
.topbar__burger {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
}
.topbar__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.topbar__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.topbar__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.topbar__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.topbar__link {
  padding: 0.5rem 0.9rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
}
.topbar__link:hover {
  background: rgba(48, 116, 243, 0.06);
  color: var(--primary);
}
.topbar__link.is-active {
  background: var(--primary-50);
  color: var(--primary);
}
.topbar__link sup {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  line-height: 14px;
  min-width: 14px;
  height: 14px;
  padding: 0 4px;
  margin-left: 4px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  text-align: center;
  vertical-align: 3px;
  top: 0;
  position: relative;
}
.topbar__user {
  position: relative;
}
.topbar__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent-sky));
  color: #fff;
  border: 2px solid #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(48, 116, 243, 0.2);
}
.topbar__avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(48, 116, 243, 0.35);
}
.topbar__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(15, 30, 54, 0.12);
  padding: 0.35rem;
  animation: menuIn 0.18s ease-out;
}
@keyframes menuIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.topbar__menu[hidden] { display: none; }
.topbar__menu-head {
  padding: 0.75rem 0.9rem 0.85rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.topbar__menu-head strong { font-size: 13px; color: var(--text); }
.topbar__menu-head small { font-size: 11px; color: var(--primary); font-weight: 600; }
.topbar__menu-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.55rem 0.9rem;
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  border: none;
  background: none;
  font-family: inherit;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
}
.topbar__menu-item:hover { background: var(--bg-base); }
.topbar__menu hr { border: none; border-top: 1px solid var(--border); margin: 0.25rem 0; }
.topbar__menu-item--danger { color: var(--danger); }
.topbar__menu-item--danger:hover { background: #fef2f2; }

/* ===== Wizard container ===== */
.wizard {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}

.wizard__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 0.25rem 2rem;
  gap: 1rem;
}
.wizard__kicker {
  margin: 0 0 0.35rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}
.wizard__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.wizard__tag {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

/* ===== Progress bar ===== */
.progress {
  margin-bottom: 1.5rem;
  padding: 0 0.25rem;
}
.progress__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  position: relative;
}
.progress__steps::before,
.progress__steps::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  margin: 0 calc(100% / 10);
  z-index: 0;
  border-radius: 2px;
}
.progress__steps::before {
  background: var(--border);
}
.progress__steps::after {
  background: linear-gradient(90deg, var(--primary), var(--accent-sky));
  right: auto;
  width: calc((100% - 2 * (100% / 10)) * var(--fill, 0) / 100);
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.progress__steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  min-width: 0;
}
.progress__dot {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
  background: #fff;
  border: 2px solid var(--border-strong);
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.progress__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.progress__steps li.is-done .progress__dot {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.progress__steps li.is-active .progress__dot {
  background: #fff;
  border-color: var(--primary);
  color: var(--primary);
  transform: scale(1.12);
  box-shadow: 0 0 0 5px rgba(48, 116, 243, 0.15);
}
.progress__steps li.is-active .progress__label {
  color: var(--primary);
  font-weight: 600;
}

/* ===== Glass card (scoped to avoid Tabler .card conflict) ===== */
.wiz-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 2.75rem 3rem;
  position: relative;
}

/* ===== Steps / animation ===== */
.step {
  animation: stepIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes stepIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.step[hidden] { display: none; }
.step__title {
  margin: 0 0 0.5rem;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.step__subtitle {
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 15px;
}

/* ===== Form fields ===== */
.field {
  margin-bottom: 1.4rem;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.req { color: var(--danger); margin-left: 2px; }

.wiz-card input[type="text"],
.wiz-card input[type="url"],
.wiz-card input[type="email"],
.wiz-card textarea,
.wiz-card select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}
.wiz-card input:focus,
.wiz-card textarea:focus,
.wiz-card select:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(48, 116, 243, 0.15);
}
.wiz-card input::placeholder,
.wiz-card textarea::placeholder {
  color: #94a3b8;
}
.wiz-card textarea { resize: vertical; min-height: 80px; }

.wiz-card select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%235b6573' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field__error {
  display: block;
  color: var(--danger);
  font-size: 12px;
  font-weight: 500;
  margin-top: 0.35rem;
  min-height: 16px;
}
.field__hint {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 0.35rem;
}
.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: var(--danger);
  background: #fef2f2;
}

/* ===== Choice cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.85rem;
}
.cards--compact {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.choice-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 0.85rem;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.choice-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-sky);
  box-shadow: var(--shadow-md);
}
.choice-card.is-selected {
  border-color: var(--primary);
  background: var(--primary-50);
  box-shadow: 0 0 0 3px rgba(48, 116, 243, 0.15);
}
.choice-card__emoji {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.choice-card__title {
  font-size: 13px;
  font-weight: 600;
}
.choice-card__desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ===== Radio pills ===== */
.radio-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.radio-pill {
  flex: 1;
  min-width: 140px;
  cursor: pointer;
  position: relative;
}
.radio-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-pill span {
  display: block;
  padding: 0.7rem 1rem;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.radio-pill input:checked + span {
  background: var(--primary-50);
  border-color: var(--primary);
  color: var(--primary-700);
}

/* ===== FAQ list ===== */
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 0.6rem; }
.faq-item {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.5rem;
  align-items: start;
}
.faq-item input { padding: 0.6rem 0.75rem; font-size: 13px; }
.faq-item__remove {
  width: 38px;
  height: 40px;
  border: 1.5px solid var(--border);
  background: #fff;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-muted);
  font-size: 16px;
  transition: all 0.2s;
}
.faq-item__remove:hover { background: #fee2e2; color: var(--danger); border-color: #fecaca; }

/* ===== Tabs ===== */
.tabs {
  display: flex;
  gap: 0.25rem;
  border-bottom: 1.5px solid var(--border);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.tab {
  padding: 0.7rem 1.1rem;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: -1.5px;
}
.tab:hover { color: var(--primary); }
.tab.is-active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 600;
}
.tab-pane { display: none; animation: stepIn 0.3s ease-out; }
.tab-pane.is-active { display: block; }

/* ===== Sources list ===== */
.sources-count {
  display: inline-block;
  min-width: 22px;
  padding: 1px 7px;
  font-size: 11px;
  font-weight: 600;
  background: var(--primary-50);
  color: var(--primary);
  border-radius: 999px;
  margin-left: 0.35rem;
  text-align: center;
}
.sources-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sources-empty {
  margin: 0;
  padding: 1.25rem;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius-sm);
}
.source-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
}
.source-item:hover { border-color: var(--accent-sky); }
.source-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 18px;
  background: var(--primary-50);
  flex-shrink: 0;
}
.source-item__body { flex: 1; min-width: 0; }
.source-item__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.source-item__meta {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.source-item__remove {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  color: var(--text-muted);
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s;
  flex-shrink: 0;
}
.source-item__remove:hover { background: #fee2e2; color: var(--danger); }

/* ===== Progress clickable ===== */
.progress__steps li { cursor: pointer; }
.progress__steps li.is-locked { cursor: not-allowed; opacity: 0.6; }
.progress__steps li:not(.is-locked):hover .progress__dot {
  border-color: var(--primary);
  color: var(--primary);
}

/* ===== Upload zone ===== */
.upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 2rem 1rem;
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.upload-zone:hover {
  border-color: var(--primary);
  background: var(--primary-50);
}
.upload-zone__icon { font-size: 32px; }
.upload-zone__text { font-size: 13px; font-weight: 500; }
.upload-zone__files { font-size: 12px; color: var(--text-muted); }

/* ===== Color picker ===== */
.color-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
input[type="color"] {
  width: 56px;
  height: 44px;
  padding: 2px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
}
.color-hex {
  max-width: 140px;
  font-family: 'SF Mono', Monaco, monospace;
  text-transform: uppercase;
}

/* ===== Position preview ===== */
.pos-preview {
  width: 56px;
  height: 36px;
  background: #f1f5f9;
  border-radius: 6px;
  position: relative;
  margin-bottom: 0.25rem;
}
.pos-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}
.pos-dot--br { bottom: 4px; right: 4px; }
.pos-dot--bl { bottom: 4px; left: 4px; }

/* ===== Widget preview ===== */
.preview-box {
  position: relative;
  height: 180px;
  background: repeating-linear-gradient(45deg, #f8fafc, #f8fafc 10px, #eef3fa 10px, #eef3fa 20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.preview-page {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.preview-widget {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem 0.7rem 0.7rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: default;
  box-shadow: 0 8px 24px rgba(48, 116, 243, 0.35);
  transition: all 0.3s;
}
.preview-widget.is-left { right: auto; left: 14px; }

/* ===== Summary & snippet ===== */
.summary {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem 1.75rem;
}
.summary__item { display: flex; flex-direction: column; gap: 2px; }
.summary__key { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.summary__val { font-size: 14px; font-weight: 500; word-break: break-word; }

.snippet {
  position: relative;
  background: #0b1a33;
  border-radius: var(--radius);
  padding: 1.4rem 1.1rem;
  overflow: hidden;
}
.snippet pre {
  margin: 0;
  overflow-x: auto;
  font-family: 'SF Mono', Monaco, 'Courier New', monospace;
  font-size: 12.5px;
  line-height: 1.6;
  color: #cfe0fc;
  white-space: pre;
}
.snippet code { color: inherit; background: none; }
.snippet__copy {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
}
code {
  background: rgba(48, 116, 243, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12.5px;
  font-family: 'SF Mono', Monaco, monospace;
  color: var(--primary-700);
}

/* ===== Buttons (scoped to avoid Tabler .btn conflict) ===== */
.wiz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.wiz-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.wiz-btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.wiz-btn--primary:hover:not(:disabled) {
  background: var(--primary-600);
  border-color: var(--primary-600);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(48, 116, 243, 0.3);
}
.wiz-btn--ghost {
  background: #fff;
  color: var(--text);
  border-color: var(--border-strong);
}
.wiz-btn--ghost:hover:not(:disabled) {
  background: var(--primary-50);
  border-color: var(--primary);
  color: var(--primary);
}
.wiz-btn--sm { padding: 0.5rem 0.9rem; font-size: 13px; }

/* ===== Wizard nav ===== */
.wizard__nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.wizard__nav .btn--ghost.is-hidden { visibility: hidden; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .wizard { padding: 1.75rem 1.25rem 3rem; }
  .card { padding: 2rem 1.75rem; }
  .topbar__inner { padding: 0.75rem 1.25rem; gap: 1rem; }
  .topbar__nav { gap: 0; }
}
@media (max-width: 640px) {
  .wizard { padding: 1.25rem 0.75rem 2.5rem; }
  .card { padding: 1.5rem 1.25rem; border-radius: 20px; }
  .wizard__title { font-size: 22px; }
  .step__title { font-size: 20px; }
  .grid-2 { grid-template-columns: 1fr; }
  .progress__label { display: none; }
  .faq-item { grid-template-columns: 1fr; }
  .faq-item__remove { width: 100%; height: 36px; }
  .wizard__header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .summary { grid-template-columns: 1fr; }
  .topbar__inner { padding: 0.6rem 1rem; gap: 0.5rem; flex-wrap: wrap; }
  .topbar__burger { display: inline-flex; }
  .topbar__nav {
    display: none;
    order: 3;
    flex-basis: 100%;
    margin-left: 0;
    flex-direction: column;
    gap: 2px;
    padding: 0.5rem 0;
    border-top: 1px solid var(--border);
  }
  .topbar.is-open .topbar__nav { display: flex; }
  .topbar__link { padding: 0.7rem 0.9rem; }
}
