:root {
  --mp-bg: #0f1419;
  --mp-card: #1a222c;
  --mp-text: #e8eef5;
  --mp-muted: #9aa7b8;
  --mp-accent: #3d9a6e;
  --mp-accent-2: #c9a227;
  --mp-border: #2a3544;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--mp-bg);
  color: var(--mp-text);
  line-height: 1.55;
}

a {
  color: var(--mp-accent);
}

.mp-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.mp-header {
  border-bottom: 1px solid var(--mp-border);
  background: rgba(15, 20, 25, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
}

.mp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: clamp(3.75rem, 12vmin, 5.25rem);
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
}

/* Skip-to-content-Link – nur sichtbar bei Tastaturfokus */
.mp-skip-link {
  position: absolute;
  left: 0;
  top: -40px;
  padding: 0.5rem 0.9rem;
  background: var(--mp-accent);
  color: #041208;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 0.5rem 0;
  z-index: 100;
  transition: top 0.2s ease;
}

.mp-skip-link:focus {
  top: 0;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* Hamburger-Toggle */
.mp-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--mp-border);
  border-radius: 0.5rem;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.mp-nav-toggle:focus-visible {
  outline: 3px solid var(--mp-accent);
  outline-offset: 2px;
}

.mp-nav-toggle__bar {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--mp-text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.mp-nav-toggle__bar:nth-child(1) { top: 14px; }
.mp-nav-toggle__bar:nth-child(2) { top: 21px; }
.mp-nav-toggle__bar:nth-child(3) { top: 28px; }

.mp-nav-toggle--open .mp-nav-toggle__bar:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.mp-nav-toggle--open .mp-nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.mp-nav-toggle--open .mp-nav-toggle__bar:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.mp-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  text-decoration: none;
  color: var(--mp-text);
  line-height: 0;
  border-radius: 0.35rem;
}

.mp-logo:focus-visible {
  outline: 3px solid var(--mp-accent);
  outline-offset: 3px;
}

/* Logo-Breite ~4:1 — Höhe begrenzen, Breite folgt dem natürlichen Seitenverhältnis der PNG */
.mp-logo__img {
  display: block;
  width: auto;
  height: auto;
  max-height: clamp(2.25rem, 6.5vmin, 3.25rem);
  max-width: min(22rem, 72vw);
  object-fit: contain;
}

.mp-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.mp-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--mp-muted);
}

.mp-nav a:hover {
  color: var(--mp-text);
}

.mp-nav a:focus-visible {
  outline: 3px solid var(--mp-accent);
  outline-offset: 2px;
  border-radius: 0.3rem;
  color: var(--mp-text);
}

.mp-nav__demo {
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.35rem 0.75rem;
  border-radius: 0.45rem;
  border: 1px solid var(--mp-border);
  background: transparent;
  color: var(--mp-muted);
}

.mp-nav__demo:hover {
  color: var(--mp-text);
  border-color: var(--mp-accent);
}

.mp-nav__demo:focus-visible {
  outline: 3px solid var(--mp-accent);
  outline-offset: 2px;
  color: var(--mp-text);
}

.mp-nav-legal {
  margin: 0;
  padding: 0;
  border: none;
  position: relative;
}

.mp-nav-legal__summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--mp-muted);
  padding: 0.15rem 0;
}

.mp-nav-legal__summary::-webkit-details-marker {
  display: none;
}

.mp-nav-legal__summary::after {
  content: " ▾";
  font-size: 0.65em;
  opacity: 0.75;
}

.mp-nav-legal[open] > .mp-nav-legal__summary::after {
  content: " ▴";
}

.mp-nav-legal__summary:hover {
  color: var(--mp-text);
}

.mp-nav-legal__summary:focus-visible {
  outline: 3px solid var(--mp-accent);
  outline-offset: 2px;
  border-radius: 0.3rem;
  color: var(--mp-text);
}

.mp-nav-legal__panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 0.5rem 0 0;
}

.mp-nav-legal__panel a {
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--mp-accent);
}

.mp-nav-legal__panel a:hover {
  color: var(--mp-text);
}

@media (min-width: 721px) {
  .mp-nav-legal__panel {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0.35rem;
    padding: 0.65rem 0.85rem;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 11rem;
    background: var(--mp-card);
    border: 1px solid var(--mp-border);
    border-radius: 0.5rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    z-index: 20;
  }

  .mp-nav-legal {
    margin-left: auto;
  }
}

