/* =========================================================
   Strang Anlagen-Konfigurator — overrides
   No cream defaults. Navy-Deep + white only.
   Sharp corners. No italic. No editorial.
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #ffffff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, input, select, textarea { font: inherit; color: inherit; }

/* ============== APP SHELL ============================== */
/* The site chrome (utility-bar + header + ribbon + footer) is
   loaded from the DS verbatim. The konfigurator tool lives BETWEEN
   the ribbon and the footer. Site header is sticky at z-index 40
   (88px tall) — sidebar sticks below it. */
.shell {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: calc(100vh - 88px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

/* ============== LEFT: Navy-Deep sticky sidebar =========== */
.side {
  background: var(--navy-900);
  color: var(--cream);
  padding: 32px 32px 28px;
  display: flex; flex-direction: column; gap: 28px;
  position: sticky; top: 88px;
  max-height: calc(100vh - 88px);
  overflow-y: auto;
  align-self: start;
  border-right: 1px solid var(--navy-900);
  z-index: 1;
}
.side .logo-row { display: flex; align-items: center; gap: 12px; }
.side .logo-chip {
  width: 44px; height: 44px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  padding: 6px;
}
.side .logo-chip img { width: 100%; height: 100%; object-fit: contain; }
.side .brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--cream);
  white-space: nowrap;
}
.side .brand-sub {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(250,247,242,.55); font-weight: 700; margin-top: 2px;
  white-space: nowrap;
}

.side .lead {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 8px;
}
.side .eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: var(--strang-orange);
  display: inline-flex; align-items: center; gap: 12px;
}
.side .eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.side h1 {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 800; font-style: normal;
  letter-spacing: -0.025em; line-height: 1.05;
  color: var(--cream); margin: 0;
}
.side .lead p { color: rgba(250,247,242,.7); margin: 0; font-size: 14px; max-width: 32ch; }

/* Progress list */
.progress { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; flex: 1; }
.progress li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(250,247,242,.10);
  cursor: pointer;
  transition: opacity 120ms ease;
}
.progress li:last-child { border-bottom: 1px solid rgba(250,247,242,.10); }
.progress li .marker {
  width: 22px; height: 22px;
  border: 1px solid rgba(250,247,242,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; letter-spacing: 0.04em;
  color: rgba(250,247,242,.55);
  background: transparent;
}
.progress li.done .marker {
  background: var(--strang-orange);
  border-color: var(--strang-orange);
  color: #fff;
}
.progress li.active .marker {
  border-color: var(--strang-orange);
  color: var(--strang-orange);
  background: transparent;
  box-shadow: inset 0 0 0 3px var(--navy-900), inset 0 0 0 5px var(--strang-orange);
}
.progress li .step-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.progress li .step-num {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(250,247,242,.5); font-weight: 700;
}
.progress li .step-label {
  font-size: 14px; font-weight: 700;
  color: rgba(250,247,242,.55);
  letter-spacing: -0.005em;
}
.progress li.active .step-label,
.progress li.done .step-label { color: var(--cream); }
.progress li.active .step-num { color: var(--strang-orange); }
.progress li.locked { cursor: not-allowed; opacity: 0.65; }

.side .footer-meta {
  display: flex; flex-direction: column; gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(250,247,242,.10);
}
.side .trust {
  font-size: 12px; color: rgba(250,247,242,.55);
  line-height: 1.5; max-width: 32ch;
}
.side .notdienst {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: rgba(251,103,11,.10);
  border-left: 3px solid var(--strang-orange);
}
.side .notdienst .pulse {
  width: 8px; height: 8px; background: var(--strang-orange); border-radius: 9999px;
  animation: pulse 1.8s infinite; flex: none;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(251,103,11,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(251,103,11,0); }
  100% { box-shadow: 0 0 0 0 rgba(251,103,11,0); }
}
.side .notdienst .nd-text { display: flex; flex-direction: column; gap: 2px; }
.side .notdienst .nd-lab {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--strang-orange); font-weight: 800;
}
.side .notdienst .nd-tel {
  color: var(--cream); font-weight: 700; font-size: 14px;
  text-decoration: none; letter-spacing: -0.005em;
}

