/* ==========================================================================
   NR Technologies — 6-Schritte-Check
   Geführte Klickstrecke im Kontaktbereich, umschaltbar aufs klassische Formular.
   ========================================================================== */

/* Der Kopf sitzt in einer schmalen Spalte — der Umschalter rutscht deshalb
   unter den Text, sobald es eng wird, statt ihn zusammenzuquetschen. */
.check-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px 20px;
  padding-bottom: 24px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.check-head > div {
  flex: 1 1 22ch;
}

.check-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "NRT Mono", monospace;
  font-size: var(--fs-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}

.check-sub {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-mute);
  max-width: 38ch;
  line-height: 1.55;
}

.btn--sm {
  padding: 11px 18px;
  font-size: 0.84rem;
  flex: 0 0 auto;
}

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

.check-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: "NRT Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  margin-bottom: 11px;
}

.progress {
  height: 3px;
  border-radius: 2px;
  background: var(--surface-hi);
  overflow: hidden;
  margin-bottom: 30px;
}

.progress-bar {
  height: 100%;
  width: 0;
  border-radius: 2px;
  background: var(--accent);
  transition: width 0.35s cubic-bezier(0.22, 0.8, 0.3, 1);
}

/* --- Frage und Antworten ------------------------------------------------- */

.check-question {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.12;
  margin: 0 0 22px;
  text-wrap: balance;
}

.check-hint {
  font-family: "NRT Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: -12px 0 20px;
}

.check-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 28px;
}

.check-option {
  display: block;
  width: 100%;
  text-align: left;
  font-family: "NRT Sans", sans-serif;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 17px 20px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.check-option:hover {
  border-color: var(--line-hi);
  background: var(--surface-hi);
}

.check-option[aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--accent-wash);
}

.check-option-title {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.check-option[aria-pressed="true"] .check-option-title {
  color: var(--accent);
}

.check-option-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--text-mute);
  margin-top: 5px;
  line-height: 1.5;
}

/* --- Navigation ---------------------------------------------------------- */

.check-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.check-nav .btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.check-back {
  font-family: "NRT Sans", sans-serif;
  font-size: 0.92rem;
  color: var(--text-mute);
  background: none;
  border: 0;
  padding: 8px 2px;
  cursor: pointer;
  transition: color 0.18s ease;
}

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

.check-back[hidden] {
  display: none;
}

/* --- Zusammenfassung im letzten Schritt ---------------------------------- */

.check-summary {
  border: 1px solid color-mix(in srgb, var(--accent) 26%, transparent);
  background: var(--accent-wash);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 26px;
}

.check-summary h4 {
  font-family: "NRT Mono", monospace;
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
  font-weight: 400;
}

.check-summary dl {
  margin: 0;
  display: grid;
  grid-template-columns: 11ch minmax(0, 1fr);
  gap: 9px 18px;
  font-size: 0.9rem;
}

.check-summary dt {
  color: var(--text-mute);
}

.check-summary dd {
  margin: 0;
  color: var(--text);
}

.check-summary .textlink {
  margin-top: 16px;
  font-size: 0.9rem;
}

/* Antwort auf die angeklickten Zeitfresser — steht zwischen Zusammenfassung
   und Preis: erst was wir dagegen tun, dann was es kostet. */
.check-answers {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
}

.check-answers h4 {
  margin-bottom: 12px;
}

.check-answer {
  margin: 0 0 10px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-mute);
}

.check-answer:last-child {
  margin-bottom: 0;
}

.check-answer strong {
  display: block;
  color: var(--text);
  font-weight: 500;
}

/* --- Die eine Zahl, die für diesen Betrieb gilt -------------------------- */

.check-price {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
}

.check-price-label {
  display: block;
  font-family: "NRT Mono", monospace;
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 8px;
}

.check-price-figure {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: "NRT Mono", monospace;
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  line-height: 1;
  color: var(--accent);
}

.check-price-figure small {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--text-mute);
}

.check-price-sub {
  margin: 12px 0 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 44ch;
}

/* --- Abschluss ----------------------------------------------------------- */

.check-done {
  text-align: left;
}

.check-done h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.14;
  margin: 0 0 14px;
}

.check-done p {
  color: var(--text-soft);
  margin: 0 0 20px;
  max-width: 46ch;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}
