/* All4You Service München
   Virtueller Router / eigene URLs
   DBG: ALL4YOU-ROUTER-V3.3-ANHAENGER-WIZARD.3-ANHAENGER
*/

:root {
  --blue: #0b4e91;
  --blue-2: #123b62;
  --navy: #10243b;
  --teal: #0aa99b;
  --teal-2: #078179;
  --text: #13233a;
  --muted: #607184;
  --soft: #eef6fa;
  --line: rgba(19, 35, 58, .13);
  --card: rgba(255, 255, 255, .88);
  --shadow: 0 22px 55px rgba(16, 38, 60, .14);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(10,169,155,.16), transparent 34rem),
    radial-gradient(circle at 85% 5%, rgba(11,78,145,.13), transparent 36rem),
    linear-gradient(180deg, #f5f9fc, #edf5fa);
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }

.app-shell {
  width: min(1760px, calc(100% - 42px));
  margin: 24px auto;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(19, 35, 58, .09);
  background: rgba(255,255,255,.92);
  box-shadow: 0 34px 95px rgba(16, 38, 60, .17);
}

.site-header {
  min-height: 96px;
  padding: 16px 60px;
  display: grid;
  grid-template-columns: 315px 1fr auto;
  align-items: center;
  gap: 28px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.91);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand-card {
  width: 292px;
  height: 78px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 17px;
  background: #fff;
}

.brand-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 850;
  color: #26374e;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
  transition: color .2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.main-nav a:hover,
.main-nav a.active { color: var(--teal-2); }

.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.header-cta {
  min-height: 54px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  box-shadow: 0 14px 30px rgba(10, 169, 155, .24);
}

.header-cta span,
.btn span { font-size: 28px; line-height: 0; }

.header-cta:hover,
.btn:hover { transform: translateY(-2px); }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(10,169,155,.1);
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--navy);
}

.page {
  animation: pageIn .22s ease both;
}

@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-pad { padding: 44px 68px; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
  font-weight: 950;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 16px;
  font-size: clamp(42px, 4.4vw, 82px);
  line-height: .95;
  letter-spacing: -.058em;
  color: var(--navy);
}

h1 span,
.accent { color: var(--teal); }

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 2.55vw, 48px);
  line-height: 1.04;
  letter-spacing: -.045em;
  color: var(--navy);
}

h3 {
  margin-bottom: 9px;
  font-size: 22px;
  line-height: 1.12;
}

.lead {
  color: #2e4156;
  font-size: 19px;
  line-height: 1.58;
  font-weight: 650;
}

.btn {
  min-height: 58px;
  padding: 0 29px;
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  box-shadow: 0 15px 34px rgba(10,169,155,.24);
}

.btn.blue {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 15px 34px rgba(11,78,145,.22);
}

.btn.ghost {
  color: var(--teal-2);
  background: rgba(255,255,255,.74);
  border: 2px solid rgba(10,169,155,.34);
}

.hero {
  min-height: 540px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 30px;
}

.hero-copy { max-width: 720px; }

.hero-actions,
.inline-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-badges {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: #40536a;
  font-weight: 850;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(238,246,250,.95);
  border: 1px solid var(--line);
}

.hero-badges svg,
.icon-line {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  min-height: 408px;
  border-radius: 999px 999px 48px 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 30%, rgba(10,169,155,.15), transparent 16rem),
    radial-gradient(circle at 40% 40%, rgba(11,78,145,.14), transparent 18rem),
    linear-gradient(180deg, rgba(244,249,252,.96), rgba(232,243,249,.82));
}

.sun {
  position: absolute;
  width: 110px;
  height: 110px;
  top: 55px;
  right: 120px;
  border-radius: 50%;
  background: rgba(10,169,155,.16);
  box-shadow: 0 0 0 25px rgba(10,169,155,.06), 0 0 0 52px rgba(10,169,155,.035);
}

.skyline {
  position: absolute;
  left: 70px;
  right: 68px;
  bottom: 150px;
  height: 154px;
  opacity: .22;
}

.skyline span {
  position: absolute;
  bottom: 0;
  width: 42px;
  background: #6d8eaf;
  border-radius: 12px 12px 0 0;
}

.skyline span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -34px;
  transform: translateX(-50%);
  width: 28px;
  height: 40px;
  border-radius: 20px 20px 4px 4px;
  background: #6d8eaf;
}

.skyline .s1 { left: 60px; height: 90px; }
.skyline .s2 { left: 120px; height: 130px; }
.skyline .s3 { left: 245px; height: 118px; width: 80px; }
.skyline .s4 { right: 200px; height: 104px; }
.skyline .s5 { right: 92px; height: 142px; width: 26px; }

