/* ==========================================================================
   StromTarifScout — Design System
   Elementor-mapping: .section/.container/.flex-row/.flex-col => Containers
   .btn => Button widget, .icon-box => Icon Box, .card => basic Container,
   .accordion => Accordion widget, .step => Icon Box w/ number
   ========================================================================== */

:root {
  --navy: #002146;
  --navy-light: #0a3a6e;
  --green: #00cb74;
  --green-dark: #00a862;
  --white: #ffffff;
  --light: #f5f7f8;
  --gray-600: #5b6b7a;
  --gray-400: #9aa8b3;
  --border: #dfe6ea;
  --danger: #d64545;

  --font: "Montserrat", "Segoe UI", Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 8px rgba(0, 33, 70, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 33, 70, 0.1);
  --shadow-lg: 0 20px 50px rgba(0, 33, 70, 0.14);

  --container-w: 1180px;
  --gap: 1.75rem;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.65;
}

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

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: clamp(3rem, 6vw, 5.5rem);
}

.section-tight {
  padding-block: clamp(2rem, 4vw, 3rem);
}

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

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-navy .eyebrow {
  color: var(--green);
}

.section-navy .lead {
  color: rgba(255, 255, 255, 0.75);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}

.flex-col {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-sm {
  gap: 0.75rem;
}

.col {
  flex: 1 1 0;
  min-width: 260px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.section-navy .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.section-navy .btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 0.65rem 1.3rem;
  font-size: 0.9rem;
}

/* ---- Header / Nav ---- */
.site-header {
  position: sticky !important;
  top: 0;
  z-index: 100 !important;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.85rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand img {
  height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.main-nav ul {
  display: flex;
  gap: 1.9rem;
}

.main-nav a:not(.btn) {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  position: relative;
  padding-block: 0.3rem;
}

.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.15s ease;
}

.main-nav a:not(.btn):hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---- Hero ---- */
.hero {
  padding-block: clamp(2.5rem, 7vw, 5rem);
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero-copy {
  flex: 1 1 480px;
}

.hero-visual {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual img {
  max-width: 380px;
  width: 100%;
}

.hero h1 {
  margin-bottom: 1.1rem;
}

.hero .lead {
  margin-bottom: 1.8rem;
  max-width: 46ch;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero-note {
  font-size: 0.88rem;
  color: var(--gray-600);
}

/* ---- Icon boxes / benefit cards ---- */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--gap);
}

.icon-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.icon-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.icon-box .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(0, 203, 116, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--green-dark);
}

.icon-box .icon svg {
  width: 24px;
  height: 24px;
}

.icon-box h3 {
  margin-bottom: 0.5rem;
}

.icon-box p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ---- Process steps ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap);
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 1.6rem 1.4rem 1.4rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.process-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--green);
  font-weight: 800;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.process-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
}

.process-visual img {
  max-width: 320px;
  width: 100%;
}

