@import url('https://fonts.cdnfonts.com/css/cooper-hewitt');

:root {
  --bg: #06081a;
  --bg-alt: #090d1f;
  --bg-card: #0d1124;
  --bg-card-2: #111628;
  --red: #e8001c;
  --red-hover: #cc0018;
  --red-glow: rgba(232,0,28,0.18);
  --white: #ffffff;
  --gray: #e2eaf4;
  --gray-mid: #a8b8cc;
  --border: rgba(255,255,255,0.11);
  --border-bright: rgba(255,255,255,0.18);
  --radius: 14px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.45), 0 1px 0 rgba(255,255,255,0.05) inset;
  --shadow-card: 0 1px 0 rgba(255,255,255,0.07) inset, 0 2px 8px rgba(0,0,0,0.5), 0 12px 32px rgba(0,0,0,0.35), 0 32px 64px rgba(0,0,0,0.18);
  --shadow-card-hover: 0 1px 0 rgba(255,255,255,0.09) inset, 0 4px 16px rgba(0,0,0,0.55), 0 20px 48px rgba(0,0,0,0.4), 0 48px 96px rgba(0,0,0,0.22);
  --shadow-red: 0 4px 20px rgba(232,0,28,0.35), 0 1px 4px rgba(232,0,28,0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Cooper Hewitt', 'Barlow', 'Arial', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.68;
  overflow-x: hidden;
  font-weight: 800;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: rgba(8, 12, 24, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.nav.scrolled {
  background: rgba(8, 12, 24, 0.97);
}

.nav-logo {
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin-right: 40px;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  flex: 1;
}

.nav-links a {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  margin-left: auto;
  flex-shrink: 0;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  font-family: inherit;
}

.btn-red {
  background: linear-gradient(160deg, #f0001e 0%, #c50018 100%);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-red:hover {
  background: linear-gradient(160deg, #ff1a30 0%, #d80019 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(232,0,28,0.45), 0 2px 6px rgba(232,0,28,0.4);
}

.btn-outline {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(8, 12, 24, 0.98);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 20px 40px 30px;
  border-bottom: 1px solid var(--border);
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.nav-mobile-menu ul a {
  font-size: 16px;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* cover technique for 16:9 content */
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: none;
}

.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background-image: url('../media/images/hero-poster.jpg');
  background-size: cover;
  background-position: center 40%;
  background-color: #080c18;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 12, 24, 0.85) 0%,
    rgba(8, 12, 24, 0.5) 40%,
    rgba(8, 12, 24, 0.35) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 90px;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(42px, 5.8vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 22px;
  max-width: 62%;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 36px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-avatars {
  display: flex;
}

.hero-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #555 0%, #333 100%);
  border: 2px solid rgba(255,255,255,0.2);
  overflow: hidden;
  margin-right: -10px;
  flex-shrink: 0;
}

.hero-avatar:last-child { margin-right: 0; }

.hero-avatars + .hero-proof-text {
  margin-left: 18px;
}

.hero-proof-text {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-style: normal;
  font-weight: 800;
  max-width: 280px;
  line-height: 1.4;
}

/* ===== WHY SECTION ===== */
.why-section {
  background: var(--bg-alt);
  padding: 100px 80px;
}

.why-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 70px;
}

.why-left h2 {
  font-size: clamp(32px, 4vw, 50px);
  margin-bottom: 20px;
}

.why-left p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.75;
  max-width: 460px;
  font-weight: 800;
}

.why-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--bg-card);
}

.why-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1a1f35 0%, #0d1225 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--border);
}

.why-feature {
  padding: 36px 40px 0;
  border-right: 1px solid var(--border);
}

.why-feature:first-child { padding-left: 0; }
.why-feature:last-child { border-right: none; }

.why-feature h3 {
  font-size: 14px;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  color: var(--white);
}

.why-feature p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 800;
}

/* ===== STATS SECTION ===== */
.stats-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--bg);
}

