* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  padding-top: 86px;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(
      1200px 700px at 15% -10%,
      rgba(var(--accent-rgb), 0.1),
      rgba(var(--accent-rgb), 0.04) 28%,
      transparent 62%
    ),
    radial-gradient(
      1100px 680px at 85% 0%,
      rgba(var(--accent-rgb), 0.08),
      rgba(var(--accent-rgb), 0.03) 30%,
      transparent 64%
    ),
    radial-gradient(
      900px 500px at 50% 35%,
      rgba(var(--accent-rgb), 0.035),
      transparent 70%
    ),
    linear-gradient(
      180deg,
      var(--bg-0) 0%,
      #080808 22%,
      #090909 48%,
      #0a0a0a 72%,
      var(--bg-1) 100%
    );
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(
      900px 500px at 50% 15%,
      rgba(var(--accent-rgb), 0.035),
      transparent 70%
    ),
    radial-gradient(
      700px 420px at 50% 85%,
      rgba(var(--accent-rgb), 0.02),
      transparent 72%
    );
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 16px;
  top: 16px;
  background: var(--panel-2);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: var(--r12);
  z-index: 99;
}

.muted {
  color: var(--text-muted);
}

/* =========================
   BUTTONS
   ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease,
    box-shadow 0.18s ease;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    rgba(var(--accent-rgb), 0.95),
    rgba(var(--accent-2-rgb), 0.92)
  );
  color: var(--text-dark);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-2), var(--glow);
}

.btn-ghost {
  background: transparent;
  box-shadow: none;
}

/* =========================
   HEADER
   ========================= */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(var(--accent-rgb), 0.05) 0%,
    transparent 18%,
    transparent 82%,
    rgba(var(--accent-rgb), 0.05) 100%
  );
}

.topbar-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo img {
  height: 78px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(var(--accent-rgb), 0.28));
}

.brand-title {
  font-weight: 900;
}

.brand-sub {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.nav-toggle {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(var(--accent-rgb), 0.28);
  transform: translateY(-1px);
}

.nav {
  position: fixed;
  left: 16px;
  right: 16px;
  top: 98px;
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: var(--r28);
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.nav.is-open {
  display: flex;
}

.nav a {
  padding: 12px 14px;
  border-radius: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.84rem;
  border: 1px solid transparent;
  background: var(--panel-3);
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.nav a:hover {
  background: var(--panel-2);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.nav a.is-active {
  border-color: var(--border-accent-strong);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.14) inset;
}

.nav a.nav-cta {
  background: linear-gradient(
    135deg,
    rgba(var(--accent-rgb), 0.95),
    rgba(var(--accent-2-rgb), 0.92)
  );
  color: var(--text-dark);
  border-color: rgba(255, 255, 255, 0.22);
}

.nav a.nav-cta:hover {
  background: transparent;
  color: var(--accent-2);
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.18) inset;
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav a {
    background: transparent;
    padding: 10px 14px;
    border-radius: 14px;
  }

  .nav a:hover {
    background: var(--panel-2);
    border-color: transparent;
  }

  .nav a.nav-cta {
    margin-left: 8px;
    padding: 11px 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
}

/* =========================
   HERO
   ========================= */

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.52) 0%,
      rgba(0, 0, 0, 0.46) 22%,
      rgba(0, 0, 0, 0.58) 64%,
      rgba(0, 0, 0, 0.72) 100%
    ),
    url("../img/hero.jpg") center center / cover no-repeat;
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      900px 420px at 50% 28%,
      rgba(var(--accent-rgb), 0.14),
      transparent 62%
    ),
    radial-gradient(
      700px 300px at 50% 100%,
      rgba(var(--accent-rgb), 0.07),
      transparent 70%
    );
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 980px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.26);
  background: rgba(0, 0, 0, 0.34);
  color: rgba(var(--accent-2-rgb), 0.92);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.78rem;
  backdrop-filter: blur(10px);
}

