:root {
  --primary: #073b7a;
  --primary-dark: #052e61;
  --primary-light: #eaf3ff;
  --secondary: #009fe3;
  --secondary-dark: #007fb7;
  --accent: #f6a800;
  --danger: #c62828;
  --danger-light: #fff2f2;
  --success: #147d64;
  --success-light: #e8f7f2;
  --text: #172033;
  --muted: #667085;
  --border: #d7e0ea;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --background: #eef3f8;
  --shadow-sm: 0 4px 14px rgba(7, 59, 122, 0.08);
  --shadow-md: 0 14px 36px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 159, 227, 0.09), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, var(--background) 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
label,
select,
input[type="radio"],
input[type="checkbox"] {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.step:focus-visible,
.choice:focus-within,
.check:focus-within,
.consent:focus-within {
  outline: 3px solid rgba(0, 159, 227, 0.3);
  outline-offset: 2px;
}

.hidden {
  display: none !important;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 224, 234, 0.9);
  box-shadow: 0 3px 16px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: contain;
  padding: 4px;
  background: #fff;
  border: 1px solid #dce6f1;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  color: var(--primary);
  font-size: 0.98rem;
  line-height: 1.3;
}

.brand span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.79rem;
}

.shell {
  display: grid;
  grid-template-columns: minmax(250px, 290px) minmax(0, 1fr);
  gap: 24px;
  width: min(1320px, calc(100% - 32px));
  margin: 28px auto 48px;
}

.sidebar {
  position: sticky;
  top: 94px;
  align-self: start;
}

