:root {
  --tab-header-offset: 150px;
}

.multi-tab-shell {
  width: 100%;
  border-top: 1px solid rgba(255, 0, 0, 0.14);
  border-bottom: 1px solid rgba(255, 0, 0, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 0, 0, 0.12), transparent 22%, transparent 78%, rgba(255, 0, 0, 0.1)),
    rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(16px);
  overflow: visible;
}

.multi-tab-nav {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px;
  overflow: visible;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 0, 0, 0.7) rgba(255, 255, 255, 0.08);
  padding: 9px 0 10px;
}

.multi-tab-nav::-webkit-scrollbar {
  height: 5px;
}

.multi-tab-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 0, 0, 0.72);
  border-radius: 999px;
}

.multi-tab-nav a {
  flex: 0 0 auto;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.01)),
    rgba(10, 10, 10, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.multi-tab-nav a:hover,
.multi-tab-nav a:focus-visible,
.multi-tab-nav a.is-active {
  color: #fff;
  border-color: rgba(255, 0, 0, 0.9);
  background:
    linear-gradient(145deg, rgba(255, 0, 0, 0.94), rgba(98, 0, 0, 0.72)),
    #ff0000;
  box-shadow: 0 14px 32px rgba(255, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.multi-page {
  background: #050505;
}

.multi-page .site-header {
  background: rgba(3, 3, 3, 0.94);
}

.multi-page main {
  animation: multiPageIn 420ms ease both;
}

.vehicle-modal {
  padding-top: clamp(156px, 19vh, 190px);
}

@keyframes multiPageIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.multi-main {
  padding-top: calc(var(--header-height) + 64px);
}

.multi-hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 0, 0, 0.16);
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 0, 0, 0.24), transparent 32%),
    linear-gradient(135deg, #050505 0%, #0d0d0d 42%, #1a0000 100%);
}

.multi-hero::before,
.multi-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.multi-hero::before {
  background:
    linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.18), transparent),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 8px);
  opacity: 0.42;
  animation: multiHeroScan 12s linear infinite;
}

.multi-hero::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.36) 50%, rgba(0, 0, 0, 0.74));
}

@keyframes multiHeroScan {
  from {
    transform: translateX(-35%);
  }

  to {
    transform: translateX(35%);
  }
}

.multi-hero-inner,
.multi-section,
.multi-contact-strip,
.multi-footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.multi-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: 88px 0 78px;
}

.multi-kicker,
.multi-section-kicker {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.multi-hero h1,
.multi-section h2 {
  color: #fff;
  margin: 14px 0 18px;
  font-size: clamp(2.7rem, 8vw, 5.9rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.multi-section h2 {
  font-size: clamp(2.15rem, 5vw, 4.4rem);
}

.multi-hero p,
.multi-section p,
.multi-contact-strip p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.04rem;
  line-height: 1.72;
}

.multi-hero-actions,
.multi-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.multi-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 5px;
  border: 1px solid rgba(255, 0, 0, 0.74);
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, #ff0000, #9a0000);
  box-shadow: 0 18px 42px rgba(255, 0, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.multi-button:hover,
.multi-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(255, 0, 0, 0.34);
}

.multi-button.is-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.multi-hero-visual {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(255, 0, 0, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.5);
}

.multi-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08) brightness(0.82);
  transform: scale(1.01);
  transition: transform 500ms ease, filter 500ms ease;
}

.multi-hero-visual:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.14) brightness(0.9);
}

.multi-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 20% 80%, rgba(255, 0, 0, 0.34), transparent 34%);
}

.multi-visual-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  font-weight: 950;
  text-transform: uppercase;
}

.multi-section {
  padding: clamp(70px, 9vw, 116px) 0;
}

.multi-section.is-tight {
  padding-top: 52px;
}

.multi-lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.multi-glass-panel,
.multi-feature-card,
.multi-stat-card,
.multi-contact-strip,
.multi-gallery-card,
.multi-faq-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    rgba(10, 10, 10, 0.74);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.multi-glass-panel {
  padding: clamp(24px, 4vw, 40px);
}

.multi-stat-grid,
.multi-card-grid,
.multi-gallery-grid,
.multi-faq-grid {
  display: grid;
  gap: 16px;
}

.multi-stat-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.multi-stat-card,
.multi-feature-card,
.multi-faq-card {
  padding: 22px;
}

.multi-stat-card strong {
  display: block;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1;
}

.multi-stat-card span,
.multi-feature-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.multi-section p,
.multi-feature-card p,
.multi-faq-card p {
  overflow-wrap: anywhere;
}

.multi-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.multi-feature-card {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.multi-feature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--red);
  opacity: 0.9;
}

.multi-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.42);
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 0, 0, 0.18), transparent 38%),
    rgba(16, 16, 16, 0.82);
}

.multi-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.94), rgba(87, 0, 0, 0.76));
  box-shadow: 0 16px 34px rgba(255, 0, 0, 0.2);
}

