:root {
  color-scheme: light dark;
  --bg: #fbfbfa;
  --ink: #111111;
  --muted: #5e5d58;
  --line: #dedbd2;
  --soft: #f1eee8;
  --panel: #ffffff;
  --accent: #111111;
  --button-ink: #ffffff;
  --crab: #ff6b45;
  --crab-dark: #d84b2d;
  --crab-soft: #ff9676;
  --success: #167848;
  --danger: #b3261e;
  --shadow: 0 28px 70px rgba(20, 20, 20, .10);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f0f0e;
    --ink: #f7f5ef;
    --muted: #b9b4a9;
    --line: #34312b;
    --soft: #191816;
    --panel: #151412;
    --accent: #f7f5ef;
    --button-ink: #111111;
    --crab: #ff7857;
    --crab-dark: #d45437;
    --crab-soft: #ff9d84;
    --success: #6bd69b;
    --danger: #ff8a80;
    --shadow: 0 28px 70px rgba(0, 0, 0, .45);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header,
main,
.site-footer {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.site-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .10);
}

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

.brand strong {
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .82fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: 64px 0 54px;
}

.hero-copy {
  min-width: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  max-width: 760px;
  font-size: clamp(44px, 6.3vw, 78px);
  line-height: 1.03;
  font-weight: 820;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

.hero-lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions,
.wizard-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 0 18px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 720;
  line-height: 1;
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--button-ink);
}

.button.ghost:hover {
  border-color: var(--ink);
}

.button:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.proof-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 38px 0 0;
}

.proof-row div {
  min-width: 160px;
}

.proof-row dt {
  color: var(--ink);
  font-size: 18px;
  font-weight: 780;
}

.proof-row dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.mascot-stage {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.mascot-ring {
  position: absolute;
  inset: 32px 0 auto auto;
  width: 74%;
  height: 74%;
  border: 1px solid var(--line);
  border-radius: 44% 56% 58% 42%;
  transform: rotate(-7deg);
}

.mascot-note {
  position: absolute;
  top: 44px;
  right: 10px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  background: var(--panel);
  color: var(--muted);
  box-shadow: var(--shadow);
  font-size: 12px;
}

.crab {
  width: min(390px, 86vw);
  height: 315px;
  position: relative;
  transform-style: preserve-3d;
}

.shell {
  position: absolute;
  left: 50%;
  top: 112px;
  z-index: 3;
  width: 252px;
  height: 154px;
  transform: translateX(-50%);
  border: 1px solid rgba(90, 39, 25, .22);
  border-radius: 48% 48% 42% 42%;
  background:
    radial-gradient(circle at 36% 30%, rgba(255, 255, 255, .42) 0 12%, transparent 13%),
    linear-gradient(145deg, var(--crab-soft), var(--crab) 48%, var(--crab-dark));
  box-shadow: var(--shadow), inset 0 18px 34px rgba(255, 255, 255, .28);
}

.belly {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 118px;
  height: 54px;
  transform: translateX(-50%);
  border: 1px solid rgba(130, 62, 42, .16);
  border-radius: 50% 50% 44% 44%;
  background: rgba(255, 238, 225, .88);
}

.eye-stalk {
  position: absolute;
  top: 68px;
  z-index: 4;
  width: 10px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(var(--crab-soft), var(--crab));
  transform-origin: bottom center;
}

.eye-stalk.left {
  left: 146px;
  transform: rotate(-10deg);
}

.eye-stalk.right {
  right: 146px;
  transform: rotate(10deg);
}

.eye {
  position: absolute;
  top: -30px;
  left: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  transform: translateX(-50%);
  border: 1px solid #d9d6ce;
  border-radius: 50%;
  background: #fbfbf7;
  box-shadow: inset 0 4px 12px rgba(0, 0, 0, .10), 0 10px 18px rgba(0, 0, 0, .10);
}

.pupil {
  width: 24px;
  height: 24px;
  transform: translate(var(--eye-x, 0), var(--eye-y, 0));
  transition: transform 80ms ease-out;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #ffffff 0 9%, #121212 10% 100%);
}

.smile {
  position: absolute;
  left: 50%;
  top: 174px;
  z-index: 5;
  width: 58px;
  height: 30px;
  transform: translateX(-50%);
  border-bottom: 4px solid rgba(62, 28, 20, .72);
  border-radius: 0 0 50px 50px;
}

.claw {
  position: absolute;
  top: 102px;
  z-index: 2;
  width: 104px;
  height: 104px;
}

.claw.left {
  left: 5px;
  transform: rotate(-22deg);
}

.claw.right {
  right: 5px;
  transform: rotate(22deg) scaleX(-1);
}

.arm {
  position: absolute;
  right: 0;
  bottom: 8px;
  width: 92px;
  height: 24px;
  transform: rotate(24deg);
  transform-origin: right center;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--crab-dark), var(--crab));
}