/* Mobile: Nav klappt in ein Drawer, Hamburger erscheint */
@media (max-width: 720px) {
  .mp-nav-toggle {
    display: block;
    flex-shrink: 0;
  }

  .mp-nav {
    flex-basis: 100%;
    order: 3;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-top: 1px solid var(--mp-border);
    margin-top: 0.5rem;
  }

  .mp-nav.mp-nav--open {
    max-height: 32rem;
  }

  .mp-nav > a,
  .mp-nav__demo,
  .mp-nav-legal {
    padding: 0.75rem 0.25rem;
    font-size: 0.98rem;
    border-bottom: 1px solid rgba(42, 53, 68, 0.5);
  }

  .mp-nav > *:last-child {
    border-bottom: none;
  }

  .mp-nav-legal__panel {
    flex-direction: column;
    padding: 0.35rem 0 0.5rem 0.75rem;
    gap: 0.35rem;
  }

  .mp-nav-legal__panel a {
    font-size: 0.95rem;
    padding: 0.25rem 0;
  }

  .mp-nav__demo {
    text-align: left;
    width: 100%;
    border-radius: 0;
  }
}

.mp-main {
  padding-bottom: 3rem;
}

.mp-hero {
  padding: 3rem 1.25rem 2rem;
}

.mp-hero__grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 900px) {
  .mp-hero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.5rem;
  }
}

.mp-hero__content {
  min-width: 0;
}

.mp-hero__media {
  min-width: 0;
  display: flex;
  justify-content: center;
}

.mp-hero__media img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.45));
}

.mp-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--mp-accent-2);
  margin: 0 0 0.75rem;
}

.mp-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.mp-lead {
  font-size: 1.05rem;
  color: var(--mp-muted);
  max-width: 46rem;
  margin: 0 0 1.5rem;
}

.mp-lead strong {
  color: var(--mp-text);
  font-weight: 600;
}

.mp-hero-different {
  font-size: 0.98rem;
  max-width: 44rem;
  margin: -0.75rem 0 1.5rem;
  padding-left: 0.85rem;
  border-left: 3px solid var(--mp-accent);
}

.mp-hero-cta {
  margin-bottom: 0.25rem;
}

.mp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mp-cta-row--after-cards {
  margin-top: 1.25rem;
}

.mp-submit-hint {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  max-width: 36rem;
  line-height: 1.45;
}

.mp-cta-microcopy {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  color: var(--mp-muted);
  max-width: 36rem;
}

.mp-cta-textrow {
  margin: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.mp-cta-textrow__sep {
  color: var(--mp-muted);
  user-select: none;
}

.mp-cta-textlink {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--mp-accent-2);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.mp-cta-textlink:hover {
  color: var(--mp-accent);
}

.mp-button {
  display: inline-block;
  padding: 0.65rem 1.2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.mp-button--primary {
  background: var(--mp-accent);
  color: #041208;
}

.mp-button--primary:hover {
  filter: brightness(1.05);
}

.mp-button--secondary {
  background: transparent;
  color: var(--mp-accent-2);
  border: 1px solid var(--mp-accent-2);
}

.mp-button--secondary:hover {
  background: rgba(201, 162, 39, 0.1);
}

.mp-button--ghost {
  border: 1px solid var(--mp-border);
  color: var(--mp-text);
}

.mp-button:focus-visible {
  outline: 3px solid var(--mp-accent);
  outline-offset: 2px;
}

.mp-trust-row {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  font-size: 0.88rem;
  color: var(--mp-muted);
}

.mp-trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.mp-trust-icon {
  width: 18px;
  height: 18px;
  color: var(--mp-accent);
  flex-shrink: 0;
}

/* USP: echte Fahrzeiten (Landing), vor Integrations-Wordmarks */
.mp-travel-usp {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.mp-travel-usp__layout {
  display: grid;
  gap: 1.75rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .mp-travel-usp__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
  }
}

.mp-travel-usp__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mp-travel-usp__steps > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  background: var(--mp-card);
  border: 1px solid var(--mp-border);
  border-radius: 0.75rem;
  padding: 1rem 1.15rem;
}

.mp-travel-usp__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(61, 154, 110, 0.2);
  color: var(--mp-accent);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
}

.mp-travel-usp__step-title {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  line-height: 1.25;
  color: var(--mp-text);
}

.mp-travel-usp__steps p {
  margin: 0;
  font-size: 0.92rem;
}

.mp-travel-usp__more {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
}

