@font-face {
	font-family: 'Suisse';
	src: url("fonts/suisseintl-regular-webfont.woff2") format("woff2"), url("fonts/suisseintl-regular-webfont.woff") format("woff");
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'Suisse';
	src: url("fonts/suisseintl-light-webfont.woff2") format("woff2"), url("fonts/suisseintl-light-webfont.woff") format("woff");
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: 'Suisse';
	src: url("fonts/suisseintl-thin-webfont.woff2") format("woff2"), url("fonts/suisseintl-thin-webfont.woff") format("woff");
	font-weight: 200;
	font-style: normal;
}
@font-face {
	font-family: 'Suisse';
	src: url("fonts/suisseintl-bold-webfont.woff2") format("woff2"), url("fonts/suisseintl-bold-webfont.woff") format("woff");
	font-weight: 700;
	font-style: normal;
}

:root {
  --navy: #293d4b;
  --navy-strong: #1f313d;
  --light: #e9e9eb;
  --light-strong: #dde0e3;
  --white: #ffffff;
  --lime: #cdff00;
  --lime-strong: #b7e400;
  --muted: #6b8090;
  --muted-strong: #516572;
  --border: #d4dade;
  --border-soft: #e7eaed;
  --surface: #f4f6f7;
  --surface-strong: #eef1f3;
  --error: #c74848;
  --error-bg: #fff2f2;
  --shadow: 0 14px 32px rgba(41, 61, 75, 0.08);
  --shadow-soft: 0 4px 16px rgba(41, 61, 75, 0.08);
  --radius: 10px;
  --radius-sm: 8px;
  --font-sans: "Suisse", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

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

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--light);
  color: var(--navy);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
}

.app-header {
  background: var(--navy);
  color: var(--white);
  padding: 0 40px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.app-logo {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.app-logo span {
  color: var(--lime);
}

.app-header-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

.progress-bar {
  background: var(--navy);
  padding: 0 40px 24px;
}

.steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  gap: 0;
  max-width: 880px;
}

.step {
  flex: 1;
  min-width: 0;
  position: relative;
  padding-right: 16px;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 36px;
  right: 0;
  top: 14px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.step.is-active:not(:last-child)::after,
.step.is-done:not(:last-child)::after {
  background: rgba(205, 255, 0, 0.4);
}

.step-shell {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-right: 8px;
  background: var(--navy);
}

.step-link {
  text-decoration: none;
}

.step-link:hover .step-label,
.step-link:focus-visible .step-label {
  color: var(--white);
}

.step-link:focus-visible {
  outline: none;
}

.step-link:focus-visible .step-num {
  box-shadow: 0 0 0 3px rgba(205, 255, 0, 0.18);
}

.step-num {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.38);
  transition: all 0.2s ease;
}

.step.is-active .step-num {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--navy);
}

.step.is-done .step-num {
  border-color: var(--lime);
  color: var(--lime);
}

.step-copy {
  min-width: 0;
  padding-top: 1px;
}

.step-label {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.34);
  white-space: nowrap;
}

.step.is-active .step-label {
  color: var(--white);
}

.step.is-done .step-label {
  color: rgba(255, 255, 255, 0.62);
}

.step-value {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.7);
  max-width: 180px;
  overflow-wrap: anywhere;
}

.app-main {
  padding: 48px 40px 60px;
  display: flex;
  justify-content: center;
}

.content-shell {
  width: 100%;
  max-width: 760px;
}

.page-intro {
  margin-bottom: 36px;
  animation: fade-up 0.45s ease forwards;
}

.page-title {
  margin: 0 0 6px;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.page-subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.alert {
  margin: 0 0 20px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  animation: fade-up 0.35s ease forwards;
}

.alert-error {
  background: var(--error-bg);
  color: #7a2525;
  border-color: rgba(199, 72, 72, 0.24);
}

.alert-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
}

.alert ul {
  margin: 0;
  padding-left: 18px;
}

.alert li + li {
  margin-top: 6px;
}

.alert a {
  color: inherit;
}

#insurance-private-only-alert {
  background: #cdff00;
  color: #293d4b;
}

.selection-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.selection-group {
  border: 0;
  padding: 0;
  margin: 0;
}