.road {
  position: absolute;
  left: 72px;
  right: 50px;
  bottom: 82px;
  height: 24px;
  border-radius: 999px;
  background: rgba(16,36,59,.11);
}

.truck {
  position: absolute;
  left: 84px;
  bottom: 103px;
  width: 318px;
  height: 155px;
}

.truck-bed {
  position: absolute;
  left: 0;
  bottom: 36px;
  width: 153px;
  height: 31px;
  border-radius: 10px;
  background: #123b62;
  box-shadow: inset 0 -5px 0 rgba(255,255,255,.18);
}

.truck-cab {
  position: absolute;
  left: 148px;
  bottom: 36px;
  width: 84px;
  height: 92px;
  border-radius: 13px 15px 8px 7px;
  background: #123b62;
}

.truck-cab::before {
  content: "";
  position: absolute;
  right: 13px;
  top: 16px;
  width: 34px;
  height: 31px;
  border-radius: 6px;
  background: #e8f4f8;
}

.truck-front {
  position: absolute;
  left: 222px;
  bottom: 36px;
  width: 62px;
  height: 50px;
  border-radius: 0 13px 10px 0;
  background: #17466f;
}

.truck-wheel,
.scooter-wheel,
.trailer-wheel {
  position: absolute;
  border-radius: 50%;
  background: var(--navy);
  border: 7px solid #e8f2f7;
  box-shadow: 0 0 0 3px rgba(16,36,59,.15);
}

.truck-wheel {
  bottom: 18px;
  width: 50px;
  height: 50px;
}

.truck-wheel.left { left: 42px; }
.truck-wheel.right { left: 198px; }

.scooter {
  position: absolute;
  left: 38px;
  bottom: 73px;
  width: 96px;
  height: 72px;
}

.scooter-body {
  position: absolute;
  left: 19px;
  bottom: 18px;
  width: 52px;
  height: 24px;
  border-radius: 17px 8px 14px 8px;
  background: var(--blue);
}

.scooter-seat {
  position: absolute;
  left: 24px;
  bottom: 45px;
  width: 39px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
}

.scooter-front {
  position: absolute;
  right: 13px;
  bottom: 26px;
  width: 9px;
  height: 35px;
  transform: rotate(-15deg);
  border-radius: 999px;
  background: var(--blue);
}

.scooter-wheel {
  bottom: 4px;
  width: 23px;
  height: 23px;
  border-width: 4px;
}

.scooter-wheel.w1 { left: 16px; }
.scooter-wheel.w2 { right: 9px; }

.trailer-art {
  position: absolute;
  left: 425px;
  bottom: 106px;
  width: 270px;
  height: 124px;
}

.trailer-box {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: 210px;
  height: 82px;
  border-radius: 11px 11px 7px 7px;
  background: linear-gradient(135deg, #12b8a5, #077b76);
  border: 7px solid #eaf4f7;
  box-shadow: 0 13px 23px rgba(16,36,59,.13);
}

.trailer-hitch {
  position: absolute;
  left: 205px;
  bottom: 45px;
  width: 60px;
  height: 8px;
  border-radius: 999px;
  background: var(--navy);
}

.trailer-wheel {
  left: 82px;
  bottom: 2px;
  width: 47px;
  height: 47px;
  border-width: 8px;
}

.cleaning-art {
  position: absolute;
  right: 40px;
  bottom: 100px;
  width: 150px;
  height: 150px;
}

.bucket {
  position: absolute;
  left: 8px;
  bottom: 20px;
  width: 58px;
  height: 60px;
  border: 8px solid var(--navy);
  border-top: 0;
  border-radius: 6px 6px 20px 20px;
}

.bucket::before {
  content: "";
  position: absolute;
  left: -8px;
  top: -18px;
  width: 58px;
  height: 31px;
  border: 8px solid var(--navy);
  border-bottom: 0;
  border-radius: 40px 40px 0 0;
}

.broom-stick {
  position: absolute;
  right: 43px;
  top: 12px;
  width: 9px;
  height: 120px;
  border-radius: 999px;
  background: var(--navy);
  transform: rotate(8deg);
}

.broom-head {
  position: absolute;
  right: 27px;
  bottom: 15px;
  width: 54px;
  height: 20px;
  border-radius: 3px 3px 12px 12px;
  background: var(--navy);
  transform: rotate(8deg);
}

.page-head {
  padding: 58px 68px 32px;
  background:
    radial-gradient(circle at 80% 0%, rgba(10,169,155,.13), transparent 24rem),
    linear-gradient(180deg, rgba(238,247,251,.95), rgba(255,255,255,.86));
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  color: #607184;
  font-weight: 800;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--teal-2);
}