.hero h1 {
  margin: 22px 0 0;
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.hero h1 .gold {
  color: var(--accent-2);
  text-shadow: 0 0 26px rgba(var(--accent-rgb), 0.22);
}

.hero p {
  max-width: 60ch;
  margin: 18px auto 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 760px;
}

@media (min-width: 900px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat {
  border-radius: 20px;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.stat .num {
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--accent-2);
}

.stat .lbl {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .hero {
    min-height: auto;
    padding: 70px 0 60px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .hero p {
    font-size: 0.98rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

/* =========================
   SECTIONS / TITLES
   ========================= */

.section {
  position: relative;
  padding: 88px 0;
}

.section + .section {
  margin-top: 0;
}

.section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.h-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0;
}

.h-sub {
  text-align: center;
  margin: 16px auto 0;
  max-width: 58ch;
  color: var(--text-muted);
}

.h-underline {
  width: 68px;
  height: 2px;
  background: rgba(var(--accent-rgb), 0.85);
  margin: 14px auto 0;
  border-radius: 999px;
  box-shadow: var(--glow);
}

/* =========================
   GRIDS / CARDS
   ========================= */

.grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
  margin-top: 26px;
  width: 100%;
}

@media (min-width: 900px) {
  .grid.two {
    grid-template-columns: 1fr 1fr;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }

  .grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

.card {
  border-radius: var(--r22);
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  background: var(--panel-3);
  box-shadow: var(--shadow-2);
  overflow: hidden;
}

.card .body {
  padding: 18px;
}

.card .kicker {
  color: rgba(var(--accent-2-rgb), 0.88);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.82rem;
}

.card .title {
  margin: 10px 0 0;
  font-weight: 900;
  font-size: 1.3rem;
}

.card .text {
  margin: 10px 0 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.grid.two .card .body,
.grid.three .card .body {
  display: flex;
  flex-direction: column;
}

.grid.two .card .title,
.grid.two .card .text,
.grid.two .card .price,
.grid.three .card .title,
.grid.three .card .text,
.grid.three .card .price {
  text-align: center;
}

/* =========================
   GENERIC IMAGE BLOCKS
   ========================= */

.vehicle-thumb {
  aspect-ratio: 16/10;
  border-bottom: 1px solid var(--border-soft);
  background: var(--panel-3);
  position: relative;
  overflow: hidden;
}

.vehicle-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease;
}

.vehicle-thumb:hover img {
  transform: scale(1.03);
}

.vehicle-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    var(--overlay-dark) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.gallery-img {
  cursor: pointer;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-accent);
  background: var(--panel-dark-2);
  color: rgba(var(--accent-2-rgb), 0.88);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  align-self: center;
}

.kpis {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

.kpi {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--panel-dark);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
}

.price {
  margin-top: 14px;
  font-weight: 900;
  font-size: 1.65rem;
  color: var(--accent-2);
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
}

/* =========================
   STEPS
   ========================= */

.steps-line {
  margin-top: 26px;
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
  width: 100%;
}

@media (min-width: 980px) {
  .steps-line {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

.steps-line .card .body {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(var(--accent-2-rgb), 0.9);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-accent);
  background: var(--panel-dark-2);
  box-shadow: var(--glow);
}

/* =========================
   FORMS
   ========================= */

.form {
  display: grid;
  gap: 12px;
  width: 100%;
}

.field label {
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-soft);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text);
  outline: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--border-accent-strong);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

@media (min-width: 980px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.check input {
  margin-top: 3px;
}

/* =========================
   FOOTER
   ========================= */

.footer {
  margin-top: 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.015) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      800px 340px at 0% 100%,
      rgba(var(--accent-rgb), 0.04),
      transparent 72%
    ),
    radial-gradient(
      800px 340px at 100% 0%,
      rgba(var(--accent-rgb), 0.035),
      transparent 72%
    );
}

.footer-grid {
  position: relative;
  z-index: 1;
  padding: 42px 0 28px;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

@media (min-width: 980px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.9fr 1fr;
    align-items: start;
  }
}

.footer-col {
  min-width: 0;
}

.footer-brand-col .footer-logo {
  margin-bottom: 14px;
}

.footer-brand-col .footer-logo img {
  height: 84px;
  width: auto;
}

.footer-brand {
  font-weight: 900;
  font-size: 1.18rem;
  letter-spacing: 0.04em;
}

.footer-quote {
  margin-top: 8px;
  color: var(--accent-2);
  font-weight: 700;
}

.footer-text {
  margin-top: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 42ch;
}

.footer-title {
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--text-strong);
  font-size: 0.92rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.footer-links a:hover {
  color: var(--text);
  transform: translateX(3px);
}

.footer-kontakt {
  display: grid;
  gap: 12px;
}

.footer-kontakt .line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-kontakt .line i {
  width: 18px;
  margin-top: 2px;
  color: var(--accent-2);
}

.footer-cta {
  margin-top: 20px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-copy {
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--text-muted);
  transition: color 0.18s ease;
}

.footer-bottom-links a:hover {
  color: var(--text);
}

.totop {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.totop:hover {
  transform: translateY(-2px);
  background: var(--panel-2);
  border-color: rgba(var(--accent-rgb), 0.28);
}

.social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.iconbtn {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.iconbtn:hover {
  border-color: rgba(var(--accent-rgb), 0.7);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.25);
}

/* =========================
   FLOATING WHATSAPP
   ========================= */

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-accent);
  background: var(--panel-dark-3);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-2);
}

