:root {
  --ink: #10233a;
  --ink-soft: #41556f;
  --muted: #66758a;
  --brand: #0a6d8d;
  --brand-dark: #07516d;
  --brand-light: #e7f7f7;
  --accent: #0eb39c;
  --accent-dark: #0a8878;
  --paper: #ffffff;
  --page: #f4f8fb;
  --line: #d7e4ec;
  --danger: #b42318;
  --danger-soft: #fff3f1;
  --success: #0b7a56;
  --shadow: 0 22px 60px rgba(23, 50, 78, .12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }
a { color: var(--brand-dark); }

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  transform: translateY(-140%);
  z-index: 10000;
  padding: 10px 14px;
  border-radius: 10px;
  color: white;
  background: var(--ink);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 28px));
  margin: 12px auto 0;
  padding: 9px 10px 9px 14px;
  border: 1px solid rgba(215, 228, 236, .9);
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 32px rgba(31, 59, 88, .11);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-dark);
  text-decoration: none;
  line-height: 1;
}
.brand-mark { width: 38px; height: 38px; color: var(--brand); }
.brand-mark svg { display: block; width: 100%; height: 100%; }
.brand strong, .brand em { display: block; font-style: normal; }
.brand strong { font-size: 15px; letter-spacing: -.01em; }
.brand em { margin-top: 3px; color: var(--accent-dark); font-size: 14px; font-weight: 800; }

main, .site-footer { width: min(1180px, calc(100% - 28px)); margin-inline: auto; }

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-top: 22px;
  padding: clamp(28px, 5vw, 66px);
  overflow: hidden;
  border: 1px solid #d8e7ef;
  border-radius: 38px;
  background:
    radial-gradient(circle at 10% 0%, rgba(14,179,156,.16), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f3fbff 58%, #eaf7f5 100%);
  box-shadow: var(--shadow);
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(40px, 5.7vw, 69px);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(19px, 2.1vw, 25px);
  line-height: 1.28;
}
.hero-lead strong { color: var(--brand-dark); }
.hero-explain {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.duration { color: var(--muted); font-size: 14px; font-weight: 700; }
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}
.trust-list li::before { content: "✓"; margin-right: 7px; color: var(--success); font-weight: 900; }
.hero-visual { min-width: 0; }
.hero-visual svg { display: block; width: 100%; filter: drop-shadow(0 20px 32px rgba(26, 66, 88, .1)); }

.button {
  min-height: 48px;
  border: 0;
  border-radius: 15px;
  padding: 12px 18px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button:disabled { cursor: wait; opacity: .65; }
.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 12px 28px rgba(10,109,141,.22);
}
.button-secondary {
  color: var(--ink);
  border: 1px solid #bfcdd8;
  background: white;
  box-shadow: none;
}
.button-large { min-height: 56px; padding-inline: 24px; font-size: 16px; }
.button-small { min-height: 40px; padding: 8px 14px; border-radius: 999px; font-size: 13px; }

.how-it-works,
.value-section,
.faq-section {
  margin-top: 24px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 12px 36px rgba(31,59,88,.07);
}
.how-it-works h2,
.value-section h2,
.faq-section h2,
.form-intro h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.06;
  letter-spacing: -.035em;
}
.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.process-list li {
  display: flex;
  gap: 12px;
  min-width: 0;
  padding: 18px;
  border: 1px solid #dce8ef;
  border-radius: 18px;
  background: #f8fbfd;
}
.process-list > li > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: white;
  background: var(--brand);
  font-weight: 900;
}
.process-list strong, .process-list small { display: block; }
.process-list small { margin-top: 4px; color: var(--muted); font-size: 13px; }
.clarity-note {
  margin: 18px 0 0;
  padding: 15px 17px;
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  color: var(--ink-soft);
  background: var(--brand-light);
  font-size: 14px;
}