.page-head .lead {
  max-width: 850px;
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(16,36,59,.16);
  border-color: rgba(10,169,155,.32);
}

.service-icon {
  width: 92px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--teal);
}

.service-icon.blue { color: var(--blue); }
.service-icon.dark { color: var(--navy); }

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 6.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p {
  color: var(--muted);
  line-height: 1.5;
  font-weight: 650;
}

.card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-2);
  font-weight: 950;
}

.feature-band {
  margin: 0 68px 16px;
  padding: 18px 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(245,250,253,.95), rgba(235,244,249,.84));
  box-shadow: 0 12px 26px rgba(16,36,59,.08);
}

.feature {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 2px 22px;
  border-right: 1px solid var(--line);
}

.feature:last-child { border-right: 0; }

.feature strong {
  display: block;
  color: var(--teal-2);
  font-size: 18px;
}

.feature span {
  display: block;
  color: #41546b;
  font-weight: 650;
}

.two-col {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 34px;
  align-items: start;
}

.info-card,
.form-card,
.faq-card,
.quote-card,
.check-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.mini-card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
}

.mini-card h3 { font-size: 20px; }
.mini-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 650;
}

.list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 31px;
  color: #40536a;
  line-height: 1.45;
  font-weight: 700;
}

.list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--teal);
  font-size: 13px;
  font-weight: 950;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(238,246,250,.8);
  border: 1px solid var(--line);
}

.step > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-weight: 950;
  font-size: 20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.step:nth-child(even) > span {
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 650;
}

.notice-box {
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(10,169,155,.1), rgba(11,78,145,.08));
  border: 1px solid rgba(10,169,155,.22);
}

.notice-box p {
  margin-bottom: 0;
  color: #34495f;
  line-height: 1.55;
  font-weight: 700;
}

.route-tool {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: #294058;
  font-weight: 900;
}

input, select, textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(19,35,58,.17);
  border-radius: 13px;
  padding: 14px 15px;
  color: var(--text);
  background: rgba(255,255,255,.9);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

textarea { resize: vertical; }

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(10,169,155,.62);
  box-shadow: 0 0 0 4px rgba(10,169,155,.12);
}

.distance-result {
  display: none;
  padding: 18px;
  border-radius: 16px;
  background: rgba(16,36,59,.05);
  border: 1px solid var(--line);
}

.distance-result.show { display: block; }

.distance-result strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 6px;
}

.distance-result p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 650;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 650;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(238,246,250,.75);
  border: 1px solid var(--line);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.48;
  font-weight: 650;
}

.contact-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 38px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  color: var(--navy);
  font-weight: 900;
}

