/* MK-Airless Clean Tech Look */
@import url("cookie-consent.css");

:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-muted: #f5f5f7;
  --surface-soft: #fafafa;
  --bg-elevated: #fffbf2;
  --accent: #ffb400;
  --accent-soft: rgba(255, 180, 0, 0.18);
  --neutral-ink: #2c2c2e;
  --neutral-mid: #5a5a5f;
  --neutral-wash: #fffbf0;
  --text: #1d1d1f;
  --text-muted: #6e6e73;
  --border-soft: rgba(0, 0, 0, 0.1);
  --container-width: 1200px;
  --radius-card: 12px;
  --shadow-card: 0 8px 28px rgba(0, 0, 0, 0.07);
  --transition-fast: 160ms ease-out;
  --transition-med: 220ms ease-out;
  --header-height: 56px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  transition: background-color 0.25s ease, color 0.25s ease;
}

img,
video {
  max-width: 100%;
  height: auto;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 2px solid var(--accent-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
  min-height: var(--header-height);
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.logo-sub {
  font-size: 11px;
  color: var(--text-muted);
}

/* Hauptnavigation mit Dropdown */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  flex-shrink: 0;
  z-index: 60;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 8px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--neutral-ink);
}

.nav-dropdown {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 268px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--transition-med), transform var(--transition-med), visibility var(--transition-med);
  z-index: 60;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
}

.nav-dropdown a:hover {
  background: var(--accent-soft);
  color: var(--neutral-ink);
}

/* Zielmarken für Nav-Anker (optional sichtbarer Platzhalter) */
.nav-anchor-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 12px;
  padding: 10px 12px;
  background: var(--accent-soft);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.dept-nav-slot {
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.dept-nav-slot + .dept-nav-slot {
  margin-top: 24px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 45;
  opacity: 0;
  transition: opacity var(--transition-med);
  pointer-events: none;
}

.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 960px) {
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-toggle {
    display: flex;
    order: 3;
    margin-left: 4px;
  }

  .nav-backdrop {
    display: block;
    z-index: 190;
  }

  .header-inner {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .logo {
    min-width: 0;
    flex: 1 1 auto;
    order: 1;
  }

  .header-actions {
    order: 2;
    margin-left: auto;
    gap: 6px;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(300px, 90vw);
    height: auto;
    max-height: none;
    margin: 0;
    padding:
      calc(var(--header-height) + 12px + env(safe-area-inset-top, 0px))
      calc(16px + env(safe-area-inset-right, 0px))
      calc(24px + env(safe-area-inset-bottom, 0px))
      16px;
    background: var(--surface);
    border-left: 2px solid var(--accent-soft);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition-med);
    z-index: 200;
  }

  .site-nav.site-nav--portaled {
    z-index: 200;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-item {
    border-bottom: 1px solid var(--border-soft);
  }

  .nav-link {
    padding: 12px 8px;
  }

  .nav-item--dropdown .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 8px 8px;
    background: transparent;
  }

  .nav-dropdown a {
    padding: 8px 8px;
    font-size: 13px;
    color: var(--text-muted);
  }

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

  .nav-link,
  .nav-dropdown a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 24px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition-med), color var(--transition-med),
              transform var(--transition-fast), box-shadow var(--transition-med),
              border-color var(--transition-med);
}

.btn-small {
  padding: 8px 16px;
  font-size: 11px;
}

.btn-large {
  padding: 13px 30px;
  font-size: 13px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 180, 0, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 60px rgba(255, 180, 0, 0.6);
}

.btn-outline {
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: transparent;
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.btn-outline-light {
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: var(--surface);
  color: var(--text);
}

.btn-outline-light:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

/* Hero */

.hero {
  position: relative;
  min-height: 48vh;
  color: var(--text);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.hero-overlay {
  padding: 70px 0 60px;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.0) 100%
  );
}

/* Hero: helles SARO-artiges Band, Text dunkel, Gelb nur als Akzent */
.hero--focus .hero-overlay {
  padding: 48px 0 44px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 251, 240, 0.92) 55%,
    rgba(255, 236, 200, 0.35) 100%
  );
}

.hero-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.hero--focus .hero-content {
  max-width: 720px;
}

.hero-title-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}

.hero-title-line {
  display: block;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.12;
  font-weight: 700;
  color: var(--neutral-ink);
  letter-spacing: -0.02em;
}

.hero-title-accent {
  display: block;
  font-size: clamp(20px, 2.8vw, 30px);
  line-height: 1.15;
  font-weight: 600;
  color: var(--accent);
}

.hero--focus h1 {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

.hero--focus .hero-subtitle {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

.hero-actions--focus {
  gap: 12px;
}

.btn-ghost-light {
  background: var(--surface);
  color: var(--text);
  border: 2px solid var(--border-soft);
  box-shadow: none;
}

.btn-ghost-light:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(255, 180, 0, 0.25);
}

/* Statistik-Leiste (Gelb/Weiß) */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--surface);
  color: var(--text);
  border-radius: 0;
  overflow: hidden;
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 4px 24px rgba(255, 180, 0, 0.12);
}

.stats-strip li {
  padding: 16px 14px;
  text-align: center;
  border-right: 1px solid var(--border-soft);
}

.stats-strip li:last-child {
  border-right: none;
}

.stats-strip strong {
  display: block;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.15;
  margin-bottom: 4px;
}

.stats-strip span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-process-steps {
  background: linear-gradient(180deg, var(--accent-soft) 0%, #ffffff 100%);
  border-top: 1px solid rgba(255, 180, 0, 0.2);
  border-bottom: 1px solid rgba(255, 180, 0, 0.12);
}

.section-process-steps .section-header h2 {
  color: var(--neutral-ink);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 16px 14px 18px;
  border: 1px solid rgba(255, 180, 0, 0.25);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  position: relative;
}

.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--neutral-ink);
  padding-right: 36px;
}

.step-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.section-faq-home {
  background: var(--surface);
}

.faq-home-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-home-list details {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 0 16px;
  margin-bottom: 10px;
  background: var(--bg-elevated);
}

.faq-home-list summary {
  cursor: pointer;
  padding: 14px 0;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
}

.faq-home-list summary::-webkit-details-marker {
  display: none;
}

.faq-home-list details[open] summary {
  padding-bottom: 8px;
  color: var(--neutral-ink);
}

.faq-home-list details p {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.faq-home-list a {
  color: var(--neutral-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-home-list a:hover {
  color: var(--accent);
}

.visual-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 280px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
}

.visual-split-media {
  min-height: 220px;
}

.visual-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-split-media--product {
  background: var(--surface);
  align-items: center;
  justify-content: center;
  display: flex;
  min-height: 260px;
}

.visual-split-media--product img {
  object-fit: contain;
  max-height: 280px;
  width: auto;
  height: auto;
  padding: 20px;
}

.visual-split-copy {
  background: var(--surface);
  color: var(--text);
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 4px solid var(--accent);
}

.visual-split-copy h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--neutral-ink);
}

