:root {
  --bg: #ffffff;
  --bg-alt: #f4f4f2;
  --bg-dark: #0d0d0f;
  --line: #e7e7e3;
  --line-lt: #d6d6d1;
  --text: #0d0d0f;
  --text-soft: #33333a;
  --muted: #6a6a72;
  --muted-2: #9a9aa0;
  --red: #e5231b;
  --red-deep: #c41710;
  --wa: #1fb457;
  --maxw: 1180px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--font); font-weight: 800; letter-spacing: -.04em; line-height: 1.0; }

/* Cursor glow */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 440px; height: 440px;
  margin: -220px 0 0 -220px; border-radius: 50%; pointer-events: none; z-index: 5;
  background: radial-gradient(circle, rgba(229,35,27,.10), transparent 60%);
  transform: translate3d(-1000px,-1000px,0); transition: opacity .3s;
}

/* Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 100;
  background: linear-gradient(90deg, var(--red-deep), var(--red)); transition: width .08s linear;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 700; font-size: 15px;
  padding: 14px 26px; border-radius: 6px; border: 1px solid transparent;
  cursor: pointer; transition: transform .18s var(--ease), background .2s, border-color .2s, color .2s, box-shadow .2s;
  will-change: transform; text-transform: uppercase; letter-spacing: .02em;
}
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px -8px rgba(229,35,27,.55); }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(229,35,27,.6); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-lt); }
.btn-ghost:hover { border-color: var(--text); }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-wa { background: var(--wa); color: #fff; margin-top: 10px; }
.btn-wa:hover { background: #17a34c; transform: translateY(-2px); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.9); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.4);
  transition: transform .5s var(--ease), opacity .35s ease;
}
/* Home: header hidden at top, slides in on scroll */
body[data-page="home"] .site-header { transform: translateY(-100%); opacity: 0; pointer-events: none; }
body[data-page="home"] .site-header.scrolled { transform: translateY(0); opacity: 1; pointer-events: auto; }
.header-inner { position: relative; display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; }
.brand-mark-txt { font-weight: 800; font-size: 23px; font-style: italic; color: var(--red); letter-spacing: -.05em; }
.brand-word { display: flex; flex-direction: column; line-height: 1; font-weight: 800; font-size: 15px; letter-spacing: -.02em; text-transform: uppercase; }
.brand-word small { font-size: 8.5px; font-weight: 700; letter-spacing: .34em; color: var(--red); margin-top: 4px; }
.nav { display: flex; gap: 30px; position: absolute; left: 50%; transform: translateX(-50%); }
.nav a { position: relative; color: var(--muted); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; transition: color .2s; }
.nav a:hover { color: var(--text); }
.nav a.active { color: var(--text); }
.nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -26px; height: 3px; background: var(--red); }

/* Subpage hero */
.page-hero { position: relative; overflow: hidden; padding: 84px 0 68px; border-bottom: 1px solid var(--line); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 90% at 88% 0%, rgba(229,35,27,.10), transparent 58%), linear-gradient(180deg, var(--bg-alt), var(--bg)); }
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(38px, 6.5vw, 76px); text-transform: uppercase; }
.page-hero p { color: var(--muted); font-size: 17px; margin-top: 16px; max-width: 500px; }

/* Ablauf steps */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.step { padding: 24px 0 6px; border-top: 3px solid var(--red); }
.step-num { font-weight: 800; font-size: 30px; color: var(--red); display: block; margin-bottom: 12px; }
.step h4 { font-size: 20px; margin-bottom: 8px; text-transform: uppercase; }
.step p { color: var(--muted); font-size: 15px; }

