/* Softera — Anfrage-Assistent (Design: design-preview/anfrage.html) */

h1 {
  font-size: clamp(1.625rem, 5vw, 2.375rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.eyebrow { margin-bottom: var(--space-3); }

.hint { color: var(--grau); font-size: 0.9375rem; margin-bottom: var(--space-6); }

/* ---------- Fortschritt ---------- */

.progress { padding-block: var(--space-6) 0; }
.progress .label {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grau);
  display: block;
  margin-bottom: var(--space-2);
}
.progress .bar {
  height: 3px;
  background: var(--linie);
  border-radius: 2px;
  overflow: hidden;
}
.progress .bar i {
  display: block;
  height: 100%;
  background: var(--gruen);
  width: 0%;
  transition: width 240ms ease;
}

/* ---------- Schritte ---------- */

.step { display: none; padding-block: var(--space-8) var(--space-16); }
.step.active { display: block; }

@media (prefers-reduced-motion: no-preference) {
  .step.active { animation: rise 320ms cubic-bezier(0.22, 1, 0.36, 1); }
  @keyframes rise { from { opacity: 0; transform: translateY(10px); } }
}

/* Options-Karten */

.opts { display: grid; gap: var(--space-3); }
@media (min-width: 640px) { .opts.two-col { grid-template-columns: 1fr 1fr; } }

.opt {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  width: 100%;
  text-align: left;
  background: var(--karte);
  border: 1px solid var(--linie);
  border-radius: var(--radius-m);
  padding: var(--space-4) var(--space-6);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--tinte);
  cursor: pointer;
}
.opt:hover { border-color: var(--gruen); }
.opt .ico {
  width: 26px; height: 26px; flex: none;
  stroke: var(--tinte); stroke-width: 1.6;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.opt b { display: block; font-weight: 700; letter-spacing: -0.01em; }
.opt small { display: block; color: var(--grau); font-size: 0.875rem; line-height: 1.45; }

/* Navigation unten */

.wiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.wiz-nav .btn-ghost { color: var(--grau); font-weight: 500; }
.wiz-nav .btn-ghost:hover { border-color: var(--grau); color: var(--tinte); }
@media (max-width: 480px) {
  .wiz-nav { flex-direction: column-reverse; }
  .wiz-nav .btn { width: 100%; }
}

/* ---------- Ergebnis: das Dokument ---------- */

.ergebnis-wrap { display: grid; gap: var(--space-6); }

.ergebnis-wrap .angebot-row .wert { white-space: nowrap; color: var(--grau); }

.garantie-hinweis {
  display: flex;
  gap: var(--space-3);
  background: var(--gruen-tint);
  border: 1px solid color-mix(in srgb, var(--gruen) 18%, var(--papier));
  border-radius: var(--radius-s);
  padding: var(--space-4);
  font-size: 0.9375rem;
  color: var(--gruen-dunkel);
}
.garantie-hinweis .icon { width: 20px; height: 20px; margin-top: 2px; }

.kontakt-titel { font-size: 1.375rem; margin-top: var(--space-4); }

/* ---------- Danke ---------- */

.danke { text-align: center; padding-block: var(--space-16); }
.danke .big-check {
  width: 56px; height: 56px;
  stroke: var(--gruen); stroke-width: 2;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  margin-bottom: var(--space-4);
}
.danke p { color: var(--grau); max-width: 34em; margin-inline: auto; }
.danke .nummer {
  display: block;
  margin-top: var(--space-4);
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--grau);
}