.wa-float i {
  font-size: 1.25rem;
  color: var(--success);
}

.wa-float span {
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* =========================
   COOKIE BANNER
   ========================= */

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  background: var(--overlay-cookie);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.cookie.is-open {
  display: block;
}

.cookie-inner {
  padding: 14px 0;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-title {
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-text {
  color: var(--text-muted);
  margin-top: 6px;
  max-width: 70ch;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================
   DEUTSCHES KENNZEICHEN
   ========================= */

.plate {
  display: flex;
  align-items: stretch;
  width: min(560px, 100%);
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid var(--plate-border);
  background: linear-gradient(
    180deg,
    var(--plate-bg-top),
    var(--plate-bg-bottom)
  );
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.plate-eu {
  width: 54px;
  background: var(--eu-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 3px solid var(--plate-border);
  padding: 6px 0;
}

.eu-flag {
  width: 34px;
  height: 34px;
  display: block;
}

.plate-eu .eu-d {
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 1px;
  color: #fff;
  margin-top: 2px;
}

.plate-main {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  position: relative;
}

.field .plate-in {
  border: 0;
  background: transparent;
  outline: none;
  color: var(--plate-text);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 32px;
  letter-spacing: 2px;
  padding: 4px 2px;
  min-width: 0;
  background: rgba(102, 102, 102, 0.582);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3),
    0 -1px 0 rgba(0, 0, 0, 0.1);
}

.field .plate-in::placeholder {
  color: #000000;
  font-weight: 800;
}

.plate-city {
  width: 90px;
}

.plate-letters {
  width: 80px;
}

.plate-num {
  width: 130px;
  letter-spacing: 1px;
}

.plate-in:focus {
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.25);
}

.plate-stickers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}

.sticker {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  position: relative;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0) 45%
    ),
    radial-gradient(
      circle at 70% 75%,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0) 55%
    ),
    radial-gradient(circle at 50% 50%, #f6f6f6 0%, #d9d9d9 55%, #c8c8c8 100%);
  border: 2px solid #b9b9b9;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.25);
}

.sticker::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.sticker-top {
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0) 45%
    ),
    radial-gradient(
      circle at 70% 75%,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0) 55%
    ),
    radial-gradient(
      circle at 50% 60%,
      rgba(0, 120, 255, 0.4),
      rgba(0, 120, 255, 0) 60%
    ),
    radial-gradient(circle at 50% 50%, #f6f6f6 0%, #d9d9d9 55%, #c8c8c8 100%);
}

.sticker-bottom {
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0) 45%
    ),
    radial-gradient(
      circle at 70% 75%,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0) 55%
    ),
    radial-gradient(
      circle at 50% 60%,
      rgba(255, 180, 40, 0.45),
      rgba(255, 180, 40, 0) 60%
    ),
    radial-gradient(circle at 50% 50%, #f6f6f6 0%, #d9d9d9 55%, #c8c8c8 100%);
}

/* =========================
   FAHRZEUG GALERIE
   ========================= */

.vehicle-gallery-wrap {
  padding: 18px;
}

.vehicle-main-view {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--panel-3);
  position: relative;
}

.vehicle-main-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition:
    transform 0.35s ease,
    opacity 0.22s ease;
}

.vehicle-main-view:hover .vehicle-main-img {
  transform: scale(1.015);
}

.vehicle-thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.vehicle-thumbs::-webkit-scrollbar {
  height: 8px;
}

.vehicle-thumbs::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.vehicle-thumbs::-webkit-scrollbar-thumb {
  background: rgba(var(--accent-rgb), 0.45);
  border-radius: 999px;
}

.vehicle-thumb-btn {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--panel-3);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  flex: 0 0 96px;
  min-width: 96px;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
}

