:root {
  --orange: #c2410c;
}

.button:hover {
  background: #9a3412;
  border-color: #9a3412;
}

.hero-search-map {
  position: relative;
  aspect-ratio: 1440 / 901;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: #07111f;
  box-shadow: 0 30px 65px #0008;
}

.hero-search-map img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-with-app {
  display: grid;
  grid-template-columns: .9fr 1.05fr .8fr;
  align-items: center;
  gap: 18px;
  padding: 52px 42px;
}

.cta-with-app h2 {
  max-width: 620px;
  font-size: clamp(2.6rem, 4vw, 4.5rem);
}

.cta-app-preview {
  height: 370px;
  gap: 7px;
}

.cta-app-preview .device-shot {
  width: min(49%, 150px);
}

.cta-network-map {
  position: relative;
  height: 330px;
  margin: 0 -18px;
  overflow: hidden;
  border-radius: 20px;
  filter: drop-shadow(0 28px 36px rgb(0 0 0 / 44%));
  transform: perspective(900px) rotateX(2deg) rotateY(-3deg);
}

.cta-network-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .92;
  mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}

.cta-app-preview .device-shot:first-child {
  transform: translateY(14px) rotate(-2deg);
}

.cta-app-preview .device-shot:last-child {
  transform: translateY(-12px) rotate(2deg);
}

@media (max-width: 850px) {
  .hero-search-map {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .cta-with-app {
    grid-template-columns: 1fr;
  }

  .cta-network-map {
    width: min(100%, 650px);
    height: auto;
    aspect-ratio: 1440 / 901;
    margin: 0 auto;
    transform: none;
  }

  .marketing-top {
    position: sticky;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .marketing-top nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    overflow: visible;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #0b1929;
    box-shadow: 0 24px 55px #0009;
  }

  .marketing-top nav.open {
    display: flex;
  }

  .marketing-top nav a {
    min-height: 48px;
    padding: 0 12px;
    border-radius: 8px;
    white-space: normal;
  }

  .marketing-top nav a:hover,
  .marketing-top nav a:focus-visible {
    background: #14283d;
    color: var(--text);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero-search-map {
    border-radius: 18px;
  }

  .cta-with-app {
    padding: 46px 18px;
  }

  .cta-app-preview {
    height: 430px;
  }

  .cta-network-map {
    width: 112%;
    margin-inline: -6%;
  }

  .marketing-top .brand {
    font-size: 16px;
    gap: 7px;
  }

  .marketing-top .mark {
    width: 25px;
    height: 22px;
  }

  .marketing-top .actions {
    gap: 7px;
  }

  .marketing-top .lang {
    padding-inline: 3px;
  }

  .menu-toggle {
    padding-inline: 10px;
    font-size: 12px;
  }

  .marketing-top .web-login:not([id]) {
    font-size: 0;
  }

  .marketing-top .web-login:not([id])::after {
    content: "Anmelden";
    font-size: 12px;
  }
}

/* 2026-08 3D landing-page refresh */
body {
  background:
    radial-gradient(circle at 78% 9%, rgb(194 65 12 / 12%), transparent 28rem),
    radial-gradient(circle at 10% 42%, rgb(34 69 105 / 18%), transparent 34rem),
    #050d18;
}

.marketing-top {
  width: min(100%, 1380px);
  max-width: none;
  border-right: 1px solid rgb(80 105 132 / 28%);
  border-left: 1px solid rgb(80 105 132 / 28%);
  box-shadow: 0 18px 50px rgb(0 0 0 / 24%);
}

.brand-lockup {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 3px;
  min-width: 190px;
}

.brand-vehicle {
  position: relative;
  width: 78px;
  height: 46px;
  flex: 0 0 78px;
  margin: -7px -5px -7px -7px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 8px 9px rgb(0 0 0 / 52%));
  isolation: isolate;
}

.brand-vehicle::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 5px;
  bottom: 7px;
  left: 9px;
  height: 4px;
  border-radius: 50%;
  background: rgb(234 88 12 / 55%);
  filter: blur(5px);
  opacity: 0;
  transition: opacity 180ms ease;
}