.mp-route-viz {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 17rem;
  background: linear-gradient(165deg, rgba(26, 34, 44, 0.98), rgba(18, 24, 32, 0.99));
  border: 1px solid var(--mp-border);
  border-radius: 0.85rem;
  padding: 1.1rem 1rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media (min-width: 900px) {
  .mp-route-viz {
    min-height: 0;
    flex: 1;
  }
}

.mp-route-viz__caption {
  margin: 0 0 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--mp-border);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--mp-text);
  line-height: 1.35;
}

.mp-route-viz__caption-note {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--mp-muted);
  letter-spacing: 0.02em;
}

.mp-route-viz__track {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.35rem;
  min-height: 11.5rem;
}

.mp-route-viz__cell {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 0.65rem 0.6rem 0.7rem;
  border-radius: 0.65rem;
  background: rgba(15, 20, 25, 0.55);
  border: 1px solid rgba(42, 53, 68, 0.9);
}

.mp-route-viz__cell--drive {
  flex: 0.85 1 0;
  border-style: dashed;
  background: rgba(61, 154, 110, 0.06);
  border-color: rgba(61, 154, 110, 0.35);
}

.mp-route-viz__time {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mp-accent-2);
  margin-bottom: 0.25rem;
}

.mp-route-viz__cell-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--mp-text);
  margin-bottom: 0.5rem;
}

.mp-route-viz__chunk {
  flex: 1;
  min-height: 4.25rem;
  border-radius: 0.5rem;
  margin-bottom: 0.45rem;
  background: linear-gradient(180deg, #4a6278 0%, #354a5c 55%, #2a3d4d 100%);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.mp-route-viz__chunk--drive {
  min-height: 3.25rem;
  background: linear-gradient(180deg, #2f8f62 0%, var(--mp-accent) 45%, #256b4a 100%);
  box-shadow:
    inset 0 -2px 0 rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(61, 154, 110, 0.25);
}

.mp-route-viz__cell-hint {
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--mp-muted);
}

.mp-route-viz__between {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  color: var(--mp-accent-2);
  opacity: 0.9;
}

.mp-route-viz__chev {
  display: block;
}

.mp-route-viz__foot {
  margin: 0.85rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--mp-border);
  font-size: 0.82rem;
  line-height: 1.45;
}

@media (max-width: 699px) {
  .mp-route-viz__track {
    flex-direction: column;
    min-height: 0;
    gap: 0.15rem;
  }

  .mp-route-viz__between {
    padding: 0.15rem 0;
    transform: rotate(90deg);
  }

  .mp-route-viz__cell--drive {
    flex: 1 1 auto;
  }

  .mp-route-viz__chunk {
    min-height: 3rem;
  }
}

.mp-integrations {
  padding: 1.75rem 1.25rem 1.5rem;
  border-top: 1px solid var(--mp-border);
  border-bottom: 1px solid var(--mp-border);
  background: rgba(26, 34, 44, 0.35);
}

.mp-integrations__title {
  font-size: 1rem;
  margin: 0 0 0.25rem;
  letter-spacing: 0.01em;
}

.mp-integrations__lead {
  margin: 0 0 1rem;
  max-width: 44rem;
}

.mp-integrations__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: center;
}

@media (min-width: 640px) {
  .mp-integrations__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .mp-integrations__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.mp-integrations__grid li {
  display: flex;
  justify-content: center;
}

.mp-wordmark {
  width: 100%;
  max-width: 140px;
  height: 32px;
  opacity: 0.88;
  transition: opacity 0.15s ease;
}

.mp-wordmark--wide {
  max-width: 170px;
}

.mp-integrations__grid li:hover .mp-wordmark {
  opacity: 1;
}

/* Früh-dabei-Sektion */
.mp-early-access {
  position: relative;
}

.mp-early-access__tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.14);
  color: var(--mp-accent-2);
  margin-bottom: 0.6rem;
}

/* Security-Badges */
.mp-security-badges {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.mp-security-badges li {
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(61, 154, 110, 0.35);
  background: rgba(61, 154, 110, 0.07);
  display: grid;
  gap: 0.15rem;
}

.mp-security-badges__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--mp-text);
}

.mp-security-badges__note {
  font-size: 0.82rem;
  color: var(--mp-muted);
  line-height: 1.4;
}