.site-footer {
  color: rgba(255,255,255,.78);
  background: linear-gradient(135deg, var(--navy), #071829);
}

.footer-main {
  padding: 34px 68px 26px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr .8fr;
  gap: 34px;
}

.footer-main h3 {
  color: #fff;
  font-size: 18px;
}

.footer-main a,
.footer-main span,
.footer-main p {
  display: block;
  margin-bottom: 9px;
  color: rgba(255,255,255,.75);
  line-height: 1.45;
  font-weight: 650;
}

.footer-brand img {
  width: 230px;
  height: 74px;
  padding: 5px 8px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  margin-bottom: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 68px;
  border-top: 1px solid rgba(255,255,255,.15);
}

.dbg {
  opacity: .7;
  font-size: 12px;
}

.to-top {
  position: fixed;
  right: 40px;
  bottom: 38px;
  z-index: 35;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-size: 30px;
  font-weight: 950;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  box-shadow: 0 18px 42px rgba(10,169,155,.28);
}

@media (max-width: 1320px) {
  .site-header {
    grid-template-columns: 260px 1fr auto;
    padding: 16px 34px;
  }

  .brand-card { width: 250px; }

  .main-nav { gap: 18px; }

  .hero,
  .two-col,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 330px;
  }

  .service-grid,
  .feature-band,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature:nth-child(2) {
    border-right: 0;
  }

  .feature:nth-child(1),
  .feature:nth-child(2) {
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
  }

  .feature:nth-child(3),
  .feature:nth-child(4) {
    padding-top: 16px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .app-shell {
    width: calc(100% - 20px);
    margin: 10px auto;
    border-radius: 22px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 82px;
    padding: 14px 20px;
  }

  .brand-card {
    width: 220px;
    height: 64px;
  }

  .nav-toggle { display: block; }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.open {
    display: grid;
    grid-column: 1 / -1;
    justify-self: stretch;
    gap: 6px;
    padding: 12px 0 4px;
  }

  .main-nav.open a {
    padding: 12px 14px;
    border-radius: 13px;
    background: rgba(10,169,155,.07);
  }

  .section-pad,
  .page-head {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-visual {
    min-height: 285px;
    transform: scale(.86);
    transform-origin: center;
    margin: -20px -45px -24px;
  }

  .service-grid,
  .feature-band,
  .steps,
  .info-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-band {
    margin: 0 22px 14px;
  }

  .feature,
  .feature:nth-child(1),
  .feature:nth-child(2),
  .feature:nth-child(3),
  .feature:nth-child(4) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 2px;
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 30px 24px 20px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    padding: 16px 24px;
    flex-direction: column;
  }

  .to-top {
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 560px) {
  h1 { font-size: 42px; }

  .hero-actions,
  .inline-actions,
  .hero-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .btn { width: 100%; }

  .hero-visual {
    display: none;
  }
}

/* ==========================================================================
   Compact Design Tuning
   DBG: ALL4YOU-ROUTER-V3.3-ANHAENGER-WIZARD.3-ANHAENGER
   Ziel: ruhiger, seriöser, weniger riesig, mehr Inhalt direkt sichtbar.
   ========================================================================== */

:root {
  --shadow: 0 16px 38px rgba(16, 38, 60, .105);
  --radius: 18px;
}

.app-shell {
  width: min(1680px, calc(100% - 54px));
  margin: 18px auto;
  border-radius: 26px;
}

.site-header {
  min-height: 78px;
  padding: 12px 56px;
  grid-template-columns: 285px 1fr auto;
}

.brand-card {
  width: 258px;
  height: 62px;
  border-radius: 15px;
}

.main-nav {
  gap: 26px;
  font-size: 15px;
}

.main-nav a {
  padding: 8px 0;
}

.header-cta {
  min-height: 46px;
  min-width: 190px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 15px;
}

.header-cta span,
.btn span {
  font-size: 23px;
}

.section-pad {
  padding: 32px 64px;
}

.page-head {
  padding: 44px 64px 30px;
}

.breadcrumb {
  margin-bottom: 14px;
  font-size: 13px;
}

.eyebrow {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: .17em;
}

h1 {
  max-width: 1180px;
  margin-bottom: 16px;
  font-size: clamp(38px, 3.05vw, 62px);
  line-height: 1.03;
  letter-spacing: -.052em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(27px, 2.05vw, 38px);
  line-height: 1.08;
  letter-spacing: -.038em;
}

h3 {
  font-size: 20px;
}

.lead {
  max-width: 860px;
  font-size: 17px;
  line-height: 1.55;
}

.btn {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 15px;
}

.hero {
  min-height: 455px;
  gap: 28px;
}

.hero-copy {
  max-width: 640px;
}

.hero-actions,
.inline-actions {
  margin-top: 22px;
}

.hero-badges {
  margin-top: 20px;
  gap: 12px;
  font-size: 14px;
}

.hero-badges span {
  padding: 8px 11px;
}

.hero-visual {
  min-height: 340px;
  border-radius: 999px 999px 38px 38px;
}

.feature-band {
  margin: 0 64px 10px;
  padding: 12px 22px;
  border-radius: 16px;
}

.feature {
  gap: 12px;
  padding: 0 20px;
}

.feature strong {
  font-size: 17px;
}

.feature span {
  font-size: 14px;
  line-height: 1.35;
}

.icon-line {
  width: 21px;
  height: 21px;
}

.service-grid {
  gap: 18px;
}

.service-card {
  min-height: 205px;
  padding: 22px;
  gap: 11px;
  border-radius: 18px;
}

.service-icon {
  width: 82px;
  height: 63px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.45;
}

.card-link {
  font-size: 14px;
}

.two-col {
  gap: 28px;
}

.info-card,
.form-card,
.faq-card,
.quote-card,
.check-card {
  padding: 24px;
  border-radius: 18px;
}

.info-grid {
  gap: 14px;
}

.mini-card {
  padding: 18px;
  border-radius: 15px;
}

.mini-card h3 {
  font-size: 18px;
}

.mini-card p,
.notice-box p,
.faq-item p,
.step p,
.list li {
  font-size: 15px;
}

.list {
  gap: 10px;
}

.list li {
  padding-left: 29px;
}

.steps {
  gap: 14px;
}

.step {
  padding: 18px;
  gap: 10px;
  border-radius: 16px;
}

.step > span {
  width: 38px;
  height: 38px;
  font-size: 18px;
}

.notice-box {
  padding: 22px;
  border-radius: 18px;
}

.form-grid {
  gap: 12px;
}

input,
select,
textarea {
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 15px;
}

label {
  gap: 7px;
  font-size: 14px;
}

.faq-list {
  gap: 10px;
}

.faq-item {
  padding: 16px 18px;
  border-radius: 15px;
}

.faq-item h3 {
  font-size: 17px;
}

.contact-layout {
  gap: 30px;
}

.site-footer {
  margin-top: 4px;
}

.footer-main {
  padding: 30px 64px 22px;
  gap: 30px;
}

.footer-brand img {
  width: 205px;
  height: 64px;
}

.footer-main h3 {
  font-size: 17px;
}

.footer-main a,
.footer-main span,
.footer-main p {
  font-size: 14px;
}

.footer-bottom {
  padding: 14px 64px;
  font-size: 13px;
}

.to-top {
  right: 34px;
  bottom: 32px;
  width: 50px;
  height: 50px;
  font-size: 26px;
}

/* Rollertransport-Seite gezielt ruhiger:
   Der Titel wirkt sonst zu breit und zu "laut". */
.page-head h1 {
  max-width: 1120px;
}

.page-head .inline-actions {
  margin-top: 24px;
}

@media (max-width: 1320px) {
  .site-header {
    grid-template-columns: 238px 1fr auto;
    padding: 12px 30px;
  }

  .brand-card {
    width: 230px;
    height: 58px;
  }

  .main-nav {
    gap: 16px;
    font-size: 14px;
  }

  .section-pad,
  .page-head {
    padding-left: 34px;
    padding-right: 34px;
  }

  .feature-band {
    margin-left: 34px;
    margin-right: 34px;
  }
}

@media (max-width: 900px) {
  .app-shell {
    width: calc(100% - 20px);
    margin: 10px auto;
    border-radius: 21px;
  }

  .site-header {
    min-height: 76px;
    padding: 12px 18px;
  }

  .brand-card {
    width: 210px;
    height: 58px;
  }

  .section-pad,
  .page-head {
    padding: 28px 20px;
  }

  h1 {
    font-size: clamp(34px, 9vw, 44px);
    letter-spacing: -.045em;
  }

  h2 {
    font-size: clamp(25px, 7vw, 32px);
  }

  .lead {
    font-size: 16px;
  }

  .feature-band {
    margin-left: 20px;
    margin-right: 20px;
  }

  .info-card,
  .form-card,
  .faq-card,
  .quote-card,
  .check-card {
    padding: 20px;
  }
}

@media (max-width: 560px) {
  .brand-card {
    width: 186px;
    height: 52px;
  }

  h1 {
    font-size: 34px;
  }

  .btn {
    min-height: 48px;
  }
}

/* ==========================================================================
   Anhängervermietung Detailseite
   DBG: ALL4YOU-ROUTER-V3.3-ANHAENGER-WIZARD
   ========================================================================== */

.trailer-tool {
  display: grid;
  gap: 16px;
}

.option-fieldset {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(238, 246, 250, .68);
}

.option-fieldset legend {
  padding: 0 8px;
  color: #294058;
  font-weight: 950;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(19,35,58,.1);
  color: #40536a;
  font-weight: 800;
}

.checkbox-grid input {
  width: 17px;
  height: 17px;
  min-height: auto;
  accent-color: var(--teal);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--teal-2);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(10,169,155,.24);
  font-weight: 900;
  font-size: 14px;
}

.five-steps {
  grid-template-columns: repeat(5, 1fr);
}

.cta-panel {
  padding: 30px;
  border-radius: 22px;
  border: 1px solid rgba(10,169,155,.22);
  background:
    radial-gradient(circle at 85% 20%, rgba(10,169,155,.16), transparent 20rem),
    linear-gradient(135deg, rgba(238,246,250,.96), rgba(255,255,255,.9));
  box-shadow: var(--shadow);
}

.cta-panel .lead {
  max-width: 820px;
}

.mail-preview-btn {
  width: fit-content;
  margin-top: 16px;
}

@media (max-width: 1320px) {
  .five-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .checkbox-grid,
  .five-steps {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    padding: 22px;
  }
}

/* ==========================================================================
   Entrümpelung Detailseite
   DBG: ALL4YOU-ROUTER-V3.3-ANHAENGER-WIZARD
   ========================================================================== */

.clearance-tool {
  display: grid;
  gap: 16px;
}

.single-grid {
  grid-template-columns: 1fr;
}

.clearance-tool .distance-result {
  margin-top: 2px;
}

@media (max-width: 900px) {
  .single-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Halteverbot-Ergänzung Räumungen
   DBG: ALL4YOU-ROUTER-V3.3-ANHAENGER-WIZARD
   ========================================================================== */

.inline-extra-card {
  margin-top: 20px;
}

/* ==========================================================================
   Leistungen Dropdown Navigation
   DBG: ALL4YOU-ROUTER-V3.3-ANHAENGER-WIZARD
   ========================================================================== */

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown-trigger span {
  font-size: 18px;
  line-height: 1;
  transition: transform .18s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger span,
.nav-dropdown:focus-within .nav-dropdown-trigger span {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  width: 315px;
  padding: 10px;
  border: 1px solid rgba(19, 35, 58, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 70px rgba(16, 38, 60, .18);
  backdrop-filter: blur(18px);
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border-radius: 13px;
  color: var(--navy);
  transition: background .18s ease, transform .18s ease, color .18s ease;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  color: var(--teal-2);
  background: linear-gradient(135deg, rgba(10, 169, 155, .11), rgba(11, 78, 145, .07));
  transform: translateX(3px);
}

.nav-dropdown-menu strong {
  font-size: 15px;
  line-height: 1.15;
}

.nav-dropdown-menu small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.nav-dropdown-menu a:hover small,
.nav-dropdown-menu a.active small {
  color: #466076;
}

@media (min-width: 901px) {
  .main-nav {
    overflow: visible;
  }
}

@media (max-width: 900px) {
  .nav-dropdown {
    display: grid;
    gap: 6px;
  }

  .nav-dropdown-trigger {
    display: flex;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 13px;
    background: rgba(10,169,155,.07);
  }

  .nav-dropdown-trigger::after {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    width: auto;
    padding: 6px;
    border-radius: 14px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: rgba(255,255,255,.68);
    backdrop-filter: none;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown-menu a {
    padding: 11px 14px;
    background: rgba(255,255,255,.58);
  }

  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a.active {
    transform: none;
  }
}

/* ==========================================================================
   Reinigungsservice Detailseite
   DBG: ALL4YOU-ROUTER-V3.3-ANHAENGER-WIZARD
   ========================================================================== */

.cleaning-tool {
  display: grid;
  gap: 16px;
}

.cleaning-tool .distance-result {
  margin-top: 2px;
}

/* ==========================================================================
   Kontaktseite Anfrage-Auswahl
   DBG: ALL4YOU-ROUTER-V3.3-ANHAENGER-WIZARD
   ========================================================================== */

.contact-intro-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
}

.contact-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-choice-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.contact-choice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(16, 38, 60, .15);
  border-color: rgba(10, 169, 155, .3);
}

.contact-choice-card .service-icon {
  width: 84px;
  height: 64px;
}

.contact-choice-card p {
  color: var(--muted);
  line-height: 1.48;
  font-weight: 650;
  margin-bottom: 0;
}

.contact-choice-card .btn {
  margin-top: auto;
  width: 100%;
}

#kurzanfrage {
  padding-top: 22px;
}

@media (max-width: 1320px) {
  .contact-intro-grid,
  .contact-choice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .contact-intro-grid,
  .contact-choice-grid {
    grid-template-columns: 1fr;
  }

  .contact-choice-card {
    min-height: auto;
    padding: 20px;
  }
}

/* ==========================================================================
   Über-uns-Seite
   DBG: ALL4YOU-ROUTER-V3.3-ANHAENGER-WIZARD
   ========================================================================== */

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 28px;
  align-items: stretch;
}

.about-text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
  font-weight: 650;
  margin-bottom: 0;
}