.vehicle-thumb-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), 0.3);
}

.vehicle-thumb-btn.is-active {
  border-color: rgba(var(--accent-rgb), 0.9);
  box-shadow: 0 0 0 2px rgba(var(--accent-rgb), 0.22);
}

.vehicle-thumb-img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  display: block;
}

/* =========================
   LIGHTBOX
   ========================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: var(--overlay-lightbox);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 9999;
  padding: 30px;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 95vw;
  max-height: 90vh;
}

.lightbox img#lightbox-image {
  max-width: 90vw;
  max-height: 72vh;
  border-radius: 12px;
  box-shadow: var(--shadow-lightbox);
  transition:
    opacity 0.2s ease,
    transform 0.22s ease;
}

.lightbox button {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}

.lightbox button:hover {
  background: rgba(var(--accent-rgb), 0.28);
  transform: scale(1.05);
}

.lightbox-prev {
  left: 40px;
}

.lightbox-next {
  right: 40px;
}

.lightbox-close {
  top: 40px;
  right: 40px;
}

/* =========================
   WEICHERE SEKTIONSÜBERGÄNGE
   ========================= */

.section-soft {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.section-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      700px 380px at 0% 0%,
      rgba(var(--accent-rgb), 0.045),
      transparent 68%
    ),
    radial-gradient(
      700px 380px at 100% 0%,
      rgba(var(--accent-rgb), 0.04),
      transparent 68%
    ),
    radial-gradient(
      700px 380px at 0% 100%,
      rgba(var(--accent-rgb), 0.04),
      transparent 68%
    ),
    radial-gradient(
      700px 380px at 100% 100%,
      rgba(var(--accent-rgb), 0.045),
      transparent 68%
    );
}

.section-soft > .container,
.section-soft > .showcase-slider-wrap {
  position: relative;
  z-index: 1;
}

/* =========================
   SHOWCASE SLIDER
   ========================= */

.section-showcase .container {
  max-width: 1100px;
}

.showcase-slider-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 34px auto 0;
  padding: 0 20px;
}

.showcase-slider {
  position: relative;
  width: 100%;
  min-height: 320px;
  height: clamp(220px, 40vw, 420px);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  border: 1px solid rgba(var(--accent-rgb), 0.14);
}

.showcase-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.showcase-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.46) 24%,
      rgba(0, 0, 0, 0.14) 48%,
      rgba(0, 0, 0, 0) 72%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.28) 26%,
      rgba(0, 0, 0, 0) 55%
    );
  z-index: 1;
}

.showcase-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.showcase-kicker {
  display: inline-block;
  margin-bottom: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.26);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(var(--accent-2-rgb), 0.92);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.showcase-title {
  font-size: clamp(1.6rem, 3vw, 3.4rem);
  line-height: 1.02;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  max-width: 700px;
}

.showcase-text {
  margin-top: 10px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}

.showcase-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.showcase-arrow:hover {
  background: rgba(var(--accent-rgb), 0.24);
  border-color: rgba(var(--accent-rgb), 0.38);
}

.showcase-arrow-prev {
  left: 48px;
}

.showcase-arrow-next {
  right: 48px;
}

.showcase-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.showcase-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.showcase-dot.is-active {
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.16);
  transform: scale(1.12);
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 900px) {
  .showcase-slider-wrap {
    padding: 0 18px;
  }

  .showcase-slider {
    border-radius: 22px;
    height: 68vw;
    min-height: 240px;
    max-height: 420px;
  }

  .showcase-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .showcase-title {
    font-size: clamp(1.45rem, 6vw, 2.2rem);
  }

  .showcase-text {
    font-size: 0.95rem;
  }

  .showcase-arrow {
    width: 46px;
    height: 46px;
  }

  .showcase-arrow-prev {
    left: 26px;
  }

  .showcase-arrow-next {
    right: 26px;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox img#lightbox-image {
    max-width: 92vw;
    max-height: 62vh;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .vehicle-thumb-btn {
    flex-basis: 82px;
    min-width: 82px;
  }

  .vehicle-thumb-img {
    height: 62px;
  }
}

@media (max-width: 640px) {
  .showcase-slider-wrap {
    padding: 0 12px;
  }

  .showcase-slider {
    min-height: 220px;
    height: 78vw;
  }

  .showcase-arrow-prev {
    left: 18px;
  }

  .showcase-arrow-next {
    right: 18px;
  }

  .showcase-content {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .showcase-kicker {
    font-size: 0.68rem;
    padding: 6px 10px;
  }
}

@media (max-width: 520px) {
  .plate-main {
    gap: 10px;
    padding: 10px 10px;
  }

  .plate-in {
    font-size: 22px;
    letter-spacing: 1px;
  }

  .plate-city {
    width: 70px;
  }

  .plate-letters {
    width: 60px;
  }

  .plate-num {
    width: 90px;
  }

  .sticker {
    width: 24px;
    height: 24px;
  }

  .plate-stickers {
    gap: 6px;
    margin: 0 6px;
  }

  .plate-eu {
    width: 48px;
  }

  .eu-flag {
    width: 28px;
    height: 28px;
  }
}

/* =========================
   FAHRZEUGE SEITE NEU
   ========================= */

.vehicles-page .container {
  max-width: 1280px;
}

.vehicle-list {
  width: 100%;
  max-width: 1240px;
  margin: 34px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vehicle-row-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  background: var(--panel-3);
  box-shadow: var(--shadow-2);
  min-height: 420px;
}

.vehicle-row-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--panel-3);
}