.visual-split-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

.visual-split-copy .btn {
  margin-top: 18px;
  align-self: flex-start;
}

.hero-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 2;
}

.hero-badge-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  position: relative;
  background: linear-gradient(145deg, #fff8dc, #ffdf88, #ffb400);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #1a1300;
  margin-bottom: 16px;
}

.hero-badge-circle::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: radial-gradient(circle at 30% 0, rgba(255, 255, 255, 0.7), transparent 55%);
  pointer-events: none;
}

.hero-badge-number {
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}

.hero-badge-caption {
  font-size: 10px;
  margin-top: 4px;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.7);
}

.hero h1 {
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.1;
  margin: 0 0 16px;
  color: #ffffff;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  margin: 0 0 26px;
}

.hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

/* Sections (kompakter) */

.section {
  padding: 36px 0;
}

.section-dark {
  background: linear-gradient(180deg, #fff 0%, var(--neutral-wash) 100%);
  border-top: 1px solid rgba(255, 180, 0, 0.12);
  border-bottom: 1px solid rgba(255, 180, 0, 0.08);
}

.section-features {
  background: var(--surface);
}

.section-band-accent {
  background: var(--accent-soft);
  border-top: 1px solid rgba(255, 180, 0, 0.2);
  border-bottom: 1px solid rgba(255, 180, 0, 0.15);
}

/* Kleinanzeigen-Angebote */

.angebote-page {
  padding-bottom: 48px;
}

.angebote-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.angebote-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.angebote-eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.angebote-intro-title {
  margin: 0 0 14px;
}

.angebote-intro-lead {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
}

.angebote-intro-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.angebote-listings-block {
  width: 100%;
}

.angebote-listings-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 20px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
}

.angebote-listings-title {
  margin: 0;
  font-size: clamp(20px, 2.5vw, 26px);
  letter-spacing: -0.02em;
}

.angebote-live-hint {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.angebote-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.angebote-cards--loaded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.angebote-cards--loading .angebote-card--state {
  grid-column: 1 / -1;
  max-width: 420px;
  margin: 0 auto;
}

.angebote-skeleton {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(110deg, #eceff3 8%, #f7f8fa 18%, #eceff3 33%);
  background-size: 200% 100%;
  animation: angebote-shimmer 1.2s ease-in-out infinite;
}

@keyframes angebote-shimmer {
  to {
    background-position-x: -200%;
  }
}

.angebote-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.angebote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

.angebote-card--state {
  padding: 20px;
}

.angebote-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, #e8ecf1 0%, #f4f6f8 100%);
}

.angebote-card-media--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  text-decoration: none;
}

.angebote-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.angebote-card:hover .angebote-image {
  transform: scale(1.04);
}

.angebote-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 180, 0, 0.95);
  color: #1a1300;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.angebote-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px 18px 18px;
  gap: 8px;
}

.angebote-card-title {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.angebote-card-title a {
  color: inherit;
  text-decoration: none;
}

.angebote-card-title a:hover {
  color: #b8860b;
}

.angebote-meta {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-muted);
}

.angebote-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border-soft);
}

.angebote-card-pricing {
  min-width: 0;
}