.pinch {
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(90, 39, 25, .20);
  border-radius: 48% 48% 42% 42%;
  background: linear-gradient(145deg, var(--crab-soft), var(--crab));
  box-shadow: inset 0 12px 20px rgba(255, 255, 255, .22);
}

.pinch::before,
.pinch::after {
  content: "";
  position: absolute;
  top: -16px;
  width: 42px;
  height: 38px;
  border: 1px solid rgba(90, 39, 25, .18);
  border-radius: 42px 42px 10px 42px;
  background: var(--crab);
}

.pinch::before {
  left: 4px;
  transform: rotate(-24deg);
}

.pinch::after {
  right: -7px;
  transform: rotate(58deg);
  background: var(--crab-dark);
}

.leg {
  position: absolute;
  top: 213px;
  z-index: 1;
  width: 70px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--crab-dark), var(--crab));
}

.leg.l1 { left: 65px; transform: rotate(20deg); }
.leg.l2 { left: 56px; top: 245px; transform: rotate(-12deg); }
.leg.l3 { left: 93px; top: 270px; transform: rotate(-34deg); }
.leg.r1 { right: 65px; transform: rotate(-20deg); }
.leg.r2 { right: 56px; top: 245px; transform: rotate(12deg); }
.leg.r3 { right: 93px; top: 270px; transform: rotate(34deg); }

.mini-panel {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: min(330px, 82%);
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: color-mix(in srgb, var(--panel) 94%, transparent);
  box-shadow: var(--shadow);
}

.mini-panel strong {
  font-size: 13px;
}

.mini-panel span {
  height: 9px;
  border-radius: 999px;
  background: var(--soft);
}

.mini-panel span:nth-child(2) { width: 90%; }
.mini-panel span:nth-child(3) { width: 72%; }
.mini-panel span:nth-child(4) { width: 54%; }

section {
  scroll-margin-top: 96px;
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(0, .78fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2,
.engineering h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-heading p,
.engineering p,
.contact-section p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  background: var(--panel);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.25;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-hero {
  min-height: auto;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .7fr);
}

.service-hero h1 {
  font-size: clamp(42px, 5vw, 68px);
}

.service-kicker {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.service-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  background: var(--panel);
}

.service-panel h2,
.service-panel h3 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.25;
}

.service-panel p,
.service-panel li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.service-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.service-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(320px, .45fr);
  gap: 18px;
  align-items: start;
}

.service-section-grid,
.process-grid,
.faq-grid {
  display: grid;
  gap: 14px;
}

.service-section-grid {
  grid-template-columns: repeat(2, 1fr);
}

.process-grid {
  grid-template-columns: repeat(5, 1fr);
}

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

.process-step {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  background: var(--panel);
}

.process-step span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.process-step strong {
  display: block;
  margin-bottom: 8px;
}

.process-step p,
.faq-item p {
  margin-bottom: 0;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  background: var(--panel);
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: 17px;
}

.engineering {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(380px, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.engineering h2 {
  max-width: 620px;
  margin-bottom: 20px;
}

.stack-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.stack-list span {
  min-height: 48px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 14px;
  background: var(--panel);
  color: var(--muted);
  font-size: 14px;
}

.wizard,
.estimate-launcher,
.estimate-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.wizard {
  overflow: hidden;
}

.estimator-cta {
  display: flex;
  justify-content: center;
  padding: 14px 0 0;
}

.estimate-launcher {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  padding: 20px;
}

.estimate-launcher h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

.estimate-launcher p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.discount-badge {
  width: fit-content;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--ink);
  color: var(--button-ink);
  font-size: 12px;
  font-weight: 780;
}

.wizard-head {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
}

.wizard-head strong,
.wizard-head span {
  display: block;
}

.wizard-head strong {
  font-size: 16px;
}

.wizard-head span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.progress {
  width: 160px;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--soft);
}

.progress span {
  display: block;
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: var(--ink);
  transition: width .2s ease;
}

.wizard-body {
  padding: 22px;
}