/* ============== RIGHT: white canvas ===================== */
.canvas {
  background: #ffffff;
  min-height: 100vh;
  display: flex; flex-direction: column;
}
.canvas .step-head {
  padding: 32px 64px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.canvas .step-counter {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
  display: inline-flex; align-items: center; gap: 12px;
}
.canvas .step-counter::before {
  content: ""; width: 28px; height: 1px; background: var(--strang-orange);
}
.canvas .step-counter b { color: var(--ink); font-weight: 700; }
.canvas .save-state {
  font-size: 12px; color: var(--muted); display: inline-flex; align-items: center; gap: 8px;
}
.canvas .save-state .dot {
  width: 6px; height: 6px; background: #2f8a4a; border-radius: 9999px;
}

.canvas .step-body {
  padding: 28px 64px 32px;
  flex: 1;
  display: flex; flex-direction: column; gap: 32px;
  max-width: 980px;
  width: 100%;
}
.canvas h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}
.canvas .sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 64ch;
  margin: 0;
}
.head-block { display: flex; flex-direction: column; gap: 12px; }

/* ============== FOOTER NAV ============================== */
.foot-nav {
  border-top: 1px solid var(--line);
  padding: 20px 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: #ffffff;
  position: sticky; bottom: 0;
  z-index: 2;
}
.foot-nav .step-of { font-size: 12px; color: var(--muted); }
.foot-nav .grow { flex: 1; }

/* ============== BUTTONS ================================ */
.btn {
  appearance: none; border: 0;
  font-family: var(--font-body); font-weight: 700;
  font-size: 14px; letter-spacing: 0.04em;
  text-transform: none;
  padding: 14px 22px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  border-radius: 0;
  transition: background 120ms ease, color 120ms ease, transform 80ms ease, box-shadow 120ms ease;
  text-decoration: none;
}
.btn .arrow { transition: transform 160ms ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-ghost:hover .arrow { transform: translateX(-3px); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 0; box-shadow: 0 0 0 3px rgba(251,103,11,.32); }
.btn-primary { background: var(--strang-orange); color: #fff; }
.btn-primary:hover { background: var(--strang-orange-deep); }
.btn-primary.lg { padding: 18px 28px; font-size: 15px; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--navy-50); }
.btn:disabled { opacity: 0.35; cursor: not-allowed; pointer-events: none; }

/* ============== CHOICE CARDS (big) ====================== */
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line-strong); }
.cards-2 > .choice-card { border-right: 1px solid var(--line-strong); }
.cards-2 > .choice-card:last-child { border-right: 0; }