/* FAQ-Accordion */
.mp-faq-list {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.mp-faq-item {
  background: var(--mp-card);
  border: 1px solid var(--mp-border);
  border-radius: 0.65rem;
  padding: 0;
}

.mp-faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 700;
  color: var(--mp-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.mp-faq-item > summary::-webkit-details-marker {
  display: none;
}

.mp-faq-item > summary:focus-visible {
  outline: 3px solid var(--mp-accent);
  outline-offset: 2px;
  border-radius: 0.5rem;
}

.mp-faq-item__icon {
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--mp-muted);
  border-bottom: 2px solid var(--mp-muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
  margin-top: -4px;
}

.mp-faq-item[open] > summary .mp-faq-item__icon {
  transform: rotate(225deg);
  margin-top: 4px;
  border-color: var(--mp-accent);
}

.mp-faq-item__body {
  padding: 0 1.1rem 1rem;
  color: var(--mp-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.mp-faq-item__body p {
  margin: 0;
}

.mp-section {
  padding: 2.5rem 1.25rem;
}

.mp-section h2 {
  margin: 0 0 0.5rem;
}

.mp-section__intro {
  margin: 0 0 1.5rem;
  max-width: 40rem;
}

.mp-benefits {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .mp-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .mp-benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mp-benefit {
  background: var(--mp-card);
  border: 1px solid var(--mp-border);
  border-radius: 0.75rem;
  padding: 1.15rem 1.25rem;
  height: 100%;
}

.mp-benefit h3 {
  margin: 0 0 0.5rem;
  font-size: 1.02rem;
  line-height: 1.3;
  color: var(--mp-text);
}

.mp-benefit p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--mp-muted);
  line-height: 1.5;
}

.mp-muted {
  color: var(--mp-muted);
  font-size: 0.95rem;
}

.mp-pricing {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 800px) {
  .mp-pricing {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mp-card {
  background: var(--mp-card);
  border: 1px solid var(--mp-border);
  border-radius: 0.75rem;
  padding: 1.25rem 1.35rem;
}

.mp-card--highlight {
  border-color: var(--mp-accent);
  box-shadow: 0 0 0 1px rgba(61, 154, 110, 0.35);
}

.mp-card h3 {
  margin: 0 0 0.35rem;
}

.mp-price {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--mp-accent-2);
}

.mp-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--mp-muted);
  font-size: 0.92rem;
}

.mp-card li {
  margin-bottom: 0.35rem;
}

.mp-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--mp-muted);
}

.mp-tariff-compare {
  margin-top: 2rem;
}

.mp-tariff-compare__intro {
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}

.mp-pricing--compact {
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

.mp-pricing--compact .mp-card {
  padding: 1rem 1.1rem;
}

.mp-pricing--compact h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.mp-pricing--compact p {
  margin: 0;
}

.mp-table-wrap {
  overflow-x: auto;
  margin: 0.6rem 0 1.5rem;
  border: 1px solid var(--mp-border);
  border-radius: 0.65rem;
}

.mp-table-wrap--compare {
  margin-top: 1rem;
}

.mp-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  table-layout: fixed;
}

.mp-compare-col-feature {
  width: 42%;
}

.mp-compare-col-tier {
  width: calc(58% / 3);
}

.mp-compare-table th,
.mp-compare-table td {
  border-bottom: 1px solid var(--mp-border);
  padding: 0.6rem 0.75rem;
  text-align: left;
  vertical-align: middle;
  font-size: 0.9rem;
  word-wrap: break-word;
}

.mp-compare-table th:nth-child(2),
.mp-compare-table td:nth-child(2),
.mp-compare-table th:nth-child(3),
.mp-compare-table td:nth-child(3),
.mp-compare-table th:nth-child(4),
.mp-compare-table td:nth-child(4) {
  text-align: center;
}

.mp-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.mp-compare-table th {
  background: rgba(26, 34, 44, 0.96);
  color: var(--mp-text);
  font-weight: 700;
}

.mp-compare-table td {
  color: var(--mp-muted);
}

.mp-compare-section td {
  padding-top: 0.85rem;
  padding-bottom: 0.5rem;
  font-weight: 700;
  color: var(--mp-text);
  background: rgba(26, 34, 44, 0.45);
  text-align: left;
  border-bottom: 1px solid var(--mp-border);
}

.mp-compare-section:first-of-type td {
  padding-top: 0.65rem;
}

.mp-compare-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2d9d5a;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

.mp-compare-dash {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mp-muted);
  font-weight: 600;
  opacity: 0.75;
}

.mp-compare-note {
  font-size: 0.82rem;
  line-height: 1.35;
  hyphens: auto;
}