.about-highlight {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 12px;
  padding: 28px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 22%, rgba(10, 169, 155, .28), transparent 18rem),
    linear-gradient(135deg, var(--navy), #071829);
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.about-highlight::before {
  content: "4";
  position: absolute;
  right: -18px;
  top: -58px;
  color: rgba(255,255,255,.08);
  font-size: 260px;
  line-height: 1;
  font-weight: 950;
}

.about-highlight span {
  position: relative;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 12px;
  font-weight: 950;
}

.about-highlight strong {
  position: relative;
  display: block;
  font-size: clamp(30px, 3vw, 50px);
  line-height: .98;
  letter-spacing: -.05em;
}

.about-highlight p {
  position: relative;
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.45;
  font-weight: 700;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-value-card {
  min-height: 225px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.value-number {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  font-size: 14px;
  font-weight: 950;
}

.about-value-card:nth-child(even) .value-number {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.about-value-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.48;
  font-weight: 650;
}

.about-service-list {
  display: grid;
  gap: 12px;
}

.about-service-list a {
  display: grid;
  gap: 5px;
  padding: 16px;
  border-radius: 15px;
  border: 1px solid var(--line);
  background: rgba(238, 246, 250, .72);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.about-service-list a:hover {
  transform: translateX(4px);
  background: linear-gradient(135deg, rgba(10,169,155,.11), rgba(11,78,145,.07));
  border-color: rgba(10,169,155,.28);
}

.about-service-list strong {
  color: var(--navy);
  font-size: 17px;
}

.about-service-list span {
  color: var(--muted);
  line-height: 1.38;
  font-weight: 650;
}

.about-process-panel {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-radius: 22px;
  border: 1px solid rgba(10,169,155,.22);
  background:
    radial-gradient(circle at 82% 20%, rgba(10,169,155,.15), transparent 22rem),
    linear-gradient(135deg, rgba(238,246,250,.96), rgba(255,255,255,.9));
  box-shadow: var(--shadow);
}

.about-process-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.about-process-points div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
}

.about-process-points strong {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  font-weight: 950;
}

.about-process-points div:nth-child(even) strong {
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
}

.about-process-points span {
  color: var(--navy);
  font-weight: 900;
}

.compact-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.compact-cta .btn {
  width: fit-content;
}

@media (max-width: 1320px) {
  .about-hero-grid,
  .about-process-panel {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-values-grid,
  .about-process-points {
    grid-template-columns: 1fr;
  }

  .about-highlight,
  .about-process-panel {
    padding: 22px;
  }

  .compact-cta .btn {
    width: 100%;
  }
}

/* ==========================================================================
   Rechtliches / Impressum / Datenschutz
   DBG: ALL4YOU-ROUTER-V3.3-ANHAENGER-WIZARD
   ========================================================================== */

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.legal-main {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  font-size: clamp(24px, 1.7vw, 34px);
}

.legal-card p {
  color: var(--muted);
  line-height: 1.58;
  font-weight: 650;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-data {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 750;
}

.legal-data p {
  color: var(--navy);
  margin-bottom: 0;
}

.legal-placeholder-list {
  display: grid;
  gap: 10px;
}

.legal-placeholder-list p {
  margin-bottom: 0;
  color: var(--navy);
}

.legal-placeholder-list span,
.legal-data span {
  color: var(--teal-2);
  font-weight: 900;
}

.legal-note {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(10,169,155,.08);
  border: 1px solid rgba(10,169,155,.2);
  color: #40536a !important;
}

.legal-sidebar {
  position: sticky;
  top: 104px;
}

@media (max-width: 1100px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }
}

/* ==========================================================================
   Breites Logo im Header/Footer
   DBG: ALL4YOU-ROUTER-V3.3-ANHAENGER-WIZARD
   ========================================================================== */

.site-header {
  grid-template-columns: 420px 1fr auto;
  min-height: 104px;
}

.brand-card {
  width: 390px;
  height: 82px;
  padding: 4px 8px;
  background: #fff;
}

.brand-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand img {
  width: 320px;
  height: 94px;
  object-fit: contain;
  padding: 6px 10px;
}

@media (max-width: 1320px) {
  .site-header {
    grid-template-columns: 330px 1fr auto;
  }

  .brand-card {
    width: 310px;
    height: 72px;
  }

  .footer-brand img {
    width: 280px;
    height: 84px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand-card {
    width: 260px;
    height: 64px;
  }
}

@media (max-width: 560px) {
  .brand-card {
    width: 218px;
    height: 58px;
  }
}

/* ==========================================================================
   Anhänger-Daten und Preistabelle
   DBG: ALL4YOU-ROUTER-V3.3-ANHAENGER-WIZARD
   ========================================================================== */

.price-table-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.price-grid div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(19,35,58,.12);
  background: rgba(238,246,250,.72);
}

.price-grid strong {
  color: var(--navy);
  font-size: 15px;
}

.price-grid span {
  color: var(--teal-2);
  font-size: 21px;
  font-weight: 950;
}

@media (max-width: 1320px) {
  .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Reinigungs-Wizard
   DBG: ALL4YOU-ROUTER-V3.3-ANHAENGER-WIZARD
   ========================================================================== */

.cleaning-wizard-card {
  overflow: hidden;
}

.cleaning-wizard {
  margin-top: 22px;
  border: 1px solid rgba(19,35,58,.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 8%, rgba(10,169,155,.13), transparent 18rem),
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(238,246,250,.86));
  box-shadow: 0 18px 44px rgba(16, 38, 60, .11);
  overflow: hidden;
}

.wizard-top {
  display: grid;
  gap: 14px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(19,35,58,.1);
  background: rgba(255,255,255,.62);
}

.wizard-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--teal-2);
  background: rgba(10,169,155,.1);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wizard-top h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 31px);
  letter-spacing: -.04em;
}

.wizard-progress {
  width: 100%;
  height: 9px;
  border-radius: 999px;
  background: rgba(19,35,58,.1);
  overflow: hidden;
}

.wizard-progress span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  transition: width .25s ease;
}