.progress-card,
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.progress-card {
  padding: 22px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--secondary-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.progress-ring {
  --progress: 0%;
  position: relative;
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  margin: 14px auto;
  border-radius: 50%;
  background: conic-gradient(var(--secondary) var(--progress), #e7edf4 0);
}

.progress-ring::after {
  content: "";
  position: absolute;
  inset: 8px;
  background: #fff;
  border-radius: inherit;
}

.progress-ring span {
  position: relative;
  z-index: 1;
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 900;
}

.progress-track {
  height: 8px;
  overflow: hidden;
  background: #e8edf3;
  border-radius: 999px;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: inherit;
  transition: width 300ms ease;
}

.progress-card > p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.steps {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.step {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 11px;
  padding: 12px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.step:hover {
  background: #f4f8fc;
  border-color: #dfebf5;
  transform: translateX(2px);
}

.step-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  color: var(--primary);
  background: #e9f2fb;
  border-radius: 50%;
}

.step-icon svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
}

.step b,
.step small {
  display: block;
}

.step b {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.3;
}

.step small {
  margin-top: 2px;
  font-size: 0.75rem;
  line-height: 1.35;
}

.step.active {
  background: linear-gradient(135deg, #eaf3ff, #effbff);
  border-color: #beddf3;
  box-shadow: inset 3px 0 0 var(--secondary);
}

.step.active .step-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.form-card {
  min-width: 0;
  overflow: hidden;
}

.intro {
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(140deg, rgba(234, 243, 255, 0.96), rgba(255, 255, 255, 0.98)),
    #fff;
  border-bottom: 1px solid #dce8f3;
}

.institutional-banner {
  display: block;
  width: 100%;
  max-height: 350px;
  margin-bottom: 22px;
  object-fit: cover;
  border: 1px solid #d8e4f2;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  color: var(--success);
  background: var(--success-light);
  border: 1px solid #bde7d9;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.intro h1 {
  max-width: 900px;
  margin: 12px 0 8px;
  color: var(--primary);
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.intro > p {
  max-width: 820px;
  margin: 0;
  color: #4c5a70;
  font-size: 1rem;
}

.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 850px;
  margin-top: 18px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #cfe7df;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(20, 125, 100, 0.06);
}

.privacy-note > span {
  flex: 0 0 auto;
  font-size: 1rem;
}

.privacy-note p {
  margin: 0;
  color: #536173;
  font-size: 0.88rem;
}

.privacy-details {
  max-width: 850px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

form {
  padding: clamp(22px, 4vw, 38px);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: stepIn 240ms ease;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-heading {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e7edf4;
}

.section-heading h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  line-height: 1.3;
}

.section-heading > p:last-child {
  max-width: 880px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.full {
  grid-column: 1 / -1;
}

.field {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

label,
legend {
  color: #243248;
  font-size: 0.91rem;
  font-weight: 750;
}

legend {
  padding: 0;
}

em {
  color: var(--danger);
  font-style: normal;
}

.optional {
  color: var(--muted);
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  margin-top: 7px;
  padding: 11px 13px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 11px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #9aa5b5;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #b8c9d9;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(0, 159, 227, 0.13);
}

input:disabled,
select:disabled,
textarea:disabled {
  color: #7a8799;
  background: #f0f3f7;
  cursor: not-allowed;
}

input.invalid,
select.invalid,
textarea.invalid {
  border-color: var(--danger);
  background: var(--danger-light);
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
}

.help {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
}

.error {
  display: block;
  min-height: 18px;
  margin-top: 4px;
  color: var(--danger);
  font-size: 0.77rem;
  font-weight: 600;
}

.fixed-field {
  margin-top: 7px;
  padding: 12px 13px;
  color: var(--primary);
  background: #f3f8fe;
  border: 1px solid #cbdced;
  border-radius: 11px;
  font-weight: 750;
}

.institutional-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.institutional-note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 1px;
  stroke: var(--secondary);
}

.choice-row,
.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 9px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.choice,
.check {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  gap: 9px;
  padding: 10px 12px;
  color: #344258;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 550;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.choice:hover,
.check:hover {
  border-color: #9dcbe5;
  box-shadow: 0 4px 12px rgba(0, 159, 227, 0.08);
  transform: translateY(-1px);
}

.choice input,
.check input {
  width: 18px;
  height: 18px;
  min-height: 0;
  flex: 0 0 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--secondary);
}

.choice:has(input:checked),
.check:has(input:checked) {
  color: var(--primary);
  background: #ebf7fd;
  border-color: var(--secondary);
  box-shadow: inset 0 0 0 1px rgba(0, 159, 227, 0.15);
}

.question-card,
.conditional {
  margin-top: 22px;
  padding: clamp(16px, 3vw, 22px);
  background: #fafcfe;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.conditional {
  background: linear-gradient(180deg, #fbfdff, #f6f9fc);
  border-left: 4px solid var(--secondary);
}

.conditional h3 {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 1.05rem;
}

.scale-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.scale-legend span {
  padding: 6px 9px;
  color: #516074;
  background: #eef3f7;
  border: 1px solid #dfe7ef;
  border-radius: 999px;
  font-size: 0.75rem;
}

.matrix-section {
  margin: 26px 0;
}

.matrix-section h3 {
  margin: 0 0 11px;
  color: var(--primary);
  font-size: 1.05rem;
}

.matrix {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  background: #fff;
}

.matrix th,
.matrix td {
  padding: 11px 9px;
  border-right: 1px solid #e5ebf1;
  border-bottom: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
}

.matrix th:last-child,
.matrix td:last-child {
  border-right: 0;
}

.matrix tr:last-child td {
  border-bottom: 0;
}

.matrix th {
  color: #405168;
  background: #f0f5f9;
  font-size: 0.75rem;
  font-weight: 800;
}

.matrix th:first-child,
.matrix td:first-child {
  text-align: left;
}

.matrix td:first-child {
  width: 52%;
  color: #344258;
  font-size: 0.86rem;
  font-weight: 650;
}

.matrix tbody tr:hover td {
  background: #f9fcff;
}

.matrix input {
  width: 19px;
  height: 19px;
  min-height: 0;
  margin: 0;
  padding: 0;
  accent-color: var(--secondary);
  cursor: pointer;
}

.rating-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.rating-row label {
  display: grid;
  place-items: center;
  min-height: 70px;
  padding: 9px 4px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.rating-row label:hover {
  border-color: #9dcbe5;
  transform: translateY(-1px);
}

.rating-row label:has(input:checked) {
  color: var(--primary);
  background: #eaf7fd;
  border-color: var(--secondary);
}

.rating-row input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 0 0 4px;
  padding: 0;
  accent-color: var(--secondary);
}

.rating-row span,
.rating-row small {
  display: block;
}

.rating-row span {
  font-weight: 800;
}

.rating-row small {
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.2;
}

.summary {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 13px 15px;
  border-bottom: 1px solid #e7edf3;
}

.summary-item:last-child {
  border-bottom: 0;
}

.summary-item span {
  color: var(--muted);
}

.summary-item strong {
  max-width: 60%;
  color: #27364b;
  text-align: right;
  overflow-wrap: anywhere;
}

.consent-group {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 15px 16px;
  color: #344258;
  background: #fafcfe;
  border: 1px solid var(--border);
  border-radius: 13px;
  cursor: pointer;
  font-weight: 520;
}

.consent:hover {
  border-color: #aacce0;
  background: #f7fbfe;
}

.consent input {
  width: 19px;
  height: 19px;
  min-height: 0;
  flex: 0 0 19px;
  margin: 3px 0 0;
  padding: 0;
  accent-color: var(--secondary);
}

.success-preview {
  margin-top: 24px;
  padding: 26px 18px;
  text-align: center;
  background: linear-gradient(180deg, #f1fbf7, #fff);
  border: 1px solid #bce4d7;
  border-radius: 16px;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 12px;
  color: var(--success);
  background: #dff5ec;
  border-radius: 50%;
  font-size: 1.9rem;
  font-weight: 900;
}

.success-preview h3 {
  margin: 0;
  color: var(--success);
}

.success-preview p {
  margin: 7px 0 0;
  color: var(--muted);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn:disabled {
  opacity: 0.62;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #07539f);
  box-shadow: 0 8px 20px rgba(7, 59, 122, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 10px 24px rgba(7, 59, 122, 0.24);
}

.btn-secondary {
  color: var(--text);
  background: #e9eef4;
  border-color: #d9e1e9;
}

.btn-secondary:hover {
  background: #dde6ef;
}

.btn-ghost {
  color: var(--primary);
  background: transparent;
  border-color: #b9d0e6;
}

.btn-ghost:hover {
  background: var(--primary-light);
  border-color: #8db5d9;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  max-width: min(390px, calc(100vw - 40px));
  padding: 13px 16px;
  color: #fff;
  background: #172033;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .shell {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 18px;
  }

  .step {
    padding: 10px;
  }

  .step small {
    display: none;
  }

  .matrix td:first-child {
    width: 46%;
  }
}

@media (max-width: 860px) {
  .topbar {
    position: relative;
  }

  .shell {
    display: block;
    width: min(100% - 24px, 900px);
    margin-top: 16px;
  }

  .sidebar {
    position: static;
    margin-bottom: 16px;
  }

  .progress-card {
    padding: 16px;
  }

  .progress-ring {
    width: 72px;
    height: 72px;
    margin: 8px auto 12px;
  }

  .steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .step {
    justify-content: center;
    min-width: 82px;
    padding: 9px 5px;
    text-align: center;
  }

  .step > div {
    display: none;
  }

  .step-icon {
    margin: auto;
  }

  .step.active {
    box-shadow: inset 0 -3px 0 var(--secondary);
  }
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    padding: 10px 12px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand strong {
    font-size: 0.84rem;
  }

  .brand span {
    display: none;
  }

  .btn-ghost {
    min-height: 40px;
    padding: 9px 11px;
    font-size: 0.78rem;
  }

  .shell {
    width: calc(100% - 16px);
    margin-bottom: 28px;
  }

  .progress-card,
  .form-card {
    border-radius: 16px;
  }

  .intro,
  form {
    padding: 20px 16px;
  }

  .institutional-banner {
    max-height: 180px;
    border-radius: 13px;
  }

  .intro h1 {
    font-size: 1.55rem;
  }

  .intro > p {
    font-size: 0.91rem;
  }

  .privacy-note {
    padding: 12px;
  }

  .grid.two,
  .choice-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .choice-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .question-card,
  .conditional {
    padding: 16px 13px;
  }

  .matrix-section {
    margin: 22px 0;
  }

  .matrix,
  .matrix tbody,
  .matrix tr,
  .matrix td {
    display: block;
    width: 100%;
  }

  .matrix thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .matrix {
    border: 0;
    background: transparent;
  }

  .matrix tr {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
    margin-bottom: 13px;
    padding: 13px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 13px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  }

  .matrix td {
    padding: 8px 4px;
    border: 1px solid #e0e7ee;
    border-radius: 9px;
    text-align: center;
  }

  .matrix td:first-child {
    grid-column: 1 / -1;
    width: auto;
    padding: 0 0 10px;
    border: 0;
    border-bottom: 1px solid #e5ebf1;
    border-radius: 0;
    text-align: left;
    font-size: 0.88rem;
  }

  .matrix td:not(:first-child)::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
  }

  .matrix tbody tr:hover td {
    background: inherit;
  }

  .rating-row {
    grid-template-columns: repeat(5, minmax(48px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .rating-row label {
    min-width: 54px;
  }

  .summary-item {
    display: block;
  }

  .summary-item strong {
    display: block;
    max-width: none;
    margin-top: 4px;
    text-align: left;
  }

  .form-actions {
    position: sticky;
    bottom: 0;
    z-index: 20;
    margin: 24px -16px -20px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(12px);
  }

  .form-actions .btn {
    flex: 1;
    padding-inline: 12px;
  }
}

@media (max-width: 460px) {
  .choice-row {
    grid-template-columns: 1fr;
  }

  .scale-legend span {
    width: 100%;
  }

  .toast {
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  body {
    background: #fff;
  }

  .topbar,
  .sidebar,
  .form-actions,
  .toast,
  .btn,
  .privacy-note,
  .privacy-details {
    display: none !important;
  }

  .shell {
    display: block;
    width: 100%;
    margin: 0;
  }

  .form-card {
    border: 0;
    box-shadow: none;
  }

  .intro,
  form {
    padding: 16px;
  }

  .form-step {
    display: block !important;
    break-inside: avoid;
    margin-bottom: 28px;
  }

  .conditional.hidden {
    display: none !important;
  }
}