/* Hero */
.hero {
  position: relative; min-height: calc(100vh - 72px);
  min-height: calc(100svh - 72px);
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; padding: 48px 0; background: #050506;
}
/* Media layer: real image (if present) sits on top of CSS scene */
.hero-media { position: absolute; inset: -26px; z-index: 0; overflow: hidden; will-change: transform; }
.hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: 72% center;
  z-index: 1; animation: heroIn 1.7s var(--ease) both;
}
@keyframes heroIn { from { transform: scale(1.14); opacity: 0; filter: brightness(.4); } to { transform: scale(1); opacity: 1; filter: brightness(1); } }
/* Cinematic CSS scene (fallback when no photo) */
.hero-scene {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 70% at 50% 118%, rgba(229,35,27,.5), transparent 46%),
    radial-gradient(80% 60% at 82% -6%, rgba(229,35,27,.32), transparent 60%),
    radial-gradient(70% 80% at 12% 20%, rgba(120,10,6,.35), transparent 62%),
    linear-gradient(180deg, #0a0708 0%, #120a0b 45%, #050506 100%);
}
.hero-scene::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(-24deg, rgba(255,80,60,.05) 0 2px, transparent 2px 60px),
    linear-gradient(180deg, transparent 62%, rgba(255,60,40,.14) 74%, transparent 82%);
  mask: linear-gradient(180deg, #000, #000);
}
.hero-scene::after {
  content: ""; position: absolute; inset: 0; opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-overlay { position: absolute; inset: 0; z-index: 2; overflow: hidden; background: linear-gradient(90deg, rgba(3,3,4,.88) 0%, rgba(3,3,4,.55) 42%, rgba(3,3,4,.18) 70%, transparent 100%), linear-gradient(0deg, rgba(3,3,4,.72), transparent 40%); }
.hero-overlay::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.16) 50%, transparent 60%); transform: translateX(-130%); animation: heroSweep 1.9s var(--ease) .45s both; }
@keyframes heroSweep { to { transform: translateX(130%); } }