.form-section { margin-top: 28px; scroll-margin-top: 96px; }
.form-intro { max-width: 780px; margin: 0 auto 20px; text-align: center; }
.form-intro > p:last-child { margin: 12px auto 0; color: var(--muted); }
.form-card {
  max-width: 840px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #cedee8;
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow);
}
.progress-wrap {
  padding: 18px 22px 14px;
  color: white;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand) 55%, var(--accent));
}
.phase-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.phase-row span {
  padding: 7px 8px;
  border-radius: 999px;
  color: rgba(255,255,255,.7);
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}
.phase-row span.active { color: var(--brand-dark); background: white; }
.phase-row span.done { color: white; background: rgba(255,255,255,.18); }
.progress-track { height: 7px; margin-top: 13px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.22); }
.progress-track span { display: block; width: 0; height: 100%; border-radius: inherit; background: white; transition: width .25s ease; }
.progress-copy { margin: 8px 0 0; color: rgba(255,255,255,.84); font-size: 12px; text-align: right; }

#leadForm { min-height: 520px; }
.question { display: none; padding: clamp(24px, 5vw, 48px); animation: questionIn .2s ease; }
.question.active { display: block; }
@keyframes questionIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.question-kicker { margin: 0 0 7px; color: var(--accent-dark); font-size: 13px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.question h3 { max-width: 690px; margin: 0; font-size: clamp(27px, 4vw, 39px); line-height: 1.08; letter-spacing: -.035em; }
.question-help { max-width: 680px; margin: 10px 0 0; color: var(--muted); }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; margin-top: 24px; }
.choice-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.choice {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 72px;
  padding: 15px 16px;
  color: var(--ink);
  text-align: left;
  border: 1.5px solid #c8d8e2;
  border-radius: 16px;
  background: white;
  cursor: pointer;
  transition: border-color .12s ease, background .12s ease, color .12s ease, transform .12s ease, box-shadow .12s ease;
}
.choice:hover { border-color: var(--brand); transform: translateY(-1px); box-shadow: 0 8px 18px rgba(22,70,92,.08); }
.choice.selected { color: white; border-color: transparent; background: linear-gradient(135deg, var(--brand), var(--accent)); box-shadow: 0 10px 24px rgba(10,109,141,.2); }
.choice strong { font-size: 15px; line-height: 1.25; }
.choice small { margin-top: 4px; color: var(--muted); font-size: 12px; }
.choice.selected small { color: rgba(255,255,255,.82); }
.choice-wide { grid-column: 1 / -1; }
.inline-notice {
  margin-top: 15px;
  padding: 13px 15px;
  border: 1px solid #f1c9b9;
  border-radius: 13px;
  color: #8d3d22;
  background: #fff7f1;
  font-size: 14px;
}