.wizard-form {
  display: grid;
  gap: 0;
}

.wizard-step {
  display: none;
  padding: 22px;
  animation: wizardFade .2s ease;
}

.wizard-step.active {
  display: block;
}

@keyframes wizardFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.business-field.is-hidden {
  display: none;
}

.wizard-message-grid {
  margin-top: 14px;
}

.wizard-message-grid label:last-child {
  grid-column: 1 / -1;
}

.wizard-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.wizard-summary div {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(19,35,58,.1);
  background: rgba(255,255,255,.72);
}

.wizard-summary .summary-wide {
  grid-column: 1 / -1;
}

.wizard-summary strong {
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.wizard-summary span {
  color: var(--muted);
  line-height: 1.4;
  font-weight: 750;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px 22px;
  border-top: 1px solid rgba(19,35,58,.1);
  background: rgba(255,255,255,.5);
}

.wizard-actions .btn {
  min-width: 145px;
}

.wizard-actions .btn:disabled {
  opacity: .45;
  pointer-events: none;
}

#cleaningWizardSubmit {
  display: none;
}

#cleaningWizardResult {
  margin: 0 22px 22px;
}

@media (max-width: 900px) {
  .wizard-top,
  .wizard-step,
  .wizard-actions {
    padding-left: 18px;
    padding-right: 18px;
  }

  .wizard-summary {
    grid-template-columns: 1fr;
  }

  .wizard-actions {
    flex-direction: column;
  }

  .wizard-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   Entrümpelungs-Wizard
   DBG: ALL4YOU-ROUTER-V3.3-ANHAENGER-WIZARD
   ========================================================================== */

.clearance-wizard-card {
  overflow: hidden;
}

.clearance-wizard {
  margin-top: 22px;
  border: 1px solid rgba(19,35,58,.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 8%, rgba(11,78,145,.12), transparent 18rem),
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(238,246,250,.86));
  box-shadow: 0 18px 44px rgba(16, 38, 60, .11);
  overflow: hidden;
}