.multi-icon svg {
  width: 22px;
  height: 22px;
}

.multi-feature-card h3,
.multi-faq-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.12rem;
}

.multi-feature-card p,
.multi-faq-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.96rem;
}

.multi-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.multi-gallery-card {
  overflow: hidden;
}

.multi-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: saturate(0.94) contrast(1.04);
}

.multi-gallery-card figcaption {
  padding: 15px 16px;
  color: #fff;
  font-weight: 900;
}

.multi-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.multi-contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 80px;
  padding: clamp(24px, 4vw, 42px);
  border-color: rgba(255, 0, 0, 0.25);
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 0, 0, 0.2), transparent 32%),
    rgba(12, 12, 12, 0.86);
}

.multi-footer {
  border-top: 1px solid rgba(255, 0, 0, 0.15);
  background: rgba(4, 4, 4, 0.94);
}

.multi-footer-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.multi-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.multi-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.multi-footer-links a:hover {
  color: #fff;
}

.multi-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.multi-form label {
  color: #fff;
  font-weight: 900;
}

.multi-form input,
.multi-form textarea,
.multi-form select {
  width: 100%;
  min-height: 50px;
  margin-top: 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  color: #fff;
  background: rgba(0, 0, 0, 0.74);
  padding: 0 14px;
  font: inherit;
}

.multi-form textarea {
  min-height: 132px;
  padding-top: 12px;
  resize: vertical;
}

@media (max-width: 980px) {
  .multi-main {
    padding-top: calc(var(--header-height) + 76px);
  }

  .multi-hero-inner,
  .multi-lead-grid,
  .multi-contact-strip {
    grid-template-columns: 1fr;
  }

  .multi-hero {
    min-height: auto;
  }

  .multi-hero-inner {
    padding-top: 54px;
  }

  .multi-card-grid,
  .multi-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --tab-header-offset: 104px;
  }

  .vehicle-modal {
    padding-top: 118px;
  }

  .multi-tab-nav {
    width: calc(100% - 22px);
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-block: 7px;
  }

  .multi-tab-nav a {
    min-height: 32px;
    padding-inline: 10px;
    font-size: 0.68rem;
  }

  .multi-main {
    padding-top: calc(var(--header-height) + 66px);
  }

  .multi-hero-inner,
  .multi-section,
  .multi-contact-strip,
  .multi-footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .multi-hero h1,
  .multi-section h2 {
    letter-spacing: 0;
  }

  .multi-hero-visual,
  .multi-hero-visual img {
    min-height: 300px;
  }

  .multi-card-grid,
  .multi-gallery-grid,
  .multi-faq-grid,
  .multi-stat-grid {
    grid-template-columns: 1fr;
  }

  .multi-footer-inner {
    padding: 22px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

.multi-page[data-page="impressum"] .multi-feature-card,
.multi-page[data-page="datenschutz"] .multi-feature-card,
.multi-page[data-page="agb"] .multi-feature-card,
.multi-page[data-page="widerrufsrecht"] .multi-feature-card,
.multi-page[data-page="versand"] .multi-feature-card,
.multi-page[data-page="rueckgabe"] .multi-feature-card {
  min-height: 0;
}

.multi-page[data-page="impressum"] .multi-stat-card strong,
.multi-page[data-page="datenschutz"] .multi-stat-card strong,
.multi-page[data-page="agb"] .multi-stat-card strong,
.multi-page[data-page="widerrufsrecht"] .multi-stat-card strong,
.multi-page[data-page="versand"] .multi-stat-card strong,
.multi-page[data-page="rueckgabe"] .multi-stat-card strong {
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.multi-page[data-page="impressum"] .multi-section h2,
.multi-page[data-page="datenschutz"] .multi-section h2,
.multi-page[data-page="agb"] .multi-section h2,
.multi-page[data-page="widerrufsrecht"] .multi-section h2,
.multi-page[data-page="versand"] .multi-section h2,
.multi-page[data-page="rueckgabe"] .multi-section h2 {
  max-width: 100%;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.multi-footer-inner {
  flex-wrap: wrap;
}

.multi-footer-legal {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.multi-footer-legal a {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.76rem;
  font-weight: 800;
}

.multi-footer-legal a:hover,
.multi-footer-legal a:focus-visible {
  color: #fff;
}

.multi-form-status {
  min-height: 1.4em;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.multi-form-status.is-error {
  color: #ff7777;
}

.multi-form-status.is-success {
  color: #fff;
}

.multi-form [aria-invalid="true"] {
  border-color: #ff5b5b;
  box-shadow: 0 0 0 3px rgba(255, 91, 91, 0.14);
}

@media (max-width: 720px) {
  .multi-footer-legal {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .multi-tab-nav {
    width: calc(100% - 14px);
  }

  .multi-hero-inner,
  .multi-section,
  .multi-contact-strip,
  .multi-footer-inner {
    width: calc(100% - 20px);
  }

  .multi-hero-visual,
  .multi-hero-visual img {
    min-height: 240px;
  }
}