.vehicle-row-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center center;
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.vehicle-row-card:hover .vehicle-row-image img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.vehicle-row-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.12) 38%,
    rgba(0, 0, 0, 0.45) 100%
  );
  pointer-events: none;
}

.vehicle-row-status {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.24);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(var(--accent-2-rgb), 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vehicle-row-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.vehicle-row-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.vehicle-row-title {
  font-size: clamp(1.6rem, 2.1vw, 2.4rem);
  line-height: 1.04;
  font-weight: 900;
  color: var(--text);
}

.vehicle-row-text {
  margin-top: 12px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 58ch;
}

.vehicle-row-pricebox {
  min-width: 140px;
  border-radius: 24px;
  padding: 16px 18px;
  text-align: center;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  background: rgba(0, 0, 0, 0.18);
}

.vehicle-row-price-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.vehicle-row-price {
  margin-top: 8px;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-2);
  line-height: 1;
}

.vehicle-row-price-sub {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.vehicle-row-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.vehicle-spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--panel-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.vehicle-row-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-end;
  margin-top: 28px;
}

.vehicle-row-prices {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.vehicle-row-price-card {
  min-width: 140px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(var(--accent-rgb), 0.14);
  background: rgba(0, 0, 0, 0.14);
}

.vehicle-row-small-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.vehicle-row-small-price {
  margin-top: 8px;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent-2);
}

.vehicle-row-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .vehicle-row-card {
    grid-template-columns: 1fr;
  }

  .vehicle-row-image img {
    min-height: 320px;
  }

  .vehicle-row-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .vehicle-row-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .vehicle-row-content {
    padding: 20px;
  }

  .vehicle-row-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .vehicle-row-pricebox {
    width: 100%;
    max-width: 220px;
  }

  .vehicle-row-image img {
    min-height: 260px;
  }

  .vehicle-row-prices {
    width: 100%;
  }

  .vehicle-row-price-card {
    flex: 1 1 160px;
  }

  .vehicle-row-actions {
    width: 100%;
  }

  .vehicle-row-actions .btn {
    width: 100%;
  }
}

/* =========================
   FAHRZEUGE SLIDER SEITE
   ========================= */

.fahrzeuge-hero-section .container {
  max-width: 1100px;
}

.fahrzeuge-slider-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 34px auto 0;
  padding: 0 20px;
}

.fahrzeuge-slider {
  position: relative;
  width: 100%;
  height: clamp(320px, 58vw, 700px);
  min-height: 320px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  box-shadow: var(--shadow-2);
}

.fahrzeuge-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.fahrzeuge-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.fahrzeuge-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.fahrzeuge-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.55) 24%,
      rgba(0, 0, 0, 0.18) 48%,
      rgba(0, 0, 0, 0.04) 70%,
      rgba(0, 0, 0, 0) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.3) 28%,
      rgba(0, 0, 0, 0.08) 52%,
      rgba(0, 0, 0, 0) 75%
    );
  z-index: 1;
}

.fahrzeuge-slide-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.fahrzeuge-slide-left {
  max-width: 720px;
}