.hero-inner { position: relative; z-index: 3; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  text-transform: uppercase; letter-spacing: .22em; font-size: 12px;
  color: #fff; font-weight: 700; margin-bottom: 26px;
  text-shadow: 0 1px 10px rgba(0,0,0,.6);
}
.hero .eyebrow::before { content: ""; width: 34px; height: 3px; background: var(--red); transform: skewX(-24deg); }
.hero-title { font-family: "Kanit", var(--font); font-weight: 800; font-style: italic; font-size: clamp(46px, 8.6vw, 116px); letter-spacing: -.02em; line-height: .96; text-transform: uppercase; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,.55), 0 8px 30px rgba(0,0,0,.6); }
.hero-title span { display: block; }
.hero-title .hl { color: var(--red); text-shadow: 0 2px 4px rgba(0,0,0,.5), 0 6px 30px rgba(229,35,27,.35); }
.hero-sub { margin-top: 28px; font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,.78); max-width: 500px; text-shadow: 0 1px 12px rgba(0,0,0,.7); }
.hero-actions { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.32); }
.hero .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.5); font-size: 11px; text-transform: uppercase; letter-spacing: .2em; z-index: 3;
}
.scroll-cue span { width: 1px; height: 40px; background: linear-gradient(var(--red), transparent); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0%{transform:scaleY(0);transform-origin:top} 45%{transform:scaleY(1);transform-origin:top} 55%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* Hero — light variant (car left on white, text right, two columns) */
.hero-light { background: #fff; }
.hero-stage { display: flex; flex-direction: column; justify-content: center; gap: 30px; width: 100%; }
.hero-light .hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; width: 100%; }
.hero-car { position: relative; flex: 0 1 56%; display: flex; align-items: center; justify-content: center; }
.hero-glow { display: none; }
.hero-car img { position: relative; z-index: 1; width: 100%; max-width: 640px; max-height: 54vh; height: auto; object-fit: contain; display: block; animation: heroInLight 1.4s var(--ease) both; }
@keyframes heroInLight { from { transform: scale(1.05); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.hero-light .hero-copy { flex: 0 1 42%; max-width: 480px; }
.hero-light .eyebrow { color: var(--text); text-shadow: none; }
.hero-light .hero-title { color: var(--text); text-shadow: none; }
.hero-light .hero-title .hl { color: var(--red); text-shadow: none; }
.hero-light .hero-actions { margin-top: 0; justify-content: center; }
.hero-light .btn-ghost { color: var(--text); border-color: var(--line-lt); }
.hero-light .btn-ghost:hover { border-color: var(--text); background: rgba(0,0,0,.03); }

@media (max-width: 860px) {
  .hero-stage { gap: 20px; }
  .hero-light .hero-inner { flex-direction: column; gap: 18px; text-align: center; }
  .hero-car { flex: none; width: 100%; }
  .hero-car img { max-height: 30vh; }
  .hero-light .hero-copy { flex: none; max-width: 100%; }
  .hero-light .eyebrow { justify-content: center; }
}

/* Glow accents */
.kicker { text-shadow: 0 0 22px rgba(229,35,27,.4); }
.marquee-track .star { text-shadow: 0 0 18px rgba(229,35,27,.9); }
.stats-pin .stat-num { text-shadow: 0 0 36px rgba(255,255,255,.22); }
.stats-pin .stat-unit { text-shadow: 0 0 22px rgba(255,45,32,.75); }
.cta-band h2 { text-shadow: 0 0 50px rgba(229,35,27,.4); }
.pc-featured .pc-val { text-shadow: 0 0 28px rgba(229,35,27,.4); }
.why-idx { text-shadow: 0 0 16px rgba(229,35,27,.45); }
.fcard-status.live { animation: livePulse 2s ease-in-out infinite; }
.car-tag { animation: livePulse 2.4s ease-in-out infinite; }
@keyframes livePulse { 0%,100% { box-shadow: 0 0 0 0 rgba(229,35,27,.5); } 50% { box-shadow: 0 0 16px 2px rgba(229,35,27,.6); } }

/* Marquee (dark band) */
.marquee { overflow: hidden; background: var(--bg-dark); padding: 24px 0; }
.marquee-track { display: flex; gap: 40px; width: max-content; animation: marquee 24s linear infinite; }
.marquee-track span { font-weight: 800; font-size: clamp(24px,4vw,44px); letter-spacing: -.04em; color: #fff; white-space: nowrap; text-transform: uppercase; }
.marquee-track .star { color: var(--red); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Stats (dark band) */
.stats-pin { padding: 90px 0; background: var(--bg-dark); color: #fff; position: relative; overflow: hidden; }
.stats-pin::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 120% at 90% 0%, rgba(229,35,27,.16), transparent 55%); }
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { padding: 8px 0 8px 22px; border-left: 3px solid var(--red); }
.stat-num { font-weight: 800; font-size: clamp(44px,7vw,82px); letter-spacing: -.06em; line-height: 1; display: inline; }
.stat-unit { font-weight: 700; font-size: 22px; color: var(--red); margin-left: 4px; }
.stat-lbl { display: block; color: rgba(255,255,255,.55); font-size: 14px; margin-top: 12px; text-transform: uppercase; letter-spacing: .04em; }

/* Sections */
.section { padding: 108px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { margin-bottom: 54px; }
.kicker { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 700; color: var(--red); margin-bottom: 18px; }
.kicker::before { content: ""; width: 22px; height: 3px; background: var(--red); transform: skewX(-24deg); }
.section-head h2 { font-size: clamp(30px, 5vw, 60px); text-transform: uppercase; }
.section-sub { color: var(--muted); font-size: 16px; margin-top: 16px; max-width: 520px; }

/* Car (featured) */
.car { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--bg); }
.car-media { position: relative; }
.car-photo {
  height: 100%; min-height: 420px; display: grid; place-items: center;
  background: linear-gradient(135deg, #eaeae8, #f6f6f4);
  color: var(--muted-2); text-transform: uppercase; letter-spacing: .16em; font-size: 12px;
}
.car-tag { position: absolute; top: 18px; left: 18px; background: var(--red); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .04em; padding: 6px 15px; text-transform: uppercase; transform: skewX(-10deg); box-shadow: 0 8px 18px -8px rgba(229,35,27,.5); }
.car-tag { border-radius: 3px; }
.car-info { padding: 44px 44px 38px; }
.car-brand { text-transform: uppercase; letter-spacing: .16em; font-size: 12px; color: var(--muted); font-weight: 700; }
.car-model { font-size: clamp(44px,7vw,76px); margin: 6px 0 16px; text-transform: uppercase; font-style: italic; }
.car-desc { color: var(--muted); font-size: 16px; max-width: 420px; }
.car-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px; margin: 30px 0; }
.car-specs > div { display: flex; flex-direction: column; gap: 4px; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.car-specs span { color: var(--muted-2); font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; }
.car-specs strong { font-size: 16px; font-weight: 700; }
.car-cta { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.car-price { display: flex; align-items: baseline; gap: 8px; }
.car-price span { color: var(--muted); font-size: 15px; }
.car-price strong { font-weight: 800; font-size: 40px; letter-spacing: -.04em; }

/* Fleet head + filter */
.fleet-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin: 72px 0 30px; }
.fleet-head h3 { font-size: clamp(22px, 3vw, 32px); text-transform: uppercase; }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn { font-family: var(--font); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); background: var(--bg); border: 1px solid var(--line-lt); padding: 9px 18px; border-radius: 999px; cursor: pointer; transition: all .2s var(--ease); }
.filter-btn:hover { color: var(--text); border-color: var(--text); }
.filter-btn.is-active { color: #fff; background: var(--red); border-color: var(--red); box-shadow: 0 8px 18px -9px rgba(229,35,27,.55); }

/* Fleet grid */
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(288px, 1fr)); gap: 22px; }
.fcard { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--bg); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s, opacity .4s var(--ease); transform-style: preserve-3d; will-change: transform; }
.fcard:hover { box-shadow: 0 28px 50px -28px rgba(0,0,0,.3); border-color: var(--line-lt); }
.fcard.is-hidden { display: none; }
.fcard.filtering { opacity: 0; transform: scale(.94); }
.fcard-media { position: relative; aspect-ratio: 16/10; display: grid; place-items: center; background: linear-gradient(135deg, #eaeae8, #f6f6f4); overflow: hidden; }
.fcard-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.6) 50%, transparent 60%); transform: translateX(-120%); transition: transform .8s var(--ease); }
.fcard:hover .fcard-media::after { transform: translateX(120%); }
.fcard-photo { color: var(--muted-2); text-transform: uppercase; letter-spacing: .16em; font-size: 11px; transform: translateZ(20px); }
.fcard-cat { position: absolute; top: 12px; left: 12px; background: var(--bg-dark); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .04em; padding: 5px 11px; text-transform: uppercase; transform: skewX(-10deg); border-radius: 3px; }
.fcard-status { position: absolute; top: 12px; right: 12px; font-size: 11px; font-weight: 700; letter-spacing: .04em; padding: 5px 11px; text-transform: uppercase; transform: skewX(-10deg); border-radius: 3px; background: #fff; border: 1px solid var(--line); color: var(--muted); }
.fcard-status.live { background: var(--red); border-color: var(--red); color: #fff; }
.fcard-body { padding: 20px 20px 22px; transform: translateZ(30px); }
.fcard-brand { text-transform: uppercase; letter-spacing: .12em; font-size: 11px; color: var(--muted); font-weight: 700; }
.fcard-body h4 { font-size: 24px; margin: 3px 0 14px; letter-spacing: -.03em; text-transform: uppercase; font-style: italic; }
.fcard-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.fcard-chips span { font-size: 12.5px; font-weight: 700; color: var(--text-soft); background: var(--bg-alt); border: 1px solid var(--line); padding: 5px 10px; border-radius: 5px; }
.fcard-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.fcard-price { font-weight: 800; font-size: 18px; letter-spacing: -.02em; }
.fcard-price small { font-size: 12px; color: var(--muted); font-weight: 500; margin-left: 3px; }
.fcard-live { border-color: rgba(229,35,27,.35); }

/* Why */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.why { padding: 22px 0 6px; border-top: 3px solid var(--red); }
.why-idx { font-weight: 800; font-size: 15px; color: var(--red); letter-spacing: .1em; }
.why h4 { font-size: 23px; margin: 14px 0 12px; letter-spacing: -.03em; text-transform: uppercase; }
.why p { color: var(--muted); font-size: 16px; }

/* Price cards */
.price-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.pc { position: relative; border: 1px solid var(--line); border-radius: 12px; padding: 34px 28px; display: flex; flex-direction: column; gap: 8px; background: var(--bg); transition: border-color .25s, transform .25s var(--ease), box-shadow .25s; }
.pc:hover { transform: translateY(-4px); box-shadow: 0 24px 46px -26px rgba(0,0,0,.24); }
.pc-featured { border-color: var(--red); box-shadow: 0 24px 46px -28px rgba(229,35,27,.45); }
.pc-badge { position: absolute; top: -12px; right: 24px; background: var(--red); color: #fff; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 5px 14px; transform: skewX(-10deg); border-radius: 3px; }
.pc-tier { text-transform: uppercase; letter-spacing: .12em; font-size: 12.5px; color: var(--muted); font-weight: 700; }
.pc-val { font-weight: 800; font-size: 42px; letter-spacing: -.04em; }
.pc-val small { font-size: 15px; color: var(--muted); font-weight: 500; margin-left: 5px; }
.pc ul { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 12px; }
.pc li { position: relative; padding-left: 26px; color: var(--text-soft); font-size: 15px; }
.pc li::before { content: ""; position: absolute; left: 2px; top: 7px; width: 13px; height: 7px; border-left: 2px solid var(--red); border-bottom: 2px solid var(--red); transform: rotate(-45deg); }
.fineprint { margin-top: 32px; color: var(--muted); font-size: 13.5px; max-width: 720px; }

/* Preise: inklusive strip + table */
.incl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
.incl-item { border: 1px solid var(--line); border-radius: 12px; padding: 22px 24px; border-left: 3px solid var(--red); }
.incl-item strong { display: block; font-size: 22px; letter-spacing: -.02em; }
.incl-item span { color: var(--muted); font-size: 14px; }
.ptable { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.ptable-head, .ptable-row { display: grid; grid-template-columns: 2.2fr 1fr .8fr .8fr auto; align-items: center; gap: 14px; padding: 14px 24px; }
.pt-act { text-align: right; }
.ptable-head { background: var(--bg-alt); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.ptable-row { border-top: 1px solid var(--line); transition: background .2s; }
.ptable-row:hover { background: var(--bg-alt); }
.ptable-row.is-live { background: rgba(229,35,27,.05); }
.pt-car { font-weight: 700; font-size: 16px; }
.pt-car em { font-style: normal; font-size: 10.5px; text-transform: uppercase; letter-spacing: .04em; background: var(--red); color: #fff; padding: 3px 9px; border-radius: 4px; margin-left: 8px; vertical-align: middle; }
.pt-cat { color: var(--muted); font-size: 14px; }
.pt-price { font-weight: 800; font-size: 17px; }
.ptable-row:not(.is-live) .pt-price { color: var(--text-soft); font-weight: 700; }

@media (max-width: 720px) {
  .incl { grid-template-columns: 1fr; }
  .ptable-head { display: none; }
  .ptable-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 20px; }
  .pt-car { font-size: 18px; margin-bottom: 6px; }
  .pt-cat::before, .pt-price::before { content: attr(data-label) ": "; color: var(--muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
  .pt-price { font-size: 16px; }
  .pt-act { text-align: left; margin-top: 8px; }
  .pt-act .btn { width: 100%; }
}

/* CTA band (dark) */
.cta-band { padding: 116px 0; text-align: center; background: radial-gradient(70% 130% at 50% 0%, rgba(229,35,27,.2), transparent 60%), var(--bg-dark); color: #fff; }
.cta-band h2 { font-size: clamp(30px,5.5vw,62px); margin-bottom: 32px; text-transform: uppercase; }

/* Contact */
.contact-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: start; }
.contact-text h2 { font-size: clamp(30px,5vw,54px); text-transform: uppercase; }
.contact-text > p { color: var(--muted); margin-top: 16px; font-size: 17px; max-width: 420px; }
.btn-wa svg { flex-shrink: 0; }
.contact-h { font-size: clamp(28px, 5vw, 46px); text-transform: uppercase; }
.contact-p { color: var(--muted); font-size: 16px; margin: 14px 0 22px; max-width: 400px; }
.contact-text .btn { margin-right: 10px; }
.contact-card { border: 1px solid var(--line); border-radius: 12px; padding: 28px 30px; background: var(--bg-alt); align-self: start; }
.contact-card .contact-list { margin-top: 0; }
.contact-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; flex-direction: column; gap: 2px; }
.contact-list strong { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.contact-list li span, .contact-list li a { font-size: 17px; color: var(--text); }
.contact-list a:hover { color: var(--red); }
.contact-form { border: 1px solid var(--line); border-radius: 12px; padding: 32px; display: flex; flex-direction: column; gap: 16px; background: var(--bg-alt); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: 13px; color: var(--muted); font-weight: 600; }
.field input, .field select, .field textarea { background: var(--bg); border: 1px solid var(--line-lt); border-radius: 7px; padding: 13px 14px; color: var(--text); font-size: 15px; font-family: inherit; transition: border-color .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); }
.field textarea { resize: vertical; }
.form-note { color: #0f9a45; font-size: 14px; text-align: center; }

/* Footer */
.site-footer { background: var(--bg-dark); color: #fff; border-top: 1px solid #000; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; padding: 32px 26px; gap: 18px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 15px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-addr, .footer-copy { color: rgba(255,255,255,.45); font-size: 13.5px; }

/* Impressum (legacy section) */
.imprint { background: var(--bg); border-top: 1px solid var(--line); padding: 60px 0; }
.imprint h3 { font-size: 22px; margin-bottom: 14px; text-transform: uppercase; }
.imprint p { color: var(--muted); font-size: 14.5px; margin-bottom: 14px; line-height: 1.8; }
.imprint strong { color: var(--text); font-weight: 600; }

/* Legal pages */
.legal { padding: 72px 0 96px; }
.legal .container { max-width: 780px; }
.legal h2 { font-size: 22px; margin: 40px 0 14px; text-transform: uppercase; letter-spacing: -.02em; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { color: var(--text-soft); font-size: 15px; line-height: 1.8; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--red); }
.legal strong { color: var(--text); font-weight: 700; }
.legal .legal-note { margin-top: 40px; padding: 16px 18px; border-left: 3px solid var(--red); background: var(--bg-alt); color: var(--muted); font-size: 13.5px; }

/* Popup */
.popup { position: fixed; inset: 0; z-index: 90; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(13,13,15,.5); backdrop-filter: blur(5px); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.popup.open { opacity: 1; visibility: visible; }
.popup-card { position: relative; width: 100%; max-width: 420px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 36px 32px; box-shadow: 0 30px 70px -30px rgba(0,0,0,.4); transform: translateY(24px) scale(.98); transition: transform .4s var(--ease); }
.popup.open .popup-card { transform: none; }
.popup-close { position: absolute; top: 14px; right: 16px; background: none; border: none; color: var(--muted); font-size: 26px; line-height: 1; cursor: pointer; transition: color .2s; }
.popup-close:hover { color: var(--text); }
.popup-card h3 { font-size: 27px; margin: 8px 0 10px; text-transform: uppercase; }
.popup-card > p { color: var(--muted); font-size: 15px; margin-bottom: 20px; }
.popup-card form { display: flex; flex-direction: column; gap: 12px; }
.popup-card input { background: var(--bg); border: 1px solid var(--line-lt); border-radius: 7px; padding: 13px 14px; color: var(--text); font-size: 15px; font-family: inherit; }
.popup-card input:focus { outline: none; border-color: var(--red); }
.popup-fine { text-align: center; color: var(--muted); font-size: 12.5px; margin-top: 14px; }

/* Booking modal form */
.modal-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }
#bookForm { display: flex; flex-direction: column; }
.mlabel { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin: 12px 0 6px; }
.mlabel .opt { color: var(--muted-2); font-weight: 500; text-transform: none; letter-spacing: 0; }
.mfield { width: 100%; background: var(--bg); border: 1px solid var(--line-lt); border-radius: 8px; padding: 12px 13px; color: var(--text); font-size: 15px; font-family: inherit; transition: border-color .18s; }
.mfield:focus { outline: none; border-color: var(--red); }
select.mfield { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 18px) 18px, calc(100% - 13px) 18px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.mrow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.price-preview { margin: 16px 0 2px; padding: 13px 15px; border-radius: 8px; background: rgba(229,35,27,.06); border: 1px solid rgba(229,35,27,.28); display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price-preview strong { font-size: 21px; color: var(--red); font-weight: 800; }
.price-preview span { color: var(--muted); font-size: 13px; }
#bookSubmit { margin-top: 18px; }
.modal-note { margin-top: 10px; font-size: 13.5px; color: #0f9a45; text-align: center; }
.modal-note.err { color: var(--red); }
.modal-note a { color: var(--red); }
.pp-group { margin-bottom: 16px; }
.pp-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; margin-bottom: 9px; }
.pp-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pp-chip { font-family: var(--font); font-size: 13.5px; font-weight: 600; color: var(--text-soft); background: var(--bg-alt); border: 1px solid var(--line-lt); padding: 9px 14px; border-radius: 8px; cursor: pointer; transition: all .18s var(--ease); }
.pp-chip em { font-style: normal; color: var(--red); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-left: 6px; }
.pp-chip:hover { border-color: var(--text); }
.pp-chip.is-on { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 6px 16px -8px rgba(229,35,27,.5); }
.pp-chip.is-on em { color: #fff; }
#ppSend { margin-top: 6px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: calc(var(--d, 0) * 90ms); }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 900px) {
  .nav { display: none; }
  .steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .car { grid-template-columns: 1fr; }
  .car-photo { min-height: 260px; }
  .why-grid, .price-cards { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 78px 0; }
}
@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; }
  .car-info { padding: 30px 24px; }
  .car-specs { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .scroll-cue span, .hero-scene, .hero-media img, .hero-overlay::after,
  .hero-car img, .fcard-status.live, .car-tag { animation: none; }
  .hero-media img, .hero-car img { opacity: 1; }
  .cursor-glow { display: none; }
  html { scroll-behavior: auto; }
}