.angebote-price {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.angebote-location {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.angebote-card-cta {
  flex-shrink: 0;
  padding: 9px 14px;
  font-size: 11px;
}

.angebote-kanaele {
  margin-top: 8px;
  max-width: 100%;
  padding: 28px 24px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.angebote-kanaele-title {
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
}

.angebote-kanaele-content {
  margin-top: 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 22px;
  margin: 0 0 6px;
}

.section-header p {
  color: var(--text-muted);
  margin: 0;
}

.section-header-centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.feature-card-centered {
  text-align: center;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 20px;
}

/* Partner-Logos */

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.partner-card {
  background: var(--surface);
  border-radius: 14px;
  padding: 18px 14px;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  font-size: 13px;
  color: var(--text-muted);
}

.partner-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  margin: 0 auto;
}

/* Scroll-Reveal für Sections & Produktzeilen */

.reveal {
  opacity: 0;
  transform: perspective(1000px) translateY(18px) rotateX(5deg);
  transition: opacity var(--transition-med), transform var(--transition-med);
}

.reveal.is-visible {
  opacity: 1;
  transform: perspective(1000px) translateY(0) rotateX(0deg);
}

.product-row.reveal.is-visible .product-row-content::before {
  opacity: 1;
  transform: none;
}

/* Produkt-Grid – Ferrari-Stil: Produkt isoliert auf Weiß, Infos rechts */

#produkte.section {
  background: var(--surface);
}

/* Modellpalette: Hinweiszeilen ohne Bild (Zubehör, Vermietung) */
.product-row-compact .product-row-inner {
  grid-template-columns: 1fr;
  min-height: 0;
  padding: 16px 0;
}

.product-row-compact:nth-child(even) .product-row-inner {
  direction: ltr;
}

.product-row-compact .product-row-content-full {
  padding-right: 0;
  padding-left: 0;
  max-width: 720px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-chip {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
}

.filter-chip-active {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-list-weitere-label {
  margin: 0;
  padding: 18px 0 10px;
  border-top: 1px solid var(--border-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Einzelblock wie Ferrari: Weiß, Produkt links mit Schatten, Infos rechts */
.product-row {
  background: var(--surface);
  border-radius: 0;
  border-top: 1px solid var(--border-soft);
  box-shadow: none;
  overflow: visible;
  transition: none;
}

.product-row:nth-child(odd) {
  background: var(--surface);
}

.product-row:nth-child(even) {
  background: var(--neutral-wash);
}

.product-row--eigenmarke {
  border-left: 3px solid var(--accent);
  background: linear-gradient(90deg, rgba(255, 214, 77, 0.12) 0%, #ffffff 48%);
}

.product-row-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  min-height: 280px;
}

/* Abwechselnd: 2., 4. … haben Infos links, Bild rechts */
.product-row:nth-child(even) .product-row-inner {
  direction: rtl;
}

.product-row:nth-child(even) .product-row-inner > * {
  direction: ltr;
}

.product-row:nth-child(even) .product-row-content {
  padding-right: 0;
  padding-left: 24px;
}

/* Produktbild links: wie Auto ausgeschnitten auf Weiß, weicher Schatten */
.product-row-media {
  border-radius: 0;
  overflow: visible;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-row-media img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.12));
  transition: transform var(--transition-med);
}

.product-row:hover .product-row-media img {
  transform: scale(1.02);
}

/* Rechts: Marke + Modell + Specs + CTAs wie Ferrari */
.product-row-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

.product-row-content::before {
  content: "";
  position: absolute;
  inset: -18px -28px -18px -28px;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--transition-med), transform var(--transition-med), background var(--transition-med);
  z-index: -1;
}

.product-row:nth-child(even) .product-row-content::before {
  background: linear-gradient(135deg, #fff8e5, #ffffff);
}

.product-row-breadcrumb {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 12px;
}

.product-row-content .product-brand {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.product-row-content h3 {
  margin: 0 0 20px;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

/* Kurztext in der Modellpalette (Übersicht) */
.product-row-excerpt p {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.product-row-content h3 a {
  color: inherit;
  text-decoration: none;
}

.product-row-content h3 a:hover {
  color: var(--accent);
}

.product-row-media-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.product-meta {
  display: block;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-soft);
}

.product-meta .meta-item {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
}

.product-meta .meta-label {
  display: inline;
  margin-right: 6px;
}

.product-meta .meta-value {
  font-size: 13px;
  color: var(--text);
}

/* Ferrari-CTAs: Kreis mit Pfeil + Text */
.product-ctas-ferrari {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-ferrari {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.cta-ferrari-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.cta-ferrari:hover .cta-ferrari-icon {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.cta-ferrari-icon svg {
  width: 14px;
  height: 14px;
}

/* Share Overlay */

.share-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  color: #ffffff;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
  z-index: 40;
}

.share-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.share-overlay-inner {
  max-width: 260px;
}

.share-overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  gap: 16px;
}

.share-overlay-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
}

.share-close-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.share-close-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-close-x {
  font-size: 20px;
  line-height: 1;
}

.share-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.share-menu-item {
  background: none;
  border: none;
  padding: 0;
  color: #ffffff;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  cursor: pointer;
}

/* Produkt-Hub: Marken & Kategorien */
.hub-section-title {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 12px;
  font-weight: 600;
}

.hub-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}

.hub-brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.hub-brand-card:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.hub-brand-card--primary {
  border: 2px solid var(--accent);
  background: var(--accent-soft);
}

.hub-brand-card--eigen {
  border: 2px solid var(--accent);
  background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.hub-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.hub-cat-card {
  display: block;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.hub-cat-card:hover,
.hub-cat-card.filter-chip-active {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.produkte-hub-filter-note {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.produkte-liste-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--neutral-ink);
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
  margin-bottom: 4px;
}

.meta-item {
  font-size: 11px;
}

.meta-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.meta-value {
  font-size: 12px;
}

.product-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.product-tab {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast),
              border-color var(--transition-fast);
}

.product-tab.tab-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.product-panels {
  margin-top: 12px;
}

.product-panel {
  display: none;
  font-size: 13px;
  color: var(--text-muted);
}

.product-panel.panel-active {
  display: block;
}

.product-panel ul {
  padding-left: 18px;
  margin: 4px 0 10px;
}

.product-panel-form {
  display: grid;
  gap: 8px;
  max-width: 420px;
  margin-top: 6px;
}

.product-panel-form label {
  display: grid;
  gap: 4px;
  font-size: 12px;
}

.product-panel-form input,
.product-panel-form textarea {
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  padding: 8px 10px;
  font: inherit;
  color: var(--text);
}

.product-panel-form input:focus,
.product-panel-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft);
}

/* Features */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 14px 16px 16px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.tilt-3d {
  transform: none;
  transition: box-shadow var(--transition-med), border-color var(--transition-fast), transform var(--transition-med);
  will-change: auto;
}

.wartung-page .tilt-3d:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(8, 14, 26, 0.12);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

/* CTA Row */

.section-cta-row {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.cta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.cta-tile {
  background: var(--surface);
  border-radius: 16px;
  padding: 18px 18px 22px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.cta-tile h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.cta-tile p {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 14px;
}

/* Kontakt & Karte */

.section-contact {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: flex-start;
}

.contact-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.contact-form-block h1 {
  margin-top: 0;
}

.contact-map-heading {
  font-size: 20px;
  margin: 0 0 8px;
}

.contact-form-block h2 {
  margin-top: 0;
}

.contact-form-fields {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.contact-form-fields label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.contact-form-fields label.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.contact-form-fields label.checkbox input {
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-form-fields a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form-fields input,
.contact-form-fields textarea,
.contact-form-fields select {
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  padding: 9px 10px;
  font: inherit;
  font-size: 16px;
  color: var(--text);
  width: 100%;
  max-width: 100%;
}

.contact-form-fields input:focus,
.contact-form-fields textarea:focus,
.contact-form-fields select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft);
}

.contact-form-foot {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.contact-map-block h3 {
  margin-top: 0;
}

.map-placeholder {
  margin-top: 16px;
  padding: 14px 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: var(--surface-muted);
}

.map-placeholder--experience {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 180, 0, 0.3);
  background: linear-gradient(160deg, #ffffff 0%, #fff8e6 100%);
  box-shadow: 0 12px 36px rgba(15, 21, 31, 0.08);
}

.map-experience-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.map-experience-title {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.28;
}

.map-experience-text {
  margin: 0 0 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.map-note {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 10px;
}

.map-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.map-route-btn {
  min-width: 132px;
}

.map-load-btn:disabled {
  opacity: 0.7;
  cursor: default;
}

.map-container-inner {
  margin-top: 12px;
  border-radius: 10px;
  overflow: hidden;
  min-height: 0;
}

.map-container-inner iframe {
  width: 100%;
  height: min(54vh, 430px);
  border: 0;
}

#kontakt-anfahrt:target .map-container-inner iframe,
.map-container-inner.map-container-inner--active iframe {
  height: min(78vh, 760px);
}

.anfahrt-page .map-container-inner iframe,
.anfahrt-page .map-container-inner.map-container-inner--active iframe {
  height: min(82vh, 900px);
}

.anfahrt-stage {
  padding: 24px 0 48px;
  background: linear-gradient(180deg, #f8f9fb 0%, #eef1f6 100%);
}

.anfahrt-stage-shell {
  width: min(96vw, 1680px);
  margin: 0 auto;
  padding: clamp(18px, 2.2vw, 30px);
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--surface);
  box-shadow: 0 20px 60px rgba(20, 26, 36, 0.12);
}

/* Footer */

.site-footer {
  background: var(--surface-muted);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 20px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-mission {
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  font-size: 13px;
}

.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-social-note {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
  max-width: 220px;
  line-height: 1.35;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1a1300;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-icon:hover,
.social-icon:focus-visible {
  background: #e6a800;
  border-color: #e6a800;
  transform: translateY(-1px);
}

/* Produkt-Detailseiten (produkte/*.html) */

.site-breadcrumb {
  padding: 16px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

.site-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.site-breadcrumb a:hover {
  color: var(--accent);
}

.site-breadcrumb span[aria-hidden="true"] {
  margin: 0 8px;
  opacity: 0.5;
}

.site-breadcrumb [aria-current="page"] {
  color: var(--text);
}

.product-detail-page main {
  padding-bottom: 24px;
}

.product-detail-hero {
  padding: 24px 0 48px;
  background: var(--surface);
  border-bottom: 1px solid var(--border-soft);
}

.product-detail-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.product-detail-hero .product-detail-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-soft);
}

.product-detail-hero .product-detail-media img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.12));
}

.product-detail-hero h1 {
  margin: 6px 0 16px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.product-detail-lead {
  margin: 0 0 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 560px;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.product-detail-section {
  padding-top: 8px;
}

.product-detail-section .product-panels {
  margin-top: 16px;
}

/* Hub Modellpalette unter /produkte/ */

.modellpalette-hub-link {
  margin: -8px 0 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.modellpalette-hub-link a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.modellpalette-hub-link a:hover {
  color: var(--accent);
}

/* Startseite: Bereichs-Kacheln */
.dept-home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

a.dept-home-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 18px;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  color: inherit;
  text-decoration: none;
  transition: box-shadow var(--transition-med), transform var(--transition-fast), border-color var(--transition-fast);
}

a.dept-home-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  border-color: rgba(255, 180, 0, 0.45);
}

.dept-home-kicker {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.dept-home-title {
  font-size: 17px;
  font-weight: 600;
}

.dept-home-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

.section-dept-top {
  padding-top: 40px;
}

.dept-feature-grid {
  margin-top: 28px;
}

.dept-legal-block {
  margin-top: 36px;
}

/* .angebote-card-title – siehe Angebote-Block oben */

.home-angebote-teaser-wrap {
  padding: 28px 0 32px;
}

.home-angebote-teaser {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.home-angebote-teaser-title {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 28px);
}

.home-angebote-teaser-text {
  margin: 0 0 22px;
  color: var(--text-muted);
  font-size: 15px;
}

.produkte-weitere-wrap {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}

.produkte-weitere-header {
  max-width: 720px;
  margin-bottom: 16px;
}

.produkte-weitere-title {
  margin: 0 0 10px;
  font-size: 22px;
}

.produkte-serien-liste {
  margin: 12px 0 0;
  padding-left: 1.25em;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  max-width: 720px;
}

.produkte-serien-liste a {
  color: var(--accent);
}

.produkte-weitere-cta {
  margin-top: 20px;
}

.produkte-hub-intro {
  max-width: 640px;
  margin-bottom: 28px;
}

.produkte-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.produkte-hub-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow var(--transition-med), transform var(--transition-fast);
}

.produkte-hub-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.produkte-hub-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--surface-muted);
  min-height: 200px;
}

.produkte-hub-card-media img {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.1));
}

.produkte-hub-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.produkte-hub-card-body h2 {
  margin: 0;
  font-size: 18px;
}

.produkte-hub-card-body p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
}

.produkte-hub-card-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

a.produkte-hub-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

a.produkte-hub-card-link:hover h2 {
  color: var(--accent);
}

.produkte-hub-intro a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Responsive */

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .cta-row,
  .angebote-cards--loaded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-grid,
  .produkte-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-detail-hero .product-detail-media {
    order: -1;
  }

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

  .stats-strip li {
    border-right: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
  }

  .stats-strip li:nth-child(2n) {
    border-right: none;
  }

  .stats-strip li:nth-child(n + 3) {
    border-bottom: none;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .anfahrt-page .map-container-inner iframe,
  .anfahrt-page .map-container-inner.map-container-inner--active iframe {
    height: min(72vh, 680px);
  }

  .anfahrt-stage-shell {
    width: min(97vw, 1400px);
    border-radius: 16px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-wrap: nowrap;
  }

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

  .hub-brands-grid,
  .hub-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-row-inner {
    grid-template-columns: 1fr;
    padding: 24px 0;
  }

  .product-row-media {
    order: -1;
  }

  .product-row-content {
    padding-right: 0;
  }

  .product-grid,
  .feature-grid,
  .cta-row,
  .angebote-cards--loaded {
    grid-template-columns: 1fr;
  }

  .angebote-intro-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .angebote-intro-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .angebote-card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .angebote-card-cta {
    width: 100%;
    text-align: center;
  }

  .partner-grid,
  .produkte-hub-grid {
    grid-template-columns: 1fr;
  }

  .hero-overlay {
    padding-top: 64px;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .stats-strip li {
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
  }

  .stats-strip li:last-child {
    border-bottom: none;
  }

  .map-placeholder--experience {
    padding: 14px;
  }

  .map-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .map-actions .btn {
    width: 100%;
  }

  .map-container-inner iframe {
    height: 320px;
  }

  #kontakt-anfahrt:target .map-container-inner iframe,
  .map-container-inner.map-container-inner--active iframe {
    height: min(66vh, 520px);
  }

  .anfahrt-page .map-container-inner iframe,
  .anfahrt-page .map-container-inner.map-container-inner--active iframe {
    height: min(66vh, 520px);
  }

  .anfahrt-stage {
    padding: 14px 0 28px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .visual-split {
    grid-template-columns: 1fr;
  }

  .visual-split-copy {
    order: -1;
  }

  .hero--focus .hero-badge {
    position: static;
    margin: 16px auto 0;
    text-align: center;
  }

  .hero--focus {
    padding-bottom: 24px;
  }
}

/* Rechtstexte & schlanke Unterseiten */

.section-legal {
  padding: 48px 0 72px;
  background: var(--surface);
}

.legal-page-title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 36px);
}

.legal-lead {
  color: var(--text-muted);
  margin: 0 0 28px;
  font-size: 15px;
}

.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  font-size: 18px;
  margin: 28px 0 10px;
  color: var(--text);
}

