/* Transportpartner Landingpage */
:root {
  --navy:#edf4fb;
  --blue:#dce8f5;
  --sky:#1a6bd4;
  --sky2:#1558b8;
  --light:#0d4fa0;
  --white:#0a1e3a;
  --gray:#4a6a8a;
  --line:#d7e3f0;
  --surface:#ffffff;
  --surface-soft:#f7fbff;
  --shadow-soft:0 16px 42px rgba(20,47,91,0.08);
}

*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  min-height:100vh;
  overflow-x:hidden;
  background:
    radial-gradient(circle at top left, rgba(43,105,246,0.08), transparent 30%),
    linear-gradient(180deg,#f8fbff 0%,#edf4fb 42%,#e6f0fb 100%);
  color:var(--white);
  font-family:'Barlow',sans-serif;
  font-weight:300;
}
a { color:inherit; }

body > nav {
  font-weight:400 !important;
}

body > nav .logout-btn.nav-partner-register-btn {
  background:linear-gradient(135deg,#2b69f6 0%,#1a57d8 100%) !important;
  border-color:transparent !important;
  color:#fff !important;
  box-shadow:0 10px 22px rgba(26,107,212,0.16) !important;
  white-space:nowrap !important;
}
body > nav .logout-btn.nav-partner-register-btn:hover {
  background:linear-gradient(135deg,#1f5de4 0%,#0d4fa0 100%) !important;
  color:#fff !important;
}

body > nav .logout-btn.nav-customer-link {
  gap:7px !important;
  min-height:34px !important;
  padding:7px 8px !important;
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  color:#1a6bd4 !important;
  box-shadow:none !important;
  font-family:'Barlow',sans-serif !important;
  font-size:11px !important;
  font-weight:700 !important;
  letter-spacing:1.8px !important;
  text-transform:uppercase !important;
  text-decoration-line:underline !important;
  text-decoration-style:solid !important;
  text-decoration-thickness:1.5px !important;
  text-underline-offset:4px !important;
}
body > nav .logout-btn.nav-customer-link::before {
  content:'\2197';
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:14px;
  height:14px;
  border:1.5px solid currentColor;
  font-family:'Barlow',sans-serif;
  font-size:11px;
  line-height:1;
  text-decoration:none;
}
body > nav .logout-btn.nav-customer-link:hover {
  background:transparent !important;
  color:#0d4fa0 !important;
}

.modal-overlay {
  display:none;
  position:fixed;
  inset:0;
  z-index:1200;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(7,27,53,0.42);
  backdrop-filter:blur(10px);
}
.modal-overlay.open { display:flex; }
body.modal-open { overflow:hidden; }
.modal-box {
  width:100%;
  max-height:88vh;
  overflow-y:auto;
  border:1px solid rgba(26,107,212,0.14);
  border-radius:24px;
  background:#fff;
  box-shadow:0 28px 80px rgba(10,30,80,0.22);
}
.auth-modal-box { max-width:460px; }
.modal-header {
  position:sticky;
  top:0;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:22px 28px;
  border-bottom:1px solid #eaf1f9;
  background:#fff;
}
.modal-header h2 {
  margin:0;
  color:#0a1e3a;
  font-family:'Barlow Condensed',sans-serif;
  font-size:22px;
  letter-spacing:3px;
  text-transform:uppercase;
}
.modal-close {
  border:0;
  background:none;
  color:#4a6a8a;
  font-size:26px;
  line-height:1;
  cursor:pointer;
}
.modal-close:hover { color:#1a6bd4; }
.auth-modal-content {
  padding:32px 36px 40px;
  background:#fff;
}
.auth-tabs {
  display:flex;
  margin-bottom:28px;
  border-bottom:2px solid #dce8f5;
}
.auth-tab {
  flex:1;
  margin-bottom:-2px;
  padding:14px;
  border-bottom:3px solid transparent;
  color:#7a96aa;
  cursor:pointer;
  font-size:13px;
  font-weight:700;
  letter-spacing:1.5px;
  text-align:center;
  text-transform:uppercase;
  transition:color .2s ease, border-color .2s ease;
}
.auth-tab.active {
  color:#1a3a6a;
  border-bottom-color:#1a6bd4;
}
.auth-panel {
  display:none;
  flex-direction:column;
  gap:12px;
}
.auth-panel.active { display:flex; }
.auth-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:48px;
  margin-top:4px;
  border:0;
  border-radius:15px;
  background:linear-gradient(135deg,#2b69f6 0%,#1a57d8 100%);
  color:#fff;
  cursor:pointer;
  font:700 14px 'Barlow Condensed',sans-serif;
  letter-spacing:3px;
  text-transform:uppercase;
  transition:background .2s ease, transform .2s ease;
}
.auth-btn:hover {
  background:linear-gradient(135deg,#1f5de4 0%,#0d4fa0 100%);
  transform:translateY(-1px);
}
.auth-hint {
  margin-top:4px;
  color:#7a96aa;
  font-size:12px;
  text-align:center;
}
.auth-hint a {
  color:#1a6bd4;
  cursor:pointer;
  text-decoration:underline;
}
.role-switch {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  width:min(340px,100%);
  margin:6px auto;
}
.role-choice {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  padding:12px 10px;
  border:2px solid #dce8f5;
  border-radius:15px;
  background:#f7fbff;
  cursor:pointer;
  text-align:center;
  transition:background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.role-choice:hover {
  border-color:#1a6bd4;
  background:#eef5ff;
}
.role-choice.selected {
  border-color:#1a6bd4;
  background:#ddeaf8;
  box-shadow:0 0 0 3px rgba(26,107,212,0.15);
}
.role-choice-icon {
  font-size:22px;
  line-height:1;
}
.role-choice strong {
  color:#0a1e3a;
  font-size:13px;
}
.role-choice span {
  color:#4a6a8a;
  font-size:11px;
}
.auth-select { display:none; }

/* Registration modal fields */
.register-panel-title {
  color:#06364f;
  font-family:'Barlow Condensed',sans-serif;
  font-size:18px;
  font-weight:700;
  letter-spacing:.5px;
}
.auth-field {
  display:flex;
  flex-direction:column;
  gap:6px;
}
.auth-field > span,
.invoice-email-check span {
  color:#1a6bd4;
  font-family:'Barlow Condensed',sans-serif;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.5px;
}
.auth-field > span {
  text-transform:uppercase;
}
.auth-field input,
.auth-field select,
.phone-field select,
.country-picker select {
  width:100%;
  min-height:46px;
  padding:0 14px;
  border:1px solid #d6e4f5;
  border-radius:12px;
  background:#f7fbff;
  color:#081428;
  font:400 13px 'Barlow',sans-serif;
  outline:none;
}
.auth-field input[type="file"] {
  padding:11px 14px;
}
.auth-field .auth-select {
  display:block;
  margin:0;
}
.phone-field {
  display:grid;
  grid-template-columns:96px minmax(0,1fr);
  gap:8px;
}
.invoice-email-check {
  display:flex;
  align-items:flex-start;
  gap:8px;
  color:#4a6a8a;
  font-size:12px;
  line-height:1.35;
}
.invoice-email-check input {
  width:auto;
  min-height:0;
  padding:0;
  border:0;
  background:transparent;
  margin-top:2px;
  accent-color:#1a6bd4;
}
.country-picker {
  display:grid;
  gap:8px;
}
.country-pill {
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  width:100%;
  min-height:44px;
  padding:0 12px;
  border:1px solid #d6e4f5;
  border-radius:12px;
  background:#f7fbff;
  color:#081428;
  font-size:12px;
}
.country-pill input {
  width:auto;
  min-height:0;
  padding:0;
  border:0;
  background:transparent;
  accent-color:#1a6bd4;
}
@media (max-width:480px) {
  .role-switch,
  .split-fields,
  .phone-field {
    grid-template-columns:1fr;
  }
}

/* Transportpartner Auth Modal */
.transportpartner-auth-modal.auth-modal-box {
  width:min(1120px,calc(100vw - 32px));
  max-width:min(1120px,calc(100vw - 32px));
  max-height:94vh;
  overflow:hidden;
  border-radius:28px;
}
.transport-auth-layout {
  display:grid;
  grid-template-columns:minmax(280px,.9fr) minmax(0,1.35fr);
  min-height:min(760px,88vh);
}
.transport-auth-sidebar {
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:28px;
  padding:38px 34px;
  background:linear-gradient(180deg,#071b35 0%,#0c315f 100%);
  color:#fff;
}
.transport-auth-brand {
  font-family:'Barlow Condensed',sans-serif;
  font-size:24px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
}
.transport-auth-brand-sub {
  margin-top:4px;
  color:#72cfff;
  font-size:12px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
}
.transport-auth-intro {
  display:grid;
  gap:14px;
}
.transport-auth-intro h3 {
  margin:0;
  color:#fff;
  font-family:'Barlow Condensed',sans-serif;
  font-size:38px;
  line-height:.96;
  letter-spacing:.5px;
}
.transport-auth-intro p,
.transport-auth-sidebar-foot {
  margin:0;
  color:rgba(255,255,255,.78);
  font-size:14px;
  line-height:1.65;
}
.transport-auth-steps {
  display:grid;
  gap:12px;
}
.transport-auth-side-step {
  display:grid;
  grid-template-columns:42px minmax(0,1fr);
  gap:12px;
  align-items:center;
  padding:12px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  background:rgba(255,255,255,.06);
}
.transport-auth-side-step.is-active {
  border-color:rgba(114,207,255,.58);
  background:rgba(114,207,255,.13);
}
.transport-auth-side-step > span {
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:13px;
  background:rgba(114,207,255,.14);
  color:#72cfff;
  font-family:'Barlow Condensed',sans-serif;
  font-size:22px;
  font-weight:700;
}
.transport-auth-side-step strong,
.transport-auth-side-step small {
  display:block;
}
.transport-auth-side-step strong {
  color:#fff;
  font-size:14px;
}
.transport-auth-side-step small {
  margin-top:2px;
  color:rgba(255,255,255,.62);
  font-size:12px;
}
.transport-auth-close {
  position:absolute;
  top:18px;
  right:20px;
  z-index:8;
  color:#4a6a8a;
}
.transport-auth-main.auth-modal-content {
  display:flex;
  flex-direction:column;
  height:min(760px,94vh);
  max-height:94vh;
  min-height:0;
  padding:34px 42px 30px;
  overflow:hidden;
}
#tab-register.auth-panel.active {
  height:100%;
  min-height:0;
}
.transport-auth-top {
  display:grid;
  gap:8px;
  padding-right:42px;
}
.transport-auth-top h2 {
  margin:0;
  color:#0a1e3a;
  font-family:'Barlow Condensed',sans-serif;
  font-size:34px;
  line-height:1;
  letter-spacing:1px;
  text-transform:uppercase;
}
.transport-auth-top p {
  margin:0;
  color:#4a6a8a;
  font-size:14px;
  line-height:1.45;
}
.transport-auth-progress {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
  margin:6px 0 2px;
}
.transport-auth-progress button {
  height:7px;
  padding:0;
  border:0;
  border-radius:999px;
  background:#dbe8f8;
  color:transparent;
  pointer-events:none;
}
.transport-auth-progress button.is-active {
  background:#1a6bd4;
}
.transport-auth-step-panel {
  display:none;
  flex-direction:column;
  gap:14px;
}
.transport-auth-step-panel.is-active {
  display:flex;
  flex:1 1 auto;
  min-height:0;
  overflow-y:auto;
  padding-right:4px;
}
.transport-auth-step-head {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
}
.transport-auth-badge {
  color:#1a6bd4;
  font-family:'Barlow Condensed',sans-serif;
  font-size:12px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
}
.transport-auth-step-head h3 {
  margin:5px 0 0;
  color:#081428;
  font-size:24px;
  line-height:1.1;
}
.transport-auth-status-card,
.transport-auth-note,
.transport-auth-summary {
  border:1px solid #d6e4f5;
  border-radius:18px;
  background:#f7fbff;
}
.transport-auth-status-card {
  padding:16px 18px;
}
.transport-auth-status-card strong {
  display:block;
  color:#081428;
  font-size:16px;
}
.transport-auth-status-card p {
  margin:5px 0 0;
  color:#4a6a8a;
  font-size:13px;
  line-height:1.45;
}
.transport-auth-note {
  padding:14px 16px;
  color:#4a6a8a;
  font-size:13px;
  line-height:1.55;
}
.transport-auth-summary {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  padding:12px;
}
.transport-auth-summary div {
  display:grid;
  gap:4px;
  padding:12px;
  border-radius:14px;
  background:#fff;
}
.transport-auth-summary span {
  color:#4a6a8a;
  font-size:12px;
}
.transport-auth-summary strong {
  color:#1a6bd4;
  font-family:'Barlow Condensed',sans-serif;
  font-size:26px;
  line-height:1;
}
.transport-auth-upload small {
  margin-top:-2px;
  color:#4a6a8a;
  font-size:12px;
  line-height:1.45;
}
.transport-auth-actions {
  display:grid;
  flex:0 0 auto;
  grid-template-columns:auto minmax(0,1fr);
  gap:12px;
  align-items:center;
  margin-top:4px;
}
.transport-auth-back {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 20px;
  border:1px solid #d6e4f5;
  border-radius:15px;
  background:#fff;
  color:#0a1e3a;
  cursor:pointer;
  font:700 13px 'Barlow',sans-serif;
}
.transport-auth-submit {
  display:none;
}

@media (max-width:900px) {
  .transportpartner-auth-modal.auth-modal-box {
    width:min(640px,calc(100vw - 24px));
    max-width:min(640px,calc(100vw - 24px));
  }
  .transport-auth-layout {
    grid-template-columns:1fr;
    min-height:0;
  }
  .transport-auth-sidebar {
    padding:28px;
  }
  .transport-auth-intro h3 {
    font-size:30px;
  }
  .transport-auth-sidebar-foot {
    display:none;
  }
  .transport-auth-main.auth-modal-content {
    height:auto;
    max-height:none;
    overflow:visible;
    padding:30px 28px 28px;
  }
  #tab-register.auth-panel.active {
    height:auto;
  }
  .transport-auth-step-panel.is-active {
    overflow:visible;
    padding-right:0;
  }
}

@media (max-width:560px) {
  .modal-overlay {
    padding:10px;
  }
  .transportpartner-auth-modal.auth-modal-box {
    width:100%;
    max-width:100%;
    max-height:94vh;
    border-radius:22px;
  }
  .transport-auth-sidebar {
    padding:24px 22px;
    gap:18px;
  }
  .transport-auth-steps {
    gap:8px;
  }
  .transport-auth-side-step {
    grid-template-columns:34px minmax(0,1fr);
    padding:10px;
  }
  .transport-auth-side-step > span {
    width:34px;
    height:34px;
    font-size:18px;
  }
  .transport-auth-main.auth-modal-content {
    padding:26px 20px 24px;
  }
  .transport-auth-top {
    padding-right:34px;
  }
  .transport-auth-top h2 {
    font-size:28px;
  }
  .transport-auth-summary,
  .transport-auth-actions {
    grid-template-columns:1fr;
  }
  .transport-auth-back {
    width:100%;
  }
}

.partner-page {
  margin:118px 32px 0;
  padding:0 0 84px;
}

#start,
#customer-journey,
#partnerbewerbung,
#vorteile,
#beispiele,
#anforderungen,
#prozess,
#kontakt {
  scroll-margin-top:118px;
}

.partner-hero {
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
  gap:28px;
  align-items:stretch;
  padding:38px;
  border:1px solid rgba(26,107,212,0.12);
  border-radius:28px;
  background:
    linear-gradient(90deg,
      rgba(248,251,255,0.96) 0%,
      rgba(248,251,255,0.84) 24%,
      rgba(248,251,255,0.48) 42%,
      rgba(248,251,255,0.18) 62%,
      rgba(248,251,255,0.06) 100%
    ),
    url('/img/Backround_Transportpartner.png') 72% center / cover no-repeat;
  box-shadow:var(--shadow-soft);
}

.partner-hero::after {
  content:'';
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 16% 50%, rgba(248,251,255,0.58) 0%, rgba(248,251,255,0.20) 38%, transparent 70%),
    linear-gradient(180deg, rgba(248,251,255,0.42) 0%, transparent 24%, transparent 76%, rgba(248,251,255,0.42) 100%);
  opacity:.22;
}

.partner-hero > * {
  position:relative;
  z-index:1;
}

.partner-hero-copy {
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:520px;
}

.crumbs,
.section-tag {
  font-family:'Barlow Condensed',sans-serif;
  color:var(--sky);
  font-size:11px;
  letter-spacing:3.2px;
  text-transform:uppercase;
  font-weight:700;
}
.crumbs { margin-bottom:16px; }
.crumbs a { color:var(--gray); text-decoration:none; }

.partner-hero h1 {
  max-width:850px;
  margin:0 0 18px;
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(58px,7.6vw,104px);
  font-weight:400;
  line-height:.92;
  letter-spacing:.5px;
}

.partner-hero p {
  max-width:650px;
  color:var(--gray);
  font-size:17px;
  line-height:1.65;
}

.hero-actions {
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}

.btn-primary,
.btn-secondary,
.form-submit {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  border-radius:16px;
  cursor:pointer;
  text-decoration:none;
  transition:transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.btn-primary,
.form-submit {
  border:0;
  background:linear-gradient(135deg,#2b69f6 0%,#1a57d8 100%);
  color:#fff;
  padding:0 24px;
  font:700 14px 'Barlow',sans-serif;
  box-shadow:0 14px 28px rgba(43,105,246,.20);
}

.btn-secondary {
  border:1px solid rgba(26,107,212,0.18);
  background:#fff;
  color:var(--white);
  padding:0 22px;
  font:700 14px 'Barlow',sans-serif;
}

.btn-primary:hover,
.btn-secondary:hover,
.form-submit:hover {
  transform:translateY(-1px);
}
.btn-primary:hover,
.form-submit:hover { background:linear-gradient(135deg,#1f5ee8 0%,#0d4fa0 100%); }
.btn-secondary:hover { border-color:var(--sky); color:var(--sky); background:#eef5ff; }

.trust-row {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:34px;
}
.trust-row span,
.benefit-tags span {
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 14px;
  border:1px solid #d6e4f5;
  border-radius:999px;
  background:#fff;
  color:#081428;
  font-size:13px;
  font-weight:700;
}

.hero-portal-card {
  align-self:center;
  display:grid;
  gap:16px;
  padding:26px;
  border:1px solid #d6e4f5;
  border-radius:26px;
  background:rgba(255,255,255,.94);
  box-shadow:0 24px 56px rgba(20,47,91,0.12);
}
.portal-head {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  padding-bottom:14px;
  border-bottom:1px solid #dce8f5;
}
.portal-head span,
.mini-route span {
  font-family:'Barlow Condensed',sans-serif;
  color:var(--sky);
  font-size:12px;
  font-weight:700;
  letter-spacing:2.4px;
  text-transform:uppercase;
}
.portal-head strong {
  color:#081428;
  font-size:15px;
}
.mini-route {
  display:grid;
  gap:6px;
  padding:18px;
  border:1px solid #d6e4f5;
  border-radius:20px;
  background:#f8fbff;
}
.mini-route.is-active {
  border-color:rgba(47,102,238,.35);
  background:#eaf3ff;
}
.mini-route strong {
  color:#081428;
  font-size:22px;
  line-height:1.15;
}
.mini-route small {
  width:max-content;
  padding:6px 10px;
  border-radius:999px;
  background:#fff;
  color:#1a57d8;
  font-size:12px;
  font-weight:700;
}
.hero-portal-card p {
  color:#526783;
  font-size:13px;
  line-height:1.5;
}

.section {
  position:relative;
  padding:0 48px 58px;
  margin-top:36px;
}

.landing-flow-bar {
  display:grid;
  grid-template-columns:172px minmax(0,1fr);
  align-items:center;
  min-height:132px;
  column-gap:48px;
  margin:0 -48px 36px;
  padding:22px 58px;
  border:1px solid rgba(26,107,212,0.08);
  border-radius:26px;
  background:#fff;
  box-shadow:0 16px 38px rgba(26,107,212,0.06);
}
.landing-flow-mark {
  display:block;
  width:158px;
  height:94px;
  object-fit:contain;
  mix-blend-mode:multiply;
}
.landing-flow-copy h2 {
  margin-top:5px;
  color:#081428;
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(42px,5vw,64px);
  font-weight:400;
  letter-spacing:1px;
  line-height:.95;
}
.landing-flow-copy p {
  max-width:760px;
  margin:10px 0 0;
  color:#526783;
  font-size:16px;
  line-height:1.55;
}

.landing-flow-bar.application-heading {
  margin-bottom:36px;
}
.application-heading .landing-flow-copy p {
  max-width:690px;
  margin:10px 0 0;
  color:#526783;
  font-size:16px;
  line-height:1.55;
}
.application-heading .section-tag {
  color:#198a3f;
  letter-spacing:3.4px;
}

.application-layout {
  display:grid;
  grid-template-columns:minmax(280px,.76fr) minmax(520px,1fr);
  gap:56px;
  align-items:start;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.application-copy {
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  padding:0 4px;
}
.application-copy h3 {
  max-width:470px;
  margin:0 0 18px;
  color:#081428;
  font-family:'Barlow',sans-serif;
  font-size:clamp(42px,4.8vw,64px);
  font-weight:700;
  letter-spacing:0;
  line-height:.88;
}
.application-copy p,
.section-title-row p {
  color:#526783;
  font-size:16px;
  line-height:1.65;
}
.application-copy ul,
.requirement-card ul {
  display:grid;
  gap:12px;
  margin:24px 0 0;
  padding:0;
  list-style:none;
}
.application-copy li,
.requirement-card li {
  position:relative;
  padding-left:22px;
  color:#17345e;
  font-size:15px;
  line-height:1.45;
}
.application-copy li::before,
.requirement-card li::before {
  content:'';
  position:absolute;
  left:0;
  top:.55em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#1a6bd4;
}

.partner-form {
  padding:28px 30px 26px;
  border:1px solid rgba(214,228,245,0.95);
  border-radius:24px;
  background:rgba(247,251,255,0.96);
  box-shadow:0 18px 48px rgba(20,47,91,0.12);
}
.honeypot {
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  opacity:0;
}
.form-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.field,
.field-group {
  display:grid;
  gap:8px;
}
.field.full,
.field-group.full {
  grid-column:1/-1;
}
.field span,
.field-group > span {
  color:#1a6bd4;
  font-family:'Barlow Condensed',sans-serif;
  font-size:12px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
}
.split-fields {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
input,
select,
textarea {
  width:100%;
  min-height:48px;
  padding:0 16px;
  border:1px solid #d6e4f5;
  border-radius:15px;
  outline:none;
  background:#fff;
  color:#081428;
  font:400 14px 'Barlow',sans-serif;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
textarea {
  min-height:118px;
  padding-top:14px;
  resize:vertical;
}
input::placeholder,
textarea::placeholder { color:#6b7890; }
input:focus,
select:focus,
textarea:focus {
  border-color:#2f66ee;
  box-shadow:0 0 0 4px rgba(47,102,238,0.10);
}
select {
  cursor:pointer;
  appearance:none;
  padding-right:42px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1.25l6 6 6-6' stroke='%23081428' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 16px center;
}
.form-submit {
  width:100%;
  margin-top:16px;
}
.form-note {
  margin-top:12px;
  color:#526783;
  font-size:13px;
  line-height:1.45;
}
.partner-feedback {
  margin-bottom:16px;
  padding:12px 14px;
  border-radius:16px;
  font-weight:700;
  font-size:14px;
}
.partner-feedback.is-success {
  background:#e1f4ec;
  color:#19734f;
}
.partner-feedback.is-error {
  background:#fcebd0;
  color:#8c5b14;
}

.benefit-grid,
.route-card-grid,
.process-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.process-grid {
  grid-template-columns:repeat(4,minmax(0,1fr));
}
.process-grid--three {
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.info-card,
.route-card,
.requirement-card {
  position:relative;
  overflow:hidden;
  border:1px solid #d6e4f5;
  border-radius:24px;
  background:#fff;
  box-shadow:var(--shadow-soft);
}
.info-card {
  min-height:240px;
  padding:34px 30px;
}
.info-card .process-kicker {
  margin-bottom:28px;
}
.card-number {
  position:absolute;
  top:20px;
  right:24px;
  color:rgba(26,107,212,0.09);
  font-family:'Bebas Neue',sans-serif;
  font-size:64px;
  line-height:1;
}
.info-card h3,
.route-card h3,
.requirement-card h2,
.final-cta h2 {
  color:#081428;
  font-size:clamp(24px,2.4vw,34px);
  font-weight:700;
  line-height:1.08;
}
.info-card p,
.route-card p,
.requirement-card p,
.final-cta p {
  margin-top:14px;
  color:#526783;
  font-size:16px;
  line-height:1.55;
}

.benefits-section .benefit-grid {
  position:relative;
  isolation:isolate;
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  grid-template-rows:minmax(280px,auto);
  gap:18px 24px;
  min-height:690px;
  padding:38px 32px 48px;
  border:1px solid rgba(26,107,212,0.12);
  border-radius:28px;
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(26,107,212,0.048) 1px, transparent 1px) 0 0 / 74px 74px,
    linear-gradient(0deg, rgba(26,107,212,0.042) 1px, transparent 1px) 0 0 / 74px 74px,
    radial-gradient(circle at 88% 18%, rgba(255,255,255,0.74) 0 46px, transparent 47px),
    radial-gradient(circle at 10% 86%, rgba(255,255,255,0.70) 0 52px, transparent 53px),
    linear-gradient(135deg,#f1f8ff 0%,#e6f2ff 52%,#dfeeff 100%);
}

.benefits-section .benefit-grid::before,
.benefits-section .benefit-grid::after {
  content:'';
  position:absolute;
  left:-8%;
  right:-8%;
  top:51%;
  transform:rotate(18deg);
  transform-origin:center;
  pointer-events:none;
  z-index:2;
}

.benefits-section .benefit-grid::before {
  height:104px;
  margin-top:-52px;
  border-radius:999px;
  border-top:8px solid rgba(255,255,255,0.18);
  border-bottom:8px solid rgba(255,255,255,0.18);
  background:
    linear-gradient(180deg,#06101c 0%,#0c1a2a 18%,#273646 50%,#0c1a2a 82%,#06101c 100%);
  box-shadow:
    0 24px 44px rgba(8,20,40,0.20),
    inset 0 8px 14px rgba(255,255,255,0.08),
    inset 0 -8px 16px rgba(0,0,0,0.28);
}

.benefits-section .benefit-grid::after {
  height:4px;
  margin-top:-2px;
  background:repeating-linear-gradient(90deg, transparent 0 44px, rgba(255,255,255,0.74) 44px 86px, transparent 86px 132px);
  box-shadow:0 0 10px rgba(255,255,255,0.20);
}

.benefits-section .benefits-visual {
  position:absolute;
  z-index:1;
  pointer-events:none;
  overflow:hidden;
  border:1px solid rgba(141,185,236,0.42);
  border-radius:30px;
  background:rgba(255,255,255,0.16);
  box-shadow:0 26px 52px rgba(18,55,98,0.18);
}

.benefits-section .benefits-visual::after {
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(233,246,255,0.14), transparent 34%, rgba(233,246,255,0.10)),
    radial-gradient(circle at 50% 50%, transparent 0 58%, rgba(229,243,255,0.28) 100%);
}

.benefits-section .benefits-visual img {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0.94;
  filter:saturate(1.08) contrast(1.04);
}

.benefits-section .benefits-visual--payment {
  left:40px;
  bottom:35px;
  width:clamp(360px,32vw,560px);
  height:clamp(260px,24vw,360px);
}

.benefits-section .benefits-visual--payment img {
  object-position:center center;
}

.benefits-section .benefits-visual--digital {
  right:55px;
  top:35px;
  width:clamp(380px,34vw,600px);
  height:clamp(260px,23vw,350px);
}

.benefits-section .benefits-visual--digital img {
  object-position:center center;
}

.benefits-section .benefit-grid .info-card {
  z-index:3;
  min-height:250px;
  padding:36px 32px 34px;
  border-color:#c9ddf4;
  border-radius:24px;
  background:rgba(255,255,255,0.96);
  box-shadow:0 24px 56px rgba(20,47,91,0.14);
}

.benefits-section .benefit-grid .info-card:nth-of-type(1) {
  grid-column:1 / span 4;
  align-self:start;
  transform:translateY(0);
}

.benefits-section .benefit-grid .info-card:nth-of-type(2) {
  grid-column:5 / span 4;
  align-self:start;
  transform:translateY(168px);
}

.benefits-section .benefit-grid .info-card:nth-of-type(3) {
  grid-column:9 / span 4;
  align-self:start;
  transform:translateY(336px);
}

.benefits-section .benefit-grid .process-kicker {
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:26px;
  color:#1a57d8;
  letter-spacing:3.4px;
}

.benefits-section .benefit-grid .process-kicker::before {
  content:'';
  flex:0 0 auto;
  width:12px;
  height:12px;
  border-radius:50%;
  background:#5bc9f0;
  box-shadow:0 0 0 6px rgba(91,201,240,0.14);
}

.benefits-section .benefit-grid .card-number {
  top:18px;
  right:24px;
  color:rgba(26,107,212,0.095);
  font-size:70px;
}

.section-title-row {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,.48fr);
  gap:28px;
  align-items:end;
  margin-bottom:26px;
}
.section-title-row h2 {
  color:#081428;
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(42px,5vw,68px);
  font-weight:400;
  letter-spacing:1px;
  line-height:.95;
}

.route-card {
  padding:26px;
}

.customer-journey-layout {
  display:grid;
  grid-template-columns:minmax(260px,.42fr) minmax(0,1fr);
  gap:22px;
  align-items:start;
  padding:24px;
  border:1px solid rgba(26,107,212,0.12);
  border-radius:28px;
  background:linear-gradient(135deg,#f7fbff 0%,#edf5ff 100%);
  box-shadow:var(--shadow-soft);
}
.customer-journey-menu {
  position:relative;
  align-self:start;
  height:560px;
  min-height:560px;
  padding:30px 20px;
  overflow:hidden;
  border:1px solid #d6e4f5;
  border-radius:24px;
  background:
    radial-gradient(circle at 24% 10%, rgba(255,255,255,.78) 0%, transparent 36%),
    linear-gradient(180deg,#edf7ff 0%,#dcecf9 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.85), 0 18px 42px rgba(20,47,91,0.08);
}
.customer-journey-menu::before {
  content:'';
  position:absolute;
  top:28px;
  bottom:28px;
  left:50%;
  z-index:1;
  width:182px;
  transform:translateX(-50%);
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 560'%3E%3Cpath d='M98 28 C46 86 104 130 70 196 C35 264 119 304 122 384 C125 466 56 488 80 532' fill='none' stroke='%23141a1d' stroke-width='58' stroke-linecap='round'/%3E%3Cpath d='M98 28 C46 86 104 130 70 196 C35 264 119 304 122 384 C125 466 56 488 80 532' fill='none' stroke='%23333736' stroke-width='46' stroke-linecap='round'/%3E%3Cpath d='M98 28 C46 86 104 130 70 196 C35 264 119 304 122 384 C125 466 56 488 80 532' fill='none' stroke='%23d7dde3' stroke-width='3' stroke-linecap='round' stroke-dasharray='26 24' opacity='.72'/%3E%3C/svg%3E") center / contain no-repeat;
  filter:drop-shadow(0 14px 18px rgba(8,20,40,.22));
}
.customer-journey-menu::after {
  content:'';
  position:absolute;
  inset:24px 28px;
  z-index:0;
  background:
    repeating-linear-gradient(180deg,#c7daea 0 64px,transparent 64px 104px) left 0 top 0 / 30px 100% no-repeat,
    repeating-linear-gradient(180deg,#c7daea 0 64px,transparent 64px 104px) right 0 top 0 / 34px 100% no-repeat,
    repeating-linear-gradient(180deg,#d3e3f0 0 42px,transparent 42px 104px) left 48px top 22px / 24px 100% no-repeat,
    repeating-linear-gradient(180deg,#d3e3f0 0 42px,transparent 42px 104px) right 48px top 22px / 26px 100% no-repeat,
    linear-gradient(90deg,transparent 0 42%,rgba(165,194,216,.42) 42% 58%,transparent 58%) center 34% / 100% 1px no-repeat,
    linear-gradient(90deg,transparent 0 42%,rgba(165,194,216,.42) 42% 58%,transparent 58%) center 78% / 100% 1px no-repeat;
  opacity:.76;
}
.customer-journey-menu button {
  position:absolute;
  left:0;
  right:0;
  z-index:2;
  display:block;
  height:84px;
  min-height:0;
  width:100%;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  color:#081428;
  cursor:pointer;
  text-align:left;
  box-shadow:none;
  transition:none;
}
.customer-journey-menu button:nth-child(1) { --sign-left:50%; --pole-left:48.4%; top:48px; }
.customer-journey-menu button:nth-child(2) { --sign-left:50%; --pole-left:53.6%; top:238px; }
.customer-journey-menu button:nth-child(3) { --sign-left:50%; --pole-left:47.3%; top:420px; }
.customer-journey-menu button::before {
  content:'';
  position:absolute;
  left:var(--pole-left,var(--sign-left,50%));
  top:calc(50% + 43px);
  z-index:1;
  width:8px;
  height:24px;
  border:2px solid rgba(255,255,255,.72);
  border-radius:0 0 7px 7px;
  background:#aebfce;
  box-shadow:0 4px 9px rgba(20,47,91,.18);
  transform:translateX(-50%);
}
.customer-journey-menu button:focus-visible {
  outline:0;
}
.customer-journey-menu button:hover,
.customer-journey-menu button.is-active {
  transform:none;
  border-color:transparent;
  background:transparent;
  box-shadow:none;
}
.customer-journey-menu span,
.customer-journey-panel-head span,
.customer-journey-panel-head small {
  font-family:'Barlow Condensed',sans-serif;
  color:#1a6bd4;
  font-size:12px;
  font-weight:700;
  letter-spacing:2.7px;
  text-transform:uppercase;
}
.customer-journey-menu span {
  position:absolute;
  left:var(--sign-left,50%);
  top:50%;
  z-index:2;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:min(88%,350px);
  height:92px;
  border:4px solid #fff;
  border-radius:12px;
  outline:2px solid #68a7ff;
  outline-offset:-8px;
  background:linear-gradient(180deg,#176bd8 0%,#0b55bc 100%);
  color:#fff;
  box-shadow:0 14px 26px rgba(16,62,132,.30), inset 0 0 0 1px rgba(255,255,255,.48);
  transform:translate(-50%,-50%);
  transition:none;
  font-size:0;
}
.customer-journey-menu span::before {
  position:absolute;
  top:13px;
  left:14px;
  right:14px;
  color:#fff;
  font-size:22px;
  font-weight:800;
  letter-spacing:.12px;
  line-height:.86;
  text-align:center;
  text-shadow:0 1px 7px rgba(255,255,255,.42), 0 1px 2px rgba(0,35,96,.45);
  white-space:pre-line;
}
.customer-journey-menu button:nth-child(1) span::before { content:'Registrieren'; }
.customer-journey-menu button:nth-child(2) span::before { content:'Touren\A ausw\00e4hlen'; }
.customer-journey-menu button:nth-child(3) span::before { content:'Fahren & Auszahlung\A erhalten'; }
.customer-journey-menu span::after {
  display:none;
  align-items:center;
  justify-content:center;
  position:absolute;
  inset:67px 0 0;
  width:100%;
  height:auto;
  color:#fff;
  font-family:'Barlow Condensed',sans-serif;
  font-size:16px;
  font-weight:700;
  letter-spacing:.8px;
  line-height:1;
}
.customer-journey-menu button:hover span,
.customer-journey-menu button.is-active span,
.customer-journey-menu button:focus-visible span {
  background:linear-gradient(180deg,#115fcb 0%,#083d93 100%);
  box-shadow:0 16px 30px rgba(8,20,40,.34);
  transform:translate(-50%,-50%);
}
.customer-journey-menu strong {
  position:absolute;
  top:50%;
  right:18px;
  z-index:3;
  width:42%;
  min-width:124px;
  max-width:190px;
  padding:12px 14px;
  border:1px solid rgba(214,228,245,.94);
  border-radius:16px;
  background:rgba(255,255,255,.88);
  box-shadow:0 12px 26px rgba(20,47,91,.08);
  font-size:16px;
  line-height:1.2;
  transform:translateY(-50%);
  transition:border-color .2s ease, background .2s ease, box-shadow .2s ease;
  opacity:0;
  pointer-events:none;
}
.customer-journey-menu button:hover strong,
.customer-journey-menu button.is-active strong,
.customer-journey-menu button:focus-visible strong {
  border-color:rgba(26,107,212,.36);
  background:rgba(255,255,255,.96);
  box-shadow:0 14px 30px rgba(20,47,91,.12);
}
.customer-journey-detail {
  min-width:0;
}
.customer-journey-panel {
  min-height:458px;
  padding:34px;
  border:1px solid #d6e4f5;
  border-radius:26px;
  background:#fff;
  box-shadow:0 18px 48px rgba(20,47,91,0.10);
}
.customer-journey-panel-head {
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  align-items:center;
  margin-bottom:22px;
}
.customer-journey-panel-head span {
  min-height:36px;
  padding:10px 13px;
  border-radius:14px;
  background:#eaf3ff;
}
.customer-journey-panel-head small {
  color:#526783;
}
.customer-journey-panel h3 {
  max-width:780px;
  margin:0 0 16px;
  color:#081428;
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(50px,6vw,86px);
  font-weight:400;
  letter-spacing:.8px;
  line-height:.92;
}
.customer-journey-panel p {
  max-width:760px;
  color:#526783;
  font-size:17px;
  line-height:1.65;
}
.customer-journey-panel ul {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin:28px 0 0;
  padding:0;
  list-style:none;
}
.customer-journey-panel li {
  position:relative;
  min-height:66px;
  padding:18px 18px 18px 36px;
  border:1px solid #d6e4f5;
  border-radius:18px;
  background:#f8fbff;
  color:#17345e;
  font-size:14px;
  font-weight:700;
  line-height:1.35;
}
.customer-journey-panel li::before {
  content:'';
  position:absolute;
  left:18px;
  top:24px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#1a6bd4;
}
.customer-journey-panel--detail {
  min-height:auto;
  padding:0;
  border:0;
  background:transparent;
  box-shadow:none;
}
.customer-journey-panel--tour-bg {
  position:relative;
  isolation:isolate;
  overflow:hidden;
  min-height:560px;
  padding:34px;
  border:1px solid #d6e4f5;
  border-radius:26px;
  background:#f7fbff;
  box-shadow:0 18px 48px rgba(20,47,91,0.10);
}
.customer-journey-panel--register-bg {
  position:relative;
  isolation:isolate;
  overflow:hidden;
  min-height:560px;
  padding:34px;
  border:1px solid #d6e4f5;
  border-radius:26px;
  background:#f7fbff;
  box-shadow:0 18px 48px rgba(20,47,91,0.10);
}
.customer-journey-panel--drive-bg {
  position:relative;
  isolation:isolate;
  overflow:hidden;
  min-height:560px;
  padding:34px;
  border:1px solid #d6e4f5;
  border-radius:26px;
  background:#f7fbff;
  box-shadow:0 18px 48px rgba(20,47,91,0.10);
}
.customer-journey-panel--register-bg::before {
  content:'';
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(90deg,rgba(247,251,255,.84) 0%,rgba(237,245,255,.56) 36%,rgba(18,69,118,.28) 68%,rgba(5,36,69,.56) 100%),
    url('/img/Backround_Registrieren.png') center / cover no-repeat;
  opacity:0;
  transform:translateX(56px) scale(1.03);
  filter:saturate(1.42) contrast(1.22) brightness(.80);
}
.customer-journey-panel--register-bg::after {
  content:'';
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    linear-gradient(180deg,rgba(8,20,40,.10) 0%,rgba(8,20,40,.22) 100%),
    linear-gradient(90deg,rgba(247,251,255,.48) 0%,rgba(247,251,255,.18) 42%,rgba(7,27,53,.42) 100%);
  pointer-events:none;
}
.customer-journey-panel--register-bg.is-active::before {
  animation:registerBgSlideIn .72s cubic-bezier(.22,1,.36,1) both;
}
.customer-journey-panel--register-bg > * {
  position:relative;
  z-index:1;
}
.customer-journey-panel--register-bg .customer-journey-intro {
  grid-template-columns:132px minmax(0,1fr);
}
.customer-journey-panel--tour-bg::before {
  content:'';
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(90deg,rgba(247,251,255,.96) 0%,rgba(237,245,255,.76) 34%,rgba(20,58,105,.20) 68%,rgba(6,23,43,.42) 100%),
    url('/img/Backround_Tourenauswaehlen.png') right top / 118% auto no-repeat;
  opacity:0;
  transform:translateX(56px) scale(1.03);
  filter:saturate(1.32) contrast(1.18) brightness(.86);
}
.customer-journey-panel--tour-bg::after {
  content:'';
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    linear-gradient(180deg,rgba(8,20,40,.08) 0%,rgba(8,20,40,.16) 100%),
    linear-gradient(90deg,rgba(247,251,255,.62) 0%,rgba(247,251,255,.30) 42%,rgba(7,27,53,.30) 100%);
  pointer-events:none;
}
.customer-journey-panel--tour-bg.is-active::before {
  animation:tourBgSlideIn .72s cubic-bezier(.22,1,.36,1) both;
}
.customer-journey-panel--tour-bg > * {
  position:relative;
  z-index:1;
}
.customer-journey-panel--drive-bg::before {
  content:'';
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(90deg,rgba(247,251,255,.84) 0%,rgba(237,245,255,.56) 36%,rgba(18,69,118,.28) 68%,rgba(5,36,69,.56) 100%),
    url('/img/Backround_Fahren_auszahlen.png') center / cover no-repeat;
  opacity:0;
  transform:translateX(56px) scale(1.03);
  filter:saturate(1.42) contrast(1.22) brightness(.80);
}
.customer-journey-panel--drive-bg::after {
  content:'';
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    linear-gradient(180deg,rgba(8,20,40,.10) 0%,rgba(8,20,40,.22) 100%),
    linear-gradient(90deg,rgba(247,251,255,.48) 0%,rgba(247,251,255,.18) 42%,rgba(7,27,53,.42) 100%);
  pointer-events:none;
}
.customer-journey-panel--drive-bg.is-active::before {
  animation:driveBgSlideIn .72s cubic-bezier(.22,1,.36,1) both;
}
.customer-journey-panel--drive-bg > * {
  position:relative;
  z-index:1;
}
@keyframes tourBgSlideIn {
  from {
    opacity:0;
    transform:translateX(72px) scale(1.04);
  }
  to {
    opacity:1;
    transform:translateX(0) scale(1);
  }
}
@keyframes registerBgSlideIn {
  from {
    opacity:0;
    transform:translateX(72px) scale(1.04);
  }
  to {
    opacity:1;
    transform:translateX(0) scale(1);
  }
}
@keyframes driveBgSlideIn {
  from {
    opacity:0;
    transform:translateX(72px) scale(1.04);
  }
  to {
    opacity:1;
    transform:translateX(0) scale(1);
  }
}
.customer-journey-intro {
  display:grid;
  grid-template-columns:82px minmax(0,1fr);
  gap:24px;
  align-items:start;
  margin-bottom:34px;
}
.customer-journey-panel--detail .customer-journey-intro {
  grid-template-columns:150px minmax(0,1fr);
  gap:26px;
}
.customer-journey-stage-badge {
  display:grid;
  place-items:center;
  width:76px;
  min-height:76px;
  border-radius:18px;
  background:linear-gradient(135deg,#1f6dff 0%,#1356cf 100%);
  color:#fff;
  box-shadow:0 18px 34px rgba(26,107,212,0.18);
}
.customer-journey-stage-badge span {
  font-family:'Barlow Condensed',sans-serif;
  font-size:11px;
  font-weight:700;
  letter-spacing:2px;
  line-height:1;
  text-transform:uppercase;
}
.customer-journey-stage-badge strong {
  font-size:34px;
  font-weight:400;
  line-height:1;
}
.customer-journey-stage-badge--entry {
  position:relative;
  width:118px;
  min-height:82px;
  padding:10px 14px;
  border:3px solid #fff;
  border-radius:14px;
  background:linear-gradient(135deg,#0b6fe8 0%,#004a99 100%);
  box-shadow:0 18px 34px rgba(0,74,153,0.26);
  outline:1px solid rgba(255,255,255,.72);
  outline-offset:-7px;
}
.customer-journey-stage-badge--entry::after {
  content:'';
  position:absolute;
  left:50%;
  bottom:-28px;
  width:8px;
  height:28px;
  border-radius:0 0 999px 999px;
  background:#9ab1c9;
  transform:translateX(-50%);
  box-shadow:0 0 0 2px rgba(255,255,255,.7);
}
.customer-journey-stage-badge--entry span {
  color:#e8f3ff;
  font-size:10px;
  letter-spacing:1.8px;
}
.customer-journey-stage-badge--entry strong {
  color:#fff;
  font-family:'Barlow',sans-serif;
  font-size:31px;
  font-weight:800;
  letter-spacing:.5px;
}
.customer-journey-panel--detail .customer-journey-panel-head {
  margin:0 0 6px;
}
.customer-journey-panel--detail .customer-journey-panel-head small {
  color:#1a6bd4;
}
.customer-journey-panel--detail h3 {
  margin:0 0 10px;
  color:#081428;
  font-family:'Barlow',sans-serif;
  font-size:clamp(50px,5.2vw,70px);
  font-weight:700;
  letter-spacing:2px;
  line-height:.95;
}
.customer-journey-panel--detail .customer-journey-title-copy > p {
  max-width:780px;
  color:#17345e;
  font-size:17px;
  line-height:1.55;
}
.customer-journey-panel--register-bg .customer-journey-title-copy > p {
  color:#ffffff;
  text-shadow:0 1px 2px rgba(4,18,40,.52);
}
.customer-journey-detail-cards {
  display:grid;
  gap:20px;
}
.customer-journey-detail-cards--stacked {
  grid-template-columns:1fr;
}
.customer-journey-detail-cards--two {
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.customer-journey-info-card {
  min-height:174px;
  padding:28px;
  border:1px solid #cfe0f5;
  border-radius:20px;
  background:#fff;
  box-shadow:0 16px 34px rgba(20,47,91,0.05);
}
.customer-journey-card-icon {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  margin-bottom:18px;
  border-radius:13px;
  background:#eaf3ff;
  font-size:21px;
}
.customer-journey-info-card h4 {
  margin:0 0 10px;
  color:#081428;
  font-size:22px;
  font-weight:700;
  line-height:1.1;
}
.customer-journey-info-card p {
  max-width:none;
  margin:0;
  color:#17345e;
  font-size:16px;
  line-height:1.55;
}
.customer-journey-panel--dark {
  padding:34px;
  border:0;
  border-radius:26px;
  background:linear-gradient(135deg,#06172b 0%,#0c315f 100%);
  box-shadow:0 20px 48px rgba(6,23,43,0.18);
}
.customer-journey-panel--dark .customer-journey-stage-badge {
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(255,255,255,0.06);
  box-shadow:none;
}
.customer-journey-panel--dark .customer-journey-panel-head small {
  color:#7eb4ff;
}
.customer-journey-panel--dark h3 {
  color:#fff;
}
.customer-journey-panel--dark .customer-journey-title-copy > p {
  color:#9fc7ff;
}
.customer-journey-panel--dark .customer-journey-info-card {
  border-color:rgba(126,180,255,0.22);
  background:rgba(255,255,255,0.06);
  box-shadow:none;
}
.customer-journey-panel--dark .customer-journey-card-icon {
  background:rgba(126,180,255,0.14);
}
.customer-journey-panel--dark .customer-journey-info-card h4 {
  color:#fff;
}
.customer-journey-panel--dark .customer-journey-info-card p {
  color:#9fc7ff;
}
.customer-journey-panel--green .customer-journey-stage-badge {
  background:linear-gradient(135deg,#17813a 0%,#0f6c2f 100%);
  box-shadow:0 18px 34px rgba(23,129,58,0.16);
}
.customer-journey-panel--green .customer-journey-panel-head small {
  color:#17813a;
}
.customer-journey-panel--green .customer-journey-card-icon {
  background:#e4f5e9;
}
.route-card--premium {
  background:linear-gradient(180deg,#fff 0%,#f4f8ff 100%);
}
.route-card-top {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:24px;
}
.route-badge {
  display:inline-flex;
  min-height:30px;
  align-items:center;
  padding:0 11px;
  border-radius:999px;
  background:#eaf3ff;
  color:#1a57d8;
  font-size:12px;
  font-weight:700;
}
.route-card-top strong {
  max-width:190px;
  color:#526783;
  font-size:12px;
  line-height:1.35;
  text-align:right;
}
.route-card dl {
  display:grid;
  gap:10px;
  margin-top:22px;
}
.route-card dl div {
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding-top:10px;
  border-top:1px solid #dce8f5;
}
.route-card dt {
  color:#6b7890;
  font-size:13px;
}
.route-card dd {
  color:#081428;
  font-size:13px;
  font-weight:700;
}

.requirement-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}
.requirement-card {
  padding:34px 32px;
}
.requirement-card.is-dark {
  background:linear-gradient(135deg,#06172b 0%,#0c315f 100%);
  color:#fff;
}
.requirement-card.is-dark h2,
.requirement-card.is-dark li { color:#fff; }
.requirement-card.is-dark li::before { background:#7eb4ff; }

.process-card {
  position:relative;
  z-index:0;
  min-height:232px;
  padding:24px 24px 62px;
  filter:drop-shadow(0 16px 30px rgba(20,47,91,0.08));
}
.process-card::before,
.process-card::after {
  content:'';
  position:absolute;
  clip-path:polygon(0 0,100% 0,100% calc(100% - 58px),50% 100%,0 calc(100% - 58px));
  pointer-events:none;
}
.process-card::before {
  inset:0;
  z-index:-2;
  background:#d6e4f5;
}
.process-card::after {
  inset:1px;
  z-index:-1;
  background:#fff;
}
.process-card--dark::after {
  background:linear-gradient(135deg,#06172b 0%,#0c315f 100%);
}
.process-kicker {
  margin-bottom:30px;
  color:#1f6dff;
  font-family:'Barlow Condensed',sans-serif;
  font-size:13px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
}
.process-card h3 {
  margin:0 0 14px;
  color:#081428;
  font-size:clamp(23px,1.9vw,30px);
  font-weight:700;
  line-height:1.08;
}
.process-card p {
  max-width:260px;
  color:#526783;
  font-size:14px;
  line-height:1.45;
}
.process-card--dark h3,
.process-card--dark p { color:#fff; }

.process-section .support-network-scene {
  position:relative;
  isolation:isolate;
  display:block;
  min-height:780px;
  margin-top:18px;
  padding:40px;
  overflow:hidden;
  border:1px solid rgba(26,107,212,0.12);
  border-radius:28px;
  background:
    linear-gradient(90deg, rgba(26,107,212,0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(26,107,212,0.032) 1px, transparent 1px) 0 0 / 72px 72px,
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.98) 0 112px, rgba(217,236,255,0.82) 113px 148px, transparent 149px),
    linear-gradient(135deg,#f8fbff 0%,#edf6ff 52%,#e4f0ff 100%);
  box-shadow:var(--shadow-soft);
}

.process-section .support-network-scene::before {
  content:'';
  position:absolute;
  left:7%;
  right:7%;
  top:50%;
  height:104px;
  transform:translateY(-50%);
  border-radius:999px;
  background:rgba(174,211,248,0.66);
  filter:blur(0.2px);
  z-index:0;
}

.process-section .support-network-scene::after {
  content:'';
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, transparent calc(50% - 3px), rgba(217,236,255,0.82) calc(50% - 3px) calc(50% + 3px), transparent calc(50% + 3px)),
    linear-gradient(180deg, transparent calc(50% - 3px), rgba(217,236,255,0.82) calc(50% - 3px) calc(50% + 3px), transparent calc(50% + 3px)),
    linear-gradient(rgba(241,248,255,0.34),rgba(228,240,255,0.44)),
    url('/img/Klare_Transport_daten.png') left top / 50% 50% no-repeat,
    url('/img/Mensch_Support.png') right top / 50% 50% no-repeat,
    url('/img/Partnernetz.png') left bottom / 50% 50% no-repeat,
    url('/img/Zusammen_Arbeit.png') right bottom / 50% 50% no-repeat;
  opacity:.62;
  filter:saturate(0.98) contrast(1.03);
}

.process-section .support-network-road {
  position:absolute;
  z-index:1;
  height:38px;
  border-radius:999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 24%, transparent 76%, rgba(255,255,255,0.08)),
    linear-gradient(180deg,#07172a 0%,#15365c 50%,#07172a 100%);
  box-shadow:
    0 14px 24px rgba(8,29,55,0.18),
    inset 0 0 0 4px rgba(255,255,255,0.08);
}

.process-section .support-network-road::after {
  content:'';
  position:absolute;
  left:18px;
  right:18px;
  top:50%;
  height:3px;
  transform:translateY(-50%);
  border-radius:999px;
  background:repeating-linear-gradient(90deg, rgba(255,255,255,0) 0 34px, rgba(255,255,255,0.72) 34px 76px, rgba(255,255,255,0) 76px 112px);
}

.process-section .support-network-road--main {
  left:11%;
  right:11%;
  top:50%;
}

.process-section .support-network-road--left {
  left:50%;
  width:230px;
  top:32%;
  transform:translateX(-50%) rotate(-90deg);
  transform-origin:center;
}

.process-section .support-network-road--right {
  left:50%;
  right:auto;
  width:230px;
  top:69%;
  transform:translateX(-50%) rotate(90deg);
  transform-origin:center;
}

.process-section .support-network-hub {
  position:absolute;
  z-index:3;
  left:50%;
  top:50%;
  width:210px;
  height:210px;
  display:grid;
  place-items:center;
  transform:translate(-50%,-50%);
  border:14px solid rgba(217,236,255,0.92);
  border-radius:50%;
  background:#fff;
  box-shadow:0 22px 52px rgba(24,70,120,0.16);
}

.process-section .support-network-hub img {
  width:118px;
  height:auto;
  display:block;
}

.process-section .support-network-scene .process-card,
.process-section .support-network-card {
  position:absolute;
  z-index:4;
  width:min(370px,29vw);
  min-height:0;
  padding:34px 32px;
  overflow:hidden;
  border:1px solid #cddff4;
  border-radius:24px;
  background:rgba(255,255,255,0.96);
  box-shadow:0 20px 46px rgba(20,47,91,0.12);
  filter:none;
}

.process-section .support-network-scene .process-card::before,
.process-section .support-network-scene .process-card::after {
  display:none;
}

.process-section .support-network-scene .process-card--dark,
.process-section .support-network-scene .support-card--data {
  left:38px;
  top:286px;
  bottom:auto;
}

.process-section .support-network-scene .process-card:nth-of-type(2) {
  left:50%;
  top:12px;
  transform:translateX(-50%);
}

.process-section .support-network-scene .process-card:nth-of-type(3) {
  right:38px;
  top:286px;
  bottom:auto;
}

.process-section .support-network-card {
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  text-align:center;
}

.process-section .support-card-icon {
  display:grid;
  place-items:center;
  width:54px;
  height:54px;
  margin-bottom:24px;
  border-radius:16px;
  background:#eaf3ff;
  color:#1f6dff;
  font-size:23px;
  box-shadow:inset 0 0 0 1px rgba(26,107,212,0.04);
}

.process-section .process-card--dark .support-card-icon {
  background:rgba(255,255,255,0.12);
  color:#fff;
}

.process-section .support-network-scene .process-kicker {
  display:none;
}

.process-section .support-network-scene .process-card h3,
.process-section .support-network-card h3 {
  margin:0 0 14px;
  color:#081428;
  font-size:clamp(24px,2vw,30px);
  font-weight:700;
  line-height:1.05;
}

.process-section .support-network-scene .process-card p,
.process-section .support-network-card p {
  max-width:none;
  margin:0;
  color:#526783;
  font-size:16px;
  line-height:1.5;
}

.process-section .support-network-scene .process-card--dark h3,
.process-section .support-network-scene .process-card--dark p {
  color:#fff;
}

.final-cta {
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:26px;
  align-items:center;
  margin:8px 32px 0;
  padding:36px;
  border:1px solid rgba(26,107,212,0.12);
  border-radius:28px;
  background:linear-gradient(135deg,#ffffff 0%,#f1f7ff 100%);
  box-shadow:var(--shadow-soft);
}
.final-cta h2 {
  margin-top:8px;
  color:#081428;
  font-family:'Barlow',sans-serif;
  font-size:clamp(30px,3vw,40px);
  font-weight:700;
  letter-spacing:0;
  line-height:1.08;
}
.final-cta .section-tag {
  margin:0 0 8px;
  color:#1a6bd4;
  font-family:'Barlow',sans-serif;
  font-size:clamp(24px,2.4vw,34px);
  font-weight:700;
  letter-spacing:0;
  line-height:1.05;
  text-transform:none;
}
.final-cta p { max-width:720px; }

@media (max-width:1180px) {
  html body > nav {
    flex-wrap:wrap !important;
  }
  body > nav ul.nav-links {
    order:3 !important;
    width:100% !important;
  }
  body > nav div.nav-actions {
    margin-left:auto !important;
  }
  .partner-hero,
  .application-layout,
  .section-title-row,
  .final-cta {
    grid-template-columns:1fr;
  }
  .benefit-grid,
  .route-card-grid,
  .process-grid,
  .customer-journey-panel ul {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .benefits-section .benefit-grid {
    grid-template-columns:1fr;
    grid-template-rows:none;
    min-height:auto;
    gap:18px;
    padding:24px;
  }
  .benefits-section .benefit-grid::before {
    left:48px;
    right:auto;
    top:26px;
    bottom:26px;
    width:90px;
    height:auto;
    margin-top:0;
    transform:none;
  }
  .benefits-section .benefit-grid::after {
    left:91px;
    right:auto;
    top:34px;
    bottom:34px;
    width:4px;
    height:auto;
    margin-top:0;
    transform:none;
    background:repeating-linear-gradient(180deg, transparent 0 44px, rgba(255,255,255,0.74) 44px 86px, transparent 86px 132px);
  }
  .benefits-section .benefits-visual--payment {
    left:auto;
    right:-48px;
    bottom:24px;
    width:clamp(280px,46vw,430px);
    height:clamp(220px,34vw,310px);
  }
  .benefits-section .benefits-visual--digital {
    right:-62px;
    top:22px;
    width:clamp(300px,50vw,460px);
    height:clamp(210px,32vw,300px);
  }
  .benefits-section .benefit-grid .info-card,
  .benefits-section .benefit-grid .info-card:nth-of-type(1),
  .benefits-section .benefit-grid .info-card:nth-of-type(2),
  .benefits-section .benefit-grid .info-card:nth-of-type(3) {
    grid-column:1;
    grid-row:auto;
    align-self:auto;
    margin-left:110px;
    transform:none;
  }
  .partner-hero-copy { min-height:auto; }
  .final-cta .btn-primary { width:max-content; }
}

@media (max-width:760px) {
  html body > nav {
    left:10px !important;
    right:10px !important;
    padding:10px 12px !important;
    gap:10px !important;
  }
  body > nav ul.nav-links {
    justify-content:flex-start !important;
    flex-wrap:nowrap !important;
    overflow-x:auto !important;
    padding-bottom:4px !important;
    scrollbar-width:none;
  }
  body > nav ul.nav-links::-webkit-scrollbar {
    display:none;
  }
  body > nav div.nav-actions {
    width:100% !important;
    gap:8px !important;
  }
  body > nav div.nav-actions .logout-btn {
    flex:1 1 0 !important;
    min-width:0 !important;
    padding:8px 10px !important;
    font-size:10px !important;
    letter-spacing:1.2px !important;
    text-align:center !important;
  }
  .partner-page {
    margin:104px 14px 0;
    padding-bottom:54px;
  }
  .partner-hero {
    padding:24px 18px;
    border-radius:22px;
    background-position:0 0, 68% center;
  }
  .partner-hero h1 {
    font-size:clamp(48px,16vw,70px);
  }
  .partner-hero p {
    font-size:15px;
  }
  .hero-actions,
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width:100%;
  }
  .section {
    padding:0 22px 38px;
    margin-top:28px;
  }
  .landing-flow-bar {
    grid-template-columns:92px minmax(0,1fr);
    min-height:104px;
    column-gap:20px;
    margin:0 -22px 24px;
    padding:18px 22px;
    border-radius:22px;
  }
  .landing-flow-mark {
    width:86px;
    height:58px;
  }
  .landing-flow-copy h2 {
    font-size:clamp(38px,12vw,52px);
  }
  .application-layout {
    padding:16px;
    border-radius:22px;
  }
  .application-heading .section-tag {
    letter-spacing:3px;
  }
  .application-heading .landing-flow-copy p {
    font-size:15px;
  }
  .application-copy {
    padding:8px 4px;
  }
  .partner-form {
    padding:20px 16px;
    border-radius:20px;
  }
  .form-grid,
  .split-fields,
  .benefit-grid,
  .route-card-grid,
  .requirement-grid,
  .process-grid,
  .customer-journey-layout,
  .customer-journey-panel ul {
    grid-template-columns:1fr;
  }
  .benefits-section .benefit-grid {
    padding:18px;
  }
  .benefits-section .benefit-grid::before,
  .benefits-section .benefit-grid::after {
    display:none;
  }
  .benefits-section .benefits-visual {
    border-radius:22px;
    opacity:0.70;
  }
  .benefits-section .benefits-visual--payment {
    left:18px;
    right:auto;
    bottom:18px;
    width:calc(100% - 36px);
    height:230px;
  }
  .benefits-section .benefits-visual--digital {
    left:18px;
    right:auto;
    top:18px;
    width:calc(100% - 36px);
    height:220px;
  }
  .benefits-section .benefit-grid .info-card,
  .benefits-section .benefit-grid .info-card:nth-of-type(1),
  .benefits-section .benefit-grid .info-card:nth-of-type(2),
  .benefits-section .benefit-grid .info-card:nth-of-type(3) {
    margin-left:0;
    transform:none;
  }
  .customer-journey-layout {
    padding:16px;
    border-radius:22px;
  }
  .customer-journey-menu {
    height:430px;
    min-height:430px;
    padding:24px 14px;
  }
  .customer-journey-menu::before {
    top:24px;
    bottom:24px;
    width:150px;
  }
  .customer-journey-menu::after {
    inset:22px 20px;
  }
  .customer-journey-menu button {
    height:72px;
    min-height:70px;
    border-radius:18px;
  }
  .customer-journey-menu button:nth-child(1) { top:36px; }
  .customer-journey-menu button:nth-child(2) { top:178px; }
  .customer-journey-menu button:nth-child(3) { top:318px; }
  .customer-journey-menu strong {
    right:14px;
    width:38%;
    min-width:112px;
    padding:10px 12px;
    font-size:14px;
  }
  .customer-journey-menu span {
    width:min(88%,300px);
    height:84px;
    border-width:3px;
    border-radius:10px;
    outline-offset:-7px;
  }
  .customer-journey-menu button::before {
    left:var(--pole-left,var(--sign-left,50%));
    top:calc(50% + 39px);
    width:7px;
    height:22px;
  }
  .customer-journey-menu span::before {
    top:11px;
    left:12px;
    right:12px;
    font-size:18px;
    letter-spacing:.08px;
    line-height:.86;
  }
  .customer-journey-menu span::after {
    inset:61px 0 0;
    font-size:14px;
  }
  .customer-journey-panel {
    min-height:auto;
    padding:24px 18px;
    border-radius:22px;
  }
  .customer-journey-panel h3 {
    font-size:clamp(42px,14vw,58px);
  }
  .customer-journey-intro {
    grid-template-columns:64px minmax(0,1fr);
    gap:14px;
    margin-bottom:24px;
  }
  .customer-journey-panel--detail .customer-journey-intro {
    grid-template-columns:1fr;
    gap:16px;
  }
  .customer-journey-stage-badge {
    width:62px;
    min-height:62px;
    border-radius:16px;
  }
  .customer-journey-stage-badge strong {
    font-size:28px;
  }
  .customer-journey-panel--register-bg .customer-journey-intro {
    grid-template-columns:1fr;
  }
  .customer-journey-stage-badge--entry {
    width:112px;
    min-height:76px;
  }
  .customer-journey-stage-badge--entry::after {
    display:none;
  }
  .customer-journey-panel--detail h3 {
    font-size:clamp(36px,12vw,48px);
    letter-spacing:.8px;
  }
  .customer-journey-panel--register-bg {
    min-height:auto;
    padding:24px 18px;
  }
  .customer-journey-panel--register-bg::before {
    background:
      linear-gradient(180deg,rgba(247,251,255,.82) 0%,rgba(237,245,255,.58) 48%,rgba(7,27,53,.42) 100%),
      url('/img/Backround_Registrieren.png') center / cover no-repeat;
  }
  .customer-journey-panel--tour-bg {
    min-height:auto;
    padding:24px 18px;
  }
  .customer-journey-panel--tour-bg::before {
    background:
      linear-gradient(180deg,rgba(247,251,255,.90) 0%,rgba(237,245,255,.68) 48%,rgba(7,27,53,.28) 100%),
      url('/img/Backround_Tourenauswaehlen.png') center / cover no-repeat;
  }
  .customer-journey-panel--drive-bg {
    min-height:auto;
    padding:24px 18px;
  }
  .customer-journey-panel--drive-bg::before {
    background:
      linear-gradient(180deg,rgba(247,251,255,.82) 0%,rgba(237,245,255,.58) 48%,rgba(7,27,53,.42) 100%),
      url('/img/Backround_Fahren_auszahlen.png') center / cover no-repeat;
  }
  .customer-journey-detail-cards--two {
    grid-template-columns:1fr;
  }
  .customer-journey-info-card {
    min-height:auto;
    padding:22px;
  }
  .customer-journey-panel li {
    min-height:auto;
  }
  .route-card-top {
    display:grid;
  }
  .route-card-top strong {
    max-width:none;
    text-align:left;
  }
  .final-cta {
    margin:0 14px;
    padding:28px 22px;
    border-radius:22px;
  }
  .final-cta .btn-primary {
    width:100%;
  }
  .auth-modal-content {
    padding:24px 18px 30px;
  }
  .modal-header {
    padding:18px 20px;
  }
  .role-switch,
  .auth-panel .split-fields {
    grid-template-columns:1fr;
  }
}

@media (max-width:1180px) {
  .process-section .support-network-scene {
    display:block;
    min-height:920px;
    padding:24px;
  }
  .process-section .support-network-scene .process-card,
  .process-section .support-network-scene .process-card--dark,
  .process-section .support-network-scene .support-card--data,
  .process-section .support-network-scene .process-card:nth-of-type(2),
  .process-section .support-network-scene .process-card:nth-of-type(3),
  .process-section .support-network-card {
    position:absolute;
    width:min(340px,42vw);
  }
  .process-section .support-network-scene .process-card--dark,
  .process-section .support-network-scene .support-card--data {
    left:24px;
    top:300px;
    bottom:auto;
  }
  .process-section .support-network-scene .process-card:nth-of-type(2) {
    left:50%;
    top:26px;
    transform:translateX(-50%);
  }
  .process-section .support-network-scene .process-card:nth-of-type(3) {
    right:24px;
    top:360px;
    bottom:auto;
  }
  .process-section .support-network-card {
    left:50%;
    bottom:32px;
    transform:translateX(-50%);
  }
}

@media (max-width:760px) {
  .process-section .support-network-scene {
    min-height:1600px;
    padding:18px;
  }
  .process-section .support-network-scene::before {
    top:52%;
    left:0;
    right:0;
    height:90px;
  }
  .process-section .support-network-road--main {
    left:0;
    right:0;
    top:52%;
  }
  .process-section .support-network-road--left {
    left:50%;
    width:170px;
    top:40%;
    transform:translateX(-50%) rotate(-90deg);
  }
  .process-section .support-network-road--right {
    left:50%;
    right:auto;
    width:170px;
    top:72%;
    transform:translateX(-50%) rotate(90deg);
  }
  .process-section .support-network-hub {
    display:grid;
    top:52%;
    width:178px;
    height:178px;
    border-width:12px;
  }
  .process-section .support-network-hub img {
    width:102px;
  }
  .process-section .support-network-scene .process-card,
  .process-section .support-network-scene .support-card--data,
  .process-section .support-network-scene .process-card:nth-of-type(2),
  .process-section .support-network-scene .process-card:nth-of-type(3),
  .process-section .support-network-card {
    width:calc(100% - 36px);
    padding:24px 22px;
    border-radius:22px;
  }
  .process-section .support-network-scene .process-card--dark,
  .process-section .support-network-scene .support-card--data {
    left:18px;
    top:26px;
  }
  .process-section .support-network-scene .process-card:nth-of-type(2) {
    left:18px;
    top:292px;
    transform:none;
  }
  .process-section .support-network-scene .process-card:nth-of-type(3) {
    left:18px;
    right:auto;
    top:1260px;
  }
  .process-section .support-network-card {
    left:18px;
    bottom:auto;
    top:960px;
    transform:none;
  }
}

/* Mobile page polish aligned with Landin_1.php */
@media (max-width:768px) {
  html,
  body {
    overflow-x:hidden;
  }

  .partner-page {
    margin:clamp(124px,30vw,154px) clamp(12px,3.5vw,18px) 0;
    padding-bottom:clamp(42px,8vw,64px);
  }

  #start,
  #customer-journey,
  #partnerbewerbung,
  #vorteile,
  #beispiele,
  #anforderungen,
  #prozess,
  #kontakt {
    scroll-margin-top:150px;
  }

  .partner-hero {
    grid-template-columns:1fr !important;
    gap:clamp(16px,4vw,24px);
    padding:clamp(120px,32vw,166px) clamp(14px,4vw,24px) clamp(18px,5vw,28px);
    border-radius:clamp(20px,5vw,26px);
    background-position:0 0,58% top;
    background-size:auto,cover;
    overflow:visible;
  }

  .partner-hero-copy {
    min-height:0;
    justify-content:flex-end;
  }

  .crumbs {
    margin-bottom:12px;
  }

  .partner-hero h1 {
    max-width:9.2em;
    margin-bottom:clamp(10px,2.4vw,14px);
    font-size:clamp(36px,10.5vw,54px);
    line-height:1.02;
    letter-spacing:.2px;
    overflow-wrap:normal;
    word-break:normal;
    hyphens:none;
  }

  .partner-hero p {
    max-width:100%;
    font-size:clamp(13px,3.4vw,15px);
    line-height:1.52;
  }

  .hero-actions {
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    margin-top:20px;
  }

  .btn-primary,
  .btn-secondary,
  .form-submit {
    width:100%;
    min-height:44px;
    padding:0 16px;
    border-radius:14px;
    font-size:13px;
    line-height:1.2;
    white-space:normal;
    text-align:center;
  }

  .trust-row {
    display:grid;
    grid-template-columns:1fr;
    gap:8px;
    margin-top:18px;
  }

  .trust-row span,
  .benefit-tags span {
    min-height:34px;
    padding:8px 12px;
    font-size:12px;
    line-height:1.25;
    white-space:normal;
  }

  .hero-portal-card {
    align-self:stretch;
    gap:12px;
    padding:clamp(16px,4vw,22px);
    border-radius:20px;
  }

  .portal-head {
    display:grid;
    gap:10px;
    padding-bottom:12px;
  }

  .portal-head strong {
    font-size:14px;
  }

  .mini-route {
    padding:14px;
    border-radius:16px;
  }

  .mini-route strong {
    font-size:clamp(18px,5.5vw,22px);
  }

  .mini-route small {
    width:auto;
    max-width:100%;
    line-height:1.25;
  }

  .section {
    margin-top:28px;
    padding:0 0 34px;
  }

  .landing-flow-bar {
    grid-template-columns:1fr;
    justify-items:center;
    min-height:0;
    row-gap:12px;
    margin:0 0 22px;
    padding:20px 16px;
    border-radius:20px;
    text-align:center;
  }

  .landing-flow-mark {
    width:clamp(86px,28vw,118px);
    height:auto;
  }

  .landing-flow-copy h2 {
    font-size:clamp(32px,9.5vw,46px);
    line-height:1.04;
    letter-spacing:.35px;
    overflow-wrap:normal;
    word-break:normal;
    hyphens:none;
  }

  .landing-flow-copy p {
    font-size:14px;
    line-height:1.55;
  }

  .customer-journey-layout {
    grid-template-columns:1fr !important;
    gap:14px;
    padding:0;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
  }

  .customer-journey-menu {
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    height:auto;
    min-height:0;
    padding:0;
    overflow:visible;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
  }

  .customer-journey-menu::before,
  .customer-journey-menu::after,
  .customer-journey-menu button::before,
  .customer-journey-menu span::before,
  .customer-journey-menu span::after {
    display:none !important;
  }

  .customer-journey-menu button,
  .customer-journey-menu button:nth-child(1),
  .customer-journey-menu button:nth-child(2),
  .customer-journey-menu button:nth-child(3) {
    position:relative;
    inset:auto;
    top:auto;
    left:auto;
    right:auto;
    display:grid;
    grid-template-columns:46px minmax(0,1fr);
    align-items:center;
    gap:12px;
    width:100%;
    min-height:62px;
    height:auto;
    padding:10px 12px;
    border:1px solid #d6e4f5;
    border-radius:16px;
    background:#fff;
    box-shadow:var(--shadow-soft);
  }

  .customer-journey-menu button:hover,
  .customer-journey-menu button:focus-visible,
  .customer-journey-menu button.is-active {
    border-color:#9fc5f2;
    background:#eef6ff;
    transform:none;
  }

  .customer-journey-menu span {
    position:static;
    display:grid;
    place-items:center;
    width:40px;
    height:40px;
    border:0;
    border-radius:12px;
    outline:0;
    background:#edf4ff;
    color:#1a6bd4;
    font-size:13px;
    font-weight:700;
    letter-spacing:0;
    line-height:1;
    text-transform:none;
    box-shadow:none;
    transform:none;
  }

  .customer-journey-menu strong {
    position:static;
    width:auto;
    min-width:0;
    max-width:none;
    padding:0;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
    color:#081428;
    font-size:14px;
    font-weight:700;
    line-height:1.22;
    opacity:1;
    pointer-events:auto;
    text-align:left;
    transform:none;
    transition:none;
    white-space:normal;
  }

  .customer-journey-menu button:hover span,
  .customer-journey-menu button.is-active span,
  .customer-journey-menu button:focus-visible span {
    background:#edf4ff;
    color:#1a6bd4;
    box-shadow:none;
    transform:none;
  }

  .customer-journey-menu button:hover strong,
  .customer-journey-menu button.is-active strong,
  .customer-journey-menu button:focus-visible strong {
    border-color:transparent;
    background:transparent;
    box-shadow:none;
  }

  .customer-journey-panel {
    min-height:0;
    padding:clamp(20px,5vw,26px);
    border-radius:20px;
    overflow:hidden;
  }

  .customer-journey-panel h3,
  .customer-journey-panel--detail h3 {
    font-size:clamp(30px,8.4vw,42px);
    line-height:1.04;
    letter-spacing:.3px;
    overflow-wrap:normal;
    word-break:normal;
    hyphens:none;
  }

  .customer-journey-intro,
  .customer-journey-panel--detail .customer-journey-intro,
  .customer-journey-panel--register-bg .customer-journey-intro {
    grid-template-columns:1fr;
    gap:14px;
    margin-bottom:20px;
  }

  .customer-journey-stage-badge,
  .customer-journey-stage-badge--entry {
    width:100%;
    max-width:128px;
    min-height:72px;
    border-radius:16px;
  }

  .customer-journey-stage-badge--entry::after {
    display:none;
  }

  .customer-journey-detail-cards,
  .customer-journey-detail-cards--two,
  .customer-journey-detail-cards--stacked {
    grid-template-columns:1fr;
    gap:12px;
  }

  .customer-journey-info-card {
    min-height:0;
    padding:18px;
    border-radius:16px;
  }

  .customer-journey-info-card h4 {
    font-size:16px;
    line-height:1.22;
  }

  .customer-journey-info-card p,
  .customer-journey-panel p {
    font-size:14px;
    line-height:1.55;
  }

  .benefits-section .benefit-grid {
    grid-template-columns:1fr !important;
    grid-template-rows:auto;
    min-height:0;
    gap:14px;
    padding:0;
    border:0;
    border-radius:0;
    overflow:visible;
    background:transparent;
    box-shadow:none;
  }

  .benefits-section .benefit-grid::before,
  .benefits-section .benefit-grid::after,
  .benefits-section .benefits-visual {
    display:none !important;
  }

  .benefits-section .benefit-grid .info-card,
  .benefits-section .benefit-grid .info-card:nth-of-type(1),
  .benefits-section .benefit-grid .info-card:nth-of-type(2),
  .benefits-section .benefit-grid .info-card:nth-of-type(3) {
    grid-column:auto;
    grid-row:auto;
    align-self:auto;
    min-height:0;
    margin-left:0;
    padding:22px 20px;
    border-radius:20px;
    transform:none;
  }

  .benefits-section .benefit-grid .card-number {
    top:16px;
    right:18px;
    font-size:52px;
  }

  .info-card h3,
  .process-card h3,
  .support-network-card h3,
  .final-cta h2 {
    line-height:1.06;
    overflow-wrap:normal;
    word-break:normal;
    hyphens:none;
  }

  .info-card p,
  .process-card p,
  .support-network-card p,
  .final-cta p {
    font-size:14px;
    line-height:1.55;
  }

  .process-section .support-network-scene {
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
    min-height:0;
    margin-top:0;
    padding:0;
    overflow:visible;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
  }

  .process-section .support-network-scene::before,
  .process-section .support-network-scene::after,
  .process-section .support-network-road,
  .process-section .support-network-hub {
    display:none !important;
  }

  .process-section .support-network-scene .process-card,
  .process-section .support-network-scene .process-card--dark,
  .process-section .support-network-scene .support-card--data,
  .process-section .support-network-scene .process-card:nth-of-type(2),
  .process-section .support-network-scene .process-card:nth-of-type(3),
  .process-section .support-network-card {
    position:relative;
    left:auto;
    right:auto;
    top:auto;
    bottom:auto;
    width:100%;
    min-height:0;
    padding:22px 20px;
    border-radius:20px;
    transform:none;
  }

  .process-section .support-network-scene .process-card::before,
  .process-section .support-network-scene .process-card::after {
    clip-path:none;
    border-radius:20px;
  }

  .process-section .support-card-icon {
    width:46px;
    height:46px;
    border-radius:14px;
  }

  .process-section .support-network-scene .process-kicker {
    margin-bottom:18px;
    font-size:13px;
    line-height:1.2;
  }

  .final-cta {
    grid-template-columns:1fr;
    gap:18px;
    margin:28px 0 0;
    padding:24px 20px;
    border-radius:20px;
  }

  .final-cta h2 {
    font-size:clamp(30px,8.5vw,42px);
  }

  .final-cta .section-tag {
    font-size:clamp(22px,6.6vw,30px);
  }

  .final-cta .btn-primary {
    width:100%;
  }
}
