/* ===========================================================================
   GT Motorradlogistik – Kundenportal (Seitenebene, lädt NACH app.css)
   Hebt die Node-Vorlage auf Linear/Stripe/Vercel-Niveau:
   • ein Akzent (Electric Indigo, var(--accent)), ruhige Neutraltöne
   • 4px-Raster, klare Typo-Hierarchie, Beträge .tnum
   • Motion à la Emil Kowalski: nur transform/opacity, var(--e-out), kurze Dauern,
     gestaffelte Reveals; prefers-reduced-motion wird respektiert (global + lokal)
   =========================================================================== */

.hint { color: var(--muted); font-size: var(--t-sm); }
.hint.center { text-align: center; }
.hl {
  background: linear-gradient(90deg, #6E7BFF, var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Topbar-Feinschliff ---------- */
.brand small { letter-spacing: 0.14em; }
.topnav .who { color: #AEB8CC; }
.brand-link { display: inline-flex; align-items: center; }
.brand-logo { height: 34px; width: auto; display: block; }
.topbar.scrolled .brand-logo { height: 30px; transition: height var(--d3) var(--e-soft); }
.footer-logo { height: 42px; width: auto; margin-bottom: var(--s-3); }

/* ---------- Hero-Hintergrundfoto (soft, Text bleibt lesbar) ---------- */
.hero-photo {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(110deg, rgba(11,13,18,0.95) 0%, rgba(11,13,18,0.80) 44%, rgba(11,13,18,0.55) 100%),
    url('/assets/img/hero-bg.jpg');
  background-size: cover; background-position: center right;
}
@media (max-width: 1020px) {
  .hero-photo {
    background-image:
      linear-gradient(180deg, rgba(11,13,18,0.84) 0%, rgba(11,13,18,0.93) 100%),
      url('/assets/img/hero-bg.jpg');
  }
}

/* ===========================================================================
   Hero
   =========================================================================== */
.hero {
  position: relative; overflow: hidden;
  color: #fff;
  padding: clamp(48px, 6vw, 72px) clamp(16px, 5vw, 64px) clamp(64px, 8vw, 96px);
  background:
    radial-gradient(1100px 520px at 84% -12%, rgba(61, 90, 254, 0.40), transparent 60%),
    radial-gradient(820px 440px at -10% 28%, rgba(110, 123, 255, 0.22), transparent 55%),
    var(--ink);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--container); margin-inline: auto;
  display: grid; grid-template-columns: minmax(0, 1fr) 540px; gap: var(--s-9);
  align-items: start;
}
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); gap: var(--s-8); }
}
@media (max-width: 560px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; white-space: normal; }
}