.choice-card {
  background: #ffffff;
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 20px;
  cursor: pointer;
  text-align: left;
  border: 0;
  font: inherit; color: inherit;
  width: 100%;
  transition: background 120ms ease, transform 120ms ease, box-shadow 120ms ease;
  position: relative;
  outline: 0;
  min-height: 320px;
}
.choice-card:hover { background: var(--navy-50); }
.choice-card .icon {
  width: 56px; height: 56px;
  border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.choice-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
.choice-card .desc {
  color: var(--muted); font-size: 15px; margin: 0;
}
.choice-card .examples {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: auto;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.choice-card .ex-lab {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.choice-card .examples ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.choice-card .examples li { font-size: 13px; color: var(--ink); }
.choice-card .examples li::before { content: "·  "; color: var(--strang-orange); font-weight: 700; }

.choice-card.selected {
  background: var(--orange-50);
  box-shadow: inset 0 0 0 2px var(--strang-orange);
}
.choice-card.selected .icon { border-color: var(--strang-orange); color: var(--strang-orange); }
.choice-card .check {
  position: absolute; top: 18px; right: 18px;
  width: 26px; height: 26px;
  background: var(--strang-orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  opacity: 0; transform: scale(0.6);
  transition: opacity 120ms ease, transform 120ms ease;
}
.choice-card.selected .check { opacity: 1; transform: scale(1); }

/* ============== MULTI-SELECT CARDS (small) =============== */
.cards-grid { display: grid; gap: 0; border: 1px solid var(--line-strong); }
.cards-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.cards-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.cards-grid > .opt-card { border-right: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.cards-grid.cols-2 > .opt-card:nth-child(2n) { border-right: 0; }
.cards-grid.cols-3 > .opt-card:nth-child(3n) { border-right: 0; }
.cards-grid > .opt-card:nth-last-child(-n+2) { border-bottom: 0; }
.cards-grid.cols-3 > .opt-card:nth-last-child(-n+3) { border-bottom: 0; }

.opt-card {
  background: #fff;
  padding: 22px 22px 20px;
  display: flex; flex-direction: column; gap: 10px;
  cursor: pointer;
  border: 0; text-align: left; font: inherit; color: inherit;
  position: relative;
  transition: background 120ms ease;
  min-height: 140px;
}
.opt-card:hover { background: var(--navy-50); }
.opt-card .opt-icon {
  width: 32px; height: 32px; color: var(--strang-navy);
  display: flex; align-items: center; justify-content: center;
}
.opt-card .opt-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.opt-card .opt-desc { font-size: 13px; color: var(--muted); line-height: 1.4; }
.opt-card.selected {
  background: var(--orange-50);
  box-shadow: inset 0 0 0 2px var(--strang-orange);
}
.opt-card.selected .opt-icon { color: var(--strang-orange); }
.opt-card .opt-check {
  position: absolute; top: 14px; right: 14px;
  width: 20px; height: 20px;
  background: #fff; border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: transparent;
}
.opt-card.selected .opt-check {
  background: var(--strang-orange); border-color: var(--strang-orange); color: #fff;
}

/* ============== PILLS (multi-select) ==================== */
.pill-group { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-btn {
  appearance: none; border: 1px solid var(--line-strong);
  background: #fff; color: var(--ink);
  font: inherit; font-size: 14px; font-weight: 600;
  padding: 12px 18px;
  cursor: pointer; border-radius: 0;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}
.pill-btn:hover { background: var(--navy-50); border-color: var(--ink); }
.pill-btn.selected {
  background: var(--orange-50);
  color: var(--ink);
  border-color: var(--strang-orange);
  box-shadow: inset 0 0 0 1px var(--strang-orange);
}
.pill-btn .box {
  width: 16px; height: 16px; border: 1px solid var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; color: transparent;
  background: #fff;
}
.pill-btn.selected .box {
  background: var(--strang-orange); border-color: var(--strang-orange); color: #fff;
}

/* ============== COUNTER ================================= */
.counter-row {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--line-strong);
  width: max-content;
}
.counter-row button {
  appearance: none; border: 0;
  background: #fff; color: var(--ink);
  width: 56px; height: 56px;
  font-size: 20px; font-weight: 800; cursor: pointer;
  border-radius: 0;
}
.counter-row button:hover { background: var(--navy-50); }
.counter-row button:disabled { color: var(--line-strong); cursor: not-allowed; }
.counter-row .val {
  width: 80px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 24px;
  border-left: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  letter-spacing: -0.01em;
}
.counter-help { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* ============== ROOM ROWS ============================== */
.rooms { display: flex; flex-direction: column; gap: 8px; }
.room-row {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: #fff;
}
.room-row .rn {
  font-family: var(--font-display);
  font-weight: 800; font-size: 16px;
  color: var(--strang-orange);
  letter-spacing: 0.04em;
}
.room-row label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.room-row .field-stack { display: flex; flex-direction: column; gap: 4px; }

/* ============== INPUTS ================================= */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: var(--muted);
}
.field label .req { color: var(--strang-orange); margin-left: 4px; }
.field .help { font-size: 12px; color: var(--muted); }
.input, .select, .textarea {
  appearance: none;
  font: inherit; font-size: 15px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 13px 14px;
  transition: border-color 120ms ease, box-shadow 120ms ease;
  width: 100%;
}
.textarea { min-height: 110px; resize: vertical; font-family: var(--font-body); }
.input:focus, .select:focus, .textarea:focus {
  outline: 0; border-color: var(--strang-orange);
  box-shadow: 0 0 0 3px rgba(251,103,11,.18);
}
.select {
  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 d='M1 1l5 5 5-5' stroke='%230e1b3d' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
::placeholder { color: #9aa0ad; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 18px; }
.form-grid .span-2 { grid-column: span 2; }

/* Radio row */
.radio-row { display: flex; flex-wrap: wrap; gap: 0; border: 1px solid var(--line-strong); width: max-content; max-width: 100%; }
.radio-row label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  border-right: 1px solid var(--line-strong);
  cursor: pointer;
  font-size: 14px; font-weight: 600;
  color: var(--ink);
  background: #fff;
  transition: background 120ms ease;
}
.radio-row label:last-child { border-right: 0; }
.radio-row label:hover { background: var(--navy-50); }
.radio-row input { display: none; }
.radio-row label.on {
  background: var(--orange-50);
  box-shadow: inset 0 0 0 2px var(--strang-orange);
}
.radio-row label .dot {
  width: 14px; height: 14px; border: 1.5px solid var(--line-strong); border-radius: 9999px;
  display: inline-flex; align-items: center; justify-content: center;
}
.radio-row label.on .dot { border-color: var(--strang-orange); }
.radio-row label.on .dot::after {
  content: ""; width: 7px; height: 7px; background: var(--strang-orange); border-radius: 9999px;
}

/* ============== SUMMARY ================================ */
.summary-card {
  background: #fff;
  border: 1px solid var(--line-strong);
}
.summary-row {
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 200px 1fr auto; gap: 24px; align-items: start;
}
.summary-row:last-child { border-bottom: 0; }
.summary-row .lab {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: var(--muted);
}
.summary-row .val { font-size: 15px; color: var(--ink); line-height: 1.55; }
.summary-row .val ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.summary-row .val li::before { content: "·  "; color: var(--strang-orange); font-weight: 800; }
.summary-row .edit {
  background: transparent; border: 0; padding: 0;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--strang-navy); cursor: pointer;
  text-decoration: underline; text-underline-offset: 4px;
  text-decoration-color: var(--strang-orange);
}
.summary-row .edit:hover { color: var(--strang-orange); }
.summary-row .val.muted { color: var(--muted); font-style: italic; }

/* ============== PITCH BANNER ============================ */
.pitch-banner {
  margin-top: 36px;
  background: var(--navy-900);
  color: var(--cream);
  padding: 32px 32px 0;
  border: 1px solid var(--navy-900);
}
.pitch-banner .pitch-head {
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(250,247,242,.15);
}
.pitch-banner .pitch-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--strang-orange); font-weight: 800;
}
.pitch-banner .pitch-eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.pitch-banner h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 24px; letter-spacing: -0.02em; line-height: 1.2;
  margin: 12px 0 0; color: var(--cream);
  max-width: 50ch;
}
.pitch-banner .pitch-help { font-size: 12px; color: rgba(250,247,242,.55); max-width: 30ch; text-align: right; }
.variants {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
  border-top: 1px solid rgba(250,247,242,.15);
  margin: 0 -32px;
}
.variant {
  padding: 28px;
  border-right: 1px solid rgba(250,247,242,.15);
  display: flex; flex-direction: column; gap: 18px;
  cursor: pointer;
  transition: background 120ms ease;
  background: transparent;
  text-align: left; border-top: 0; border-bottom: 0; border-left: 0;
  color: inherit; font: inherit;
}
.variant:last-child { border-right: 0; }
.variant:hover { background: rgba(250,247,242,.04); }
.variant.active { background: var(--strang-orange); }
.variant.active .v-num { color: rgba(255,255,255,.6); }
.variant.active .v-title { color: #fff; }
.variant.active .v-body { color: rgba(255,255,255,.92); }
.variant.active .v-cta { color: #fff; border-color: #fff; }
.variant.active .v-cta:hover { background: rgba(255,255,255,.12); }
.variant.active .v-disabled-note { color: rgba(255,255,255,.85); }
.variant.disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
.v-head { display: flex; align-items: baseline; justify-content: space-between; }
.v-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--strang-orange);
}
.v-tag { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,247,242,.5); font-weight: 700; }
.v-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; line-height: 1.1; letter-spacing: -0.015em;
  color: var(--cream); margin: 0;
}
.v-body { font-size: 14px; color: rgba(250,247,242,.75); line-height: 1.5; margin: 0; }
.price-box {
  background: rgba(251,103,11,.10);
  border: 1px solid rgba(251,103,11,.4);
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.price-box .pb-lab {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: var(--strang-orange);
}
.price-box .pb-val {
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; letter-spacing: -0.015em; color: #fff;
}
.price-box .pb-note { font-size: 11px; color: rgba(250,247,242,.6); }
.variant.active .price-box {
  background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.4);
}
.variant.active .price-box .pb-lab { color: #fff; }
.variant.active .price-box .pb-val { color: #fff; }
.variant.active .price-box .pb-note { color: rgba(255,255,255,.8); }
.v-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  font-size: 13px; font-weight: 800; letter-spacing: 0.04em;
  color: var(--cream); border: 1px solid rgba(250,247,242,.4);
  background: transparent; cursor: pointer; margin-top: auto;
  align-self: flex-start;
}
.v-cta:hover { background: rgba(250,247,242,.08); border-color: var(--cream); }
.v-cta .arrow { transition: transform 160ms ease; }
.v-cta:hover .arrow { transform: translateX(3px); }
.v-disabled-note {
  font-size: 11px; color: rgba(250,247,242,.5);
  letter-spacing: 0.04em;
  margin-top: auto;
}

.submit-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.submit-bar .legal { font-size: 12px; color: var(--muted); max-width: 60ch; }

/* ============== SUCCESS ============================== */
.success-shell {
  display: flex; flex-direction: column; align-items: flex-start; gap: 24px;
  padding: 64px;
  max-width: 720px;
}
.success-shell h2 { font-size: 48px; }
.success-shell .ribbon-num {
  font-family: var(--font-display); font-weight: 800;
  color: var(--strang-orange);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
}
.success-shell .check-big {
  width: 56px; height: 56px;
  background: var(--strang-orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800;
}

/* ============== RESPONSIVE ============================ */
@media (max-width: 900px) {
  .shell { grid-template-columns: 1fr; min-height: auto; }
  .side {
    position: relative; height: auto;
    max-height: none; overflow: visible;
    top: auto;
    padding: 20px 20px 16px;
    flex-direction: column; gap: 16px;
  }
  .side .lead h1 { font-size: 24px; }
  .side .lead p { display: none; }
  .progress {
    flex-direction: row; gap: 0; overflow-x: auto;
    border-top: 1px solid rgba(250,247,242,.10);
    margin: 0 -20px; padding: 8px 20px;
  }
  .progress li {
    border: 0; padding: 8px 12px; flex: none;
    grid-template-columns: auto auto; gap: 8px;
  }
  .progress li .step-text { gap: 0; }
  .progress li .step-label { font-size: 12px; }
  .progress li .step-num { display: none; }
  .side .footer-meta { display: none; }
  .canvas .step-head, .canvas .step-body, .foot-nav { padding-left: 20px; padding-right: 20px; }
  .cards-2 { grid-template-columns: 1fr; }
  .cards-2 > .choice-card { border-right: 0; border-bottom: 1px solid var(--line-strong); }
  .cards-2 > .choice-card:last-child { border-bottom: 0; }
  .cards-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .span-2 { grid-column: 1; }
  .variants { grid-template-columns: 1fr; margin: 0 -32px; }
  .variant { border-right: 0; border-bottom: 1px solid rgba(250,247,242,.15); }
  .summary-row { grid-template-columns: 1fr; }
  .canvas h2 { font-size: 28px; }
}
