
/* ================= Root ================= */
html, body {
  margin: 0;
  padding: 0;
}
html, body{
  overflow-x: hidden;
}
.detailing-title{
  overflow-wrap: anywhere;   
  word-break: break-word;   
  hyphens: auto;            
}
/* ================= HEADER ================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(30, 30, 30, 0.65);
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 44px;
  display: block;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop a {
  position: relative;
  display: inline-block;

  padding: 14px 22px;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  transition: background 0.25s ease, color 0.25s ease;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  background: rgba(255, 255, 255, 0.12);
}

.nav-desktop a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: #ff4d2d;
  transition: width 0.25s ease;
}

.nav-desktop a:hover::before,
.nav-desktop a.is-active::before {
  width: 100%;
}


.burger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.burger span {
  width: 26px;
  height: 2px;
  background: #ffffff;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: block;
  }

  .burger {
    display: none;
  }
}

.nav-offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(86vw, 360px);
  padding: 88px 18px 18px;

  background: rgba(18, 18, 18, 0.96);
  backdrop-filter: blur(10px);

  transform: translateX(110%);
  transition: transform 0.28s ease;

  z-index: 1100;
}

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

.nav-offcanvas ul {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  gap: 8px;
}

.nav-offcanvas a {
  display: block;
  padding: 12px 14px;

  color: #fff;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;

  background: rgba(255,255,255,0.06);
}

.nav-offcanvas a:hover {
  background: rgba(255,255,255,0.12);
}


.header.is-solid {
  background: rgba(18, 18, 18, 0.92);
}

.nav-desktop ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop .has-dropdown{
  position: relative;
}

.nav-desktop .has-dropdown > a{
  position: relative;
}

.nav-desktop .dropdown{
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);

  min-width: 240px;
  padding: 10px;

  background: rgba(10,10,10,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-desktop .dropdown::before{
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-desktop .dropdown a{
  display: block;
  padding: 12px 12px;
  text-decoration: none;

  color: rgba(255,255,255,0.92);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  border-radius: 10px;
  border: 1px solid transparent;

  transition: background .18s ease, border-color .18s ease;
}

.nav-desktop .dropdown a:hover{
  background: rgba(255,122,0,0.14);
  border-color: rgba(255,122,0,0.35);
}

.nav-desktop .has-dropdown:hover .dropdown{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-2px);
}

.nav-desktop .has-dropdown:focus-within .dropdown{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-2px);
}


.nav-offcanvas .has-sub{
  display: block;
}

.nav-subtoggle{
  width: 100%;
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  padding: 14px 0;
  cursor: pointer;
}

.nav-submenu{
  list-style: none;
  margin: 0;
  padding: 0 0 10px 0;

  max-height: 0;
  overflow: hidden;
  transition: max-height .22s ease;
}

.nav-submenu a{
  display: block;
  padding: 10px 0 10px 12px;
  opacity: 0.9;
}

.nav-offcanvas .has-sub.is-open .nav-submenu{
  max-height: 240px;
}
.nav-offcanvas .nav-subtoggle{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);

  padding: 14px 14px;
  margin: 8px 0;

  color: rgba(255,255,255,0.92);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;

  cursor: pointer;
}

.nav-offcanvas .nav-subtoggle::after{
  content: "▾";
  opacity: 0.85;
  transform: translateY(-1px);
  transition: transform .18s ease, opacity .18s ease;
}

.nav-offcanvas .has-sub.is-open .nav-subtoggle::after{
  transform: rotate(180deg) translateY(1px);
  opacity: 1;
}

.nav-offcanvas .nav-submenu{
  margin: 0 0 12px;
  padding: 6px 0 0 0;

  border-left: 1px solid rgba(255,122,0,0.35);
}

.nav-offcanvas .nav-submenu a{
  display: block;
  padding: 12px 14px 12px 18px;
  margin: 6px 0 0 10px;

  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);

  color: rgba(255,255,255,0.88);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.nav-offcanvas .nav-subtoggle:hover{
  background: rgba(255,122,0,0.10);
  border-color: rgba(255,122,0,0.28);
}

.nav-offcanvas .nav-submenu a:hover{
  background: rgba(255,122,0,0.10);
  border-color: rgba(255,122,0,0.25);
}



/* ================= HERO SLIDER ================= */