.legal-content p,
.legal-content li {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 14px;
}

.legal-content ul {
  padding-left: 1.2em;
}

.kontakt-teaser-actions {
  margin-top: 20px;
}

.legal-placeholder {
  padding: 20px 22px;
  border-radius: 12px;
  border: 1px dashed var(--border-soft);
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 8px;
}

.spec-data-wrap {
  margin-top: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.spec-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--bg-elevated);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

.spec-data-table th,
.spec-data-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}

.spec-data-table th {
  width: 42%;
  font-weight: 600;
  color: var(--text);
  background: rgba(0, 0, 0, 0.03);
}

.spec-data-table tr:last-child th,
.spec-data-table tr:last-child td {
  border-bottom: none;
}

.spec-data-foot {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ==============================
   TOPBAR / KONTAKTLEISTE
   ============================== */
.topbar {
  background: var(--accent);
  color: #1a1300;
  font-size: 12px;
  font-weight: 500;
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 7px 0;
  flex-wrap: nowrap;
}

a.topbar-item,
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #1a1300;
  font-weight: 600;
  text-decoration: none;
}

a.topbar-item:hover {
  text-decoration: underline;
}

.topbar-item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.topbar-spacer {
  flex: 1;
  min-width: 12px;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.topbar-social-link {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(26, 19, 0, 0.14);
  color: #1a1300;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.topbar-social-link:hover,
.topbar-social-link:focus-visible {
  background: rgba(26, 19, 0, 0.28);
  transform: translateY(-1px);
}

.topbar--social-only .topbar-inner {
  padding: 6px 0;
}

@media (max-width: 600px) {
  .topbar-inner {
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .topbar-spacer {
    display: none;
  }

  .topbar-social {
    width: 100%;
    justify-content: flex-end;
  }

  .topbar-hours { display: none; }
  .topbar-email { display: none; }
}


/* ==============================
   HEADER PHONE BUTTON
   ============================== */
.header-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: var(--accent);
  color: #1a1300;
  border: none;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 14px rgba(255,180,0,0.35);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-phone-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,180,0,0.5);
}

.header-phone-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .header-phone-label { display: none; }
}