.stat-card {
  padding: 70px 50px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.stat-card:last-child { border-right: none; }

.stat-card-bg {
  position: absolute;
  inset: 0;
  background-image: url('../media/images/stats-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.stat-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,12,24,0.78);
  z-index: 1;
}

.stat-card-content {
  position: relative;
  z-index: 2;
}

.stat-number {
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.stat-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 800;
}

.stat-card.dark-card {
  background: var(--bg-card);
}

/* ===== STEPS SECTION ===== */
.steps-section {
  background: var(--bg-alt);
  padding: 100px 80px;
}

.steps-header {
  text-align: center;
  margin-bottom: 70px;
}

.steps-header h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.step-row {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 30px;
  align-items: center;
  padding: 36px 40px;
  background: linear-gradient(160deg, #121729 0%, #0d1124 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top-color: rgba(255,255,255,0.14);
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}

.step-row:hover {
  border-color: rgba(232,0,28,0.35);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.step-text h3 {
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.step-text p {
  font-size: 15px;
  color: var(--white);
  line-height: 1.7;
  font-weight: 800;
}

.step-icon-card {
  background: linear-gradient(145deg, #f0001e 0%, #a8001a 60%, #6b000e 100%);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  min-height: 120px;
  box-shadow: var(--shadow-red), inset 0 1px 0 rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.12);
}

.step-icon-card svg {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.step-icon-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: var(--bg);
  padding: 80px 0 0;
}

.gallery-header {
  text-align: center;
  padding: 0 80px;
  margin-bottom: 40px;
}

.gallery-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.gallery-cell {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-cell:hover img { transform: scale(1.04); }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1f35 0%, #0f1220 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.1);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 80px 40px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.footer-logo-img {
  height: 110px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  list-style: none;
}

.footer-nav a {
  font-size: 14px;
  font-weight: 800;
  color: var(--gray);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-copy {
  font-size: 14px;
  color: var(--gray);
  font-weight: 800;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 160px 80px 80px;
  background: var(--bg);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 18px;
}

.page-hero p {
  font-size: 18px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== FAHRZEUG PAGE ===== */
.vehicle-section {
  padding: 100px 80px;
  background: var(--bg);
}

.vehicle-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.vehicle-layout > div:first-child {
  min-width: 0;
  overflow: hidden;
}

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-card);
  aspect-ratio: 4/3;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1f35 0%, #0f1220 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.12);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.carousel-btn:hover { background: rgba(0,0,0,0.8); }
.carousel-btn-prev { left: 14px; }
.carousel-btn-next { right: 14px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
}

.carousel-dot.active {
  background: var(--red);
  transform: scale(1.3);
}

/* Vehicle info */
.vehicle-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
}

.star-label {
  font-size: 13px;
  color: var(--gray);
}

.vehicle-info h1 {
  font-size: clamp(36px, 4vw, 52px);
  margin-bottom: 12px;
}

.vehicle-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  line-height: 1;
}

.vehicle-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 800;
}

.vehicle-spec-line {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 30px;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.vehicle-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.vehicle-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}

.badge svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
}

/* Specs table */
.specs-table {
  width: 100%;
  border-top: 1px solid var(--border);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.spec-label { font-size: 14px; color: var(--gray); font-weight: 800; flex-shrink: 0; }
.spec-value { font-size: 15px; font-weight: 800; color: var(--white); text-align: right; flex: 1; }

/* ===== BOOKING PAGE ===== */
.booking-section {
  padding: 60px 40px 100px;
  background: var(--bg);
}

.booking-form-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(170deg, #121729 0%, #0c1020 100%);
  border-radius: 18px;
  padding: 52px;
  border: 1px solid var(--border);
  border-top-color: rgba(255,255,255,0.16);
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(232,0,28,0.7);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(232,0,28,0.12), inset 0 1px 3px rgba(0,0,0,0.3);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239ca3af' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  background-color: rgba(255,255,255,0.04);
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.btn-full { width: 100%; text-align: center; padding: 16px; font-size: 15px; }

.booking-phone-note {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--gray);
}

.booking-phone-note strong { color: var(--white); }

/* ===== EVENTS PAGE ===== */
.events-section {
  padding: 80px;
  background: var(--bg);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 80px;
}

.event-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}

.event-card:hover {
  border-color: rgba(193,39,45,0.3);
  transform: translateY(-3px);
}

.event-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: linear-gradient(135deg, #1a1f35 0%, #0f1220 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.1);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-card-body {
  padding: 28px;
}

.event-card-body h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.event-card-body p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ===== ABOUT PAGE ===== */
.about-section {
  padding: 80px;
  background: var(--bg);
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.about-story h2 { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 20px; }
.about-story p { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 14px; }

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1a1f35 0%, #0f1220 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.1);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.team-section {
  padding: 60px 80px;
  background: var(--bg-alt);
}

.team-section h2 { font-size: 36px; text-align: center; margin-bottom: 50px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #2a2f45 0%, #1a1f35 100%);
  overflow: hidden;
  border: 3px solid var(--border);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 { font-size: 16px; margin-bottom: 6px; }
.team-card p { font-size: 13px; color: var(--gray); }

.values-section {
  padding: 80px;
  background: var(--bg);
}

.values-section h2 { font-size: 36px; text-align: center; margin-bottom: 50px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  padding: 34px;
  background: linear-gradient(160deg, #121729 0%, #0d1124 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top-color: rgba(255,255,255,0.14);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, rgba(232,0,28,0.28) 0%, rgba(160,0,18,0.14) 100%);
  border-radius: 13px;
  border: 1px solid rgba(232,0,28,0.3);
  box-shadow: 0 2px 10px rgba(232,0,28,0.18), inset 0 1px 0 rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-icon svg {
  width: 24px;
  height: 24px;
  color: #ff3347;
  filter: drop-shadow(0 1px 4px rgba(232,0,28,0.5));
}

.value-card h3 { font-size: 15px; margin-bottom: 10px; font-weight: 800; }
.value-card p { font-size: 14px; color: var(--gray); line-height: 1.65; font-weight: 800; }

/* ===== PREISE PAGE ===== */
.preise-section {
  padding: 80px;
  background: var(--bg);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.pricing-card:hover {
  border-color: rgba(193,39,45,0.3);
  transform: translateY(-3px);
}

.pricing-card.featured {
  border-color: var(--red);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-plan-name {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 52px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-unit {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 24px;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.pricing-features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 800;
  flex-shrink: 0;
}

.pricing-includes {
  max-width: 700px;
  margin: 0 auto 60px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 40px;
}

.pricing-includes h2 {
  font-size: 28px;
  margin-bottom: 24px;
  text-align: center;
}

.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.includes-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.includes-item::before {
  content: '●';
  color: var(--red);
  font-size: 8px;
  flex-shrink: 0;
}

/* ===== KONTAKT PAGE ===== */
.kontakt-section {
  padding: 80px;
  background: var(--bg);
}

.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.kontakt-info h2 { font-size: 32px; margin-bottom: 20px; }
.kontakt-info p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 32px; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: linear-gradient(160deg, #121729 0%, #0d1124 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top-color: rgba(255,255,255,0.14);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, rgba(232,0,28,0.28) 0%, rgba(160,0,18,0.16) 100%);
  border-radius: 12px;
  border: 1px solid rgba(232,0,28,0.32);
  box-shadow: 0 2px 10px rgba(232,0,28,0.18), inset 0 1px 0 rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  color: #ff3347;
  filter: drop-shadow(0 1px 4px rgba(232,0,28,0.5));
}

.contact-item-text strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 4px;
  font-weight: 800;
}

.contact-item-text span {
  font-size: 15px;
  color: var(--white);
  font-weight: 800;
}

.map-placeholder {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1a1f35 0%, #0f1220 100%);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.map-placeholder svg { width: 32px; height: 32px; opacity: 0.3; }

.kontakt-form {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
}

.kontakt-form h2 { font-size: 26px; margin-bottom: 28px; }

/* ===== IMPRESSUM ===== */
.impressum-section {
  padding: 120px 80px 80px;
  background: var(--bg);
  max-width: 860px;
  margin: 0 auto;
}

.impressum-section h1 {
  font-size: 48px;
  margin-bottom: 50px;
}

.impressum-block {
  margin-bottom: 40px;
}

.impressum-block h2 {
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  color: var(--white);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.impressum-block p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 8px;
}

.impressum-block a { color: var(--red); text-decoration: underline; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--bg-alt);
  padding: 80px;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 36px;
}

/* ===== FADE IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav { padding: 0 24px; }
  .hero-content { padding: 0 40px 70px; }
  .hero-title { max-width: 80%; }
  .why-section { padding: 70px 40px; }
  .why-top { gap: 40px; }
  .steps-section { padding: 70px 40px; }
  .gallery-header { padding: 0 40px; }
  .vehicle-section { padding: 80px 40px; }
  .vehicle-layout { gap: 50px; }
  .booking-section { padding: 40px 30px 80px; }
  .booking-form-wrap { padding: 36px; }
  .events-section { padding: 60px 40px; }
  .about-section { padding: 60px 40px; }
  .about-story { gap: 50px; }
  .team-section { padding: 60px 40px; }
  .values-section { padding: 60px 40px; }
  .preise-section { padding: 60px 40px; }
  .kontakt-section { padding: 60px 40px; }
  .cta-section { padding: 60px 40px; }
  footer { padding: 50px 40px 30px; }
  .impressum-section { padding: 100px 40px 60px; }
}

/* ===== ANLAESSE PAGE ===== */
.anlaesse-section {
  background: var(--bg);
  padding-top: 70px;
}

.anlaesse-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.anlass-card {
  background: var(--bg-alt);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.anlass-card:last-child { border-right: none; }

.anlass-card--red {
  background: linear-gradient(160deg, #e8001c 0%, #a80015 60%, #6b000e 100%);
  border-right: none;
}

.anlass-card-inner {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 500px;
}

.anlass-number {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}

.anlass-card--red .anlass-number { color: rgba(255,255,255,0.8); }

.anlass-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.1;
}

.anlass-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  flex: 1;
  font-weight: 800;
}

.anlass-card--red .anlass-desc { color: rgba(255,255,255,0.92); }

.anlass-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.anlass-bottom p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0;
  font-weight: 800;
}

.anlass-card--red .anlass-bottom p { color: rgba(255,255,255,0.8); }

.anlaesse-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.anlaesse-img-cell {
  height: 440px;
  overflow: hidden;
  position: relative;
}

.anlaesse-img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.anlaesse-img-cell:first-child img {
  object-position: center 20%;
}

.weitere-anlaesse {
  background: var(--bg-alt);
  padding: 80px;
}

.weitere-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.weitere-card {
  background: linear-gradient(160deg, #121729 0%, #0d1124 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top-color: rgba(255,255,255,0.14);
  padding: 38px 32px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}

.weitere-card:hover {
  border-color: rgba(232,0,28,0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.weitere-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  margin-top: 10px;
  font-weight: 800;
}

.weitere-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.68;
  font-weight: 800;
}

/* ===== ÜBER UNS PAGE ===== */
.ueber-uns-section {
  background: var(--bg);
  padding-top: 70px;
}

.ueber-uns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 80vh;
}

.ueber-col {
  padding: 80px 48px;
  border-right: 1px solid var(--border);
}

.ueber-col:last-child { border-right: none; }

.ueber-col--text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
}

.ueber-headline {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-top: 16px;
}

.ueber-claim {
  margin-top: auto;
}

.ueber-claim-title {
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 10px;
}

.ueber-claim-sub {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}

.ueber-claim-body {
  font-size: 14px;
  color: var(--gray);
}

.ueber-col--media {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 80px 32px;
}

.ueber-img-top {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
}

.ueber-img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ueber-red-card {
  background: linear-gradient(145deg, #f0001e 0%, #b0001a 55%, #6b000e 100%);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-red), inset 0 1px 0 rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.1);
}

.ueber-red-number {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 6px;
}

.ueber-red-sub {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
}

.ueber-red-body {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  font-weight: 800;
}

.ueber-col--story {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 80px 32px 80px 48px;
}

.ueber-story-title {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  margin-bottom: 6px;
}

.ueber-story-text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  font-weight: 800;
}

.ueber-img-bottom {
  border-radius: var(--radius);
  overflow: hidden;
  flex: 1;
  min-height: 200px;
  margin-top: auto;
}

.ueber-img-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--bg-alt);
  padding: 100px 80px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: linear-gradient(160deg, #121729 0%, #0d1124 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top-color: rgba(255,255,255,0.14);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}

.testimonial-card:hover {
  border-color: rgba(232,0,28,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.testimonial-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, #f0001e 0%, #a8001a 100%);
  border-radius: 13px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-red), inset 0 1px 0 rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}

.testimonial-quote {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.78;
  flex: 1;
  font-style: normal;
  font-weight: 800;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #2a2f45 0%, #1a1f35 100%);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-placeholder-round {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: rgba(255,255,255,0.3);
  background: linear-gradient(135deg, #1e2440 0%, #111827 100%);
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--gray);
}

/* ===== PRICING NEW (matches screenshot) ===== */
.preise-section-new {
  background: var(--bg);
  padding: 120px 80px 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.preise-header {
  margin-bottom: 60px;
}

.preise-header h1 {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 800;
  max-width: 800px;
  margin-bottom: 14px;
  line-height: 1.08;
}

.preise-header p {
  font-size: 16px;
  color: var(--gray);
}

.pricing-cards-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-bright);
  margin-bottom: 60px;
  box-shadow: var(--shadow-card);
}

.pricing-card-new {
  background: linear-gradient(170deg, #111628 0%, #0c1020 100%);
  padding: 52px 40px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0; /* verhindert Overflow, wenn Spalten schmaler als min-content werden */
}

.pricing-card-new:last-child { border-right: none; }

.pricing-card-new--featured {
  background: linear-gradient(160deg, #f0001e 0%, #a8001a 45%, #5a0010 80%, #2e0008 100%);
  border-right: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), inset -1px 0 0 rgba(255,255,255,0.08);
}

.pricing-plan-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}

.pricing-card-new--featured .pricing-plan-label { color: rgba(255,255,255,0.75); }

.pricing-price-new {
  font-size: 60px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.pricing-price-new span {
  font-size: 20px;
  font-weight: 800;
  color: rgba(255,255,255,0.75);
}

.pricing-tagline {
  font-size: 14px;
  color: var(--gray);
  margin-top: 8px;
  font-weight: 800;
}

.pricing-card-new--featured .pricing-tagline { color: rgba(255,255,255,0.8); }

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  font-weight: 800;
  min-width: 0;
  overflow-wrap: break-word;
}

.pricing-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--white);
  background: rgba(255,255,255,0.14);
  border-radius: 50%;
  padding: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.pricing-card-new--featured .pricing-list svg {
  background: rgba(255,255,255,0.25);
  box-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

.pricing-notes {
  background: linear-gradient(160deg, #121729 0%, #0d1124 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top-color: rgba(255,255,255,0.15);
  padding: 44px;
  box-shadow: var(--shadow-card);
  margin-top: 0;
}

.pricing-notes h3 {
  font-size: 16px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.pricing-notes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-notes li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--gray);
}

.pricing-notes li span { color: var(--red); flex-shrink: 0; }

/* ===== TECH SECTION (Fahrzeug) ===== */
.tech-section {
  background: var(--bg-alt);
  padding: 100px 80px;
}

.tech-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.tech-left h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  margin-bottom: 28px;
  max-width: 380px;
}

.tech-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.tech-bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  font-weight: 800;
}

.tech-bullets li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
}

/* ===== ACCORDION ===== */
.accordion {
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.2s;
}

.accordion-header:hover { color: rgba(255,255,255,0.7); }

.accordion-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gray);
  transition: transform 0.3s ease;
}