.brand-vehicle:hover::after,
.brand-vehicle:focus-visible::after {
  opacity: 1;
}

.brand-vehicle img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 180ms ease, opacity 120ms ease;
  transform-origin: 50% 75%;
}

.brand-vehicle:hover img {
  transform: translateY(-1px) rotate(-1deg) scale(1.035);
}

.brand-vehicle.is-driving img {
  opacity: 0.12;
}

.brand-vehicle-runner {
  position: fixed;
  z-index: 1000;
  display: block;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 8px 10px rgb(0 0 0 / 58%));
  will-change: transform, opacity;
}

.brand-word {
  gap: 0;
  min-height: 44px;
  white-space: nowrap;
}

.brand-word span {
  color: var(--orange2);
}

.hero {
  max-width: 1280px;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  gap: 58px;
  padding-top: 88px;
}

.hero > div {
  position: relative;
  z-index: 2;
}

.hero h1 em {
  text-shadow: 0 14px 38px rgb(234 88 12 / 24%);
}

.hero-search-map {
  overflow: visible;
  border-color: rgb(86 117 148 / 55%);
  background: linear-gradient(145deg, #142c47, #07111f);
  box-shadow:
    0 45px 80px rgb(0 0 0 / 56%),
    0 0 0 1px rgb(255 255 255 / 3%) inset,
    0 0 65px rgb(194 65 12 / 9%);
  transform: perspective(1350px) rotateX(2deg) rotateY(-3deg);
  transform-origin: center;
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.hero-search-map::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 7%;
  bottom: -22px;
  left: 7%;
  height: 30px;
  border-radius: 50%;
  background: rgb(0 0 0 / 72%);
  filter: blur(17px);
}

.hero-search-map:hover {
  box-shadow:
    0 52px 92px rgb(0 0 0 / 62%),
    0 0 0 1px rgb(255 255 255 / 5%) inset,
    0 0 85px rgb(194 65 12 / 13%);
  transform: perspective(1350px) rotateX(0) rotateY(0) translateY(-4px);
}

.stats {
  max-width: 1232px;
  margin-bottom: 72px;
  overflow: hidden;
  border: 1px solid rgb(73 101 130 / 44%);
  border-radius: 18px;
  background: linear-gradient(135deg, rgb(18 40 64 / 92%), rgb(7 17 31 / 96%));
  box-shadow: 0 24px 55px rgb(0 0 0 / 34%), inset 0 1px rgb(255 255 255 / 4%);
}

.stats div {
  min-height: 112px;
}

.stats b {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  border: 1px solid rgb(234 88 12 / 45%);
  border-radius: 15px;
  background: linear-gradient(145deg, rgb(234 88 12 / 22%), rgb(8 22 37 / 78%));
  box-shadow: 0 12px 26px rgb(0 0 0 / 42%);
  font-size: 24px;
}

.section {
  max-width: 1232px;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  border: 0;
}

.steps::before {
  content: "";
  position: absolute;
  top: 53px;
  right: 15%;
  left: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--orange), transparent);
  box-shadow: 0 0 16px rgb(234 88 12 / 55%);
}

.steps li {
  position: relative;
  display: block;
  min-height: 260px;
  padding: 34px 30px 30px;
  border: 1px solid rgb(74 102 131 / 54%);
  border-radius: 20px;
  background:
    radial-gradient(circle at 75% 105%, rgb(234 88 12 / 14%), transparent 45%),
    linear-gradient(145deg, #11263d, #091522);
  box-shadow: 0 26px 54px rgb(0 0 0 / 36%), inset 0 1px rgb(255 255 255 / 4%);
  transform: perspective(900px) rotateX(1.2deg);
}

.steps > li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 54px;
  place-items: center;
  border: 1px solid var(--orange);
  border-radius: 50%;
  background: #07111f;
  box-shadow: 0 0 0 8px #07111f, 0 0 24px rgb(234 88 12 / 36%);
}

.steps h3 {
  font-size: 25px;
}

.card,
.plan,
.faq details,
.cta-with-app {
  border-color: rgb(73 101 130 / 48%);
  box-shadow: 0 24px 56px rgb(0 0 0 / 34%), inset 0 1px rgb(255 255 255 / 4%);
}