@media (max-width: 760px) {
  .header-phone-btn {
    display: none;
  }
}


/* ==============================
   PAGE HERO (Unterseiten)
   ============================== */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #1a1300 0%, #2c2300 60%, #3a2d00 100%);
  color: #fff;
  padding: 64px 0 56px;
  border-bottom: 3px solid var(--accent);
  overflow: hidden;
}

.page-hero-3d {
  perspective: 1200px;
}

.page-hero-depth-layer {
  position: absolute;
  inset: -8% -8% -2% -8%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 180, 0, 0.2), transparent 48%),
    radial-gradient(circle at 78% 70%, rgba(255, 255, 255, 0.12), transparent 42%);
  transform: translate3d(0, 0, 0) scale(1.04);
  transition: transform 120ms linear;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/Banner.jpg') center/cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  transform-origin: center top;
  transition: transform 180ms linear;
}

.page-hero-kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 10px;
}

.page-hero-title {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-hero-subtitle,
.page-hero-sub {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-hero-ghost {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}


/* ==============================
   HERO MAIN (Startseite)
   ============================== */
.hero--main .hero-overlay {
  padding: 80px 0 68px;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.65) 40%,
    rgba(0, 0, 0, 0.15) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero--main .hero-content {
  text-align: left;
  align-items: flex-start;
  max-width: 640px;
  margin: 0;
}

.hero--main h1 { color: #fff; }
.hero--main .hero-kicker { color: var(--accent); }
.hero--main .hero-subtitle { color: rgba(255,255,255,0.82); }
.hero--main .hero-actions { justify-content: flex-start; }

.hero--main .hero-title-line { color: #ffffff; }
.hero--main .hero-title-accent { color: var(--accent); }


/* ==============================
   KONTAKT INFO CARDS
   ============================== */
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.contact-info-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.contact-info-card-icon svg {
  width: 16px;
  height: 16px;
  color: var(--neutral-ink);
}

.contact-info-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  font-weight: 600;
}

.contact-info-card-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.contact-info-card-value a {
  color: inherit;
  text-decoration: none;
}

.contact-info-card-value a:hover {
  color: var(--accent);
}

.contact-info-card-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 720px) {
  .contact-info-cards { grid-template-columns: 1fr; }
}


/* ==============================
   OPENING HOURS
   ============================== */
.hours-block {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: 16px 20px;
  margin-top: 16px;
}

.hours-block-title {
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

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

.hours-row:last-child { border-bottom: none; }

.hours-day { color: var(--text); font-weight: 500; }
.hours-time { color: var(--text-muted); font-size: 13px; }
.hours-time--open { color: #1a7a3a; font-weight: 600; }


/* ==============================
   PROCESS / SERVICE STEPS
   ============================== */
.process-steps-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  position: relative;
  margin-top: 8px;
}

.process-steps-row::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(255,180,0,0.2) 100%);
  z-index: 0;
}

.process-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 6px;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent);
  color: #1a1300;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 6px 20px rgba(255,180,0,0.35);
  flex-shrink: 0;
}

.process-step-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px;
}

.process-step-sub {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 860px) {
  .process-steps-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .process-steps-row::before { display: none; }
}

@media (max-width: 560px) {
  .process-steps-row { grid-template-columns: 1fr 1fr; }
}


/* ==============================
   RENTAL EQUIPMENT GRID
   ============================== */
.rental-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.rental-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: 18px 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: box-shadow var(--transition-med), transform var(--transition-fast), border-color var(--transition-fast);
}

.rental-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.09);
  transform: translateY(-2px);
  border-color: rgba(255,180,0,0.4);
}

.rental-card-kicker {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}

.rental-card h3 { margin: 0 0 8px; font-size: 16px; }
.rental-card p { margin: 0; font-size: 13px; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 720px) { .rental-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .rental-grid { grid-template-columns: 1fr; } }


/* ==============================
   PARTS CATEGORIES
   ============================== */
.parts-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.parts-cat-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.parts-cat-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.parts-cat-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--neutral-ink);
}

.parts-cat-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 3px;
}

.parts-cat-detail {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}


/* ==============================
   BRANDS DISPLAY
   ============================== */
.brands-display-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.brand-display-card {
  background: var(--surface);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.brand-display-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(255,180,0,0.15);
}

.brand-display-card--primary {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.brand-display-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
}

.brand-display-sub {
  font-size: 11px;
  color: var(--text-muted);
}


/* ==============================
   INFO HIGHLIGHT BOX
   ============================== */
.info-highlight-box {
  background: linear-gradient(135deg, var(--accent-soft) 0%, #fff 100%);
  border: 1.5px solid var(--accent);
  border-radius: 16px;
  padding: 22px 24px;
  margin: 24px 0;
}

.info-highlight-box h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--neutral-ink);
}

.info-highlight-box p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}


/* ==============================
   CHECKLIST
   ============================== */
.checklist {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
}

.premium-contact-card {
  background: var(--surface);
  border: 1px solid rgba(255, 180, 0, 0.28);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.premium-contact-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.process-step-item.tilt-3d {
  border-radius: 12px;
  padding: 10px 8px;
}

.checklist li::before {
  content: '';
  min-width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231a1300' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12l5 5L19 7'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 560px) { .checklist { grid-template-columns: 1fr; } }


/* ==============================
   FLOATING PHONE BUTTON (mobile)
   ============================== */
.float-phone-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  box-shadow: 0 8px 24px rgba(255,180,0,0.55);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}

.float-phone-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(255,180,0,0.65);
}

.float-phone-btn svg {
  width: 24px;
  height: 24px;
  stroke: #1a1300;
}

@media (max-width: 760px) {
  .float-phone-btn {
    display: flex;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    right: calc(20px + env(safe-area-inset-right, 0px));
  }
}


/* ==============================
   FOOTER EXTENDED
   ============================== */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 6px;
}

.footer-contact-item {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-contact-item a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-contact-item a:hover { color: var(--accent); }

.footer-contact-item svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  stroke: var(--text-muted);
}


/* ==============================
   SECTION SUB-HEADING
   ============================== */
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  max-width: 600px;
  margin: -0.5rem auto 1.5rem;
  line-height: 1.55;
}


/* ==============================
   FEATURE CARD ICON
   ============================== */