.accordion-item.open .accordion-icon { transform: rotate(45deg); color: var(--red); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}

.accordion-body-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  font-weight: 800;
}

/* ===== RED CTA BLOCK ===== */
.red-cta-block {
  background: var(--bg);
  padding: 60px 80px;
}

.red-cta-inner {
  background: linear-gradient(145deg, #f0001e 0%, #b0001a 50%, #6b000e 100%);
  border-radius: 22px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 8px 48px rgba(232,0,28,0.35), 0 2px 8px rgba(232,0,28,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.1);
}

.red-cta-white-card {
  background: rgba(255,255,255,0.97);
  border-radius: 16px;
  padding: 48px 44px;
  color: #080c18;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 2px 8px rgba(0,0,0,0.15);
}

.red-cta-white-card h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: #080c18;
  margin-bottom: 16px;
  line-height: 1.1;
}

.red-cta-white-card p {
  font-size: 15px;
  color: #374151;
  line-height: 1.68;
  margin-bottom: 32px;
  font-weight: 800;
}

.red-cta-white-card .btn-red {
  background: var(--red);
  color: var(--white);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--bg);
  padding: 100px 80px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-left h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 20px;
}

.faq-left p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 800;
}

/* ===== SHARED IMAGE PLACEHOLDER ===== */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, #1a1f35 0%, #0f1220 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.1);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1200px) {
  .ueber-uns-grid { grid-template-columns: 1fr 1fr; }
  .ueber-col--story { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .pricing-cards-new { grid-template-columns: 1fr; border-radius: 12px; }
  .pricing-card-new { border-right: none; border-bottom: 1px solid var(--border); }
  .pricing-card-new:last-child { border-bottom: none; }
  .pricing-card-new--featured { border-right: none; }
}