.contact-explain { padding: 13px 15px; border-radius: 13px; background: var(--brand-light); color: var(--ink-soft); }
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 13px; margin-top: 22px; }
.field { display: grid; gap: 6px; }
.field > span { color: var(--ink-soft); font-size: 13px; font-weight: 800; }
.field input {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1.5px solid #c8d8e2;
  border-radius: 13px;
  color: var(--ink);
  background: white;
  outline: none;
}
.field input:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(10,109,141,.1); }
.field input.invalid { border-color: var(--danger); background: var(--danger-soft); box-shadow: 0 0 0 4px rgba(180,35,24,.08); }
.field small { color: var(--muted); font-size: 11px; }
.field-wide { grid-column: 1 / -1; }
.consent-box { margin-top: 18px; padding: 15px; border: 1px solid #d6e3eb; border-radius: 15px; background: #f8fbfd; }
.consent-box.invalid { border-color: var(--danger); background: var(--danger-soft); }
.consent-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.consent-check input { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 2px; accent-color: var(--brand); }
.consent-check span { color: var(--ink-soft); font-size: 12.5px; line-height: 1.45; }
.consent-box > p { margin: 10px 0 0 30px; color: var(--muted); font-size: 11.5px; }
.button-submit { width: 100%; min-height: 58px; margin-top: 17px; font-size: 16px; }
.submit-trust { display: flex; justify-content: center; gap: 8px 18px; flex-wrap: wrap; margin-top: 11px; color: var(--muted); font-size: 11.5px; font-weight: 700; }
.submit-trust span::before { content: "✓"; margin-right: 5px; color: var(--success); }
.form-navigation { min-height: 50px; padding: 0 clamp(24px, 5vw, 48px) 20px; }
.back-button { padding: 7px 0; border: 0; color: var(--brand-dark); background: none; font-weight: 800; cursor: pointer; }
.form-error { margin: 0 clamp(24px, 5vw, 48px) 22px; padding: 12px 14px; border: 1px solid #efb8b1; border-radius: 13px; color: var(--danger); background: var(--danger-soft); font-size: 13px; font-weight: 700; }
.honeypot { position: absolute !important; left: -10000px !important; opacity: 0 !important; pointer-events: none !important; }
.success-panel { padding: clamp(28px, 6vw, 58px); text-align: center; }
.success-icon { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 50%; color: white; background: var(--success); font-size: 34px; font-weight: 900; }
.success-panel h3 { margin: 0; font-size: clamp(29px, 4vw, 42px); letter-spacing: -.035em; }
.success-panel > p { max-width: 620px; margin: 12px auto 0; color: var(--muted); }
.success-next { max-width: 560px; margin: 24px auto 0; padding: 17px; border-radius: 16px; background: #f1faf7; text-align: left; }
.success-next ul { margin: 9px 0 0; padding-left: 20px; color: var(--ink-soft); }

.value-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; align-items: start; }
.value-section > div > p:last-child { color: var(--muted); }
.value-cards { display: grid; gap: 10px; }
.value-cards article { padding: 17px; border: 1px solid var(--line); border-radius: 16px; background: #f9fbfd; }
.value-cards p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.faq-list { display: grid; gap: 10px; margin-top: 24px; }
.faq-list details { overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: #fbfdfe; }
.faq-list summary { padding: 16px 18px; font-weight: 850; cursor: pointer; }
.faq-list p { margin: 0; padding: 0 18px 17px; color: var(--muted); }

.site-footer {
  margin-top: 26px;
  margin-bottom: 28px;
  padding: 28px;
  border-radius: var(--radius-lg);
  color: #dbe7ef;
  background: #10283b;
}
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand span { margin-top: 4px; color: #9eb4c3; font-size: 13px; }
.site-footer nav { display: flex; gap: 10px 18px; flex-wrap: wrap; margin-top: 18px; }
.site-footer a, .site-footer nav button { padding: 0; border: 0; color: #92e4d5; background: none; font: inherit; cursor: pointer; }
.partner-note { max-width: 850px; margin: 18px 0 0; color: #a9becb; font-size: 12px; }
.site-footer > p:last-child { margin: 18px 0 0; color: #829baa; font-size: 11px; }

.consent-banner {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  max-width: 860px;
  margin: auto;
  padding: 18px;
  border: 1px solid #ccdce6;
  border-radius: 20px;
  background: white;
  box-shadow: 0 22px 70px rgba(17,40,59,.24);
}
.consent-title { margin: 0 0 5px; font-weight: 900; }
.consent-banner p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.consent-links { margin-top: 7px !important; font-size: 12px !important; }
.consent-actions { display: flex; gap: 9px; }
.consent-actions .button { white-space: nowrap; }

[hidden] { display: none !important; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .process-list { grid-template-columns: 1fr; }
  .value-section { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  main, .site-footer { width: min(100% - 16px, 1180px); }
  .site-header { width: calc(100% - 16px); margin-top: 8px; }
  .brand-mark { width: 33px; height: 33px; }
  .brand strong { font-size: 13px; }
  .brand em { font-size: 12px; }
  .button-small { min-height: 39px; padding-inline: 12px; font-size: 12px; }
  .hero { margin-top: 11px; padding: 24px 16px; border-radius: 26px; }
  .hero h1 { font-size: 40px; }
  .hero-lead { font-size: 20px; }
  .hero-explain { font-size: 14px; }
  .hero-actions { display: grid; gap: 9px; }
  .hero-actions .button { width: 100%; }
  .duration { text-align: center; }
  .trust-list { display: grid; gap: 7px; font-size: 12.5px; }
  .how-it-works, .value-section, .faq-section { padding: 21px 16px; border-radius: 23px; }
  .how-it-works h2, .value-section h2, .faq-section h2, .form-intro h2 { font-size: 31px; }
  .form-section { scroll-margin-top: 74px; }
  .form-intro { padding-inline: 8px; text-align: left; }
  .form-card { border-radius: 23px; }
  .progress-wrap { padding: 13px 12px 11px; }
  .phase-row { gap: 4px; }
  .phase-row span { padding: 6px 3px; font-size: 10px; }
  #leadForm { min-height: 500px; }
  .question { padding: 22px 14px 18px; }
  .question h3 { font-size: 29px; }
  .question-help { font-size: 14px; }
  .choice-grid, .choice-grid.two { grid-template-columns: 1fr; gap: 8px; margin-top: 18px; }
  .choice-wide { grid-column: auto; }
  .choice { min-height: 61px; padding: 12px 13px; border-radius: 14px; }
  .contact-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .consent-check span { font-size: 12px; }
  .consent-box > p { margin-left: 0; }
  .form-navigation { padding: 0 14px 16px; }
  .form-error { margin: 0 14px 18px; }
  .site-footer { padding: 22px 16px; border-radius: 23px; }
  .consent-banner { grid-template-columns: 1fr; gap: 12px; padding: 15px; }
  .consent-actions { display: grid; grid-template-columns: 1fr; }
  .consent-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (max-width: 640px) {
  .site-header { transition: opacity .18s ease, transform .18s ease; }
  .site-header.form-active { opacity: 0; pointer-events: none; transform: translateY(-120%); }
}

.legal-page { background: #f4f8fb; }
.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(900px, calc(100% - 28px));
  margin: 18px auto;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}
.legal-back { font-size: 13px; font-weight: 800; text-decoration: none; }
.legal-content {
  width: min(900px, calc(100% - 28px));
  margin: 0 auto 30px;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: 0 14px 42px rgba(31,59,88,.08);
}
.legal-content h1 { margin: 0 0 28px; font-size: clamp(38px, 6vw, 60px); line-height: 1; letter-spacing: -.05em; }
.legal-content section + section { margin-top: 27px; padding-top: 23px; border-top: 1px solid #e4edf2; }
.legal-content h2 { margin: 0 0 10px; font-size: 21px; }
.legal-content p, .legal-content li { color: var(--ink-soft); }
.legal-content ul { padding-left: 22px; }
.legal-content code { padding: 2px 5px; border-radius: 5px; background: #edf3f7; }
@media (max-width: 640px) {
  .legal-header { width: calc(100% - 16px); }
  .legal-header .brand em { display: none; }
  .legal-content { width: calc(100% - 16px); padding: 24px 16px; border-radius: 22px; }
}

/* =========================================================
   V2.1 Conversion-Finalisierung 25.07.2026
   Klarer Nutzen, früher Formularzugang, positive Transparenz
   ========================================================= */
.contact-note {
  max-width: 650px;
  margin: 13px 0 0;
  padding: 11px 13px;
  border: 1px solid #cde8e3;
  border-radius: 13px;
  color: #36556a;
  background: rgba(229, 249, 245, .78);
  font-size: 13px;
  font-weight: 650;
}
.form-reassurance {
  display: flex;
  justify-content: center;
  gap: 8px 18px;
  flex-wrap: wrap;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 750;
}
.form-reassurance span::before,
.contact-value-list li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--success);
  font-weight: 900;
}
.contact-value-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.contact-value-list li {
  padding: 10px 11px;
  border: 1px solid #d9e8ed;
  border-radius: 12px;
  color: var(--ink-soft);
  background: #fbfdfd;
  font-size: 11.5px;
  font-weight: 700;
}
.choice:focus-visible,
.button:focus-visible,
.back-button:focus-visible,
.site-footer button:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid rgba(14,179,156,.42);
  outline-offset: 3px;
}
.progress-copy { font-weight: 800; }

@media (max-width: 640px) {
  .hero { padding-bottom: 20px; }
  .hero h1 { font-size: 37px; }
  .hero-lead { font-size: 18.5px; }
  .contact-note { font-size: 12.3px; line-height: 1.38; }
  .form-section { margin-top: 16px; }
  .form-intro { margin-bottom: 14px; }
  .form-intro h2 { font-size: 29px; }
  .form-reassurance {
    display: grid;
    justify-content: start;
    gap: 6px;
    margin-top: 11px;
    font-size: 12px;
  }
  .contact-value-list { grid-template-columns: 1fr; gap: 6px; }
  .contact-value-list li { padding: 8px 10px; }
  .how-it-works { margin-top: 18px; }
}
