/* ==========================================================================
   NR Technologies — Preisbereich
   Alle Stufen bleiben mit einem Klick erreichbar, aber es steht immer nur
   eine Zahl groß da: die für diesen Betrieb.
   ========================================================================== */

.pricing-picker {
  margin-bottom: clamp(22px, 3vw, 32px);
}

.pricing-picker-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: 14px;
}

.pricing-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tier {
  font-family: "NRT Sans", sans-serif;
  font-size: 0.95rem;
  color: var(--text-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.tier:hover {
  color: var(--text);
  border-color: var(--line-hi);
}

.tier[aria-pressed="true"] {
  background: var(--accent-wash);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 500;
}

/* --- Ergebnis ------------------------------------------------------------ */

.pricing-result {
  border: 1px solid color-mix(in srgb, var(--accent) 26%, transparent);
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--accent-wash), transparent 55%),
    var(--surface);
  padding: clamp(26px, 3.4vw, 44px);
}

.pricing-eyebrow {
  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: 14px;
}

.pricing-figure {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  font-family: "NRT Mono", monospace;
  font-variant-numeric: tabular-nums;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.9;
  color: var(--accent);
  margin: 0;
}

.pricing-figure small {
  font-size: clamp(0.82rem, 1.4vw, 0.95rem);
  letter-spacing: 0.06em;
  color: var(--text-mute);
  white-space: nowrap;
}

/* Der Preis in der Währung des Kunden: Termine statt Euro. */
.pricing-equiv {
  margin: 20px 0 0;
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 52ch;
  line-height: 1.55;
}

.pricing-equiv strong {
  color: var(--text);
  font-weight: 600;
}

/* --- Zahlweg-Vergleich --------------------------------------------------- */

.pricing-paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(14px, 2vw, 20px);
  margin-top: clamp(26px, 3.4vw, 38px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--line);
}

.path {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--ink) 55%, transparent);
  padding: clamp(20px, 2.4vw, 26px);
}

.path--best {
  border-color: color-mix(in srgb, var(--good) 42%, transparent);
}

.path h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: "NRT Sans", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0 0 16px;
}

.path-badge {
  font-family: "NRT Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--good) 45%, transparent);
  color: var(--good);
  white-space: nowrap;
}

.path dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}

.path dl > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
}

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

.path dd {
  margin: 0;
  font-family: "NRT Mono", monospace;
  font-variant-numeric: tabular-nums;
  color: var(--text-soft);
  white-space: nowrap;
}

.path dd.gone {
  color: var(--good);
}

.path-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--text-mute);
}

.path-total strong {
  font-family: "NRT Mono", monospace;
  font-variant-numeric: tabular-nums;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text);
}

.path--best .path-total strong {
  color: var(--good);
}

.path-note {
  margin: 12px 0 0;
  font-size: 0.82rem;
  color: var(--text-mute);
  line-height: 1.5;
}

/* --- Große Betriebe ------------------------------------------------------ */

.pricing-custom {
  display: none;
}

.pricing-result.is-custom .pricing-figure,
.pricing-result.is-custom .pricing-equiv,
.pricing-result.is-custom .pricing-paths {
  display: none;
}

.pricing-result.is-custom .pricing-custom {
  display: block;
}

.pricing-custom h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.08;
  margin: 0 0 14px;
}

.pricing-custom p {
  margin: 0 0 22px;
  color: var(--text-soft);
  max-width: 48ch;
}

/* --- Zusatzkanal --------------------------------------------------------- */

.pricing-addon {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
  margin-top: clamp(16px, 2vw, 22px);
  padding: clamp(18px, 2.4vw, 24px) clamp(20px, 3vw, 30px);
  border: 1px dashed var(--line-hi);
  border-radius: 12px;
}

.pricing-addon-text {
  max-width: 54ch;
}

.pricing-addon h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.pricing-addon p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-mute);
  line-height: 1.55;
}

.pricing-addon-figure {
  font-family: "NRT Mono", monospace;
  font-variant-numeric: tabular-nums;
  font-size: 1.5rem;
  color: var(--text-soft);
  white-space: nowrap;
}

.pricing-addon-figure small {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 6px;
}

/* --- Fußnoten ------------------------------------------------------------ */

.pricing-foot {
  margin-top: clamp(22px, 3vw, 30px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px 40px;
}

.pricing-foot p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
  max-width: 46ch;
  line-height: 1.55;
}

.pricing-foot strong {
  color: var(--text);
  font-weight: 600;
}

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

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