/* ScanDesign Travel Quote Wizard — all public styles are intentionally scoped. */
.sdtqb {
  --sdtqb-primary: #e31e24;
  --sdtqb-primary-dark: #b8141a;
  --sdtqb-dark: #0f172a;
  --sdtqb-copy: #58595e;
  --sdtqb-muted: #787b84;
  --sdtqb-line: #e7edef;
  --sdtqb-soft: #f4f8fa;
  --sdtqb-danger: #c62828;
  --sdtqb-white: #fff;
  --sdtqb-font: "Plus Jakarta Sans";
  --sdtqb-max-width: 980px;
  --sdtqb-radius: 28px;
  color: var(--sdtqb-copy);
  font-family: var(--sdtqb-font), Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 36px auto;
  max-width: var(--sdtqb-max-width);
  width: 100%;
}

.sdtqb *,
.sdtqb *::before,
.sdtqb *::after { box-sizing: border-box; }

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

.sdtqb svg {
  display: block;
  fill: none;
  height: 21px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 21px;
}

.sdtqb__shell {
  background: var(--sdtqb-white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--sdtqb-radius);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.sdtqb__header {
  background:
    radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--sdtqb-primary) 30%, transparent), transparent 38%),
    linear-gradient(135deg, var(--sdtqb-dark) 0%, #16233e 100%);
  color: var(--sdtqb-white);
  min-height: 225px;
  overflow: hidden;
  padding: 42px 52px;
  position: relative;
}

.sdtqb__header::after {
  background: var(--sdtqb-primary);
  bottom: 0;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  width: 100%;
}

.sdtqb__header-content {
  align-items: flex-start;
  display: flex;
  gap: 25px;
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.sdtqb__service-icon {
  align-items: center;
  background: var(--sdtqb-primary);
  border-radius: 18px;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--sdtqb-primary) 28%, transparent);
  color: var(--sdtqb-white);
  display: inline-flex;
  flex: 0 0 64px;
  height: 64px;
  justify-content: center;
  transform: rotate(-4deg);
  width: 64px;
}

.sdtqb__service-icon svg { height: 31px; width: 31px; }
.sdtqb__service-icon svg path,
.sdtqb__service-icon svg rect,
.sdtqb__service-icon svg circle { vector-effect: non-scaling-stroke; }
.sdtqb[data-service="flight"] .sdtqb__service-icon svg { fill: currentColor; stroke: none; }

.sdtqb__eyebrow {
  color: var(--sdtqb-primary);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.sdtqb .sdtqb__header h2 {
  color: var(--sdtqb-white);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 12px;
}

.sdtqb .sdtqb__header p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  max-width: 690px;
}

.sdtqb__orb {
  border: 1px solid color-mix(in srgb, var(--sdtqb-primary) 30%, transparent);
  border-radius: 50%;
  position: absolute;
}

.sdtqb__orb--one { height: 170px; right: -35px; top: -68px; width: 170px; }
.sdtqb__orb--two { bottom: -100px; height: 220px; right: 115px; width: 220px; }

.sdtqb__progress {
  background: #fff;
  border-bottom: 1px solid var(--sdtqb-line);
  padding: 26px 52px 23px;
  position: relative;
}

.sdtqb__progress ol {
  display: flex;
  justify-content: space-between;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  z-index: 2;
}

.sdtqb__progress li {
  align-items: center;
  color: var(--sdtqb-muted);
  display: flex;
  flex-direction: column;
  font-size: 11px;
  font-weight: 700;
  gap: 7px;
  letter-spacing: 0.02em;
  margin: 0 !important;
  min-width: 60px;
  padding: 0 !important;
  text-align: center;
}

.sdtqb__step-dot {
  align-items: center;
  background: #fff;
  border: 2px solid #d7e0e4;
  border-radius: 50%;
  color: #8b949c;
  display: flex;
  font-size: 12px;
  height: 32px;
  justify-content: center;
  transition: 180ms ease;
  width: 32px;
}