@media (max-width: 1024px) {
  .anlaesse-cards { grid-template-columns: 1fr; }
  .anlass-card { border-right: none; border-bottom: 1px solid var(--border); }
  .anlass-card--red { border-bottom: none; }
  .anlass-card-inner { min-height: auto; }
  .ueber-uns-grid { grid-template-columns: 1fr; }
  .ueber-col--story { display: flex; }
  .ueber-col { border-right: none; border-bottom: 1px solid var(--border); padding: 60px 40px; }
  .weitere-anlaesse { padding: 60px 40px; }
  .tech-layout { grid-template-columns: 1fr; gap: 40px; }
  .tech-section { padding: 70px 40px; }
  .red-cta-block { padding: 40px 40px; }
  .red-cta-inner { grid-template-columns: 1fr; }
  .faq-section { padding: 70px 40px; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-section { padding: 70px 40px; }
  .preise-section-new { padding: 100px 40px 60px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 0 24px 60px; }
  .hero-title { max-width: 100%; font-size: 34px; }
  .hero-sub { font-size: 15px; }

  .why-section { padding: 60px 24px; }
  .why-top { grid-template-columns: 1fr; gap: 30px; }
  .why-features { grid-template-columns: 1fr; }
  .why-feature {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
  }
  .why-feature:first-child { padding-top: 24px; }
  .why-feature:last-child { border-bottom: none; }

  .stats-section { grid-template-columns: 1fr; }
  .stat-card { border-right: none; border-bottom: 1px solid var(--border); padding: 50px 24px; }
  .stat-card:last-child { border-bottom: none; }
  .stat-number { font-size: 60px; }

  .steps-section { padding: 60px 24px; }
  .step-row { grid-template-columns: 1fr; }
  .step-icon-card { min-height: auto; flex-direction: row; justify-content: flex-start; padding: 18px; }

  .gallery-header { padding: 0 24px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-cell { aspect-ratio: 16/9; }

  .vehicle-section { padding: 60px 24px; }
  .vehicle-layout { grid-template-columns: 1fr; gap: 40px; }
  .vehicle-price { font-size: 38px; }

  .booking-section { padding: 30px 16px 60px; }
  .booking-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .events-section { padding: 50px 24px; }
  .events-grid { grid-template-columns: 1fr; }

  .about-section { padding: 50px 24px; }
  .about-story { grid-template-columns: 1fr; gap: 30px; }
  .team-section { padding: 50px 24px; }
  .values-section { padding: 50px 24px; }
  .values-grid { grid-template-columns: 1fr; }

  .preise-section { padding: 50px 24px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }

  .kontakt-section { padding: 50px 24px; }
  .kontakt-layout { grid-template-columns: 1fr; }

  .cta-section { padding: 60px 24px; }

  footer { padding: 40px 24px 30px; }
  .footer-nav { gap: 16px; }

  .impressum-section { padding: 100px 24px 60px; }

  .page-hero { padding: 120px 24px 60px; }

  /* Anlässe */
  .anlaesse-section { padding: 0; padding-top: 72px; }
  .anlaesse-cards { grid-template-columns: 1fr; }
  .anlass-card { border-right: none; border-bottom: 1px solid var(--border); }
  .anlass-card--red { border-bottom: none; }
  .anlass-card-inner { min-height: 280px; padding: 40px 24px; }
  .anlaesse-images { grid-template-columns: 1fr; }
  .anlaesse-images > div { aspect-ratio: 4/3; height: auto; }
  .anlaesse-img-cell img { object-position: center top; }
  .weitere-anlaesse { padding: 50px 24px; }
  .weitere-grid { grid-template-columns: 1fr; }
  .weitere-card { padding: 28px 20px; }

  /* Über uns */
  .ueber-uns-section { padding: 0; }
  .ueber-uns-grid { grid-template-columns: 1fr; }
  .ueber-col { padding: 48px 24px; border-right: none; border-bottom: 1px solid var(--border); }
  .ueber-col:last-child { border-bottom: none; }
  .ueber-col--story { display: flex; }
  .ueber-red-card { padding: 28px 20px; }
  .testimonials-section { padding: 60px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 28px 20px; }

  /* Tech section */
  .tech-section { padding: 60px 24px; }
  .tech-layout { grid-template-columns: 1fr; gap: 30px; }

  /* Preise new */
  .preise-section-new { padding: 80px 24px 50px; }
  .preise-header h1 { font-size: clamp(26px, 8vw, 40px); }
  .pricing-cards-new { grid-template-columns: 1fr; border-radius: 12px; }
  .pricing-card-new { padding: 32px 20px; border-right: none; border-bottom: 1px solid var(--border); }
  .pricing-card-new:last-child { border-bottom: none; }
  .pricing-card-new--featured { border-right: none; }
  .pricing-notes { padding: 32px 24px; margin: 24px 0 0; }

  /* Red CTA */
  .red-cta-block { padding: 48px 24px; }
  .red-cta-inner { grid-template-columns: 1fr; gap: 28px; }

  /* FAQ */
  .faq-section { padding: 60px 24px; }
  .faq-layout { grid-template-columns: 1fr; gap: 24px; }
  .accordion-item { padding: 0 20px; }
  .accordion-header { padding: 18px 0; font-size: 15px; }
  .accordion-body p { font-size: 14px; }

  /* Kontakt */
  .kontakt-section { padding: 40px 24px; }
  .kontakt-layout { grid-template-columns: 1fr; gap: 40px; }
  .kontakt-form { padding: 28px 20px; }
  .map-placeholder { height: 180px; }
}

/* ===== DELIVERY BANNER ===== */
.delivery-banner {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  margin-top: 70px; /* clear fixed nav */
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 999;
}
.delivery-banner svg { flex-shrink: 0; opacity: 0.9; }
.delivery-banner-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.delivery-banner-link:hover { opacity: 1; }

/* ===== BOOKING WIZARD ===== */
.wizard-section {
  min-height: 100vh;
  padding: 100px 40px 80px;
  max-width: 1180px;
  margin: 0 auto;
}

/* ── Stepper ── */
.wizard-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 52px;
  flex-wrap: nowrap;
}
.wstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: default;
  min-width: 80px;
}
.wstep-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--gray-mid);
  background: var(--bg-card);
  transition: all 0.25s;
  position: relative;
  z-index: 1;
}
.wstep-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  transition: color 0.25s;
  white-space: nowrap;
}
.wstep-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  min-width: 32px;
  max-width: 80px;
  margin-bottom: 22px;
  transition: background 0.25s;
}
.wstep--active .wstep-circle {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.wstep--active .wstep-label { color: var(--white); }
.wstep--done .wstep-circle {
  background: rgba(232,0,28,0.12);
  border-color: var(--red);
  color: var(--red);
}
.wstep--done + .wstep-line { background: var(--red); }
.wstep--done .wstep-label { color: var(--red); }

/* ── Layout ── */
.wizard-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}
.wizard-form-col {}
.wizard-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Step panels ── */
.wstep-panel {
  display: none;
}
.wstep-panel--active {
  display: block;
}
.wizard-step-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.wizard-step-sub {
  font-size: 14px;
  color: var(--gray-mid);
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.6;
}