.fahrzeuge-slide-name {
  font-size: clamp(1.8rem, 3.2vw, 3.6rem);
  line-height: 1.02;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.fahrzeuge-slide-text {
  margin-top: 10px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}

.fahrzeuge-slide-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.fahrzeuge-spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.fahrzeuge-slide-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.fahrzeuge-price-box {
  min-width: 150px;
  padding: 16px 18px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.fahrzeuge-price-label {
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

.fahrzeuge-price-value {
  margin-top: 8px;
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 900;
  color: var(--accent-2);
}

.fahrzeuge-price-sub {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.fahrzeuge-detail-btn {
  min-width: 170px;
}

.fahrzeuge-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.fahrzeuge-arrow:hover {
  background: rgba(var(--accent-rgb), 0.24);
  border-color: rgba(var(--accent-rgb), 0.38);
}

.fahrzeuge-arrow-prev {
  left: 46px;
}

.fahrzeuge-arrow-next {
  right: 46px;
}

.fahrzeuge-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.fahrzeuge-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.fahrzeuge-dot.is-active {
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.16);
  transform: scale(1.12);
}

@media (max-width: 980px) {
  .fahrzeuge-slider {
    height: clamp(320px, 72vw, 560px);
  }

  .fahrzeuge-slide-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .fahrzeuge-slide-right {
    align-items: flex-start;
  }

  .fahrzeuge-arrow-prev {
    left: 24px;
  }

  .fahrzeuge-arrow-next {
    right: 24px;
  }
}

@media (max-width: 700px) {
  .fahrzeuge-slider-wrap {
    padding: 0 12px;
  }

  .fahrzeuge-slider {
    min-height: 260px;
    height: 82vw;
    border-radius: 22px;
  }

  .fahrzeuge-slide-content {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .fahrzeuge-slide-name {
    font-size: clamp(1.45rem, 6vw, 2.2rem);
  }

  .fahrzeuge-slide-text {
    font-size: 0.95rem;
  }

  .fahrzeuge-slide-specs {
    gap: 8px;
  }

  .fahrzeuge-spec-pill {
    font-size: 0.82rem;
    padding: 8px 11px;
  }

  .fahrzeuge-arrow {
    width: 46px;
    height: 46px;
  }

  .fahrzeuge-arrow-prev {
    left: 18px;
  }

  .fahrzeuge-arrow-next {
    right: 18px;
  }

  .fahrzeuge-price-box {
    min-width: 136px;
    padding: 14px 16px;
  }

  .fahrzeuge-detail-btn {
    width: 100%;
  }
}

/* =========================
   IMPRESSUM
   ========================= */

.impressum .card .body {
  text-align: left;
}

.impressum .title {
  text-align: left;
}

.impressum .text {
  text-align: left;
  max-width: 720px;
  line-height: 1.7;
}

.impressum .h-title,
.impressum .h-sub {
  text-align: center;
}

/* =========================
   FAHRZEUG KALENDER GROSS
   ========================= */

.vehicle-calendar-section {
  width: 100%;
}

.vehicle-calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.vehicle-calendar-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.vehicle-calendar-legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
  margin-bottom: 22px;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legend-box {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legend-free {
  background: rgba(255, 255, 255, 0.04);
}

.legend-today {
  background: rgba(var(--accent-rgb), 0.18);
  border-color: rgba(var(--accent-rgb), 0.45);
}

.legend-blocked {
  background: rgba(255, 80, 80, 0.22);
  border-color: rgba(255, 80, 80, 0.55);
}

.vehicle-calendar-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.calendar-month {
  border: 1px solid rgba(var(--accent-rgb), 0.14);
  background: rgba(0, 0, 0, 0.18);
  border-radius: 22px;
  overflow: hidden;
}

.calendar-month-head {
  padding: 16px 18px;
  font-weight: 900;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  color: var(--accent-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  padding: 12px 12px 0;
}

.calendar-weekday {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 8px 4px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  padding: 12px;
}

.calendar-day {
  min-height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-weight: 800;
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease,
    box-shadow 0.16s ease;
}

.calendar-day span {
  font-size: 0.95rem;
}

.calendar-day.is-free:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--accent-rgb), 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.calendar-day.is-blocked {
  background: rgba(255, 80, 80, 0.16);
  border-color: rgba(255, 80, 80, 0.38);
  color: #ffd7d7;
  box-shadow: inset 0 0 0 1px rgba(255, 80, 80, 0.08);
}

.calendar-day.is-today {
  border-color: rgba(var(--accent-rgb), 0.48);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.2) inset;
}

.calendar-day.is-empty {
  background: transparent;
  border-color: transparent;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .vehicle-calendar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .vehicle-calendar-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-calendar-head {
    flex-direction: column;
    align-items: stretch;
  }

  .vehicle-calendar-nav {
    width: 100%;
  }

  .vehicle-calendar-nav .btn {
    flex: 1 1 auto;
  }

  .calendar-day {
    min-height: 52px;
  }
}

/* =========================
   ADMIN SEITEN
   ========================= */

.admin-page .container {
  max-width: 1200px;
}

.admin-grid .card .body {
  text-align: left;
}

.admin-title-left,
.admin-page .card .title {
  text-align: left !important;
}

.admin-text-left,
.admin-page .card .text {
  text-align: left !important;
}

.admin-actions-left {
  justify-content: flex-start;
}

.admin-full-btn {
  width: 100%;
}

.admin-mini-card {
  box-shadow: none;
  background: rgba(0, 0, 0, 0.18);
}

.admin-stat-card .body {
  text-align: center;
}

.admin-stat-card .title,
.admin-stat-card .text {
  text-align: center !important;
}

.admin-message {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
  border: 1px solid transparent;
}

.admin-message-success {
  background: rgba(100, 220, 140, 0.1);
  border-color: rgba(100, 220, 140, 0.22);
  color: #bff6cf;
}

.admin-message-error {
  background: rgba(255, 110, 110, 0.1);
  border-color: rgba(255, 110, 110, 0.22);
  color: #ffb8b8;
}

.admin-users-list {
  display: grid;
  gap: 12px;
  width: 100%;
}

.admin-users-list-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-users-list-item-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  color: var(--accent-2);
}

.admin-users-list-item-main {
  min-width: 0;
}

.admin-users-list-item-name {
  font-weight: 700;
  text-align: left;
}

.admin-users-list-item-meta {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.92rem;
  text-align: left;
}

.admin-users-list-item-actions {
  display: flex;
  justify-content: flex-end;
}

.admin-status {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-status-active {
  background: rgba(100, 220, 140, 0.12);
  color: #bff6cf;
  border: 1px solid rgba(100, 220, 140, 0.22);
}

.admin-status-inactive {
  background: rgba(255, 110, 110, 0.12);
  color: #ffb8b8;
  border: 1px solid rgba(255, 110, 110, 0.22);
}

@media (max-width: 980px) {
  .admin-users-list-item {
    grid-template-columns: 52px 1fr;
  }

  .admin-users-list-item-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

/* =========================
   ÜBER UNS
   ========================= */

.about-page .container {
  max-width: 1200px;
}

.about-hero-card {
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  background: var(--panel-3);
  box-shadow: var(--shadow-2);
}

.about-hero-media {
  position: relative;
  min-height: 420px;
  background: var(--panel-3);
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.12) 35%,
    rgba(0, 0, 0, 0.42) 100%
  );
}

.about-hero-content {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-title {
  margin-top: 18px;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1.02;
  font-weight: 900;
  text-align: left;
}

.about-hero-text {
  margin-top: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  text-align: left;
  max-width: 56ch;
}

.about-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 22px;
}

.about-stat-grid .card .body {
  text-align: center;
}

.about-stat-grid .title,
.about-stat-grid .text {
  text-align: center !important;
}

.about-content-grid .card .body {
  text-align: left;
}

.about-title-left {
  text-align: left !important;
}

.about-text-left {
  text-align: left !important;
  max-width: none;
}

.about-checks {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.about-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  line-height: 1.6;
}

.about-check-item i {
  color: var(--accent-2);
  margin-top: 3px;
}

.about-highlight-box {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  background: rgba(0, 0, 0, 0.16);
}

.about-highlight-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-2);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.about-cta-card .body {
  padding: 28px;
  text-align: center;
}

.about-cta-card .title,
.about-cta-card .text {
  text-align: center !important;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 980px) {
  .about-hero-card {
    grid-template-columns: 1fr;
  }

  .about-hero-media,
  .about-hero-media img {
    min-height: 300px;
  }

  .about-hero-content {
    padding: 24px;
  }

  .about-hero-title,
  .about-hero-text {
    text-align: left;
  }

  .about-hero-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .about-hero-media,
  .about-hero-media img {
    min-height: 240px;
  }

  .about-hero-actions .btn {
    width: 100%;
  }
}