.mp-compare-feature-link {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(45, 157, 90, 0.45);
  text-underline-offset: 0.15em;
  text-decoration-thickness: 1px;
}

.mp-compare-feature-link:hover {
  color: var(--mp-text);
  text-decoration-color: rgba(45, 157, 90, 0.85);
}

.mp-tariff-compare h4 {
  margin: 1rem 0 0.35rem;
}

.mp-band {
  background: linear-gradient(180deg, rgba(61, 154, 110, 0.08), transparent);
  border-top: 1px solid var(--mp-border);
  border-bottom: 1px solid var(--mp-border);
}

.mp-footer {
  border-top: 1px solid var(--mp-border);
  padding: 1.5rem 0;
  font-size: 0.88rem;
}

.mp-footer a {
  color: var(--mp-muted);
}

.mp-legal {
  padding: 2.5rem 1.25rem 4rem;
}

.mp-legal h1 {
  margin-top: 0;
}

.mp-legal h2 {
  font-size: 1.15rem;
  margin: 2rem 0 0.65rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--mp-border);
  color: var(--mp-text);
}

.mp-legal h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.mp-legal h3 {
  font-size: 1rem;
  margin: 1.25rem 0 0.4rem;
  color: var(--mp-text);
}

.mp-legal ul,
.mp-legal ol {
  margin: 0.5rem 0 1rem;
  padding-left: 1.35rem;
  color: var(--mp-muted);
}

.mp-legal li {
  margin-bottom: 0.35rem;
}

.mp-legal p {
  color: var(--mp-muted);
  margin: 0.65rem 0;
}

.mp-legal .mp-legal-note {
  font-size: 0.88rem;
  color: var(--mp-muted);
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--mp-border);
}

.mp-legal-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
}

.mp-legal table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  color: var(--mp-muted);
}

.mp-legal th,
.mp-legal td {
  border: 1px solid var(--mp-border);
  padding: 0.5rem 0.65rem;
  text-align: left;
  vertical-align: top;
}

.mp-legal th {
  background: var(--mp-card);
  color: var(--mp-text);
  font-weight: 600;
}

.mp-legal address {
  font-style: normal;
  color: var(--mp-muted);
  margin: 0.5rem 0 1rem;
  line-height: 1.6;
}

/* Jetzt buchen — Formular */
.mp-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.mp-field label,
.mp-fieldset legend {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  color: var(--mp-text);
}

.mp-field input[type="text"],
.mp-field input[type="email"],
.mp-field input[type="password"],
.mp-field input[type="tel"],
.mp-field input[type="number"] {
  width: 100%;
  max-width: 28rem;
  padding: 0.5rem 0.65rem;
  border-radius: 0.45rem;
  border: 1px solid var(--mp-border);
  background: var(--mp-bg);
  color: var(--mp-text);
  font: inherit;
}

.mp-field textarea {
  width: 100%;
  max-width: 28rem;
  padding: 0.5rem 0.65rem;
  border-radius: 0.45rem;
  border: 1px solid var(--mp-border);
  background: var(--mp-bg);
  color: var(--mp-text);
  font: inherit;
  resize: vertical;
  min-height: 5rem;
}

.mp-field-hint {
  display: block;
  font-size: 0.82rem;
  color: var(--mp-muted);
  margin-top: 0.35rem;
}

.mp-field-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .mp-field-row {
    grid-template-columns: 1fr 1fr;
    max-width: 36rem;
  }
}

.mp-fieldset {
  border: 1px solid var(--mp-border);
  border-radius: 0.65rem;
  padding: 1rem 1.1rem;
  margin: 0;
}