.hero {
  position: relative;
  min-height: 100svh;
}

.hero-slider {
  position: relative;
  height: 100svh;
  overflow: hidden;
}

/* Track */
.hero-track {
  display: flex;
  height: 100%;
  transform: translateX(0);
  will-change: transform;
}

/* Slide */
.hero-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Background image layer (für Zoom) */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1);
  will-change: transform;
}

/* Dark overlay für Lesbarkeit */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.40) 0%,
    rgba(0,0,0,0.38) 45%,
    rgba(0,0,0,0.55) 100%
  );
  pointer-events: none;
}

/* Zoom-in Effekt pro aktivem Slide */
.hero-slide.is-active .hero-bg {
  animation: heroZoom 6.5s ease-out both;
}

@keyframes heroZoom {
  from { transform: scale(1.00); }
  to   { transform: scale(1.08); }
}

/* Content: mittig, aber tiefer (ca. 2/3 Höhe) */
.hero-content {
  position: absolute;
  left: 50%;
  top: 66vh;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: min(92vw, 900px);
  padding: 0 10px;
}

.hero-title {
  margin: 0 0 14px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: clamp(26px, 4.2vw, 52px);
}

/* CTA im Stil wie Referenz */
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 180px;
  padding: 12px 18px;

  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;

  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
}

/* kleiner Akzentblock links wie im Theme */
.hero-cta::before {
  content: "";
  width: 3px;
  height: 18px;
  background: #ff4d2d;
}

.hero-cta:hover {
  background: rgba(255,255,255,0.18);
}

/* Controls unten */
.hero-controls {
  position: absolute;
  inset: auto 0 22px 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 22px;
  pointer-events: none;
}

/* Pfeile unten links */
.hero-arrows {
  display: flex;
  gap: 10px;
  pointer-events: auto;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.28);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.hero-arrow:hover {
  background: rgba(0,0,0,0.40);
}

/* Zahlen unten rechts */
.hero-dots {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  pointer-events: auto;
}

.hero-dot {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: rgba(255,255,255,0.70);
  font-size: 14px;
  letter-spacing: 0.12em;
  padding: 6px 2px;
}

.hero-dot.is-active {
  color: #fff;
  font-size: 18px;
}

/* optional: kleine Unterlinie beim aktiven */
.hero-dot.is-active::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 8px;
  background: rgba(255,255,255,0.55);
}

/* Responsive Feinheiten */
@media (max-width: 640px) {
  .hero-content {
    top: 64vh;
  }
  .hero-controls {
    padding: 0 14px;
  }
}



/* ================= SECTION: HAUPTGESCHÄFT ================= */

.section-core {
  background: #070707;
  color: #fff;
  padding: 108px 0;
}

.core-wrap {
  width: min(1260px, calc(100% - 64px));
  margin: 0 auto;
}


.core-top {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 44px;
  align-items: start;
}

.core-bottom {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: stretch;
}


.core-left {
  position: relative;
  min-height: 320px;
}

.core-kicker {
  font-size: 9px; /* 3 Nummern kleiner */
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
}

.core-title {
  margin: 14px 0 0;
  font-size: clamp(34px, 5.2vw, 72px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.core-outline {
  position: absolute;
  left: 0;
  top: 112px;
  z-index: 0;
  line-height: 0.95;
  pointer-events: none;
  user-select: none;
}

.core-outline div {
  font-size: clamp(34px, 6.2vw, 72px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: transparent;

  -webkit-text-stroke: 1.2px rgba(255,255,255,0.16);
}

.core-left > *:not(.core-outline) {
  position: relative;
  z-index: 1;
}


.core-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 30px;
}

.core-card-title {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
}

.core-card-big {
  margin: 10px 0 12px;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.core-card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  opacity: 0.9;
}

.core-list {
  margin: 14px 0 0;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.85;
  opacity: 0.95;
}


.core-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 18px;
  padding: 12px 18px;
  min-width: 190px;

  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;

  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
}

.core-btn::before {
  content: "";
  width: 3px;
  height: 18px;
  background: #ff4d2d;
}

.core-btn:hover {
  background: rgba(255,255,255,0.16);
}

.core-btn-ghost {
  background: rgba(0,0,0,0.30);
}


.core-stats {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 26px 26px 22px;
}

.core-stat + .core-stat {
  margin-top: 18px;
}

.core-stat-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.core-bar {
  margin-top: 10px;
  height: 2px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
}

.core-bar i {
  display: block;
  height: 100%;
  background: #ff4d2d;
}


.core-mini {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.core-mini-k {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
}

.core-mini-items {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.core-pill {
  padding: 12px 14px;
  font-size: 12px;
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}


.core-tile {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}

.core-tile-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.core-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.20),
    rgba(0,0,0,0.72)
  );
}