.question-title {
  margin-bottom: 18px;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 780;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.choice {
  min-height: 96px;
  display: block;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 15px;
  background: color-mix(in srgb, var(--panel) 86%, var(--soft));
  color: var(--ink);
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice b,
.choice span {
  display: block;
}

.choice b {
  margin-bottom: 7px;
  font-size: 15px;
  line-height: 1.25;
}

.choice span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.choice:has(input:checked) {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--button-ink);
}

.choice:has(input:checked) span {
  color: inherit;
  opacity: .72;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field-group {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 15px;
  background: color-mix(in srgb, var(--panel) 86%, var(--soft));
}

.field-group > strong {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
}

.toggle-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.toggle-row:first-of-type {
  margin-top: 0;
}

.toggle-row input {
  margin-top: 3px;
  accent-color: var(--ink);
}

.wizard-actions {
  justify-content: space-between;
  margin-top: 22px;
}

.estimate-panel {
  padding: 20px;
}

.estimate-modal[hidden] {
  display: none;
}

.estimate-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, .48);
  backdrop-filter: blur(12px);
}

.estimate-dialog {
  position: relative;
  width: min(880px, 100%);
}

.estimate-shell {
  display: grid;
  gap: 16px;
}

.estimate-shell .wizard,
.estimate-shell .estimate-panel,
.estimate-shell .contact-form {
  width: 100%;
}

.wizard[hidden],
.estimate-panel[hidden],
.estimate-contact[hidden] {
  display: none;
}

.estimate-modal .estimate-panel,
.estimate-modal .wizard,
.estimate-modal .contact-form {
  position: static;
  max-height: calc(100vh - 40px);
  overflow: auto;
}

.estimate-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

body.modal-open {
  overflow: hidden;
}

.estimate-top {
  display: grid;
  gap: 7px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.estimate-top span,
.estimate-metrics span {
  color: var(--muted);
  font-size: 13px;
}

.estimate-top strong {
  font-size: clamp(24px, 8.5vw, 34px);
  line-height: 1;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.estimate-top del {
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
  line-height: 1;
  text-decoration-thickness: 2px;
}

.estimate-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.estimate-metrics div {
  border-radius: 10px;
  padding: 13px;
  background: var(--soft);
}

.estimate-metrics strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

.line-items {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.line-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  font-size: 13px;
}

.line-item span:first-child {
  color: var(--muted);
}

.line-item span:last-child {
  text-align: right;
  font-weight: 720;
}

.price-stack {
  display: grid;
  gap: 3px;
  justify-items: end;
  text-align: right;
  white-space: nowrap;
}

.price-stack del {
  color: var(--muted);
  font-size: 12px;
  font-weight: 520;
  text-decoration-thickness: 2px;
}

.price-stack strong {
  font-weight: 780;
}

.estimate-notes {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.full-button {
  width: 100%;
  margin-top: 16px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(420px, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.contact-section h2 {
  margin-bottom: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.estimate-contact h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 11px 12px;
  background: var(--bg);
  color: var(--ink);
  outline: none;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
}

.captcha-row {
  grid-template-columns: minmax(130px, auto) minmax(90px, 1fr) auto;
  align-items: center;
}

.captcha-row span {
  color: var(--ink);
  font-weight: 720;
}

.captcha-row .button {
  min-height: 41px;
  white-space: nowrap;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: flex-start;
}

.consent input {
  width: auto;
  margin-top: 2px;
  accent-color: var(--ink);
}

.hp-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.site-footer {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer a:hover {
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

@media (max-width: 920px) {
  .site-header,
  main,
  .site-footer {
    width: min(100vw - 28px, 1180px);
  }

  .nav {
    display: none;
  }

  .hero,
  .service-hero,
  .engineering,
  .service-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .mascot-stage {
    order: -1;
    min-height: 390px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .service-section-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .estimate-panel {
    position: static;
  }

  .estimate-launcher {
    position: static;
  }
}

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .service-hero h1 {
    font-size: 36px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .proof-row,
  .site-footer {
    display: grid;
  }

  .mini-panel,
  .mascot-note {
    display: none;
  }

  .crab {
    transform: scale(.84);
  }

  section {
    padding: 54px 0;
  }

  .service-grid,
  .service-section-grid,
  .process-grid,
  .faq-grid,
  .choice-grid,
  .field-grid,
  .stack-list,
  .estimate-metrics {
    grid-template-columns: 1fr;
  }

  .captcha-row {
    grid-template-columns: 1fr;
  }

  .question-title {
    font-size: 24px;
  }

  .wizard-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .progress {
    width: 100%;
  }
}