.feature-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.feature-card-icon svg {
  stroke: var(--neutral-ink);
}


/* ==============================
   RENTAL CARD EXTRAS
   ============================== */
.rental-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.rental-card-icon svg {
  stroke: var(--neutral-ink);
}

.rental-card-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 8px;
  border-radius: 20px;
}

.rental-card--cta {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent-soft) 0%, #fff 100%);
}

.rental-card--cta:hover {
  border-color: var(--accent);
}

/* ==============================
   RENTAL PRICE TABLE
   ============================== */
.rental-price-section {
  margin-top: 8px;
}

.rental-price-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.rental-price-filter {
  border: 1px solid var(--border-soft);
  background: var(--surface);
  border-radius: 999px;
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.rental-price-filter.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #1a1300;
}

.rental-price-wrap {
  overflow-x: auto;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-soft);
  background: var(--surface);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.rental-price-table {
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
  font-size: 14px;
}

.rental-price-table caption {
  caption-side: top;
  text-align: left;
  padding: 14px 16px 0;
  font-weight: 700;
  font-size: 15px;
}

.rental-price-table thead th {
  padding: 12px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid var(--border-soft);
  white-space: nowrap;
  vertical-align: bottom;
  line-height: 1.35;
}

.rental-th-sub {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text-muted);
  margin-top: 2px;
}

.rental-price-table tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
  line-height: 1.45;
}

.rental-price-table tbody tr:last-child td {
  border-bottom: none;
}

.rental-price-table tbody tr:hover td {
  background: rgba(255, 180, 0, 0.06);
}

.rental-price-table .rental-model {
  font-weight: 700;
  color: var(--text);
}

.rental-price-table .rental-artnr {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.rental-price-table .rental-price {
  font-weight: 700;
  white-space: nowrap;
  color: var(--text);
}

.rental-price-table .rental-config {
  font-size: 12px;
  color: var(--text-muted);
}

.rental-price-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.rental-accessory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.rental-accessory-box {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: 16px 18px;
}

.rental-accessory-box h3 {
  margin: 0 0 10px;
  font-size: 15px;
}

.rental-accessory-box ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 720px) {
  .rental-accessory-grid {
    grid-template-columns: 1fr;
  }
}

html.dark .rental-price-table thead th {
  background: rgba(255, 255, 255, 0.05);
}

html.dark .rental-price-table tbody tr:hover td {
  background: rgba(255, 180, 0, 0.08);
}

.rental-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.rental-catalog-loading,
.rental-catalog-error {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.rental-item-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rental-item-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.rental-item-card[hidden] {
  display: none;
}

.rental-item-media {
  aspect-ratio: 4 / 3;
  background: #f4f4f2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.rental-item-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.rental-item-media--brand {
  background: linear-gradient(160deg, #faf9f6 0%, #efede8 100%);
}

.rental-item-media--brand img {
  max-width: 72%;
  max-height: 72%;
  object-fit: contain;
}

.rental-item-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.rental-item-body h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.rental-item-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin: 0;
}

.rental-item-prices div {
  margin: 0;
}

.rental-item-prices dt {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.rental-item-prices dd {
  margin: 2px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.rental-item-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.rental-catalog-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

html.dark .rental-item-media {
  background: rgba(255, 255, 255, 0.04);
}

html.dark .rental-item-media--brand {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

/* hide label text in float btn (icon-only on small) */
.float-phone-btn span {
  display: none;
}


/* ==============================
   PARTS CAT CARD HEADING
   ============================== */
.parts-cat-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--text);
}

.parts-cat-card p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}


/* ==============================
   HOURS BLOCK EXTRAS
   ============================== */
.hours-row--closed {
  opacity: 0.55;
}


/* ==============================
   BRAND DISPLAY TAG
   ============================== */
.brand-display-tag {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}


/* ==============================
   BTN OUTLINE (light for page-hero)
   ============================== */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid var(--border-soft);
  color: var(--text);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}


/* ==============================
   LOGO IMAGE
   ============================== */
.logo-img {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer-logo-img {
  display: block;
  height: 36px;
  width: auto;
  object-fit: contain;
  margin-bottom: 6px;
  /* keep readable on white footer background */
  filter: brightness(0.85);
}

@media (max-width: 640px) {
  .logo-img { height: 36px; }
}


/* ==============================
   BRAND LOGO GRID (real images)
   ============================== */
.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.brand-logo-card {
  background: var(--surface);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 80px;
}

.brand-logo-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(255,180,0,0.12);
}