.core-tile-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  z-index: 2;
}

.core-tile-k {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}

.core-tile-h {
  margin-top: 10px;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.25;
}


@media (max-width: 980px) {
  .section-core {
    padding: 78px 0;
  }

  .core-top,
  .core-bottom {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .core-wrap {
    width: min(1200px, calc(100% - 32px));
  }

  .core-left {
    min-height: 260px;
  }

  .core-outline {
    top: 104px;
  }
}



/* ================= SECTION: ÜBER UNS (Kontrast) ================= */

.section-features{
  background: #050505;
  color: #fff;
  padding: 104px 0;
}

.features-wrap{
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.features-kicker{
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

.features-title{
  margin: 18px 0 14px;
  font-size: clamp(34px, 4.4vw, 64px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.03;
}

.features-lead{
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  opacity: 0.85;
  max-width: 520px;
}

.features-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 34px;
}

.features-grid .feature:nth-child(5){
  grid-column: 1 / span 1;
}

.feature{
  padding-top: 8px;
}

.feature-head{
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-accent{
  width: 2px;
  height: 18px;
  background: #ff4d2d;
  flex: 0 0 auto;
}

.feature-title{
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-text{
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.9;
  opacity: 0.82;
  max-width: 440px;
}

@media (max-width: 980px){
  .section-features{
    padding: 78px 0;
  }

  .features-wrap{
    width: min(1200px, calc(100% - 32px));
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .features-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .features-grid .feature:nth-child(5){
    grid-column: auto;
  }
}

.ueber-uns-video{
  width: 100%;
  max-width: 520px;     
  aspect-ratio: 1 / 1;  
  height: auto;

  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 980px){
  .ueber-uns-video{
    height: 52vh;
    min-height: 300px;
  }
}

@media (max-width: 600px){
  .ueber-uns-video{
    height: 30vh;
    min-height: 200px;
  }
}

/* Container muss relative sein */
.ueber-uns-video{
  position: relative;
  overflow: hidden;
}

/* PLAY BUTTON */
.play-button{
  position: absolute;
  inset: 0;
  margin: auto;

  width: 84px;
  height: 84px;

  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform .2s ease, background .2s ease;
}

/* Dreieck */
.play-button::before{
  content: "";
  margin-left: 4px; /* optisch zentrieren */

  width: 0;
  height: 0;

  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent #fff;
}

/* Hover */
.ueber-uns-video:hover .play-button{
  transform: scale(1.08);
  background: rgba(255,122,0,0.75);
}

/* Mobile etwas kleiner */
@media (max-width: 600px){
  .play-button{
    width: 64px;
    height: 64px;
  }

  .play-button::before{
    border-width: 10px 0 10px 16px;
  }
}
/* ================= Fahrzeuge Ankauf ================= */


.tradein{
  background: #050505;
  color: #fff;
  padding: 108px 0;
}

.tradein-wrap{
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
}

.tradein-head{
  max-width: 860px;
  margin-bottom: 28px;
}

.tradein-title{
  margin: 14px 0 10px;
}

.tradein-lead{
  opacity: 0.85;
  line-height: 1.8;
}

.tradein-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

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

.tradein-card{
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 18px 18px 16px;
  min-height: 132px;
  overflow: hidden;
}

.tradein-card::before{
  content: "";
  position: absolute;
  left: 16px;
  top: 10%;
  width: 2px;
  height: 30%;
  background: #ff4d2d;
}

.tradein-card-title{
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  opacity: 1;
  margin-bottom: 10px;
  padding-left: 14px; 
}

.tradein-card-text{
  font-size: 14px;
  line-height: 1.75;
  opacity: 0.82;
  padding-left: 14px; 
}

.tradein-card-cta{
  grid-column: span 2;
  min-height: 170px;
  padding-bottom: 70px; 
}

.tradein-actions{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.tradein-actions .btn,
.tradein-actions .btn.btn-ghost{
  display: flex;
  align-items: center;
  justify-content: center;

  height: 56px;
  width: 100%;

  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;

  border: none;
  border-radius: 0;

  background: rgba(255,255,255,0.04);
  color: #fff;

  transition: background .2s ease, transform .2s ease;
}

.tradein-actions .btn + .btn,
.tradein-actions .btn + .btn.btn-ghost{
  border-left: 1px solid rgba(255,255,255,0.10);
}

.tradein-actions .btn:hover,
.tradein-actions .btn.btn-ghost:hover{
  background: rgba(255,122,0,0.14);
  transform: translateY(-1px);
}

.tradein-actions .btn:focus-visible,
.tradein-actions .btn.btn-ghost:focus-visible{
  outline: 2px solid rgba(255,122,0,0.9);
  outline-offset: -2px;
}

.tradein-media{
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
  min-height: 420px;
}

.tradein-media-inner{
  position: relative;
  z-index: 2;
  padding: 22px 22px 18px;
  max-width: 420px;
}

.tradein-media-kicker{
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
}

.tradein-media-title{
  margin: 12px 0 10px;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tradein-media-text{
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.82;
}

.tradein-media-bg{
  position: absolute;
  inset: 0;
  z-index: 1;

  background-image:
    linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.10) 100%),
    url("assets/hero2.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: contrast(1.05) brightness(0.85);
}

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

  .tradein-media{
    min-height: 320px;
  }

  .tradein-media-bg{
    background-attachment: scroll;
  }
}

@media (max-width: 640px){
  .tradein-wrap{
    width: min(1400px, calc(100% - 32px));
  }

  .tradein-cards{
    grid-template-columns: 1fr;
  }

  .tradein-card-cta{
    grid-column: auto;
  }

  .tradein-actions{
    grid-template-columns: 1fr;
  }

  .tradein-actions .btn + .btn,
  .tradein-actions .btn + .btn.btn-ghost{
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.10);
  }
}


/* ================= VIDEO SECTION (Cinematic) ================= */

.section-video{
  width: 100%;
  background: #000;
}

.video-wrap{
  position: relative;
  width: 100%;
  height: 65vh;             
  min-height: 380px;
  max-height: 620px;
  overflow: hidden;
}

.video-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;         
  object-position: center center;
}

.video-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.45) 0%,
      rgba(0,0,0,0.10) 35%,
      rgba(0,0,0,0.10) 65%,
      rgba(0,0,0,0.55) 100%
    );
  pointer-events: none;
}

.video-play{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 72px;
  height: 72px;

  background: #ff4d2d;
  color: #fff;
  border: none;
  font-size: 22px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play:hover{
  background: #ff623f;
}

@media (max-width: 980px){
  .video-wrap{
    height: 52vh;
    min-height: 300px;
  }
}

@media (max-width: 600px){
  .video-wrap{
    height: 44vh;
  }
}



/* ================= FAHRZEUGE / IFRAME ================= */

.section-vehicles{
  background: #050505;
  color: #fff;
  padding: 108px 0;
}

.vehicles-wrap{
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
}

/* Head */
.vehicles-head{
  max-width: 720px;
  margin-bottom: 28px;
}

.vehicles-kicker{
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

.vehicles-title{
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.6vw, 52px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vehicles-lead{
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.85;
}

/* iFrame Container */
.vehicles-frame{
  position: relative;
  width: 100%;
  height: 78vh;              /* kontrollierte Höhe */
  min-height: 520px;
  max-height: 900px;

  border: 1px solid rgba(255,255,255,0.12);
  background: #000;
  overflow: hidden;
}

/* weicher Übergang oben/unten */
.vehicles-frame::before,
.vehicles-frame::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:60px;
  z-index:2;
  pointer-events:none;
}

.vehicles-frame::before{
  top:0;
  background: linear-gradient(to bottom, rgba(5,5,5,0.9), rgba(5,5,5,0));
}

.vehicles-frame::after{
  bottom:0;
  background: linear-gradient(to top, rgba(5,5,5,0.9), rgba(5,5,5,0));
}

/* iFrame selbst */
.vehicles-frame iframe{
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
}

/* Hinweis */
.vehicles-note{
  margin-top: 14px;
  font-size: 12px;
  opacity: 0.55;
}

.vehicles-note span{
  color: #ff4d2d;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-right: 6px;
}

/* Responsive */
@media (max-width: 980px){
  .section-vehicles{
    padding: 78px 0;
  }

  .vehicles-wrap{
    width: min(1400px, calc(100% - 32px));
  }

  .vehicles-frame{
    height: 70vh;
    min-height: 460px;
  }
}

@media (max-width: 600px){
  .vehicles-frame{
    height: 68vh;
    min-height: 420px;
  }
}


/* ================= AUFBEREITUNG / DETAILING ================= */
.section-detailing{
  background: #050505;
  color: #fff;
  padding: 108px 0;
}

.detailing-wrap{
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
}

.detailing-head{
  max-width: 820px;
  margin-bottom: 28px;
}

.detailing-kicker{
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

.detailing-title{
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.6vw, 52px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.detailing-lead{
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.85;
}

.detailing-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: start;
}

/* ================= BEFORE/AFTER STAGE ================= */
.ba-stage{
  position: relative;
  border: 1px solid rgba(255,255,255,0.12);
  background: #000;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  border-radius: 18px;
}

.ba-track{
  width: 100%;
  height: 100%;
  position: relative;
}

.ba-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(3%);
  transition: opacity 650ms ease, transform 650ms ease;
  overflow: hidden;
}

.ba-slide.is-active{
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 1;
}

/* After = Basis (liegt unten) */
.ba-after{
  position: absolute;
  inset: 0;
  z-index: 1;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform: scale(1.03);
  transition: transform 1200ms ease;
}

.ba-slide.is-active .ba-after{
  transform: scale(1.00);
}

/* Before = liegt oben und wird über width "revealed" */
.ba-before-wrap{
  position: absolute;
  inset: 0;
  z-index: 2;

  width: 50%;
  overflow: hidden;
}

.ba-before{
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Handle (Drag-Bar) */
.ba-handle{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;

  width: 44px;
  cursor: ew-resize;
  touch-action: none;
  outline: none;
}

.ba-handle-line{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255,255,255,0.75);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.25);
}

.ba-handle-knob{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}

/* Subtle vignette */
.ba-stage::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index: 4;
  background: linear-gradient(to bottom, rgba(0,0,0,0.10), rgba(0,0,0,0.55));
}

/* Labels */
.ba-label{
  position: absolute;
  z-index: 5;

  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  padding: 10px 12px;
  border-radius: 999px;

  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
}

.ba-label-before{ left: 14px; top: 14px; }
.ba-label-after{ right: 14px; top: 14px; }

/* Nav */
.ba-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;

  width: 60px;
  height: 60px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: #fff;

  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.ba-nav:hover{
  background: rgba(255,255,255,0.14);
}

.ba-prev{ left: 18px; }
.ba-next{ right: 18px; }

/* Counter bottom-right */
.ba-count{
  position: absolute;
  right: 18px;
  bottom: 14px;
  z-index: 6;

  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;

  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 10px 12px;
  border-radius: 12px;
}

.ba-count #baCountNow{ font-size: 14px; }
.ba-count-sep{ opacity: 0.6; margin: 0 6px; }

/* ================= CONTENT CARD ================= */
.detailing-content{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 26px;
}

.detailing-subtitle{
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detailing-text{
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.85;
  opacity: 0.86;
}

.detailing-list{
  margin: 0 0 18px;
  padding-left: 16px;
  line-height: 1.8;
  opacity: 0.88;
  font-size: 13px;
}

.detailing-actions{
  margin-top: 18px;
}

.detailing-note{
  margin-top: 14px;
  font-size: 12px;
  opacity: 0.55;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 980px){
  .section-detailing{ padding: 78px 0; }
  .detailing-wrap{ width: min(1400px, calc(100% - 32px)); }
  .detailing-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .detailing-title{
    font-size: clamp(22px, 7vw, 34px);
    letter-spacing: 0.04em;
  }

  .ba-nav{
    width: 44px;
    height: 44px;
    font-size: 26px;
  }

  .ba-prev{ left: 10px; }
  .ba-next{ right: 10px; }
}



/* ================= PARTNER FULL WIDTH ================= */

.section-partners{
  background: #ff4d2d; /* oder #050505 wenn du es dunkel willst */
  padding: 0;
}

/* Full width – egal wo die Section liegt */
.partners-marquee{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 28px 0;
  position: relative;
}

/* leichte Abdunklung links/rechts */
.partners-marquee::before,
.partners-marquee::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width:120px;
  z-index:2;
  pointer-events:none;
}

.partners-marquee::before{
  left:0;
  background: linear-gradient(to right, rgba(0,0,0,0.55), rgba(0,0,0,0));
}

.partners-marquee::after{
  right:0;
  background: linear-gradient(to left, rgba(0,0,0,0.55), rgba(0,0,0,0));
}

/* Track */
.partners-track{
  display:flex;
  align-items:center;
  gap:64px;
  width:max-content;
  padding-left:64px;

  animation: partnersScrollLeft 28s linear infinite;
  will-change: transform;
}

/* STOP bei Hover */
.partners-marquee:hover .partners-track{
  animation-play-state: paused;
}

@keyframes partnersScrollLeft{
  from{
    transform: translateX(100%);
  }
  to{
    transform: translateX(-50%);
  }
}

/* Partner Logos */
.partner{
  display:flex;
  align-items:center;
  justify-content:center;
  height:64px;
  padding:10px 14px;
  transition: transform .25s ease, background .25s ease;
}

.partner img{
  height:80px;
  width:auto;
  filter: brightness(1) grayscale(1);
  opacity:.85;
  transition: filter .25s ease, opacity .25s ease;
}

.partner:hover{
  transform: scale(1.12);
  background: rgba(255,255,255,0.08);
}

.partner:hover img{
  filter: brightness(1) grayscale(0);
  opacity:1;
}

/* ================= CONTACT + STANDORT ================= */

.section-contact{
  background:#050505;
  color:#fff;
  padding: 96px 0;
}

.contact-wrap{
  width: min(1260px, calc(100% - 64px));
  margin: 0 auto;

  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items:start;
}

/* linke Spalte */
.contact-left .lead{
  max-width: 62ch;
}

/* Formular */
.contact-form{
  margin-top: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 26px;
}

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

.field{
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.field-full{
  grid-column: 1 / -1;
}

.label{
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .85;
}

.field input,
.field select,
.field textarea{
  width:100%;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.14);
  color:#fff;
  padding: 12px 12px;
  outline: none;
  font: inherit;
}

.field textarea{
  resize: vertical;
  min-height: 150px;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(255,77,45,0.65);
  box-shadow: 0 0 0 3px rgba(255,77,45,0.12);
}

.form-actions{
  margin-top: 16px;
  display:flex;
  gap: 14px;
  align-items:center;
  flex-wrap:wrap;
}

.form-hint{
  margin:0;
  font-size: 12px;
  line-height: 1.6;
  opacity: .75;
}

/* rechte Spalte */
.location-card{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  overflow:hidden;
}

.map-media{
  position: relative;
  height: 280px;
  background: rgba(255,255,255,0.02);
}

.map-embed{
  width:100%;
  height:100%;
  border:0;
  display:block;
  filter: grayscale(0.2) contrast(1.05);
}

.location-meta{
  padding: 16px 16px 18px;
  display:flex;
  justify-content: space-between;
  gap: 12px;
  align-items:flex-end;
}

.location-line{
  font-size: 13px;
  line-height: 1.6;
  opacity: .9;
}

.location-photos{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.photo{
  margin:0;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  overflow:hidden;
}

.photo img{
  width:100%;
  height: 160px;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
}

.photo figcaption{
  padding: 10px 12px;
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  opacity: .85;
}

/* Responsive */
@media (max-width: 980px){
  .contact-wrap{
    grid-template-columns: 1fr;
    width: min(1260px, calc(100% - 32px));
    gap: 22px;
  }

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

  .map-media{
    height: 240px;
  }

  .location-photos{
    grid-template-columns: 1fr;
  }

  .photo img{
    height: 200px;
  }
}

/* ================= FOOTER ================= */

.footer{
  background:#050505;
  color:#fff;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 64px 0 18px;
}

.footer-wrap{
  width: min(1260px, calc(100% - 64px));
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 34px;
  align-items:start;
}

.footer-title{
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 12px;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.footer-links a,
.footer-linkbtn{
  color: rgba(255,255,255,0.80);
  text-decoration:none;
  font-size: 14px;
  line-height: 1.6;
}

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

.footer-linkbtn{
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

/* Brand column */
.footer-brand{
  border-left: 1px solid rgba(255,255,255,0.10);
  padding-left: 26px;
}

.footer-logo{
  width: 180px;
  height: auto;
  display:block;
  opacity: .95;
}

.footer-slogan{
  margin: 14px 0 10px;
  font-size: 14px;
  line-height: 1.8;
  opacity: .85;
}

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

.footer-mini{
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(255,255,255,0.75);
  text-decoration:none;
}

.footer-mini:hover{
  color:#fff;
}

.footer-dot{
  opacity:.35;
}

.footer-bottom{
  width: min(1260px, calc(100% - 64px));
  margin: 26px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.10);

  display:flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;

  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .75;
}

.footer-bottom-right{
  opacity: .65;
}

/* ================= LEGAL MODAL ================= */

.legal-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.legal-modal.is-open{
  display:block;
}

.legal-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.70);
}

.legal-card{
  position: relative;
  width: min(960px, calc(100% - 32px));
  margin: 6vh auto;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 90px rgba(0,0,0,0.65);
}

.legal-head{
  display:flex;
  justify-content: space-between;
  gap: 14px;
  align-items:flex-start;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.legal-body{
  padding: 18px;
  max-height: 62vh;
  overflow:auto;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  font-size: 14px;
}

.legal-body h4{
  margin: 0 0 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
}

.legal-body p{
  margin: 0 0 14px;
  opacity: .92;
}

.legal-body ul{
  margin: 0 0 14px 18px;
  padding: 0;
}

@media (max-width: 980px){
  .footer-wrap{
    width: min(1260px, calc(100% - 32px));
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-brand{
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(255,255,255,0.10);
    padding-top: 18px;
  }

  .footer-bottom{
    width: min(1260px, calc(100% - 32px));
  }
}





/* ================= Whatsapp Button ================= */

.wa-float{
  position: fixed;
  right: 0;
  top: 30vh;                 
  transform: translateY(-10%);
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 14px 12px 16px;
  background: rgba(226, 112, 5, 0.575);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;

  border: 1px solid rgba(255,255,255,0.14);
  border-right: none;

  border-radius: 999px 0 0 999px; 
  box-shadow: 0 12px 26px rgba(0,0,0,0.35);

  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.wa-float.is-visible{
  opacity: 1;
  pointer-events: auto;
}

.wa-float:hover{
  background: rgba(23, 185, 8, 0.623);
}

/* Mobile: etwas kleiner */
@media (max-width: 520px){
  .wa-float{
    padding: 10px 12px 10px 14px;
    font-size: 14px;
  }
}

/* ================= Fix Button ================= */
.to-top{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;

  font-size: 18px;
  cursor: pointer;

  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease, transform 300ms ease, background 300ms ease;
}

.to-top::before{
  content: "";
  position: absolute;
  left: 0;
  width: 3px;
  height: 60%;
  background: #ff4d2d;
}

.to-top:hover{
  background: rgba(255,255,255,0.14);
  transform: translateY(-3px);
}

/* sichtbar */
.to-top.is-visible{
  opacity: 1;
  pointer-events: auto;
}