/* ── Wizard Card (Step 1) ── */
.wizard-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px 24px;
}
.wizard-card-hdr {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.wizard-card-hdr svg { color: var(--red); flex-shrink: 0; }
.wizard-card-hdr span {
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}
.wizard-section-sub {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 12px;
}
.wizard-nav-step1 {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

/* ── Duration buttons ── */
.duration-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.duration-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bg-card-2);
  border: 2px solid var(--border);
  color: var(--gray-mid);
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 20px 8px;
  min-height: 80px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.22s;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}
.duration-btn .dur-icon { transition: color 0.2s; color: var(--gray-mid); }
.duration-btn:hover {
  border-color: var(--border-bright);
  color: var(--white);
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.duration-btn:hover .dur-icon { color: var(--white); }
.duration-btn--active {
  background: rgba(232,0,28,0.10);
  border-color: var(--red);
  border-width: 2px;
  color: var(--white);
  box-shadow: 0 0 0 1px rgba(232,0,28,0.25), 0 4px 20px rgba(232,0,28,0.18);
}
.duration-btn--active .dur-icon { color: var(--red); }
.dur-price-sub {
  display: block;
  font-size: 10px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
}
.duration-btn--active .dur-price-sub { color: rgba(255,255,255,0.65); }

/* ── Sidebar placeholder ── */
.ps-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 24px 12px;
  text-align: center;
  font-size: 13px;
  color: var(--gray-mid);
  font-weight: 400;
  line-height: 1.5;
}