#clearanceWizardSubmit {
  display: none;
}

#clearanceWizardResult {
  margin: 0 22px 22px;
}

/* ==========================================================================
   Rollerabholservice-Wizard
   DBG: ALL4YOU-ROUTER-V3.3-ANHAENGER-WIZARD
   ========================================================================== */

.roller-wizard-card {
  overflow: hidden;
}

.roller-wizard {
  margin-top: 22px;
  border: 1px solid rgba(19,35,58,.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 8%, rgba(10,169,155,.13), transparent 18rem),
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(238,246,250,.86));
  box-shadow: 0 18px 44px rgba(16, 38, 60, .11);
  overflow: hidden;
}

.route-preview-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(10,169,155,.22);
  background: rgba(255,255,255,.72);
}

.route-preview-box strong {
  display: block;
  color: var(--navy);
  margin-bottom: 5px;
  font-size: 17px;
}

.route-preview-box p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.route-status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.route-status-grid div {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(238,246,250,.72);
  border: 1px solid rgba(19,35,58,.1);
}

.route-status-grid strong {
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.route-status-grid span {
  color: var(--teal-2);
  font-weight: 900;
}

#rollerWizardSubmit {
  display: none;
}

#rollerWizardResult {
  margin: 0 22px 22px;
}

@media (max-width: 900px) {
  .route-preview-box {
    align-items: stretch;
    flex-direction: column;
  }

  .route-preview-box .btn {
    width: 100%;
  }

  .route-status-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Anhänger-Wizard mit Mietdauer/Preis
   DBG: ALL4YOU-ROUTER-V3.3-ANHAENGER-WIZARD
   ========================================================================== */

.trailer-wizard-card {
  overflow: hidden;
}

.trailer-wizard {
  margin-top: 22px;
  border: 1px solid rgba(19,35,58,.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 8%, rgba(10,169,155,.13), transparent 18rem),
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(238,246,250,.86));
  box-shadow: 0 18px 44px rgba(16, 38, 60, .11);
  overflow: hidden;
}

.calendar-hint-box {
  margin-top: 16px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(10,169,155,.22);
  background: rgba(255,255,255,.72);
}

.calendar-hint-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 17px;
}

.calendar-hint-box p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.rental-result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.rental-result-grid div {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(238,246,250,.72);
  border: 1px solid rgba(19,35,58,.1);
}

.rental-result-grid strong {
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.rental-result-grid span {
  color: var(--teal-2);
  font-weight: 950;
}

.delivery-field.is-hidden {
  display: none;
}

#trailerWizardSubmit {
  display: none;
}

#trailerWizardResult {
  margin: 0 22px 22px;
}

@media (max-width: 1320px) {
  .rental-result-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .rental-result-grid {
    grid-template-columns: 1fr;
  }
}