.mp-plan-pick {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.mp-plan-option {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.92rem;
}

.mp-plan-option input {
  margin-top: 0.2rem;
}

.mp-field--check label {
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.45;
}

.mp-field--check input {
  margin-right: 0.45rem;
  vertical-align: middle;
}

.mp-form-error {
  color: #f0a8a8;
  font-size: 0.9rem;
  margin: 0;
}

.mp-password-match-hint {
  font-size: 0.82rem;
  margin: 0.35rem 0 0;
  max-width: 36rem;
}

.mp-password-match-hint--ok {
  color: var(--mp-accent);
}

.mp-password-match-hint--err {
  color: #f0a8a8;
}

.mp-hidden {
  display: none !important;
}

.mp-banner {
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.mp-banner--hidden {
  display: none;
}

.mp-banner--info {
  background: rgba(61, 154, 110, 0.15);
  border: 1px solid rgba(61, 154, 110, 0.45);
}

.mp-banner--error {
  background: rgba(180, 80, 80, 0.2);
  border: 1px solid rgba(200, 100, 100, 0.5);
}

.mp-card--notice h2 {
  margin-top: 0;
}

button.mp-button {
  cursor: pointer;
  font: inherit;
}

/* Native <button> hat sonst hellen Browser-Hintergrund; .mp-button--ghost würde durch
   ein globales border:none (früher) zudem den Rand verlieren. */
button.mp-button--primary {
  border: none;
  background: var(--mp-accent);
  color: #041208;
}

button.mp-button--primary:hover {
  filter: brightness(1.06);
}

button.mp-button--ghost {
  background: transparent;
  color: var(--mp-text);
  border: 1px solid var(--mp-border);
}

button.mp-button--ghost:hover {
  border-color: var(--mp-muted);
  color: var(--mp-text);
}

button.mp-button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.mp-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mp-modal {
  max-width: calc(100vw - 2rem);
  width: min(32rem, 100%);
  padding: 0;
  border: 1px solid var(--mp-border);
  border-radius: 0.75rem;
  background: var(--mp-card);
  color: var(--mp-text);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.45);
}

.mp-modal--narrow {
  width: min(24rem, 100%);
}

.mp-modal::backdrop {
  background: rgba(0, 0, 0, 0.55);
}

.mp-modal__inner {
  padding: 1.25rem 1.35rem 1.35rem;
}

.mp-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.mp-modal__title {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.25;
}

.mp-modal__x {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 0.4rem;
  background: transparent;
  color: var(--mp-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.mp-modal__x:hover {
  color: var(--mp-text);
  background: rgba(255, 255, 255, 0.06);
}

.mp-modal__intro {
  margin: 0 0 1rem;
  font-size: 0.92rem;
}

.mp-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.mp-turnstile-mount {
  min-height: 4rem;
}

/* Kostenrechner (Landing) */
.mp-roi-calculator {
  margin-top: 2rem;
  scroll-margin-top: 4.5rem;
}

.mp-roi-calculator__title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.mp-roi-calculator__lead {
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.mp-roi-calculator__fields {
  max-width: 36rem;
}

.mp-roi-result {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--mp-border);
  background: rgba(0, 0, 0, 0.2);
}

.mp-roi-result__total {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.45;
}

.mp-roi-result__total span {
  color: var(--mp-accent-2);
  font-weight: 700;
  font-size: 1.15rem;
}

.mp-roi-result__breakdown {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--mp-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.mp-roi-result__breakdown li {
  margin-bottom: 0.35rem;
}

.mp-roi-result__detail {
  display: block;
  font-size: 0.82rem;
  opacity: 0.85;
  margin-top: 0.15rem;
}

@media (min-width: 560px) {
  .mp-roi-result__detail {
    display: inline;
    margin-left: 0.35rem;
  }
}

.mp-roi-assumptions {
  margin: 1.1rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

/* Produkt-Screenshots (echte Browser-Aufnahmen, zugeschnitten auf Feature-Karten) */
.mp-product-screens {
  padding-top: 0.5rem;
}

.mp-product-gallery {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 900px) {
  .mp-product-gallery {
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: repeat(3, minmax(0, auto));
    align-items: start;
  }

  .mp-product-shot--feature {
    grid-row: 1 / span 3;
  }
}

.mp-product-shot {
  margin: 0;
  border: 1px solid var(--mp-border);
  border-radius: 0.85rem;
  overflow: hidden;
  background: var(--mp-card);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.mp-product-shot img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  background: #f4efe6;
}

.mp-product-shot figcaption {
  padding: 0.7rem 0.9rem;
  font-size: 0.84rem;
  color: var(--mp-muted);
  border-top: 1px solid var(--mp-border);
}

.mp-product-shot--route {
  margin-top: 0.25rem;
}

.mp-topic-product-shot .mp-product-shot {
  max-width: 52rem;
  margin-top: 1.25rem;
}

.mp-travel-usp__layout .mp-product-shot--route img {
  filter: none;
}

.mp-hero__media .mp-product-shot,
.mp-hero__media img {
  border-radius: 0.85rem;
  border: 1px solid var(--mp-border);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
  filter: none;
}

.mp-roi-footnote {
  margin-top: 0.65rem;
  margin-bottom: 0;
}