/* ---- Cards / generic panels ---- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}

.card-list {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.97rem;
}

.card-list .check {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.card-list .check svg {
  width: 12px;
  height: 12px;
}

/* ---- Split section (image + copy) ---- */
.split {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-copy {
  flex: 1 1 460px;
}

.split-visual {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.split-visual img {
  max-width: 340px;
  width: 100%;
}

/* Privatkunden section: visually secondary/lighter */
.secondary-panel {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
}

/* ---- Badge ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 203, 116, 0.14);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

/* ---- FAQ Accordion ---- */
.faq-groups {
  max-width: 820px;
  margin-inline: auto;
}

.faq-group-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin: 2.4rem 0 1rem;
}

.faq-group-title:first-child {
  margin-top: 0;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  padding: 1.15rem 1.4rem;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}

.accordion-trigger .plus {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.accordion-trigger .plus::before,
.accordion-trigger .plus::after {
  content: "";
  position: absolute;
  background: var(--navy);
  transition: transform 0.2s ease;
}

.accordion-trigger .plus::before {
  width: 12px;
  height: 2px;
}

.accordion-trigger .plus::after {
  width: 2px;
  height: 12px;
}

.accordion-item[data-open="true"] .plus::after {
  transform: rotate(90deg) scaleX(0);
}

.accordion-item[data-open="true"] .accordion-trigger .plus {
  background: var(--green);
}

.accordion-item[data-open="true"] .accordion-trigger .plus::before,
.accordion-item[data-open="true"] .accordion-trigger .plus::after {
  background: var(--navy);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.accordion-panel-inner {
  padding: 0 1.4rem 1.3rem;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---- Final CTA band ---- */
.cta-band {
  text-align: center;
}

.cta-band h2 {
  margin-bottom: 1rem;
}

.cta-band .lead {
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding-block: 3.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand img {
  width: 140px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 32ch;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-col a:hover {
  color: var(--green);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* ==========================================================================
   Tariff-check wizard
   ========================================================================== */
.wizard {
  max-width: 760px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.wizard-head {
  padding: 1.8rem clamp(1.4rem, 4vw, 2.6rem) 0;
}

.wizard-progress-label {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.3rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-600);
  margin-bottom: 0.6rem;
}

.wizard-progress-label .step-title {
  text-align: right;
}

.wizard-progress-label span.current {
  color: var(--green-dark);
}

.wizard-progress-track {
  height: 6px;
  border-radius: 999px;
  background: var(--light);
  overflow: hidden;
  margin-bottom: 1.6rem;
}

.wizard-progress-fill {
  height: 100%;
  background: var(--green);
  border-radius: 999px;
  transition: width 0.3s ease;
  width: 25%;
}

.wizard-body {
  padding: 0 clamp(1.4rem, 4vw, 2.6rem) 2rem;
}

/* Honeypot spam trap: kept in the tab order out of the way rather than
   display:none, since some bots skip display:none fields but not
   off-screen ones. Real visitors never see or reach it. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.wizard-step {
  display: none;
}

.wizard-step[data-active="true"] {
  display: block;
  animation: fade-in 0.25s ease;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wizard-step h3 {
  margin-bottom: 0.3rem;
}

.wizard-step-desc {
  color: var(--gray-600);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.field-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

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

.field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.field .optional-tag {
  font-weight: 500;
  color: var(--gray-400);
  text-transform: none;
  letter-spacing: 0;
}

/* Required fields get an explicit marker rather than relying on the
   absence of "(optional)" alone — visible without depending on color. */
.field label .req-mark {
  color: var(--green-dark);
  margin-left: 0.15rem;
}

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="number"],
.field input[type="date"],
.field select,
.field textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  font-size: 0.97rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}

.field textarea {
  resize: vertical;
  min-height: 90px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 203, 116, 0.15);
}

.field .field-hint {
  font-size: 0.82rem;
  color: var(--gray-600);
}

.field .field-error {
  font-size: 0.82rem;
  color: var(--danger);
  display: none;
}

.field[data-invalid="true"] input,
.field[data-invalid="true"] select {
  border-color: var(--danger);
}

.field[data-invalid="true"] .field-error {
  display: block;
}

/* Choice cards (Kundentyp, Energieart) */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.choice-card {
  position: relative;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.choice-card .choice-icon {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto 0.6rem;
  color: var(--navy);
}

.choice-card .choice-icon svg {
  width: 100%;
  height: 100%;
}

.choice-card span.label {
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
}

.choice-card small {
  color: var(--gray-600);
  font-size: 0.8rem;
}

.choice-card:hover {
  border-color: var(--green);
}

.choice-card:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 203, 116, 0.25);
}

.choice-card[data-checked="true"] {
  border-color: var(--green);
  background: rgba(0, 203, 116, 0.08);
}

.choice-card[data-checked="true"] .choice-icon {
  color: var(--green-dark);
}

/* Upload block */
.upload-block {
  border: 1.5px dashed var(--green);
  background: rgba(0, 203, 116, 0.06);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  margin-bottom: 1rem;
}

.upload-block h4 {
  margin-bottom: 0.3rem;
}

.upload-block p {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 0.9rem;
}

.upload-input-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1.5px solid var(--navy);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.1rem;
  font-weight: 700;
  font-size: 0.88rem;
}

.upload-filename {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.upload-error {
  font-size: 0.82rem;
  color: var(--danger);
  margin-top: 0.5rem;
  display: none;
}

/* Consent checkbox */
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 1.4rem 0;
}

.consent-row input {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: var(--green);
  flex: none;
}

.consent-row label {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.consent-row a {
  text-decoration: underline;
  color: var(--navy);
}

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

.wizard-nav .spacer {
  flex: 1;
}

.form-alert {
  display: none;
  align-items: flex-start;
  gap: 0.7rem;
  background: #fdecec;
  border: 1px solid #f3c3c3;
  color: #8a2323;
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  font-size: 0.9rem;
  margin-top: 1.2rem;
}

.form-alert[data-visible="true"] {
  display: flex;
}

/* Success state */
.wizard-success {
  display: none;
  text-align: center;
  padding: 2.5rem clamp(1.4rem, 4vw, 2.6rem) 3rem;
}

.wizard-success[data-active="true"] {
  display: block;
}

.success-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
}

.success-icon svg {
  width: 30px;
  height: 30px;
}

.wizard[data-submitted="true"] .wizard-head,
.wizard[data-submitted="true"] .wizard-body {
  display: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .field-group,
  .choice-grid,
  .choice-grid.choice-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .main-nav {
    position: fixed;
    top: 66px;
    right: 0;
    left: 0;
    height: calc(100vh - 66px);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
  }

  .main-nav[data-open="true"] {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1.3rem;
  }

  .main-nav .btn {
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-cta-row {
    justify-content: center;
  }

  .hero-note {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .wizard-nav {
    flex-wrap: wrap;
  }

  /* Long step titles ("Geschäftliche Angaben", "Einwilligung & Absenden")
     would crowd "Schritt X von Y" on very small screens — the count alone
     is enough context there. */
  .wizard-progress-label .step-title {
    display: none;
  }
}