/* ── Date blocks ── */
.date-block {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 24px 20px;
  margin-bottom: 28px;
}
.date-block .form-group label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 8px;
  display: block;
}
.days-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--red);
  font-weight: 800;
  margin-top: 14px;
  letter-spacing: 0.04em;
}
.anfrage-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(232,0,28,0.08);
  border: 1px solid rgba(232,0,28,0.2);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--gray);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.6;
}
.anfrage-note svg { flex-shrink: 0; color: var(--red); margin-top: 1px; }

/* ── Addon cards ── */
.addons-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.addon-card {
  display: block;
  cursor: pointer;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  transition: all 0.2s;
  overflow: hidden;
}
.addon-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.addon-card:hover {
  border-color: var(--border-bright);
  background: var(--bg-card-2);
}
.addon-card--checked {
  border-color: var(--red);
  background: rgba(232,0,28,0.06);
}
.addon-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
}
.addon-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid var(--border-bright);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: all 0.2s;
}
.addon-check svg { opacity: 0; transition: opacity 0.15s; }
.addon-card--checked .addon-check {
  background: var(--red);
  border-color: var(--red);
}
.addon-card--checked .addon-check svg { opacity: 1; }
.addon-icon-wrap {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}
.addon-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.addon-info strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.addon-info span {
  font-size: 12px;
  color: var(--gray-mid);
  font-weight: 400;
  line-height: 1.5;
}
.addon-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.addon-card--checked .addon-price { color: var(--red); }

/* ── Wizard nav ── */
.wizard-nav {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.wizard-nav .btn { flex: 1; min-width: 160px; text-align: center; padding: 15px 20px; font-size: 14px; }

/* ── Mollie notice ── */
.mollie-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--gray-mid);
  font-weight: 400;
  margin: 20px 0 0;
  line-height: 1.5;
}
.mollie-notice svg { flex-shrink: 0; color: var(--gray-mid); }
.mollie-notice strong { color: var(--white); }