.brand-logo-card--primary {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.brand-logo-card img {
  max-height: 40px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter var(--transition-fast);
}

.brand-logo-card:hover img {
  filter: grayscale(0%);
}

.brand-logo-card--primary img {
  filter: grayscale(0%);
}

.brand-logo-label {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* ==============================
   SHOP GALLERY
   ============================== */
.shop-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 16px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.shop-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.shop-gallery img:hover {
  transform: scale(1.04);
  filter: brightness(1.08);
}

@media (max-width: 720px) {
  .shop-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .shop-gallery { grid-template-columns: 1fr 1fr; }
  .shop-gallery img { height: 130px; }
}

/* ==============================
   WARTUNG PAGE PREMIUM REFINEMENT
   ============================== */
.wartung-page {
  background: #0d121c;
  color: #e9edf5;
}

.wartung-page .site-header {
  background: rgba(13, 18, 28, 0.86);
  border-bottom: 1px solid rgba(255, 180, 0, 0.18);
}

.wartung-page .nav-link {
  color: #dbe1ec;
}

.wartung-page .nav-link:hover,
.wartung-page .nav-link[aria-current="page"] {
  background: rgba(255, 180, 0, 0.14);
  color: #ffffff;
}

.wartung-page .section {
  padding: 56px 0;
}

.wartung-page .section-features,
.wartung-page .section-dark,
.wartung-page .section-process-steps {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.wartung-page .page-hero {
  border-bottom: 1px solid rgba(255, 180, 0, 0.24);
  background: linear-gradient(145deg, #0f1726 0%, #121b2d 58%, #1b2334 100%);
}

.wartung-page .page-hero::before {
  opacity: 0.23;
  filter: saturate(0.75) contrast(1.08);
}

.wartung-page .page-hero-kicker {
  color: #f1c96d;
}

.wartung-page .page-hero-title {
  color: #ffffff;
  max-width: 900px;
}

.wartung-page .page-hero-subtitle {
  color: rgba(226, 233, 245, 0.83);
}

.wartung-page .section-header h2,
.wartung-page .process-step-label,
.wartung-page .feature-card h3,
.wartung-page .legal-content h2,
.wartung-page .info-highlight-box h3 {
  color: #f7f9fc;
}

.wartung-page .section-header p,
.wartung-page .feature-card p,
.wartung-page .process-step-sub,
.wartung-page .legal-content p,
.wartung-page .info-highlight-box p {
  color: #b8c2d6;
}

.wartung-page .feature-card,
.wartung-page .premium-contact-card,
.wartung-page .process-step-item {
  background: linear-gradient(155deg, rgba(26, 36, 54, 0.9), rgba(18, 26, 40, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 30px rgba(2, 6, 14, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.wartung-page .process-step-num {
  background: #f0b941;
  color: #101420;
  box-shadow: 0 10px 28px rgba(240, 185, 65, 0.34);
}

.wartung-page .checklist li {
  background: rgba(20, 29, 45, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.wartung-page .info-highlight-box {
  background: linear-gradient(135deg, rgba(240, 185, 65, 0.16), rgba(22, 31, 46, 0.9));
  border: 1px solid rgba(240, 185, 65, 0.46);
}

.wartung-page .btn-primary {
  background: linear-gradient(135deg, #f4c554, #e6aa2d);
  color: #101420;
  box-shadow: 0 14px 30px rgba(230, 170, 45, 0.32);
}

.wartung-page .btn-primary:hover {
  box-shadow: 0 18px 38px rgba(230, 170, 45, 0.4);
}

.wartung-page .btn-outline,
.wartung-page .btn-hero-ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #eef2f9;
  background: rgba(255, 255, 255, 0.04);
}

.wartung-page .btn-outline:hover,
.wartung-page .btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ==============================
   FLEXVELOP FINANZIERUNG
   ============================== */
.flexvelop-page .page-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #334155 100%);
  border-bottom-color: #f97316;
}

.flexvelop-page .page-hero-kicker {
  color: #fb923c;
}

.flex-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.flex-partner-badge strong {
  color: #fff;
  font-weight: 700;
}

.flex-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.flex-hero-stats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.flex-hero-stats svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.flex-calculator-section {
  padding: 56px 0 72px;
  background: linear-gradient(180deg, #fffbf0 0%, #fff 42%);
}

.flex-calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.flex-calculator-panel {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 28px;
}

.flex-calculator-panel h2 {
  margin: 0 0 6px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -0.02em;
}

.flex-calculator-panel > p {
  margin: 0 0 22px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.flex-field {
  margin-bottom: 22px;
}

.flex-field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.flex-field label span:last-child {
  font-weight: 700;
  color: var(--neutral-ink);
}

.flex-price-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 4px 14px;
  background: var(--bg-elevated);
}

.flex-price-wrap input[type="number"] {
  flex: 1;
  border: 0;
  background: transparent;
  font-size: 22px;
  font-weight: 700;
  padding: 10px 0;
  min-width: 0;
}

.flex-price-wrap input[type="number"]:focus {
  outline: none;
}

.flex-price-wrap span {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
}

.flex-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.flex-preset-btn {
  border: 1px solid var(--border-soft);
  background: var(--surface);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.flex-preset-btn:hover {
  border-color: rgba(255, 180, 0, 0.85);
  background: var(--accent-soft);
}

input[type="range"].flex-range {
  width: 100%;
  accent-color: var(--accent);
}

.flex-plan-picker {
  display: grid;
  gap: 8px;
}

.flex-plan-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.flex-plan-option:has(input:checked) {
  border-color: rgba(255, 180, 0, 0.9);
  background: var(--accent-soft);
}

.flex-plan-option input {
  accent-color: var(--accent);
}

.flex-plan-option strong {
  display: block;
  font-size: 14px;
}

.flex-plan-option small {
  color: var(--text-muted);
  font-size: 12px;
}

.flex-vat-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.flex-vat-toggle input {
  accent-color: var(--accent);
}

.flex-result-card {
  background: linear-gradient(145deg, #0f172a, #1e293b);
  color: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.22);
}

.flex-result-kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fb923c;
  font-weight: 600;
  margin: 0 0 8px;
}

.flex-result-rate {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.flex-result-sub {
  margin: 8px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.flex-result-alt {
  margin: 6px 0 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.flex-result-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.flex-metric {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px;
}

.flex-metric span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}

.flex-metric strong {
  font-size: 18px;
  font-weight: 700;
}

.flex-result-note {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 20px;
}

.flex-plans-section {
  padding: 0 0 64px;
}

.flex-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.flex-plan-card {
  position: relative;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 24px 20px 20px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
  text-align: left;
}

.flex-plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.flex-plan-card--active {
  border-color: rgba(255, 180, 0, 0.95);
  box-shadow: 0 18px 40px rgba(255, 180, 0, 0.18);
}

.flex-plan-card--featured {
  border-color: rgba(249, 115, 22, 0.45);
}

.flex-plan-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--surface-soft);
  color: #c2410c;
}

.flex-plan-card h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
}

.flex-plan-card .flex-plan-tagline {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--text-muted);
}

.flex-plan-rate {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--neutral-ink);
}

.flex-plan-features {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 1.5;
}

.flex-plan-features li {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.flex-plan-features li::before {
  content: "✓";
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0;
}

.flex-included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.flex-included-item {
  padding: 16px;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  font-size: 14px;
}

.flex-included-item strong {
  display: block;
  margin-bottom: 4px;
}

.flex-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: flex-step;
}

.flex-step-card {
  padding: 20px 18px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
}

.flex-step-card::before {
  counter-increment: flex-step;
  content: counter(flex-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #1a1300;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.flex-step-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.flex-step-card p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.flex-disclaimer {
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--surface-muted);
  border: 1px solid var(--border-soft);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}

.flex-disclaimer a {
  color: var(--neutral-ink);
  text-decoration: underline;
}

@media (max-width: 960px) {
  .flex-calculator-layout,
  .flex-plans-grid,
  .flex-included-grid,
  .flex-steps {
    grid-template-columns: 1fr;
  }

  .flex-result-metrics {
    grid-template-columns: 1fr;
  }
}

/* Dark mode */
html.dark {
  --bg: #121214;
  --surface: #1c1c1f;
  --surface-muted: #18181b;
  --surface-soft: #161618;
  --bg-elevated: #1c1c1f;
  --neutral-ink: #e8e8ed;
  --neutral-mid: #a1a1a6;
  --neutral-wash: #1a1a1e;
  --text: #f5f5f7;
  --text-muted: #a1a1a6;
  --border-soft: rgba(255, 255, 255, 0.12);
  --shadow-card: 0 8px 28px rgba(0, 0, 0, 0.45);
  color-scheme: dark;
}

html.dark .site-header {
  background: rgba(18, 18, 20, 0.97);
  border-bottom-color: rgba(255, 180, 0, 0.22);
}

html.dark .nav-toggle {
  background: #1c1c1f;
  border-color: var(--border-soft);
}

html.dark .nav-dropdown,
html.dark .site-nav {
  background: #1c1c1f;
}

@media (max-width: 960px) {
  html.dark .site-nav {
    background: #1c1c1f;
    border-left-color: rgba(255, 180, 0, 0.22);
  }
}

html.dark .header-theme-btn,
html.dark .header-phone-btn {
  background: #1c1c1f;
  border-color: var(--border-soft);
  color: var(--text);
}

html.dark .header-theme-btn:hover,
html.dark .header-phone-btn:hover {
  background: rgba(255, 180, 0, 0.14);
  border-color: var(--accent);
}


html.dark .flex-disclaimer {
  background: #1c1c1f;
}

html.dark .site-footer {
  background: #18181b;
  border-top-color: var(--border-soft);
}

html.dark .share-close-circle {
  background: #2c2c30;
  border-color: var(--border-soft);
}

html.dark input,
html.dark textarea,
html.dark select {
  background: #1c1c1f;
  color: var(--text);
  border-color: var(--border-soft);
}

html.dark .hero,
html.dark .page-hero,
html.dark .service-page {
  color: var(--text);
}

html.dark .service-page {
  background: var(--bg);
}

html.dark .product-row,
html.dark .product-card,
html.dark .feature-card,
html.dark .info-card,
html.dark .rental-card,
html.dark .offer-card {
  background: var(--bg-elevated);
  border-color: var(--border-soft);
}

html.dark .filter-chip {
  background: #1c1c1f;
  border-color: var(--border-soft);
  color: var(--text);
}

html.dark .filter-chip-active {
  background: var(--accent-soft);
  color: var(--neutral-ink);
}

.header-theme-btn {
  border-radius: 999px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.24);
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  color: var(--text);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.header-theme-btn:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.header-theme-btn svg {
  width: 18px;
  height: 18px;
}

html.dark .brand-item {
  opacity: 0.92;
}

html.dark .brand-item img {
  opacity: 0.95;
}

/* Dark mode – Verläufe & verbleibende helle Flächen */
html.dark .section-dark {
  background: linear-gradient(180deg, var(--bg) 0%, var(--neutral-wash) 100%);
  border-top-color: rgba(255, 180, 0, 0.2);
  border-bottom-color: rgba(255, 180, 0, 0.12);
}

html.dark .section-features,
html.dark .section-band-accent {
  background: var(--bg-elevated);
}

html.dark .anfahrt-stage {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-muted) 100%);
}

html.dark .anfahrt-stage-shell {
  background: var(--surface);
  border-color: var(--border-soft);
}

html.dark .product-detail-hero .product-detail-media {
  background: linear-gradient(180deg, var(--surface-soft) 0%, var(--surface) 100%);
}

html.dark .cta-strip,
html.dark .promo-band,
html.dark .band-accent {
  background: linear-gradient(135deg, var(--neutral-wash) 0%, var(--bg) 100%);
}

html.dark .footer-logo-img {
  filter: brightness(1.15) contrast(1.05);
}

html.dark .hero-badge-circle {
  background: linear-gradient(145deg, #3a3520, #6b5520, #ffb400);
}

html.dark .flex-calculator-section {
  background: linear-gradient(180deg, var(--neutral-wash) 0%, var(--bg) 42%);
}

html.dark .info-highlight-box,
html.dark .highlight-box,
html.dark .content-box,
html.dark .legal-content,
html.dark .text-page,
html.dark .angebote-card,
html.dark .rental-teaser,
html.dark .dept-card,
html.dark .feature-card,
html.dark .product-teaser,
html.dark .contact-form-wrap,
html.dark .kontakt-form-card,
html.dark .map-card,
html.dark .faq-item,
html.dark .step-card,
html.dark .process-step,
html.dark .vermietung-card,
html.dark .flex-plan-card,
html.dark .flex-step-card,
html.dark .flex-result-panel,
html.dark .product-detail-card,
html.dark .product-detail-panel,
html.dark .product-gallery-main,
html.dark .product-specs,
html.dark .share-menu-item,
html.dark .nav-dropdown,
html.dark .dept-nav-panel {
  background: var(--surface);
  border-color: var(--border-soft);
  color: var(--text);
}

html.dark .skeleton,
html.dark .product-skeleton {
  background: linear-gradient(110deg, #2a2a2e 8%, #1c1c1f 18%, #2a2a2e 33%);
}

html.dark .product-row:hover,
html.dark .serie-card:hover,
html.dark .area-card:hover {
  background: var(--bg-elevated);
}

html.dark .header-share-btn {
  background: var(--surface);
  border-color: var(--border-soft);
  color: var(--text);
}

html.dark .header-theme-btn {
  background: var(--surface);
}

html.dark .float-phone-btn svg {
  stroke: #1a1300;
}

/* Seiten mit Inline-Styles (Wartung, Über uns, Produkte) */
html.dark .about-page,
html.dark .story,
html.dark .team,
html.dark .produkte-page {
  background: var(--bg);
}

html.dark .team-card,
html.dark .why-card,
html.dark .service-why-card,
html.dark .serie-card,
html.dark .verkauf-overview,
html.dark .produkte-filter-btn {
  background: var(--surface);
  border-color: var(--border-soft);
  color: var(--text);
}

html.dark .serie-media {
  background: var(--surface-soft);
  border-bottom-color: var(--border-soft);
}

html.dark .spec-pills li {
  background: var(--surface-muted);
  color: var(--text);
}

html.dark .produkte-intro h1,
html.dark .verkauf-overview-card,
html.dark .serie-body h3 {
  color: var(--text);
}

html.dark .produkte-intro p,
html.dark .section-lead,
html.dark .story-panel p,
html.dark .service-why-card p,
html.dark .team-card p,
html.dark .why-card p,
html.dark .verkauf-overview p,
html.dark .verkauf-overview-card span,
html.dark .serie-body p,
html.dark .serie-artnr,
html.dark .serie-table th {
  color: var(--text-muted);
}

html.dark .produkte-filter-btn.is-active {
  color: #101214;
}

html.dark .verkauf-overview-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

html.dark .serie-table th,
html.dark .serie-table td {
  border-bottom-color: var(--border-soft);
}

html.dark .story-panel h3,
html.dark .team-card h3,
html.dark .why-card h3 {
  color: var(--text);
}

/* ==============================
   MOBILE UX (site-wide)
   ============================== */
@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-hero {
    padding-top: calc(48px + env(safe-area-inset-top, 0px));
    padding-bottom: 44px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

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

  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin-right: -16px;
    padding-right: 16px;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-chip {
    flex-shrink: 0;
  }

  .spec-data-table {
    min-width: 280px;
  }

  .share-overlay-inner {
    max-width: min(280px, calc(100vw - 32px));
    margin: 0 16px;
  }
}

@media (max-width: 380px) {
  .topbar-inner {
    font-size: 11px;
    gap: 10px;
  }

  .topbar-item {
    gap: 4px;
  }

  .logo-img {
    height: 32px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .btn:hover,
  .mk-btn:hover,
  .area-card:hover,
  .product-card:hover,
  .rental-card:hover,
  .brand-item:hover {
    transform: none;
  }
}