.hero .eyebrow { color: #9FB0FF; margin-bottom: var(--s-3); display: inline-block; }
.hero-text h1 {
  font-size: var(--t-display); line-height: var(--lh-tight);
  letter-spacing: -0.02em; margin: 0 0 var(--s-4);
}
.hero-text .sub { color: #B9C2D6; font-size: 1.12rem; max-width: 520px; }
.trust { list-style: none; padding: 0; margin: var(--s-6) 0; }
.trust li {
  position: relative; padding: var(--s-1) 0 var(--s-1) 26px;
  color: #D7DEEC; font-size: 0.97rem;
}
.trust li::before {
  content: '✓'; position: absolute; left: 0; top: var(--s-1);
  color: #7E8CFF; font-weight: 800;
}
.hero-ctas { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-top: var(--s-3); }
.hero-alt { margin-top: var(--s-4); color: #9AA6BD; }
.hero-alt a { color: #9FB0FF; font-weight: 600; }
.hero-alt a:hover { color: #C3CDFF; }

/* ===========================================================================
   Schnellrechner-Karte
   =========================================================================== */
.booking-card {
  position: relative;
  background: var(--surface); color: var(--text);
  border-radius: var(--r-xl); padding: var(--s-6) var(--s-7);
  box-shadow: var(--shadow-xl);
  animation: cardIn var(--d4) var(--e-out) both;
}
.booking-card::before {
  content: ''; position: absolute; inset: -2px; border-radius: calc(var(--r-xl) + 2px);
  z-index: -1; opacity: 0.45; filter: blur(18px);
  background: linear-gradient(135deg, rgba(61,90,254,0.55), rgba(110,123,255,0.40));
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(22px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}
.card-head { display: flex; justify-content: space-between; align-items: center; gap: var(--s-3); flex-wrap: wrap; }
.card-head h2 { margin: 0; font-size: 1.35rem; }
.card-badge { font-size: var(--t-xs); }

.booking-card h3 { margin: var(--s-5) 0 var(--s-3); font-size: 1rem; display: flex; align-items: center; }
.booking-card .step {
  display: inline-flex; width: 24px; height: 24px; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), #6E7BFF); color: #fff; border-radius: var(--r-full);
  font-size: var(--t-xs); margin-right: var(--s-2); font-weight: 700;
}

/* Felder in der Karte: kompakter, label oben */
.booking-card label.label,
.modal-box label.label {
  display: block; margin-bottom: var(--s-3);
  font-size: var(--t-sm); color: var(--text-2); font-weight: 600;
}
.booking-card label.label input,
.booking-card label.label select,
.modal-box label.label input { margin-top: var(--s-1); }

.presets { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-2); margin-bottom: var(--s-3); }
@media (max-width: 430px) { .presets { grid-template-columns: repeat(2, 1fr); } }
.presets button {
  background: var(--surface-2); border: 1.5px solid var(--line-strong); border-radius: var(--r-md);
  padding: 10px 6px; cursor: pointer; font-size: var(--t-sm); font-weight: 600; color: var(--text-2);
  transition: border-color var(--d2) var(--e-soft), background var(--d2) var(--e-soft),
              color var(--d2) var(--e-soft), transform var(--d1) var(--e-out);
}
.presets button:hover { border-color: var(--accent); transform: translateY(-1px); }
.presets button.active { background: var(--accent-weak); border-color: var(--accent); color: var(--accent-700); }

.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.row3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--s-3); }
@media (max-width: 480px) { .row3 { grid-template-columns: 1fr 1fr; } }
label.check, label.radio {
  display: flex; align-items: center; gap: var(--s-2);
  font-weight: 500; color: var(--text-2); font-size: var(--t-sm); margin-bottom: var(--s-3);
}
label.check input, label.radio input { width: auto; margin: 0; }

.addr-row { display: flex; gap: var(--s-2); }
.addr-row > input, .addr-row > .input { flex: 1 1 auto; min-width: 0; }
.btn-small { flex: 0 0 auto; }

#b-map { height: 210px; border-radius: var(--r-md); margin: var(--s-2) 0 var(--s-1); border: 1px solid var(--line); }

/* ---------- Ergebnis ---------- */
.result { margin-top: var(--s-4); border-top: 2px dashed var(--line-strong); padding-top: var(--s-4); }
#b-result:not(.hidden) { animation: cardIn var(--d3) var(--e-out) both; }
.price-line { display: flex; justify-content: space-between; align-items: center; gap: var(--s-3); flex-wrap: wrap; }
.tarif-badge {
  display: inline-block; background: var(--accent-weak); color: var(--accent-700);
  padding: 4px 13px; border-radius: var(--r-full); font-size: var(--t-xs); font-weight: 700;
}
.route-facts { color: var(--muted); font-size: var(--t-sm); margin-top: var(--s-2); }
.price { text-align: right; }
.big-price { font-size: 1.95rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.big-price small { font-size: 0.5em; font-weight: 700; color: var(--muted); }
.price-sub { font-size: var(--t-xs); color: var(--muted); }
.big-price.pop { animation: pricePop var(--d4) var(--e-out); }
@keyframes pricePop {
  0%   { opacity: 0; transform: scale(0.82); }
  60%  { transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

/* Fit-/Versicherungs-Hinweise (Mapping auf .note-*) */
#r-fit { margin-top: var(--s-3); font-size: var(--t-sm); display: grid; gap: var(--s-2); }
.fit-ok, .fit-bad, .fit-warn { border-radius: var(--r-md); padding: 12px 14px; font-size: var(--t-sm); }
.fit-ok   { background: var(--success-weak); border: 1px solid #BFE8CF; color: #0B6B38; }
.fit-bad  { background: var(--danger-weak);  border: 1px solid #F3C0C8; color: #A51325; }
.fit-warn { background: var(--warn-weak);    border: 1px solid #F3D9A6; color: #8A5300; }
.fit-ok ul, .fit-bad ul, .fit-warn ul { margin: 6px 0 0; padding-left: 18px; }

/* ===========================================================================
   Sektionen / Use-Cases / Wie es funktioniert
   =========================================================================== */
.section-title { font-size: var(--t-h2); margin: 0 0 var(--s-6); letter-spacing: -0.02em; }

.usecase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
@media (max-width: 1000px) { .usecase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .usecase-grid { grid-template-columns: 1fr; } }
.usecase { padding: 0; overflow: hidden; }
.uc-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-2); }
.uc-img img { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform var(--d4) var(--e-out); }
.usecase:hover .uc-img img { transform: scale(1.05); }
.usecase h3 { margin: var(--s-4) var(--s-5) var(--s-2); font-size: var(--t-h3); }
.usecase p { margin: 0 var(--s-5) var(--s-5); color: var(--muted); font-size: var(--t-sm); }

.how { padding-top: var(--s-2); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
@media (max-width: 800px) { .how-grid { grid-template-columns: 1fr; } }
.how-step { padding: var(--s-6); }
.how-num {
  width: 36px; height: 36px; border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), #6E7BFF); color: #fff; font-weight: 800;
  margin-bottom: var(--s-3);
}
.how-step h3 { margin: 0 0 var(--s-2); font-size: var(--t-h3); }
.how-step p { margin: 0; color: var(--muted); font-size: var(--t-sm); }

/* ===========================================================================
   B2B-Banner
   =========================================================================== */
.b2b-banner {
  color: #fff; border-radius: var(--r-xl);
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-7);
  padding: clamp(28px, 4vw, 40px); flex-wrap: wrap;
  background:
    radial-gradient(700px 320px at 90% 0%, rgba(61,90,254,0.45), transparent 60%),
    var(--ink);
}
.b2b-banner h2 { margin: var(--s-2) 0 var(--s-3); font-size: var(--t-h2); color: #fff; }
.b2b-banner .eyebrow.light { color: #9FB0FF; }
.b2b-list { list-style: none; padding: 0; margin: 0; }
.b2b-list li {
  position: relative; padding: var(--s-1) 0 var(--s-1) 24px;
  color: #C9D2E4; font-size: 0.95rem;
}
.b2b-list li::before { content: '✓'; position: absolute; left: 0; color: #7E8CFF; font-weight: 800; }
.b2b-list strong { color: #fff; }

/* ===========================================================================
   FAQ
   =========================================================================== */
.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 0 var(--s-5); margin-bottom: var(--s-2);
  transition: border-color var(--d2) var(--e-soft), box-shadow var(--d2) var(--e-soft);
}
.faq details[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; font-weight: 700; padding: var(--s-4) 0; list-style: none; position: relative;
  padding-right: var(--s-6);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: var(--s-1); top: 50%; transform: translateY(-50%);
  color: var(--accent); font-size: 1.25rem; line-height: 1;
  transition: transform var(--d2) var(--e-out);
}
.faq details[open] summary::after { content: '–'; }
.faq p { margin: 0 0 var(--s-4); color: var(--muted); font-size: var(--t-sm); }

/* ===========================================================================
   Meine Aufträge & Rechnungen
   =========================================================================== */
.order-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5); margin-bottom: var(--s-2);
  display: flex; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap; align-items: center;
  transition: border-color var(--d2) var(--e-soft), box-shadow var(--d2) var(--e-out);
}
.order-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.order-route { font-weight: 700; }
.order-meta { color: var(--muted); font-size: var(--t-sm); margin-top: var(--s-1); font-weight: 400; }
.order-price { font-weight: 800; font-size: 1.1rem; white-space: nowrap; }
.order-price small { font-size: 0.6em; font-weight: 600; color: var(--muted); }
.status-pill { white-space: nowrap; }

/* ===========================================================================
   Auth-Modal (Overlay aus app.css-Tokens nachgebaut, Klasse modal-overlay)
   =========================================================================== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000; padding: 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8, 12, 24, 0.55); backdrop-filter: blur(5px);
  animation: overlayIn var(--d3) var(--e-out);
}
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  width: 440px; max-width: 100%; max-height: 92vh; overflow-y: auto;
  background: var(--surface); border-radius: var(--r-xl); padding: var(--s-7);
  box-shadow: var(--shadow-xl); position: relative;
  animation: modalIn var(--d3) var(--e-out);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(10px) scale(0.97); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; top: var(--s-3); right: var(--s-4); background: var(--surface-2); border: none;
  width: 34px; height: 34px; border-radius: var(--r-full); cursor: pointer; color: var(--muted);
  font-size: 1rem; transition: background var(--d1) var(--e-soft), color var(--d1) var(--e-soft);
}
.modal-close:hover { background: var(--line); color: var(--text); }
.modal-tabs { display: flex; gap: var(--s-2); margin-bottom: var(--s-5); }
.modal-tabs button {
  flex: 1; padding: 11px; border: none; border-radius: var(--r-md);
  background: var(--surface-2); cursor: pointer; font-weight: 700; color: var(--text-2);
  transition: background var(--d2) var(--e-soft), color var(--d2) var(--e-soft);
}
.modal-tabs button.active { background: var(--accent); color: #fff; }
.kundenart { display: flex; gap: var(--s-5); margin-bottom: var(--s-4); }

/* ===========================================================================
   Footer
   =========================================================================== */
footer { background: var(--ink); color: #AEB8CC; font-size: var(--t-sm); margin-top: var(--s-8); }
.footer-inner {
  max-width: var(--container); margin-inline: auto; padding: clamp(28px, 4vw, 40px) clamp(16px, 5vw, 64px);
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s-5);
}
@media (max-width: 760px) { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-legal {
  max-width: var(--container); margin-inline: auto;
  padding: var(--s-4) clamp(16px, 5vw, 64px);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; gap: var(--s-3); flex-wrap: wrap;
  font-size: var(--t-sm); color: #8A95AD;
}
.footer-legal a { color: #9FB0FF; }
.footer-legal a:hover { text-decoration: underline; }
footer strong { color: #fff; }
footer a { color: #9FB0FF; }
footer a:hover { text-decoration: underline; }

/* ===========================================================================
   Toast (white-space erlauben)
   =========================================================================== */
#toast { white-space: pre-line; }

/* ===========================================================================
   Adress-Autocomplete – Altklassen auf app.css (.ac-results) abstimmen
   =========================================================================== */
.addr-results.ac-results > div { font-weight: 400; }
.addr-results .addr-empty, .addr-results .ac-empty {
  color: var(--muted); cursor: default; background: transparent; border: none;
}

/* ===========================================================================
   Dekorative Parallax-Ebenen im Hero (rein visuell)
   =========================================================================== */
.fx { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.fx-orb { position: absolute; border-radius: 50%; will-change: transform; }
.fx-orb.o1 {
  width: 560px; height: 560px; right: -140px; top: -180px;
  background: radial-gradient(circle, rgba(61,90,254,0.40) 0%, rgba(61,90,254,0.12) 45%, transparent 70%);
}
.fx-orb.o2 {
  width: 460px; height: 460px; left: -160px; top: 220px;
  background: radial-gradient(circle, rgba(110,123,255,0.30) 0%, rgba(110,123,255,0.09) 45%, transparent 70%);
}
.fx-orb.o3 {
  width: 320px; height: 320px; left: 38%; bottom: -160px;
  background: radial-gradient(circle, rgba(125,211,252,0.20) 0%, transparent 65%);
}
.fx-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1.5px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(720px 480px at 30% 30%, #000 0%, transparent 75%);
          mask-image: radial-gradient(720px 480px at 30% 30%, #000 0%, transparent 75%);
}
.fx-float { position: absolute; will-change: transform; }
.fx-float .fx-bob {
  display: inline-block; font-size: 2.3rem; opacity: 0.30;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,0.45));
  animation: fxBob 7s ease-in-out infinite alternate;
}
.fx-float.f1 { left: 4%;  top: 16%; }
.fx-float.f2 { left: 30%; top: 7%; font-size: 1.6rem; }
.fx-float.f2 .fx-bob { animation-duration: 5.5s; animation-delay: 1s; }
.fx-float.f3 { left: 12%; bottom: 14%; }
.fx-float.f3 .fx-bob { animation-duration: 8s; animation-delay: 0.5s; }
.fx-float.f4 { left: 42%; bottom: 8%; }
.fx-float.f4 .fx-bob { animation-duration: 6.5s; animation-delay: 1.6s; }
@keyframes fxBob {
  from { transform: translateY(-10px) rotate(-4deg); }
  to   { transform: translateY(12px) rotate(5deg); }
}
@media (max-width: 1020px) { .fx-float { display: none; } }

/* 3D-Tilt-Karten (Effekt von effects.js gesetzt) */
.tilt { will-change: transform; transform-style: preserve-3d; transition: transform var(--d2) var(--e-out), box-shadow var(--d2) var(--e-out); }
.tilt .uc-icon, .tilt .how-num { transform: translateZ(26px); }

/* ===========================================================================
   Prominenter CTA-Puls + schwebender Mobile-Button
   =========================================================================== */
.btn-cta.pulse { position: relative; animation: ctaPulse 2.4s ease-in-out infinite; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 8px 22px rgba(61,90,254,0.34); }
  50%      { box-shadow: 0 8px 22px rgba(61,90,254,0.34), 0 0 0 12px rgba(61,90,254,0.12); }
}

.wizard-fab {
  display: none;
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 18px; z-index: 1200;
  background: var(--accent); color: #fff; border: none; border-radius: var(--r-full);
  padding: 15px 30px; font-size: 1.02rem; font-weight: 800; cursor: pointer;
  box-shadow: 0 12px 34px rgba(61,90,254,0.45);
  transition: transform var(--d1) var(--e-out), background var(--d2) var(--e-soft);
}
.wizard-fab:hover { background: var(--accent-600); }
.wizard-fab:active { transform: translateX(-50%) translateY(1px); }
@media (max-width: 1020px) { .wizard-fab { display: block; } }

/* ===========================================================================
   Buchungs-Wizard (Overlay + Schritte)
   =========================================================================== */
body.no-scroll { overflow: hidden; }

.wizard {
  position: fixed; inset: 0; z-index: 1400;
  background: rgba(8, 12, 24, 0.66); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 18px;
  animation: overlayIn var(--d3) var(--e-out);
}
.wz-box {
  background: var(--surface); border-radius: var(--r-xl); width: 600px; max-width: 100%;
  max-height: 92vh; overflow-y: auto; position: relative;
  padding: var(--s-6) var(--s-7) var(--s-5);
  box-shadow: var(--shadow-xl);
  animation: modalIn var(--d3) var(--e-out) both;
}
@media (max-width: 640px) {
  .wizard { padding: 0; align-items: stretch; }
  .wz-box { border-radius: 0; max-height: 100vh; width: 100%; padding: var(--s-5) var(--s-4); }
}
.wz-close {
  position: absolute; top: 14px; right: 16px; background: var(--surface-2); border: none;
  width: 34px; height: 34px; border-radius: var(--r-full); cursor: pointer; color: var(--muted);
  font-size: 1rem; z-index: 2;
  transition: background var(--d1) var(--e-soft), color var(--d1) var(--e-soft);
}
.wz-close:hover { background: var(--line); color: var(--text); }

.wz-head { margin-bottom: var(--s-5); padding-right: 44px; }
.wz-steplabel { font-size: var(--t-xs); font-weight: 700; color: var(--accent-700); margin-bottom: var(--s-2); letter-spacing: 0.04em; }
.wz-progress { height: 7px; background: var(--surface-2); border-radius: var(--r-full); overflow: hidden; }
.wz-bar {
  height: 100%; width: 20%; border-radius: var(--r-full);
  background: linear-gradient(90deg, var(--accent), #6E7BFF);
  transition: width var(--d4) var(--e-out);
}

.wz-step { display: none; }
.wz-step.active { display: block; animation: wzStep var(--d3) var(--e-out) both; }
@keyframes wzStep {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: none; }
}
.wz-step h2 { margin: 0 0 var(--s-2); font-size: 1.32rem; letter-spacing: -0.02em; }
.wz-sub { color: var(--muted); font-size: var(--t-sm); margin: 0 0 var(--s-4); }
.wz-step label.label { display: block; margin-bottom: var(--s-3); font-size: var(--t-sm); color: var(--text-2); font-weight: 600; }
.wz-step label.label input { margin-top: var(--s-1); }

/* Schritt 1: Auswahlkarten */
.wz-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
@media (max-width: 560px) { .wz-options { grid-template-columns: repeat(2, 1fr); } }
.wz-option {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 3px;
  background: var(--surface-2); border: 2px solid var(--line-strong); border-radius: var(--r-lg);
  padding: var(--s-4) var(--s-2) var(--s-3); cursor: pointer; font-family: inherit;
  transition: transform var(--d1) var(--e-out), border-color var(--d2) var(--e-soft), box-shadow var(--d2) var(--e-out);
}
.wz-option:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.wz-option.active { border-color: var(--accent); background: var(--accent-weak); }
.wz-opt-icon { font-size: 2rem; }
.wz-opt-title { font-weight: 700; font-size: 0.88rem; color: var(--text); }
.wz-opt-desc { font-size: var(--t-xs); color: var(--muted); }

/* Chips (Verpackung, Akku/Gefahrgut, rollfähig, Zeitfenster) */
.wz-chiplabel { display: block; font-size: var(--t-sm); font-weight: 600; color: var(--text-2); margin: var(--s-1) 0 var(--s-2); }
.wz-chips { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-3); }
.wz-chips button {
  background: var(--surface); border: 1.5px solid var(--line-strong); border-radius: var(--r-full);
  padding: 9px 16px; cursor: pointer; font-size: var(--t-sm); font-weight: 600; color: var(--text-2);
  font-family: inherit;
  transition: border-color var(--d2) var(--e-soft), background var(--d2) var(--e-soft),
              color var(--d2) var(--e-soft), transform var(--d1) var(--e-out);
}
.wz-chips button:hover { border-color: var(--accent); transform: translateY(-1px); }
.wz-chips button.active { border-color: var(--accent); background: var(--accent-weak); color: var(--accent-700); }

/* Gefahrgut-Warnung */
.wz-gefahr {
  background: var(--danger-weak); border: 1.5px solid #F3C0C8; border-radius: var(--r-md);
  padding: 12px 15px; color: #A51325; font-size: var(--t-sm); margin: var(--s-1) 0 var(--s-3);
}

/* Adress-Bestätigung */
.wz-addr-ok {
  margin-top: var(--s-2); font-size: var(--t-sm); color: #0B6B38; font-weight: 600;
  background: var(--success-weak); border: 1px solid #BFE8CF; border-radius: var(--r-sm); padding: 7px 11px;
}

/* Navigation */
.wz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: var(--s-6); gap: var(--s-3); }
.wz-backbtn { font-size: var(--t-sm); }
.wz-nav .btn-cta { min-width: 220px; padding: 13px 22px; font-size: 1rem; }
@media (max-width: 560px) { .wz-nav .btn-cta { min-width: 0; flex: 1; } }

/* Preis-Schritt */
.wz-loading { display: flex; align-items: center; gap: var(--s-3); color: var(--muted); padding: var(--s-6) 0; }
.wz-spinner {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  border: 3px solid rgba(61,90,254,0.2); border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
}
.wz-price-head { text-align: center; margin-bottom: var(--s-4); }
.wz-price-head .route-facts { margin: var(--s-2) 0 var(--s-1); }
.wz-price-head .big-price { font-size: 2.3rem; }
#w-map { height: 170px; border-radius: var(--r-md); margin: var(--s-3) 0; border: 1px solid var(--line); }
.wz-summary { border: 1px solid var(--line); border-radius: var(--r-md); padding: 4px var(--s-4); margin-top: var(--s-3); }
.wz-sumrow {
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-3);
  padding: var(--s-2) 0; font-size: var(--t-sm); border-bottom: 1px solid var(--line);
}
.wz-sumrow:last-child { border-bottom: none; }
.wz-sumrow span { color: var(--text); }
.wz-sumrow small { color: var(--muted); }

/* Erfolg */
.wz-success { text-align: center; padding: var(--s-5) var(--s-2) var(--s-2); }
.wz-check {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto var(--s-4);
  background: linear-gradient(135deg, var(--success), #34D399); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.3rem; font-weight: 800;
  animation: wzPop var(--d4) var(--e-out) both;
  box-shadow: 0 14px 36px rgba(18,161,80,0.40);
}
@keyframes wzPop { from { transform: scale(0.3); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.wz-success p { color: var(--muted); max-width: 400px; margin: 0 auto var(--s-5); }

/* ===========================================================================
   Bewegung respektieren (zusätzlich zur globalen Regel in app.css)
   =========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .booking-card, #b-result:not(.hidden), .big-price.pop,
  .wz-box, .wz-step.active, .wz-check, .modal-box, .modal-overlay, .wizard { animation: none; }
  .fx-float .fx-bob { animation: none; }
  .btn-cta.pulse { animation: none; }
  .wz-bar { transition: none; }
  .fx-orb, .fx-float { transform: none !important; }
}

/* ===========================================================================
   Mobile-Feinschliff Schnellrechner (NACH den Basisregeln -> gewinnt)
   =========================================================================== */
@media (max-width: 560px) {
  .booking-card { padding: var(--s-5) var(--s-4); border-radius: var(--r-lg); }
  .booking-card h3 { margin-top: var(--s-4); }
  .card-head h2 { font-size: 1.2rem; }
  .row3 { gap: var(--s-2); }
  #b-map { height: 180px; }
  .wizard-fab { padding: 13px 22px; font-size: 0.98rem; white-space: nowrap; bottom: 14px; }
}