/* ── Upload areas ── */
.upload-area {
  border: 2px dashed var(--border-bright);
  border-radius: 14px;
  background: var(--bg-card);
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.upload-area:hover {
  border-color: var(--red);
  background: rgba(232,0,28,0.04);
}
.upload-area--drag {
  border-color: var(--red);
  background: rgba(232,0,28,0.08);
  transform: scale(1.01);
}
.upload-area--done {
  border-color: #22c55e;
  border-style: solid;
  background: rgba(34,197,94,0.05);
}
.upload-area-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 36px 24px 28px;
  text-align: center;
  pointer-events: none;
}
.upload-icon-big {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 4px;
}
.upload-area-inner strong {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}
.upload-area-inner span {
  font-size: 12px;
  color: var(--gray-mid);
  font-weight: 400;
}
.upload-btn {
  margin-top: 12px;
  background: var(--bg-card-2);
  border: 1px solid var(--border-bright);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 6px;
  transition: all 0.2s;
}
.upload-area:hover .upload-btn {
  background: var(--red);
  border-color: var(--red);
}
.upload-status {
  margin-top: 8px;
  font-size: 12px;
  color: #22c55e;
  font-weight: 800;
}
.id-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--gray-mid);
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 28px;
}
.id-disclaimer svg { flex-shrink: 0; margin-top: 1px; }

/* ── Price summary card ── */
.price-summary-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(232,0,28,0.07);
}
.ps-header {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ps-header::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.ps-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-mid);
  font-weight: 400;
  padding: 6px 0;
}
.ps-row span:last-child {
  font-weight: 800;
  color: var(--white);
  text-align: right;
}
.ps-duration-label {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
  margin-bottom: 10px;
}
.ps-duration-label span { color: var(--white); }
.ps-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}
.ps-total {
  font-size: 15px !important;
  font-weight: 800;
  padding: 10px 0;
  background: rgba(232,0,28,0.07);
  border-radius: 10px;
  padding: 12px 14px !important;
  margin: 4px -2px;
}
.ps-total span:first-child { color: var(--gray) !important; font-size: 13px !important; font-weight: 400 !important; }
.ps-total span:last-child { font-size: 22px !important; color: var(--red) !important; font-weight: 800 !important; }
.ps-kaution {
  font-size: 12px;
  color: var(--gray-mid);
  padding: 4px 0;
}
.ps-small {
  font-size: 13px;
  color: var(--gray-mid);
  padding: 4px 0;
}
.ps-small span:last-child { color: var(--white) !important; font-weight: 800; }
.ps-discount-row {
  display: flex;
  gap: 8px;
  margin: 12px 0 4px;
}
.ps-discount-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 9px 12px;
  color: var(--white);
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  outline: none;
  transition: border-color 0.2s;
}
.ps-discount-input:focus { border-color: var(--border-bright); }
.ps-discount-input::placeholder { color: var(--gray-mid); text-transform: none; }
.ps-discount-btn {
  background: var(--bg-card-2);
  border: 1px solid var(--border-bright);
  color: var(--white);
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.ps-discount-btn:hover { background: var(--red); border-color: var(--red); }

/* ── Sidebar car card ── */
.sidebar-car-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.scc-img-wrap {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.scc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.scc-info {
  padding: 18px 20px 20px;
}
.scc-info strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
  color: var(--white);
}
.scc-specs {
  display: flex;
  align-items: center;
  gap: 0;
}
.scc-spec {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}
.scc-spec-val {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}
.scc-spec-lbl {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.scc-spec-divider {
  width: 1px;
  height: 30px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── km-Paket Radio ── */
.addon-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.addon-check--radio {
  border-radius: 50%;
}
.addon-card--checked .addon-check--radio {
  background: var(--red);
  border-color: var(--red);
}

/* ── Preise Info-Gruppe (Kilometerpakete + Hinweise als eine Card) ── */
.pricing-info-group {
  margin-top: 24px;
  background: linear-gradient(160deg, #121729 0%, #0d1124 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top-color: rgba(255,255,255,0.15);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.pricing-info-block {
  padding: 44px;
}

.pricing-info-divider {
  height: 1px;
  background: var(--border);
  margin: 0 44px;
}

.pricing-notes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.pricing-notes-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  line-height: 1.6;
}
.ni { flex: 1; }

.pricing-notes-list li > span {
  color: var(--red);
  flex-shrink: 0;
  font-weight: 800;
}
.pricing-notes-list li .nv {
  color: rgba(255,255,255,0.92);
  font-weight: 600;
}

/* ── Kilometerpakete (Preisseite) ── */
.km-pakete-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.km-paket-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s;
}
.km-paket-card:hover { border-color: var(--red); }
.km-paket-km {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 8px;
}
.km-paket-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 4px;
}
.km-paket-statt {
  font-size: 12px;
  color: var(--gray-mid);
  font-weight: 400;
  text-decoration: line-through;
  text-decoration-color: var(--gray-mid);
}

@media (max-width: 600px) {
  .km-pakete-grid { grid-template-columns: 1fr; }
  .pricing-cards-new[style*="repeat(4"] { grid-template-columns: 1fr !important; }
  .pricing-cards-new[style*="repeat(2"] { grid-template-columns: 1fr !important; } /* Stundenpakete */
  .pricing-info-block { padding: 28px 20px; }
  .pricing-info-divider { margin: 0 20px; }
}
@media (min-width: 601px) and (max-width: 900px) {
  .pricing-cards-new[style*="repeat(4"] { grid-template-columns: repeat(2,1fr) !important; }
  .pricing-info-block { padding: 36px 28px; }
  .pricing-info-divider { margin: 0 28px; }
}

/* ===== CUSTOM CALENDAR ===== */
.cal-trigger-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  color: var(--gray-mid);
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
  min-height: 54px;
}
.cal-trigger-btn:hover { border-color: var(--border-bright); color: var(--white); background: rgba(255,255,255,0.03); }
.cal-trigger-btn svg { flex-shrink: 0; color: var(--red); width: 18px; height: 18px; }
.cal-trigger-btn--set { color: var(--white); border-color: rgba(255,255,255,0.28); }
.cal-trigger-btn--set:hover { border-color: var(--red); }
.cal-trigger-btn--auto { opacity: 0.5; cursor: default; }
.cal-trigger-btn--auto.cal-trigger-btn--set { opacity: 1; }

