:root {
  --dark: #1a1a2e;
  --navy: #16213e;
  --accent: #e8b931;
  --accent-hover: #f5cc4d;
  --light: #f8f7f4;
  --warm-gray: #e8e5df;
  --text: #2d2d3a;
  --text-light: #6b6b7b;
  --white: #ffffff;
  --success: #2ecc71;
  --border: #d4d0c8;
  --radius: 12px;
  --shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

/* Atribut hidden musí vyhrát i nad display:grid/flex tříd (např. .two-cols) */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

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

/* Skip-link pro klávesnici / čtečky obrazovky */
.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.65rem 1rem;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  border-radius: 6px;
  z-index: 100;
  outline: 2px solid var(--dark);
  outline-offset: 2px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin: 0 0 0.7rem;
  line-height: 1.2;
  font-family: "Playfair Display", Georgia, serif;
}

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
}

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.narrow {
  width: min(840px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(22, 33, 62, 0.88);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
}

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

.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(232, 185, 49, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  border-radius: 999px;
  background: rgba(232, 185, 49, 0.15);
  border: 1px solid rgba(232, 185, 49, 0.3);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1.3rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--accent);
}

.hero-lead {
  font-size: clamp(1.05rem, 2.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.35rem;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.02rem);
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 1.8rem;
}

.hero-checks {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.hero-checks p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}

.btn {
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: var(--dark);
  padding: 0.95rem 2rem;
  box-shadow: 0 4px 20px rgba(232, 185, 49, 0.32);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.section {
  padding: 4rem 0;
}

.section h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.05rem);
  text-align: center;
}

.section-lead {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.section-light {
  background: var(--light);
}

.steps-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.step-card {
  text-align: center;
}

.step-card span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
  font-family: "Playfair Display", Georgia, serif;
}

.step-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.step-card p {
  font-size: 0.93rem;
  color: var(--text-light);
  margin: 0;
}

/* ===================== WIZARD ===================== */

.wizard-container {
  max-width: 980px;
}

.wizard-progress {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.wizard-progress-track {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: var(--warm-gray);
  overflow: hidden;
}

.wizard-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  transition: width 0.35s ease;
}

.wizard-progress-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-light);
  white-space: nowrap;
}

.wstep-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 2.5rem;
  align-items: start;
}

.wstep-kicker {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.wstep-side h2 {
  text-align: left;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  margin-bottom: 0.6rem;
}

.wstep-note {
  color: var(--text-light);
  font-size: 0.92rem;
}

.wstep-fields {
  background: var(--white);
  border-radius: 16px;
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow);
}

.wstep-error {
  min-height: 1.2em;
  color: #b62d2d;
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
}

.wstep-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  gap: 1rem;
}

.btn-back {
  border: none;
  background: none;
  font: inherit;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  padding: 0.6rem 0.4rem;
}

.btn-back:hover {
  color: var(--text);
}

.btn-next {
  background: var(--accent);
  color: var(--dark);
  padding: 0.8rem 1.6rem;
  font-size: 0.98rem;
}

.btn-next:hover {
  background: var(--accent-hover);
}

.btn-next[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* dlaždicové volby */
.mega-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

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

.mega-option {
  margin: 0;
}

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

.mega-option span {
  display: block;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 0.8rem;
  background: var(--white);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}

.mega-option span strong {
  display: block;
  font-size: 0.98rem;
}

.mega-option span small {
  display: block;
  color: var(--text-light);
  font-size: 0.78rem;
  margin-top: 0.2rem;
}

.mega-option span:hover {
  border-color: var(--accent);
}

.mega-option input:checked + span {
  border: 2px solid var(--accent);
  background: rgba(232, 185, 49, 0.1);
}

.mega-option input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* stav interiéru — řádkové volby s popisem */
.condition-list {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.condition-option {
  margin: 0;
}

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

.condition-option span {
  display: block;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.condition-option span strong {
  font-size: 0.95rem;
}

.condition-option span small {
  display: block;
  color: var(--text-light);
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

.condition-option span:hover {
  border-color: var(--accent);
}

.condition-option input:checked + span {
  border: 2px solid var(--accent);
  background: rgba(232, 185, 49, 0.1);
}

.condition-option input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* toggle switch */
.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--warm-gray);
  font-size: 0.95rem;
}

.toggle-row:last-of-type {
  border-bottom: none;
}

.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  margin: 0;
  flex: none;
}

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

.slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--warm-gray);
  transition: background 0.2s ease;
  cursor: pointer;
}

.slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  top: 3px;
  left: 3px;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.switch input:checked + .slider {
  background: var(--success);
}

.switch input:checked + .slider::before {
  transform: translateX(20px);
}

.switch input:focus-visible + .slider {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* souhrn */
.summary-list {
  list-style: none;
  margin: 0 0 0.6rem;
  padding: 0;
}

.summary-list li {
  padding: 0.55rem 0 0.55rem 1.4rem;
  border-bottom: 1px solid var(--warm-gray);
  position: relative;
  font-size: 0.95rem;
}

.summary-list li:last-child {
  border-bottom: none;
}

.summary-list li::before {
  content: "▸";
  position: absolute;
  left: 0.2rem;
  color: var(--accent);
}

.result-verified {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.35);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  margin: 0;
}