.card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 110%, rgb(234 88 12 / 12%), transparent 42%),
    linear-gradient(145deg, #122941, #0a1726);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 18%), transparent);
}

.card:hover {
  z-index: 2;
  border-color: rgb(234 88 12 / 58%);
  box-shadow: 0 32px 68px rgb(0 0 0 / 44%), 0 0 34px rgb(194 65 12 / 8%);
  transform: translateY(-5px);
}

.card.big {
  background:
    radial-gradient(circle at 75% 80%, rgb(234 88 12 / 17%), transparent 44%),
    linear-gradient(145deg, #173451, #091522);
}

.countries {
  position: relative;
  z-index: 1;
}

.countries b {
  border: 1px solid rgb(255 255 255 / 11%);
  background: linear-gradient(145deg, #ef651d, #9f3108);
  box-shadow: 8px 12px 24px rgb(0 0 0 / 42%), inset 0 1px rgb(255 255 255 / 24%);
  transform: perspective(200px) rotateX(8deg) rotateY(-8deg);
}

#ratgeber .grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

#ratgeber .card {
  min-height: 245px;
  padding: 25px;
}

#ratgeber .card.big {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 508px;
  padding: 38px;
}

#ratgeber .card h3 {
  margin-top: 24px;
  font-size: 23px;
}

#ratgeber .card.big h3 {
  margin-top: 58px;
  font-size: 34px;
}

.toggle {
  background: #081522;
  box-shadow: 0 14px 32px rgb(0 0 0 / 35%);
}

.plans {
  perspective: 1200px;
}

.plan {
  background: linear-gradient(145deg, #122941, #091522);
  transform: perspective(900px) rotateX(1.5deg);
}

.plan.hot {
  border-color: rgb(234 88 12 / 80%);
  box-shadow: 0 32px 74px rgb(0 0 0 / 44%), 0 0 45px rgb(194 65 12 / 12%);
  transform: perspective(900px) rotateX(1.5deg) translateY(-10px);
}

.faq {
  max-width: 1020px;
}

.faq details {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgb(73 101 130 / 48%);
  border-radius: 15px;
  background: linear-gradient(145deg, #10243a, #081421);
}

.faq details:last-child {
  border-bottom: 1px solid rgb(73 101 130 / 48%);
}

.faq summary,
.faq details p {
  padding-right: 24px;
  padding-left: 24px;
}

.cta-with-app {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(73 101 130 / 52%);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 56%, rgb(234 88 12 / 16%), transparent 36%),
    linear-gradient(120deg, #132e49, #07111f 68%);
}

.cta-with-app::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 20%), transparent);
}

.cta-app-preview .device-shot {
  border-color: rgb(103 128 154 / 70%);
  background: linear-gradient(145deg, #142941, #07111f);
  box-shadow: 0 36px 70px rgb(0 0 0 / 58%), inset 0 1px rgb(255 255 255 / 7%);
}

@media (max-width: 1050px) {
  .brand-lockup {
    min-width: 170px;
  }

  .marketing-top nav {
    gap: 16px;
  }

  #ratgeber .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 850px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-search-map,
  .hero-search-map:hover {
    transform: none;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  .steps li {
    min-height: 0;
  }

  .steps > li > span {
    margin-bottom: 28px;
  }

  .plan.hot {
    transform: none;
  }
}

@media (max-width: 600px) {
  .marketing-top {
    gap: 7px;
  }

  .brand-lockup {
    min-width: 0;
    gap: 0;
  }

  .brand-vehicle {
    width: 54px;
    height: 44px;
    flex-basis: 54px;
    margin: -4px -5px -4px -5px;
  }

  .marketing-top .brand-word {
    gap: 0;
    font-size: 14px;
  }

  #ratgeber .grid {
    grid-template-columns: 1fr;
  }

  #ratgeber .card.big {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }

  .stats {
    border-radius: 14px;
  }

  .cta-with-app {
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-vehicle img,
  .hero-search-map,
  .card {
    transition: none !important;
  }

  .hero-search-map:hover,
  .card:hover {
    transform: none !important;
  }
}