/* Overlay */
.cal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 2000;
  backdrop-filter: blur(2px);
}

/* Popup – slides up from bottom on mobile, centered on desktop */
.cal-popup {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(440px, 100vw);
  background: #0f1120;
  border-radius: 20px 20px 0 0;
  z-index: 2001;
  overflow: hidden;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.7);
  flex-direction: column;
}
@media (min-width: 640px) {
  .cal-popup {
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 18px;
    box-shadow: 0 8px 60px rgba(0,0,0,0.8);
  }
}

/* Header */
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px 14px;
}
.cal-title {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}
.cal-nav-btn {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  color: var(--white);
  cursor: pointer;
  border-radius: 9px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cal-nav-btn:hover { background: rgba(255,255,255,0.14); }

/* Weekday labels */
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 0 14px 6px;
}
.cal-weekdays span {
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  padding: 4px 0;
}

/* Grid */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 0 10px 14px;
  gap: 3px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  transition: background 0.15s;
  user-select: none;
}
.cal-day:not(.cal-day--off):hover { background: rgba(232,0,28,0.2); }
.cal-day--off {
  color: rgba(255,255,255,0.18);
  cursor: default;
  pointer-events: none;
}
.cal-day--today { outline: 1.5px solid var(--red); outline-offset: -2px; }
.cal-day--sel {
  background: var(--red) !important;
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 2px 14px rgba(232,0,28,0.45);
}

/* Confirm button */
.cal-confirm-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--red);
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 20px;
  cursor: pointer;
  transition: background 0.2s;
}
.cal-confirm-btn:hover { background: var(--red-hover); }

/* ── Logo responsive ── */
@media (max-width: 600px) {
  .nav-logo-img { height: 44px; }
  .footer-logo-img { height: 90px; }
}

/* ── Wizard mobile ── */
@media (max-width: 900px) {
  .wizard-section { padding: 90px 20px 60px; }
  .wizard-layout { grid-template-columns: 1fr; }
  .wizard-sidebar { position: static; }
  .wizard-stepper { gap: 0; overflow-x: auto; padding-bottom: 4px; justify-content: flex-start; }
  .wstep { min-width: 60px; }
  .wstep-label { display: none; }
  .wstep-line { min-width: 20px; }
  .wizard-nav .btn { min-width: 120px; font-size: 13px; padding: 13px 16px; }
  .duration-group { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .duration-btn { padding: 16px 8px; font-size: 11px; min-height: 72px; }
  .duration-group > .duration-btn:last-child:nth-child(odd) { grid-column: span 2; }
  .wizard-card { padding: 20px 16px; }
  .wizard-nav-step1 { justify-content: stretch; }
  .wizard-nav-step1 .btn { width: 100%; text-align: center; }
}

@media (max-width: 600px) {
  .delivery-banner { font-size: 11px; flex-wrap: wrap; gap: 6px; }
  .wstep-circle { width: 30px; height: 30px; font-size: 12px; }
  .wizard-step-title { font-size: 20px; }
  .addon-inner { padding: 14px 14px; gap: 10px; }
  .addon-icon-wrap { font-size: 20px; }
  .price-summary-card { padding: 22px 18px; }
  .duration-group { grid-template-columns: repeat(2, 1fr); }
  .ps-total span:last-child { font-size: 20px !important; }
  .sidebar-car-card .scc-img-wrap { height: 140px; }
}

/* ── Langzeitmiete mobile ── */
.langzeit-section { padding: 80px 80px 40px; }
.langzeit-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

@media (max-width: 768px) {
  .langzeit-section { padding: 48px 20px 40px; }
  .langzeit-cards { grid-template-columns: 1fr; gap: 20px; }
  .pricing-info-block { overflow: hidden; }
  .pricing-notes-list li { word-break: break-word; overflow-wrap: anywhere; }
  .ni strong { display: block; margin-bottom: 2px; }
  .ni .nv { display: block; }
  .ueber-img-bottom { min-height: 260px; }
  .anlaesse-img-cell img { object-position: center center; }
}

/* ── Buchen: Paketkacheln (nur buchen.html) ── */
.buchen-preise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.bp-tile {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
}
.bp-tile--red { background: var(--red); border-color: var(--red); }

.bp-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 10px;
  overflow-wrap: break-word;
  hyphens: auto;
}
.bp-tile--red .bp-label { color: rgba(255,255,255,0.75); }

.bp-price {
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-top: auto;
}
.bp-tile--red .bp-price { color: #fff; }

.bp-meta {
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
  overflow-wrap: break-word;
}
.bp-tile--red .bp-meta { color: rgba(255,255,255,0.75); }

@media (max-width: 768px) {
  .buchen-preise-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bp-tile { padding: 18px 12px; }
}