.selection-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.selection-grid.sg_behandlungsfeld {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.selection-option-static {
  grid-column: 1 / -1;
}

.selection-option {
  /*display: block;*/
  display: flex;
  cursor: pointer;
  animation: fade-up 0.36s ease forwards;
  animation-delay: calc(0.08s + var(--item-index, 0) * 0.04s);
  opacity: 0;
  transform: translateY(12px);
}

.selection-option-static {
  cursor: default;
}

.selection-control {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.selection-card {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  flex: 1;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1.5px solid transparent;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 0.16s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.selection-option:hover .selection-card {
  transform: translateX(4px);
  border-color: var(--navy);
  box-shadow: var(--shadow-soft);
}

.selection-option-static:hover .selection-card {
  transform: none;
  border-color: var(--border-soft);
  box-shadow: none;
}

.selection-control:focus-visible + .selection-card {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(41, 61, 75, 0.1);
}

.selection-control:checked + .selection-card {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.selection-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.selection-meta {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
}

.selection-control:checked + .selection-card .selection-meta {
  color: rgba(255, 255, 255, 0.68);
}

.selection-info-card {
  align-items: flex-start;
  gap: 20px;
  border-color: var(--border-soft);
  background: linear-gradient(135deg, #f9fbfc 0%, #eef3f6 100%);
}

.selection-info-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.selection-info-button {
  flex-shrink: 0;
}

.selection-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid #d0d5da;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: transparent;
  transition: all 0.2s ease;
}

.selection-control:checked + .selection-card .selection-check {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--navy);
}

.doctor-card {
  justify-content: flex-start;
  align-items: center;
}

.doctor-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.doctor-media {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5f6f7 0%, #dfe5e9 100%);
  border: 1px solid rgba(41, 61, 75, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.doctor-initials {
  position: relative;
  z-index: 0;
  line-height: 1;
}

.doctor-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selection-control:checked + .doctor-card .doctor-media {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(205, 255, 0, 0.55);
  color: var(--lime);
}

.doctor-copy {
  flex: 1 1 14rem;
  min-width: 0;
}

.doctor-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.doctor-title {
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--muted);
}

.selection-control:checked + .doctor-card .doctor-title {
  color: rgba(255, 255, 255, 0.62);
}

.doctor-insurance-meta {
  margin-top: 0;
  margin-left: auto;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
}

.doctor-private-meta {
  background: var(--surface);
  color: var(--muted-strong);
}

.doctor-public-meta {
  background: rgba(205, 255, 0, 0.35);
  color: var(--navy);
}

.selection-control:checked + .selection-card .doctor-private-meta {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
}

.selection-control:checked + .selection-card .doctor-public-meta {
  background: var(--lime);
  color: var(--navy);
}

.note-card,
.summary-card,
.success-card,
.form-card {
  border-radius: var(--radius);
  animation: fade-up 0.42s ease forwards;
}

.note-card,
.summary-card {
  background: var(--surface);
  border-left: 3px solid var(--lime);
  padding: 18px 22px;
}

.note-card {
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.55;
}

.summary-card {
  margin-bottom: 8px;
}

.preface-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.preface-stack .summary-card,
.preface-stack .note-card {
  margin: 0;
}

.summary-label,
.form-section-label {
  margin: 0 0 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-section-note {
  margin: -4px 0 22px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

.summary-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.summary-key {
  width: 130px;
  flex-shrink: 0;
  font-size: 12px;
  color: var(--muted);
}

.summary-value {
  font-size: 13px;
  font-weight: 700;
}

.summary-value a {
  text-decoration: none;
  border-bottom: 1px solid rgba(41, 61, 75, 0.24);
}

.summary-value a:hover,
.summary-value a:focus-visible {
  border-bottom-color: currentColor;
}

.form-card {
  background: var(--white);
  padding: 34px 40px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field-span-2 {
  grid-column: 1 / -1;
}

.field-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.required-mark {
  color: var(--lime-strong);
}

.text-input,
.textarea-input,
.select-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.text-input::placeholder,
.textarea-input::placeholder {
  color: #97a3ac;
}

.text-input:focus,
.textarea-input:focus,
.select-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(41, 61, 75, 0.08);
}

.field-invalid .text-input,
.field-invalid .textarea-input,
.field-invalid .select-input,
.field-invalid .toggle-option,
.field-invalid .checkbox-row {
  border-color: var(--error);
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -7px;
  border-right: 1.5px solid var(--navy);
  border-bottom: 1.5px solid var(--navy);
  transform: rotate(45deg);
  pointer-events: none;
}

.select-input {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
}

.textarea-input {
  min-height: 120px;
  resize: vertical;
}

.field-hint,
.field-error {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
}

.field-hint {
  color: var(--muted);
}

.field-error {
  color: var(--error);
}

.inline-alert {
  margin: 2px 0 0;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(41, 61, 75, 0.1);
  background: var(--surface);
  color: var(--muted-strong);
  font-size: 12px;
  line-height: 1.5;
}

.toggle-group {
  display: flex;
  gap: 10px;
}

.toggle-option {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  line-height: 1.4;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.toggle-option:hover {
  border-color: var(--navy);
}

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

.toggle-option.selected,
.toggle-option:has(input:checked) {
  border-color: var(--navy);
  background: var(--surface);
}

.toggle-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid #c0c8cf;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toggle-dot::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.toggle-option.selected .toggle-dot,
.toggle-option:has(input:checked) .toggle-dot {
  border-color: var(--navy);
}

.toggle-option.selected .toggle-dot::after,
.toggle-option:has(input:checked) .toggle-dot::after {
  opacity: 1;
}

.toggle-text {
  font-size: 14px;
  font-weight: 700;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  width: 100%;
}

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

.checkbox-box {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: all 0.2s ease;
}

.checkbox-box::after {
  content: "✓";
  font-size: 12px;
  font-weight: 700;
  color: transparent;
}

.checkbox-input:focus-visible + .checkbox-box {
  box-shadow: 0 0 0 3px rgba(41, 61, 75, 0.08);
}

.checkbox-input:checked + .checkbox-box {
  border-color: var(--navy);
  background: var(--navy);
}

.checkbox-input:checked + .checkbox-box::after {
  color: var(--lime);
}

.checkbox-text {
  font-size: 12px;
  line-height: 1.6;
  color: var(--navy);
}

.action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  animation: fade-up 0.45s ease forwards;
}

.action-row.align-end {
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

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

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

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--navy-strong);
}

.btn-secondary {
  border-color: #c0c8cf;
  background: transparent;
  color: var(--muted-strong);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-arrow {
  font-size: 16px;
}

.success-card {
  background: var(--white);
  padding: 40px;
  box-shadow: var(--shadow);
  text-align: left;
}

.success-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.success-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-strong);
}

.app-footer {
  padding: 20px 40px;
  border-top: 1px solid var(--light-strong);
  display: flex;
  justify-content: center;
  gap: 24px;
}

.app-footer a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
}

.app-footer a:hover,
.app-footer a:focus-visible {
  color: var(--navy);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 990px) {
  .selection-grid.sg_schwerpunkt {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .steps {
    max-width: none;
  }

  .step-value {
    display: none;
  }

  .step-label {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 700px) {
  .app-header,
  .progress-bar,
  .app-main,
  .app-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-title {
    font-size: 26px;
  }

  .form-card,
  .success-card {
    padding: 28px 22px;
  }

  .form-grid-two {
    grid-template-columns: 1fr;
  }

  .action-row {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .toggle-group {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .app-header {
    padding-top: 14px;
    padding-bottom: 14px;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .steps {
    justify-content: space-between;
    max-width: 280px;
  }

  .step {
    padding-right: 0;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .step-label {
    display: none;
  }

  .selection-card,
  .doctor-card {
    padding: 15px 16px;
  }

  .selection-info-card {
    flex-direction: column;
    align-items: stretch;
  }

  .selection-info-button {
    width: 100%;
  }

  .doctor-main {
    gap: 12px;
  }

  .doctor-insurance-meta {
    margin-left: 0;
    white-space: normal;
    text-align: left;
  }

  .summary-row {
    flex-direction: column;
    gap: 2px;
  }

  .summary-key {
    width: auto;
  }
}