/* Čekací obrazovka – „právě počítáme z reálných prodejů…" */
.calc-waiting {
  display: none;
}
.calc-waiting:not([hidden]) {
  display: flex;
}
.calc-waiting-inner {
  margin-inline: auto;
  max-width: 520px;
  text-align: center;
  padding: 2.4rem 1.4rem;
}
.calc-waiting-inner h2 {
  font-size: 1.35rem;
  margin: 1.4rem 0 0.5rem;
}
.calc-waiting-sub {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}
.calc-spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border-radius: 50%;
  border: 4px solid rgba(46, 204, 113, 0.2);
  border-top-color: var(--brand, #2ecc71);
  animation: calc-spin 0.9s linear infinite;
}
@keyframes calc-spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .calc-spinner { animation-duration: 2.4s; }
}

.result-upsell {
  background: var(--white);
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin-inline: auto;
}

.result-upsell h3 {
  font-size: 1.25rem;
  text-align: center;
}

.result-upsell-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 1.4rem;
}

.label-optional {
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.8rem;
}

.field-help {
  display: block;
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 400;
}

/* našeptávač adres */
.ac-wrap {
  position: relative;
}

.ac-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 40;
  margin: 0;
  padding: 4px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  max-height: 288px;
  overflow-y: auto;
}

.ac-item {
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.92rem;
  line-height: 1.3;
}

.ac-item.active,
.ac-item:hover {
  background: rgba(232, 185, 49, 0.15);
}

.ac-item small {
  display: block;
  color: var(--text-light);
  font-size: 0.78rem;
  margin-top: 0.1rem;
}

/* opt-in sledování ceny */
.watch-optin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.4rem 0 0.9rem;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: rgba(232, 185, 49, 0.06);
}

.watch-optin-text strong {
  display: block;
  font-size: 0.95rem;
}

.watch-optin-text small {
  display: block;
  color: var(--text-light);
  font-size: 0.82rem;
  margin-top: 0.15rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.field-block {
  margin-bottom: 0.8rem;
}

.label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(232, 185, 49, 0.18);
}

textarea {
  resize: vertical;
}

.two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.type-toggle {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.type-option {
  margin: 0;
}

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

.type-option span {
  display: block;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.62rem 0.5rem;
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.type-option input:checked + span {
  border: 2px solid var(--accent);
  background: rgba(232, 185, 49, 0.1);
}

.type-option input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Honeypot pole proti spambotům – schované, ne `display:none` (boti ho ignorují) */
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Disabled / loading stav na submitu */
.btn-submit[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.form-disclaimer {
  margin: 0.6rem 0 0;
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
}

.result-disclaimer {
  margin-top: 1rem;
  font-size: 0.78rem;
  text-align: center;
}

.footer-links {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.footer-links a {
  color: var(--accent);
  text-decoration: none;
  margin: 0 0.25rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  opacity: 0.65;
}

/* Právní stránky (GDPR, obchodní podmínky) */
.legal h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.legal h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  text-align: left;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
}

.legal p,
.legal ul {
  font-size: 0.95rem;
  color: var(--text);
}

.legal ul {
  padding-left: 1.4rem;
  margin: 0.4rem 0 1rem;
}

.legal li + li {
  margin-top: 0.3rem;
}

.legal a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

.legal a:hover {
  color: var(--accent);
}

.legal-back {
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--warm-gray);
  font-size: 0.95rem;
}

.checkbox {
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: start;
}

.checkbox input {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.error {
  min-height: 1.2em;
  color: #b62d2d;
  margin: 0;
  font-size: 0.9rem;
}

.result-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 2.2rem 1.5rem;
  text-align: center;
}

.result-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  background: #e8f8ef;
  color: var(--success);
}

.result-description {
  color: var(--text-light);
  max-width: 60ch;
  margin-inline: auto;
}

.result-box {
  margin-top: 1rem;
  border: 1px dashed var(--border);
  border-radius: 10px;
  padding: 1rem;
  text-align: left;
}

.range-line {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.48rem;
  margin-bottom: 0.35rem;
}

.range-track {
  margin: 0.5rem 0 0.8rem;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d8d8d8, var(--accent), #d8d8d8);
  position: relative;
}

.range-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--dark);
  border: 2px solid var(--white);
}

.muted {
  color: var(--text-light);
}

.cards-grid,
.metrics-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.info-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.6rem 1.35rem;
  text-align: center;
}

.info-card .icon {
  font-size: 1.8rem;
  margin-bottom: 0.55rem;
}

.info-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.info-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.metrics-grid article {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  text-align: center;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.metric {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.metrics-grid h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.metrics-grid p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-light);
}

.broker-card {
  margin-top: 2.4rem;
  text-align: center;
}

.broker-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 0.9rem;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  background: var(--warm-gray);
  border: 3px solid var(--accent);
}

.broker-overline {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.broker-card h3 {
  font-size: 1.35rem;
}

.broker-card p {
  max-width: 620px;
  margin-inline: auto;
}

.faq-wrap {
  max-width: 680px;
}

details {
  border-bottom: 1px solid var(--warm-gray);
  padding: 1rem 0;
}

summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 1.3rem;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  color: var(--text-light);
  font-size: 1.2rem;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  margin: 0.7rem 0 0;
  color: var(--text-light);
  font-size: 0.92rem;
}

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-inner {
  max-width: 700px;
}

.footer-inner p {
  margin: 0 0 0.35rem;
}

.footer-brand {
  color: var(--white);
  font-weight: 700;
  font-size: 0.96rem;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 4.3rem;
  }

  .steps-grid,
  .cards-grid,
  .metrics-grid,
  .two-cols,
  .mega-group,
  .mega-group.mega-2,
  .wstep-grid {
    grid-template-columns: 1fr;
  }

  .wstep-grid {
    gap: 1.2rem;
  }

  .wstep-fields,
  .result-upsell {
    padding: 1.2rem 1rem;
  }

  .wizard-progress-label {
    font-size: 0.75rem;
  }
}