.sdtqb__progress li.is-active,
.sdtqb__progress li.is-complete { color: var(--sdtqb-dark); }

.sdtqb__progress li.is-active .sdtqb__step-dot {
  background: var(--sdtqb-dark);
  border-color: var(--sdtqb-dark);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--sdtqb-primary) 18%, transparent);
  color: #fff;
  transform: scale(1.06);
}

.sdtqb__progress li.is-complete .sdtqb__step-dot {
  background: var(--sdtqb-primary);
  border-color: var(--sdtqb-primary);
  color: var(--sdtqb-white);
}

.sdtqb__progress-track {
  background: #e5ecef;
  height: 2px;
  left: 84px;
  overflow: hidden;
  position: absolute;
  right: 84px;
  top: 42px;
}

.sdtqb__progress-track span {
  background: var(--sdtqb-primary);
  display: block;
  height: 100%;
  transition: width 300ms ease;
  width: 0;
}

.sdtqb__form { margin: 0; padding: 0; }

.sdtqb__panel {
  animation: sdtqb-panel-in 280ms ease both;
  margin: 0;
  min-height: 520px;
  padding: 43px 52px 38px;
}

.sdtqb__panel[hidden] { display: none !important; }

@keyframes sdtqb-panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.sdtqb__panel-heading { margin: 0 0 28px; }
.sdtqb__panel-heading > span {
  color: var(--sdtqb-primary-dark);
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.sdtqb .sdtqb__panel-heading h3 {
  color: var(--sdtqb-dark);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(23px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin: 0 0 7px;
}

.sdtqb .sdtqb__panel-heading p { color: var(--sdtqb-muted); font-size: 14px; margin: 0; }

.sdtqb__grid {
  display: grid;
  gap: 23px 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sdtqb__field { min-width: 0; position: relative; }
.sdtqb__field--wide { grid-column: 1 / -1; }
.sdtqb__field[hidden] { display: none !important; }

.sdtqb__field-label,
.sdtqb__route label {
  color: var(--sdtqb-dark);
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 8px;
}

.sdtqb__field-label > span,
.sdtqb__consent b { color: var(--sdtqb-danger); font-weight: 700; }

.sdtqb__field input[type="text"],
.sdtqb__field input[type="email"],
.sdtqb__field input[type="tel"],
.sdtqb__field input[type="date"],
.sdtqb__field input[type="time"],
.sdtqb__field input[type="number"],
.sdtqb__field select,
.sdtqb__field textarea {
  appearance: none;
  background: #fff;
  border: 1px solid #d9e2e6;
  border-radius: 11px;
  box-shadow: none;
  color: var(--sdtqb-dark);
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  outline: 0;
  padding: 14px 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
  width: 100%;
}

.sdtqb__field input:not([type="checkbox"]):not([type="radio"]):not([type="number"]),
.sdtqb__field select { min-height: 52px; }

.sdtqb__field textarea { min-height: 112px; resize: vertical; }

.sdtqb__field input::placeholder,
.sdtqb__field textarea::placeholder { color: #9aa3aa; opacity: 1; }

.sdtqb__field input:focus,
.sdtqb__field select:focus,
.sdtqb__field textarea:focus {
  border-color: var(--sdtqb-primary-dark);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--sdtqb-primary) 16%, transparent);
}

.sdtqb__field.is-invalid input,
.sdtqb__field.is-invalid select,
.sdtqb__field.is-invalid textarea,
.sdtqb__field.is-invalid .sdtqb__choices,
.sdtqb__field.is-invalid .sdtqb__checks { border-color: var(--sdtqb-danger); }

.sdtqb__error {
  color: var(--sdtqb-danger);
  display: block;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  margin-top: 5px;
  min-height: 0;
}

.sdtqb__help {
  color: var(--sdtqb-muted);
  display: block;
  font-size: 11px;
  line-height: 1.45;
  margin-top: 6px;
}

.sdtqb__select-wrap { position: relative; }
.sdtqb__select-wrap > svg {
  color: var(--sdtqb-muted);
  height: 16px;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 18px;
  width: 16px;
}
.sdtqb__select-wrap select { padding-right: 42px; }

.sdtqb__choices {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
}

.sdtqb__choices--compact { grid-template-columns: repeat(auto-fit, minmax(110px, 160px)); }
.sdtqb__choice { cursor: pointer; margin: 0; position: relative; }
.sdtqb__choice input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.sdtqb__choice > span {
  align-items: center;
  background: #fff;
  border: 1px solid #d9e2e6;
  border-radius: 11px;
  color: var(--sdtqb-dark);
  display: flex;
  font-size: 13px;
  font-weight: 650;
  gap: 9px;
  justify-content: flex-start;
  min-height: 52px;
  padding: 10px 13px;
  transition: 160ms ease;
}

.sdtqb__choice > span i {
  background: #fff;
  border: 1.5px solid #b8c2c8;
  border-radius: 50%;
  display: block;
  flex: 0 0 16px;
  height: 16px;
  position: relative;
  width: 16px;
}

.sdtqb__choice:hover > span { border-color: var(--sdtqb-primary-dark); transform: translateY(-1px); }
.sdtqb__choice input:focus-visible + span { box-shadow: 0 0 0 4px color-mix(in srgb, var(--sdtqb-primary) 18%, transparent); }
.sdtqb__choice input:checked + span {
  background: color-mix(in srgb, var(--sdtqb-primary) 9%, white);
  border-color: var(--sdtqb-primary-dark);
  box-shadow: inset 0 0 0 1px var(--sdtqb-primary-dark);
}
.sdtqb__choice input:checked + span i { background: var(--sdtqb-primary); border-color: var(--sdtqb-primary-dark); box-shadow: inset 0 0 0 3.5px #fff; }

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

.sdtqb__checks label {
  align-items: center;
  background: #fff;
  border: 1px solid #d9e2e6;
  border-radius: 11px;
  color: var(--sdtqb-dark);
  cursor: pointer;
  display: flex;
  font-size: 13px;
  font-weight: 600;
  gap: 10px;
  margin: 0;
  min-height: 49px;
  padding: 10px 12px;
  transition: 160ms ease;
}

.sdtqb__checks label:hover { border-color: var(--sdtqb-primary-dark); }
.sdtqb__checks input { height: 1px; opacity: 0; position: absolute; width: 1px; }
.sdtqb__checks label > span {
  align-items: center;
  background: #fff;
  border: 1.5px solid #b8c2c8;
  border-radius: 5px;
  color: transparent;
  display: flex;
  flex: 0 0 19px;
  height: 19px;
  justify-content: center;
  width: 19px;
}
.sdtqb__checks label > span svg { height: 14px; stroke-width: 2.5; width: 14px; }
.sdtqb__checks input:checked + span { background: var(--sdtqb-primary); border-color: var(--sdtqb-primary-dark); color: var(--sdtqb-white); }
.sdtqb__checks label:has(input:checked) { background: color-mix(in srgb, var(--sdtqb-primary) 8%, white); border-color: var(--sdtqb-primary-dark); }

.sdtqb__consent {
  align-items: flex-start;
  background: var(--sdtqb-soft);
  border: 1px solid var(--sdtqb-line);
  border-radius: 12px;
  color: var(--sdtqb-copy);
  cursor: pointer;
  display: flex;
  font-size: 12px;
  gap: 11px;
  line-height: 1.65;
  margin: 0;
  padding: 13px 15px;
}
.sdtqb__consent input { height: 1px; opacity: 0; position: absolute; width: 1px; }
.sdtqb__consent-box {
  align-items: center;
  background: #fff;
  border: 1.5px solid #b8c2c8;
  border-radius: 5px;
  color: transparent;
  display: flex;
  flex: 0 0 20px;
  height: 20px;
  justify-content: center;
  margin-top: 1px;
  width: 20px;
}
.sdtqb__consent-box svg { height: 14px; stroke-width: 2.5; width: 14px; }
.sdtqb__consent input:checked + .sdtqb__consent-box { background: var(--sdtqb-primary); border-color: var(--sdtqb-primary-dark); color: var(--sdtqb-white); }
.sdtqb__consent input:focus-visible + .sdtqb__consent-box { box-shadow: 0 0 0 4px color-mix(in srgb, var(--sdtqb-primary) 18%, transparent); }

.sdtqb__number {
  align-items: center;
  border: 1px solid #d9e2e6;
  border-radius: 11px;
  display: flex;
  height: 52px;
  overflow: hidden;
}
.sdtqb__number button {
  align-items: center;
  background: var(--sdtqb-soft);
  border: 0;
  color: var(--sdtqb-dark);
  cursor: pointer;
  display: flex;
  flex: 0 0 46px;
  font-size: 21px;
  height: 100%;
  justify-content: center;
  padding: 0;
  transition: background 140ms ease;
}
.sdtqb__number button:hover { background: color-mix(in srgb, var(--sdtqb-primary) 20%, white); }
.sdtqb__field .sdtqb__number input[type="number"] {
  border: 0;
  border-radius: 0;
  font-weight: 700;
  height: 50px;
  padding: 0 5px;
  text-align: center;
}
.sdtqb__number input::-webkit-inner-spin-button,
.sdtqb__number input::-webkit-outer-spin-button { appearance: none; margin: 0; }
.sdtqb__number:focus-within { border-color: var(--sdtqb-primary-dark); box-shadow: 0 0 0 4px color-mix(in srgb, var(--sdtqb-primary) 16%, transparent); }
.sdtqb__number:focus-within input { box-shadow: none; }

.sdtqb__routes { display: grid; gap: 14px; }
.sdtqb__route {
  align-items: end;
  background: var(--sdtqb-soft);
  border: 1px solid var(--sdtqb-line);
  border-radius: 14px;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1.2fr) 38px minmax(0, 1.2fr) minmax(145px, 0.8fr);
  padding: 15px;
  position: relative;
}
.sdtqb__route label { font-size: 11px; margin-bottom: 6px; text-transform: uppercase; }
.sdtqb__swap {
  align-items: center;
  background: #fff;
  border: 1px solid #d9e2e6;
  border-radius: 50%;
  color: var(--sdtqb-dark);
  cursor: pointer;
  display: flex;
  height: 36px;
  justify-content: center;
  margin-bottom: 8px;
  padding: 0;
  transition: 160ms ease;
  width: 36px;
}
.sdtqb__swap:hover { background: var(--sdtqb-primary); border-color: var(--sdtqb-primary-dark); transform: rotate(180deg); }
.sdtqb__swap svg { height: 17px; width: 17px; }
.sdtqb__remove-route {
  align-items: center;
  background: #fff;
  border: 1px solid #efc4c4;
  border-radius: 50%;
  color: var(--sdtqb-danger);
  cursor: pointer;
  display: flex;
  font-size: 20px;
  height: 28px;
  justify-content: center;
  padding: 0 0 2px;
  position: absolute;
  right: -10px;
  top: -10px;
  width: 28px;
}
.sdtqb__add-route {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--sdtqb-primary-dark);
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 750;
  gap: 6px;
  margin-top: 10px;
  padding: 5px 0;
}
.sdtqb__add-route[hidden] { display: none; }
.sdtqb__add-route svg { height: 17px; width: 17px; }

.sdtqb__actions {
  align-items: center;
  border-top: 1px solid var(--sdtqb-line);
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
  padding-top: 24px;
}

.sdtqb__button {
  align-items: center;
  border: 0;
  border-radius: 11px;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 750;
  gap: 8px;
  justify-content: center;
  min-height: 50px;
  padding: 12px 21px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.sdtqb__button:hover { transform: translateY(-2px); }
.sdtqb__button:focus-visible { outline: 3px solid color-mix(in srgb, var(--sdtqb-primary) 45%, transparent); outline-offset: 3px; }
.sdtqb__button svg { height: 18px; width: 18px; }
.sdtqb__button--back { background: var(--sdtqb-soft); color: var(--sdtqb-dark); }
.sdtqb__button--next,
.sdtqb__button--submit {
  background: var(--sdtqb-dark);
  box-shadow: 0 9px 20px rgba(15, 23, 42, 0.18);
  color: #fff;
}
.sdtqb__button--next:hover,
.sdtqb__button--submit:hover { background: color-mix(in srgb, var(--sdtqb-dark) 90%, var(--sdtqb-primary)); box-shadow: 0 13px 26px rgba(15, 23, 42, 0.23); color: #fff; }
.sdtqb__button--submit { background: var(--sdtqb-primary); color: var(--sdtqb-white); min-width: 210px; }
.sdtqb__submit-label,
.sdtqb__loading { align-items: center; display: flex; gap: 8px; }
.sdtqb__loading { display: none; }
.sdtqb__form.is-submitting .sdtqb__submit-label { display: none; }
.sdtqb__form.is-submitting .sdtqb__loading { display: flex; }
.sdtqb__form.is-submitting .sdtqb__button--submit { cursor: wait; opacity: 0.75; pointer-events: none; }
.sdtqb__loading i {
  animation: sdtqb-spin 700ms linear infinite;
  border: 2px solid rgba(15, 23, 42, 0.25);
  border-radius: 50%;
  border-top-color: var(--sdtqb-dark);
  height: 17px;
  width: 17px;
}
@keyframes sdtqb-spin { to { transform: rotate(360deg); } }

.sdtqb__alert {
  background: #fff4f4;
  border: 1px solid #f3c6c6;
  border-radius: 10px;
  color: #9d2020;
  font-size: 13px;
  font-weight: 600;
  margin: 25px 52px 0;
  padding: 11px 14px;
}
.sdtqb__alert[hidden] { display: none; }

.sdtqb__review { display: grid; gap: 17px; }
.sdtqb__review-group {
  border: 1px solid var(--sdtqb-line);
  border-radius: 15px;
  overflow: hidden;
}
.sdtqb__review-title {
  align-items: center;
  background: var(--sdtqb-soft);
  color: var(--sdtqb-dark);
  display: flex;
  font-size: 13px;
  font-weight: 750;
  justify-content: space-between;
  margin: 0;
  padding: 11px 15px;
}
.sdtqb__review-title button {
  background: transparent;
  border: 0;
  color: var(--sdtqb-primary-dark);
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
  padding: 2px 0;
}
.sdtqb__review-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; padding: 6px 15px 12px; }
.sdtqb__review-item { border-bottom: 1px solid #eef2f4; min-width: 0; padding: 10px 12px 10px 0; }
.sdtqb__review-item:nth-last-child(-n + 2) { border-bottom: 0; }
.sdtqb__review-item dt { color: var(--sdtqb-muted); font-size: 10px; font-weight: 750; letter-spacing: 0.04em; margin: 0 0 2px; text-transform: uppercase; }
.sdtqb__review-item dd { color: var(--sdtqb-dark); font-size: 13px; font-weight: 600; margin: 0; overflow-wrap: anywhere; }
.sdtqb__notice {
  align-items: flex-start;
  background: color-mix(in srgb, var(--sdtqb-primary) 9%, white);
  border: 1px solid color-mix(in srgb, var(--sdtqb-primary) 35%, white);
  border-radius: 12px;
  color: var(--sdtqb-copy);
  display: flex;
  font-size: 12px;
  gap: 10px;
  line-height: 1.65;
  margin-top: 20px;
  padding: 13px 15px;
}
.sdtqb__notice > svg { color: var(--sdtqb-primary-dark); flex: 0 0 21px; margin-top: 1px; }
.sdtqb__notice p { margin: 0; }
.sdtqb__notice strong { color: var(--sdtqb-dark); }

.sdtqb__privacy-note {
  align-items: center;
  color: var(--sdtqb-muted);
  display: flex;
  font-size: 11px;
  gap: 7px;
  justify-content: center;
  margin: 13px 12px 0;
  text-align: center;
}
.sdtqb__privacy-note svg { flex: 0 0 15px; height: 15px; width: 15px; }
.sdtqb__trap { height: 0 !important; left: -9999px !important; overflow: hidden !important; position: absolute !important; width: 0 !important; }

.sdtqb__success {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 74px 45px;
  text-align: center;
}
.sdtqb__success-icon {
  align-items: center;
  animation: sdtqb-success-pop 500ms cubic-bezier(.2,.8,.2,1) both;
  background: var(--sdtqb-primary);
  border-radius: 50%;
  color: var(--sdtqb-dark);
  display: flex;
  height: 82px;
  justify-content: center;
  margin-bottom: 24px;
  width: 82px;
}
.sdtqb__success-icon svg { height: 40px; stroke-width: 2.3; width: 40px; }
@keyframes sdtqb-success-pop { from { opacity: 0; transform: scale(.6); } to { opacity: 1; transform: scale(1); } }
.sdtqb .sdtqb__success h3 { color: var(--sdtqb-dark); font-size: 30px; margin: 0 0 10px; }
.sdtqb__success p { color: var(--sdtqb-copy); margin: 0; max-width: 590px; }
.sdtqb__reference { background: var(--sdtqb-soft); border: 1px dashed #b9c6cc; border-radius: 9px; color: var(--sdtqb-dark); font-size: 13px; font-weight: 800; letter-spacing: .07em; margin-top: 22px; padding: 9px 14px; }

@media (max-width: 760px) {
  .sdtqb { margin: 24px auto; }
  .sdtqb__shell { border-radius: 20px; }
  .sdtqb__header { min-height: 0; padding: 30px 24px 31px; }
  .sdtqb__header-content { gap: 15px; }
  .sdtqb__service-icon { border-radius: 13px; flex-basis: 48px; height: 48px; width: 48px; }
  .sdtqb__service-icon svg { height: 24px; width: 24px; }
  .sdtqb .sdtqb__header h2 { font-size: 27px; }
  .sdtqb .sdtqb__header p { font-size: 13px; }
  .sdtqb__progress { padding: 20px 19px 17px; }
  .sdtqb__progress-track { left: 37px; right: 37px; top: 35px; }
  .sdtqb__step-dot { height: 30px; width: 30px; }
  .sdtqb__step-label { display: none; }
  .sdtqb__progress li { min-width: 30px; }
  .sdtqb__panel { min-height: 450px; padding: 31px 23px 27px; }
  .sdtqb__grid { grid-template-columns: 1fr; }
  .sdtqb__field--wide { grid-column: auto; }
  .sdtqb__choices { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sdtqb__choices--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sdtqb__checks { grid-template-columns: 1fr; }
  .sdtqb__route { align-items: end; grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr); }
  .sdtqb__route > div:last-of-type { grid-column: 1 / -1; }
  .sdtqb__review-list { grid-template-columns: 1fr; }
  .sdtqb__review-item:nth-last-child(2) { border-bottom: 1px solid #eef2f4; }
  .sdtqb__review-item:last-child { border-bottom: 0; }
  .sdtqb__alert { margin: 18px 23px 0; }
  .sdtqb__actions { gap: 10px; }
  .sdtqb__button { min-height: 48px; padding: 11px 17px; }
  .sdtqb__button--submit { min-width: 0; }
}

@media (max-width: 430px) {
  .sdtqb__header-content { display: block; }
  .sdtqb__service-icon { margin-bottom: 15px; }
  .sdtqb__choices { grid-template-columns: 1fr; }
  .sdtqb__actions .sdtqb__button { flex: 1 1 auto; }
  .sdtqb__actions > span:empty { display: none; }
  .sdtqb__panel { padding-left: 18px; padding-right: 18px; }
  .sdtqb__alert { margin-left: 18px; margin-right: 18px; }
}

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