/* ==========================================================================
   Bartling Performance – Stylesheet
   ========================================================================== */

/* ---------- Schriften (selbst gehostet) ---------- */
@font-face { font-family: "Barlow Condensed"; font-weight: 600; font-display: swap; src: url("../assets/fonts/barlow-condensed-600.woff2") format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-weight: 700; font-display: swap; src: url("../assets/fonts/barlow-condensed-700.woff2") format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-weight: 800; font-display: swap; src: url("../assets/fonts/barlow-condensed-800.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-weight: 400; font-display: swap; src: url("../assets/fonts/inter-400.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-weight: 500; font-display: swap; src: url("../assets/fonts/inter-500.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-weight: 600; font-display: swap; src: url("../assets/fonts/inter-600.woff2") format("woff2"); }
@font-face { font-family: "JetBrains Mono"; font-weight: 400; font-display: swap; src: url("../assets/fonts/jetbrains-mono-400.woff2") format("woff2"); }
@font-face { font-family: "JetBrains Mono"; font-weight: 600; font-display: swap; src: url("../assets/fonts/jetbrains-mono-600.woff2") format("woff2"); }

:root {
  /* Marke */
  --red: #DC1E1E;
  --red-hover: #C41515;
  --red-soft: rgba(220, 30, 30, .1);
  --red-glow: rgba(220, 30, 30, .35);
  --red-text: #FF5A5A;          /* Rot für Text auf Dunkel (Kontrast) */

  /* Dunkle Flächen */
  --bg-0: #070708;
  --bg-1: #0C0C0E;
  --bg-2: #131316;
  --bg-3: #1B1B1F;
  --line-d: rgba(255, 255, 255, .09);
  --line-d2: rgba(255, 255, 255, .16);
  --text-d: #F3F2EF;
  --dim-d: rgba(243, 242, 239, .66);
  --mute-d: rgba(243, 242, 239, .42);

  /* Helle Flächen */
  --paper: #F5F4F2;
  --card: #FFFFFF;
  --card-2: #F7F6F4;
  --line: #E4E2DE;
  --ink: #0A0A0B;
  --text: #111113;
  --dim: #5E6066;
  --mute: #8A8C90;

  --gold: #F5A700;
  --wa: #25D366;

  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Barlow Condensed", "Roboto Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --radius-lg: 24px;
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1280px;
  --gutter: clamp(18px, 4vw, 40px);
  --header-h: 76px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --shadow: 0 1px 2px rgba(10, 10, 11, .04), 0 8px 24px -12px rgba(10, 10, 11, .12);
  --shadow-lg: 0 30px 60px -30px rgba(10, 10, 11, .35);
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--paper); color: var(--text);
  font-family: var(--font); font-size: 1rem; line-height: 1.6;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol, dl, dd, figure, blockquote, fieldset { margin: 0; padding: 0; list-style: none; border: 0; }
fieldset { min-width: 0; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; line-height: .95; letter-spacing: -.01em; color: var(--ink); text-wrap: balance; }
h1 em, h2 em { font-style: normal; color: var(--red); }
button, input { font: inherit; color: inherit; }
a, button, label { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 6px; }

.skip-link { position: absolute; left: 16px; top: -60px; z-index: 300; background: var(--red); color: #fff; padding: 10px 16px; border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 16px; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.mono { font-family: var(--font-mono); }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 26px; border-radius: 999px; border: 1px solid transparent; overflow: hidden;
  font-weight: 600; font-size: .95rem; letter-spacing: .005em; cursor: pointer; text-align: center; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .2s, border-color .2s, color .2s;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-icon { width: 19px; height: 19px; flex: none; }
.btn-lg { min-height: 56px; padding: 0 30px; font-size: 1rem; }
.btn-sm { min-height: 42px; padding: 0 18px; font-size: .88rem; }
.btn-block { width: 100%; }
.btn-mono { font-family: var(--font-mono); font-weight: 500; letter-spacing: .02em; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 30px -10px var(--red-glow), inset 0 1px 0 rgba(255, 255, 255, .18); }
.btn-primary:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(220, 30, 30, .55), inset 0 1px 0 rgba(255, 255, 255, .18); }
.btn-primary::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .28) 50%, transparent 70%);
  background-size: 250% 100%; background-position: 130% 0; transition: background-position .8s var(--ease);
}
.btn-primary:hover::after { background-position: -30% 0; }
.btn-ghost { background: rgba(255, 255, 255, .04); color: var(--text-d); border-color: var(--line-d2); }
.btn-ghost:hover { background: rgba(255, 255, 255, .09); border-color: rgba(255, 255, 255, .4); }
.btn-glass { background: rgba(10, 10, 11, .35); color: var(--text-d); border-color: rgba(255, 255, 255, .22); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn-glass:hover { background: rgba(10, 10, 11, .55); border-color: rgba(255, 255, 255, .5); }
.btn-glass .btn-icon { transition: transform .25s var(--ease); }
.btn-glass:hover .btn-icon { transform: translateX(3px); }
.btn-outline { background: var(--card); color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); }

/* ---------- Eyebrow / Ticks / Pill ---------- */
.ticks { display: inline-flex; align-items: flex-end; gap: 2px; height: 12px; }
.ticks span { width: 2px; background: var(--red); display: block; }
.ticks span:nth-child(1) { height: 4px; }
.ticks span:nth-child(2) { height: 7px; }
.ticks span:nth-child(3) { height: 10px; }
.ticks span:nth-child(4) { height: 12px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--red);
}
.section-dark .eyebrow, .section-graphite .eyebrow, .eyebrow-light { color: var(--red-text); }
.pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 18px; margin-bottom: 28px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-d);
  border: 1px solid rgba(255, 255, 255, .18); border-radius: 999px; background: rgba(10, 10, 11, .35);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}

/* ---------- Scroll-Fortschritt ---------- */
.scroll-progress { position: fixed; inset: 0 0 auto; height: 2px; z-index: 150; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; width: 100%; background: var(--red); transform-origin: 0 50%; transform: scaleX(var(--progress, 0)); box-shadow: 0 0 12px var(--red-glow); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-h); color: var(--text-d);
  transition: background-color .35s var(--ease), border-color .35s var(--ease), height .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled, .site-header.is-solid {
  background: rgba(7, 7, 8, .95); border-bottom-color: var(--line-d);
  backdrop-filter: saturate(160%) blur(18px); -webkit-backdrop-filter: saturate(160%) blur(18px);
}
.site-header.is-scrolled { height: 66px; }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; flex: none; min-height: 44px; }
.logo img { height: 40px; width: auto; transition: height .35s var(--ease); }
.site-header.is-scrolled .logo img { height: 34px; }
.logo-footer img { height: 58px; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav ul { display: flex; gap: 4px; padding: 5px; border-radius: 999px; background: rgba(255, 255, 255, .04); border: 1px solid var(--line-d); }
.main-nav ul a {
  display: block; padding: 8px 16px; border-radius: 999px; font-size: .88rem; font-weight: 500; color: var(--dim-d);
  transition: color .2s, background-color .2s;
}
.main-nav ul a:hover { color: #fff; background: rgba(255, 255, 255, .06); }
.main-nav ul a.is-active { color: #fff; background: rgba(255, 255, 255, .1); box-shadow: inset 0 -2px 0 var(--red); }

.nav-toggle {
  display: none; position: relative; z-index: 120; width: 46px; height: 46px; cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .22); border-radius: 50%; background: rgba(10, 10, 11, .35);
}
.nav-toggle span { position: absolute; left: 14px; right: 14px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden; background: var(--bg-0); color: var(--text-d);
  min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--header-h) + 56px) 0 40px;
}
.hero-media { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.hero-media img {
  width: 100%; height: 118%; object-fit: cover; object-position: center 58%;
  transform: translate3d(0, calc(var(--parallax, 0) * 1px), 0);
  animation: hero-in 2.4s var(--ease-out) both; will-change: transform;
}
@keyframes hero-in { from { opacity: 0; scale: 1.12; } to { opacity: 1; scale: 1.04; } }
.hero-shade {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 7, 8, .88) 0%, rgba(7, 7, 8, .55) 42%, rgba(7, 7, 8, .15) 70%, rgba(7, 7, 8, .45) 100%),
    linear-gradient(180deg, rgba(7, 7, 8, .55) 0%, rgba(7, 7, 8, 0) 28%, rgba(7, 7, 8, 0) 55%, rgba(7, 7, 8, .95) 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: -1; opacity: .35; pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 40%, #000 70%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 40%, #000 70%, transparent 100%);
}
.hero-inner { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 48px; align-items: end; }
.hero-title {
  color: var(--text-d); font-size: clamp(3.4rem, 10vw, 9.2rem); line-height: .86; margin-bottom: 26px;
  text-shadow: 0 10px 40px rgba(0, 0, 0, .45);
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: .04em; }
.hero-title .line > span { display: inline-block; transform: translateY(105%); animation: line-up 1.1s var(--ease-out) .15s forwards; }
.hero-title .line:nth-child(2) > span { animation-delay: .27s; }
@keyframes line-up { to { transform: translateY(0); } }
.hero-sub { max-width: 520px; font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--dim-d); margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-trust { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; font-size: .88rem; color: var(--dim-d); }
.hero-trust strong { color: #fff; font-weight: 600; transition: color .2s; }
.hero-trust .stars { font-size: 13px; }
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--mute-d); }
.hero-trust:hover strong { color: var(--red-text); }

.hero-card {
  justify-self: end; width: 100%; max-width: 380px; padding: 22px 22px 14px; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(27, 27, 31, .72), rgba(12, 12, 14, .72));
  border: 1px solid var(--line-d2); box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .9), inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.hero-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--mute-d); }
.live { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); }
.live span { width: 7px; height: 7px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 0 rgba(37, 211, 102, .6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

.tacho { width: 100%; height: auto; overflow: visible; }
.tacho-track, .tacho-fill { fill: none; stroke-width: 10; stroke-linecap: round; }
.tacho-track { stroke: rgba(255, 255, 255, .08); }
.tacho-fill { stroke: var(--red); stroke-dasharray: 1000; stroke-dashoffset: 1000; filter: drop-shadow(0 0 8px rgba(220, 30, 30, .55)); transition: stroke-dashoffset 2s var(--ease-out); }
.tacho-ticks line { stroke: rgba(255, 255, 255, .28); stroke-width: 1; }
.tacho-ticks line.major { stroke: rgba(255, 255, 255, .55); stroke-width: 1.5; }
.tacho-ticks text { fill: var(--mute-d); font-family: var(--font-mono); font-size: 7.5px; }
.tacho-marker line { stroke-width: 2.5; stroke-linecap: round; }
.tacho-marker text { font-family: var(--font-mono); font-size: 9px; font-weight: 600; fill: var(--text-d); }
.tacho-marker-rs3 line { stroke: #E9E7E2; }
.tacho-marker-m4 line { stroke: var(--red); }
.tacho-marker { opacity: 0; transition: opacity .5s .9s; }
.tacho.is-on .tacho-marker { opacity: 1; }
.tacho-value { fill: #fff; font-family: var(--font-display); font-weight: 800; font-size: 46px; letter-spacing: -.01em; }
.tacho-unit { fill: var(--mute-d); font-family: var(--font-mono); font-size: 7.5px; letter-spacing: .18em; }
.hero-card-list { margin-top: 8px; border-top: 1px solid var(--line-d); }
.hero-card-list a {
  display: grid; grid-template-columns: auto 1fr auto; grid-template-areas: "sw name price" "sw ps price";
  column-gap: 12px; align-items: center; padding: 12px 4px; border-bottom: 1px solid var(--line-d); transition: background-color .2s;
}
.hero-card-list li:last-child a { border-bottom: 0; }
.hero-card-list a:hover { background: rgba(255, 255, 255, .03); }
.hero-card-list .swatch { grid-area: sw; width: 10px; height: 10px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 2px var(--bg-2); }
.hero-card-list .swatch-light { background: #E9E7E2; }
.hero-card-list strong { grid-area: name; font-size: .88rem; font-weight: 600; color: var(--text-d); }
.hero-card-list .mono { grid-area: ps; font-size: 12px; color: var(--mute-d); }
.hero-card-list .price { grid-area: price; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: #fff; }

.hero-stats { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-d2); }
.hero-stats div { padding: 22px 20px 4px 0; }
.hero-stats div + div { padding-left: 24px; border-left: 1px solid var(--line-d); }
.hero-stats dt { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute-d); margin-bottom: 4px; }
.hero-stats dd { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1; color: #fff; }
.scroll-cue { position: absolute; left: 50%; bottom: 18px; width: 26px; height: 42px; margin-left: -13px; border: 1.5px solid rgba(255, 255, 255, .35); border-radius: 14px; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 2px; background: #fff; animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- Laufband ---------- */
.marquee { position: relative; z-index: 2; overflow: hidden; background: var(--red); color: #fff; padding: 16px 0; transform: skewY(-1.5deg); margin: -14px 0; box-shadow: 0 20px 40px -20px rgba(220, 30, 30, .6); }
.marquee-track { display: flex; width: max-content; gap: 34px; align-items: center; animation: marquee 38s linear infinite; }
.marquee span { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; text-transform: uppercase; letter-spacing: .02em; white-space: nowrap; transform: skewY(1.5deg); }
.marquee i { font-style: normal; font-family: var(--font-mono); font-size: .9rem; opacity: .85; white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { position: relative; padding: clamp(84px, 11vw, 140px) 0; }
.section-dark { background: var(--bg-1); color: var(--text-d); }
.section-graphite { background: var(--bg-2); color: var(--text-d); }
.section-light { background: var(--paper); }
.section-border { border-top: 1px solid var(--line); }
.section-dark h2, .section-dark h3, .section-graphite h2, .section-graphite h3 { color: var(--text-d); }
.section-head { max-width: 780px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head-center { margin-inline: auto; text-align: center; }
.section h2 { font-size: clamp(2.6rem, 6.4vw, 5rem); margin-bottom: 18px; }
.sub { color: var(--dim); font-size: 1.05rem; max-width: 620px; }
.section-head-center .sub { margin-inline: auto; }
.section-dark .sub, .section-graphite .sub { color: var(--dim-d); }

/* ---------- Fahrzeuge ---------- */
#fahrzeuge { padding-top: clamp(110px, 13vw, 170px); overflow: hidden; }
#fahrzeuge::before {
  content: ""; position: absolute; top: 12%; right: -20%; width: 70vw; height: 70vw; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(220, 30, 30, .12), transparent 60%);
}
.car { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.car + .car { margin-top: clamp(80px, 10vw, 140px); }
.car-reverse .car-media { order: 2; }

.car-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-3); box-shadow: 0 50px 100px -50px rgba(0, 0, 0, .9); aspect-ratio: 4 / 5; }
.car-slides { display: flex; height: 100%; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-x: contain; }
.car-slides::-webkit-scrollbar { display: none; }
.car-slide { flex: 0 0 100%; height: 100%; scroll-snap-align: start; overflow: hidden; }
.car-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; transition: transform 1.2s var(--ease); }
.car:hover .car-slide img { transform: scale(1.03); }
.car-media::after { content: ""; position: absolute; inset: auto 0 0; height: 30%; background: linear-gradient(0deg, rgba(0, 0, 0, .55), transparent); pointer-events: none; }
.car-badge {
  position: absolute; top: 18px; left: 18px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #fff;
  background: rgba(7, 7, 8, .55); border: 1px solid rgba(255, 255, 255, .18); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.car-badge span { width: 7px; height: 7px; border-radius: 50%; background: var(--wa); animation: pulse 2s infinite; }
.car-dots { position: absolute; left: 18px; bottom: 20px; z-index: 2; display: flex; gap: 8px; }
.car-dots button { position: relative; width: 28px; height: 4px; padding: 0; border: 0; border-radius: 2px; background: rgba(255, 255, 255, .35); cursor: pointer; transition: background-color .3s, width .3s var(--ease); }
.car-dots button::before { content: ""; position: absolute; inset: -12px -2px; }
.car-dots button[aria-current="true"] { background: #fff; width: 44px; }
.car-index { position: absolute; right: 18px; bottom: 6px; z-index: 2; font-family: var(--font-display); font-weight: 800; font-size: 5.5rem; line-height: 1; color: rgba(255, 255, 255, .14); }

.car-kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--mute-d); margin-bottom: 14px; }
.car-info h3 { font-size: clamp(2.6rem, 5vw, 4.4rem); margin-bottom: 28px; }
.car-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-d); border: 1px solid var(--line-d); border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; }
.car-specs div { background: var(--bg-2); padding: 18px 18px 16px; }
.car-specs dt { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--mute-d); margin-bottom: 6px; }
.car-specs dd { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 3vw, 2.6rem); line-height: 1; color: #fff; }
.car-specs small { font-family: var(--font-mono); font-size: .8rem; font-weight: 400; color: var(--dim-d); }

.price-options { margin-bottom: 22px; }
.price-options legend { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute-d); margin-bottom: 12px; }
.price-option {
  position: relative; display: grid; grid-template-columns: auto 1fr auto; grid-template-areas: "radio days price" "radio km per";
  column-gap: 14px; row-gap: 2px; align-items: center; padding: 14px 18px; margin-bottom: 8px; cursor: pointer;
  border: 1px solid var(--line-d); border-radius: var(--radius-sm); background: rgba(255, 255, 255, .02);
  transition: border-color .2s, background-color .2s;
}
.price-option:hover { border-color: var(--line-d2); background: rgba(255, 255, 255, .04); }
.price-option input { grid-area: radio; appearance: none; -webkit-appearance: none; width: 18px; height: 18px; margin: 0; border-radius: 50%; border: 1.5px solid var(--mute-d); cursor: pointer; transition: border-color .2s, box-shadow .2s; }
.price-option input:checked { border-color: var(--red); box-shadow: inset 0 0 0 4px var(--bg-1), inset 0 0 0 10px var(--red); }
.price-option:has(input:checked) { border-color: var(--red); background: linear-gradient(90deg, rgba(220, 30, 30, .14), rgba(220, 30, 30, .03)); }
.po-days { grid-area: days; font-weight: 600; color: #fff; }
.po-km { grid-area: km; font-size: .82rem; color: var(--mute-d); }
.po-price { grid-area: price; justify-self: end; font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; line-height: 1; color: #fff; }
.po-per { grid-area: per; justify-self: end; font-family: var(--font-mono); font-size: 11.5px; color: var(--dim-d); }
.po-save { position: absolute; top: -9px; right: 14px; padding: 2px 9px; border-radius: 999px; background: var(--red); color: #fff; font-family: var(--font-mono); font-size: 11px; font-weight: 600; }

.car-terms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 28px; }
.car-terms li { padding: 12px 14px; border-radius: var(--radius-sm); background: rgba(255, 255, 255, .03); border: 1px solid var(--line-d); }
.car-terms span { display: block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--mute-d); margin-bottom: 4px; }
.car-terms strong { font-size: .95rem; color: #fff; font-weight: 600; }
.car-terms small { display: block; font-size: .75rem; font-weight: 400; color: var(--dim-d); }
.car-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.car-cta .btn-primary { flex: 1 1 auto; }

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(210px, auto); gap: 16px; }
.bento-tile {
  position: relative; overflow: hidden; padding: 28px; border-radius: var(--radius-lg); background: var(--card); border: 1px solid var(--line);
  box-shadow: var(--shadow); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.bento-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bento-icon { width: 34px; height: 34px; color: var(--red); margin-bottom: 42px; }
.bento-tile h3 { font-size: 1.7rem; line-height: 1; margin-bottom: 10px; }
.bento-tile p { color: var(--dim); font-size: .92rem; }
.bento-photo { grid-column: span 2; grid-row: span 2; padding: 0; background: var(--bg-0); border: 0; color: var(--text-d); min-height: 440px; }
.bento-photo picture, .bento-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bento-photo img { transition: transform 1.2s var(--ease); }
.bento-photo:hover img { transform: scale(1.04); }
.bento-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7, 7, 8, .92) 10%, rgba(7, 7, 8, .15) 65%); }
.bento-photo-text { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 32px; }
.bento-photo-text .bento-icon { margin-bottom: 18px; color: var(--red-text); }
.bento-photo h3 { color: #fff; font-size: clamp(2rem, 3.2vw, 2.8rem); }
.bento-photo p { color: var(--dim-d); max-width: 440px; }
.bento-red { background: var(--red); border-color: var(--red); }
.bento-red .bento-icon, .bento-red h3, .bento-red p { color: #fff; }
.bento-red p { opacity: .9; }
.bento-rating { display: flex; flex-direction: column; justify-content: flex-end; background: var(--ink); border-color: var(--ink); }
.bento-tile .bento-big { font-family: var(--font-display); font-weight: 800; font-size: 6rem; line-height: .85; color: #fff; }
.bento-rating .stars { font-size: 18px; margin: 10px 0 6px; }
.bento-rating p:last-child { color: var(--dim-d); }

/* ---------- Preisrechner ---------- */
.calc { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); max-width: 1040px; margin-inline: auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.calc-controls { background: var(--card); padding: clamp(22px, 4vw, 44px); display: grid; gap: 30px; align-content: center; }
.calc-group legend { display: block; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); margin-bottom: 14px; }
.calc-cars { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.calc-car {
  position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 14px; align-items: center; padding: 10px; cursor: pointer;
  border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--card-2); transition: border-color .2s, background-color .2s, box-shadow .2s;
}
.calc-car input { position: absolute; opacity: 0; pointer-events: none; }
.calc-car img { width: 64px; height: 64px; object-fit: cover; object-position: center 62%; border-radius: 10px; }
.calc-car strong { display: block; font-family: var(--font-display); font-size: 1.45rem; font-weight: 800; text-transform: uppercase; line-height: 1; color: var(--ink); }
.calc-car small { font-family: var(--font-mono); font-size: 11px; color: var(--dim); }
.calc-car:hover { border-color: #cfccc6; }
.calc-car:has(input:checked) { border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px var(--red-soft); }
.calc-car:has(input:focus-visible) { outline: 2px solid var(--red); outline-offset: 2px; }
.segmented { display: grid; grid-template-columns: repeat(3, 1fr); padding: 5px; border-radius: 999px; background: var(--card-2); border: 1px solid var(--line); }
.segmented label { position: relative; cursor: pointer; }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented span { display: block; text-align: center; padding: 13px 8px; border-radius: 999px; font-weight: 600; font-size: .92rem; color: var(--dim); transition: background-color .25s var(--ease), color .2s, box-shadow .25s; }
.segmented input:checked + span { background: var(--ink); color: #fff; box-shadow: 0 6px 16px -8px rgba(10, 10, 11, .6); }
.segmented input:focus-visible + span { outline: 2px solid var(--red); outline-offset: 2px; }

.calc-result { position: relative; background: var(--bg-0); color: var(--text-d); padding: clamp(24px, 4vw, 44px); display: flex; flex-direction: column; overflow: hidden; }
.calc-result::before { content: ""; position: absolute; top: -40%; right: -40%; width: 90%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(220, 30, 30, .3), transparent 65%); pointer-events: none; }
.calc-label { position: relative; font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--dim-d); }
.calc-total { position: relative; font-family: var(--font); font-weight: 600; font-size: clamp(3.6rem, 7vw, 5.4rem); line-height: 1; letter-spacing: -.03em; color: #fff; margin: 10px 0 6px; }
.calc-total span { display: inline-block; transition: transform .2s var(--ease); }
.calc-total.bump span { transform: scale(1.04); }
.calc-incl { position: relative; display: grid; gap: 12px; margin: 22px 0 30px; padding-top: 22px; border-top: 1px solid var(--line-d); }
.calc-incl li { display: flex; align-items: center; gap: 12px; font-size: .98rem; color: var(--text-d); }
.calc-incl svg { flex: none; width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: var(--red); color: #fff; }
.calc-note { position: relative; margin-top: 16px; font-size: .78rem; color: var(--mute-d); line-height: 1.5; }
.calc-result .btn { margin-top: auto; white-space: normal; }

/* ---------- Ablauf ---------- */
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.steps::before {
  content: ""; position: absolute; top: 118px; left: 16%; right: 16%; height: 2px; z-index: 0;
  background: linear-gradient(90deg, var(--red) calc(var(--steps-progress, 0) * 100%), var(--line) calc(var(--steps-progress, 0) * 100%));
}
.step { position: relative; z-index: 1; display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-img { position: relative; height: 236px; overflow: hidden; background: var(--bg-0); }
.step-img picture, .step-img img { width: 100%; height: 100%; }
.step-img img { object-fit: cover; filter: brightness(.55) saturate(.9); transition: transform 1s var(--ease), filter .4s; }
.step:hover .step-img img { transform: scale(1.05); filter: brightness(.7); }
.step-num { position: absolute; left: 24px; bottom: 12px; font-family: var(--font-display); font-weight: 800; font-size: 6rem; line-height: .8; color: #fff; }
.step-num::after { content: ""; display: inline-block; width: 12px; height: 12px; margin-left: 8px; border-radius: 50%; background: var(--red); vertical-align: top; }
.step-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.step-tag { width: fit-content; margin-bottom: 14px; padding: 5px 12px; border-radius: 4px; background: var(--red-soft); color: var(--red); font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
.step h3 { font-size: 1.9rem; margin-bottom: 12px; }
.step p { color: var(--dim); font-size: .93rem; line-height: 1.7; }
.step-link { margin-top: auto; padding-top: 20px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--red); }
.step-link svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.step-link:hover svg { transform: translateX(4px); }

/* ---------- Social ---------- */
#social { overflow: hidden; }
#social::before { content: ""; position: absolute; left: -15%; bottom: -30%; width: 60vw; height: 60vw; border-radius: 50%; background: radial-gradient(circle, rgba(220, 30, 30, .14), transparent 60%); pointer-events: none; }
.social { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.social-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-d); border: 1px solid var(--line-d); border-radius: var(--radius); overflow: hidden; margin: 10px 0 30px; }
.social-stats div { display: flex; flex-direction: column-reverse; padding: 20px 18px; background: var(--bg-2); }
.social-stats dd { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 3.4vw, 2.8rem); line-height: 1; color: #fff; }
.social-stats dt { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--mute-d); margin-top: 6px; }
.social-points { display: grid; gap: 18px; margin-bottom: 32px; }
.social-points li { padding-left: 18px; border-left: 2px solid var(--line-d2); transition: border-color .25s; }
.social-points li:hover { border-color: var(--red); }
.social-points strong { display: block; color: #fff; margin-bottom: 4px; }
.social-points p { color: var(--dim-d); font-size: .92rem; }
.social-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.phones { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 32px); align-items: start; }
.phone-offset { margin-top: 64px; }
.phone-frame {
  position: relative; aspect-ratio: 9 / 17.5; padding: 10px; border-radius: 42px;
  background: linear-gradient(145deg, #2a2a30, #0d0d10); box-shadow: 0 50px 90px -40px rgba(0, 0, 0, .95), inset 0 0 0 1px rgba(255, 255, 255, .1), 0 0 0 1px rgba(0, 0, 0, .6);
}
.phone-frame::before { content: ""; position: absolute; top: 18px; left: 50%; z-index: 3; width: 30%; height: 22px; margin-left: -15%; border-radius: 12px; background: #000; pointer-events: none; }
.embed { position: relative; width: 100%; height: 100%; border-radius: 33px; overflow: hidden; background: #000; }
.embed-poster, .embed-poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.embed-poster img { transition: transform 1s var(--ease); }
.embed:hover .embed-poster img { transform: scale(1.04); }
.embed-ui { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px 16px 16px; background: linear-gradient(180deg, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, .15) 55%, rgba(0, 0, 0, .88) 100%); }
.embed-provider { position: absolute; top: 48px; left: 16px; display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 999px; background: rgba(0, 0, 0, .55); color: #fff; font-size: 12px; font-weight: 600; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.embed-provider svg { width: 14px; height: 14px; }
.embed-title { position: absolute; top: 24%; left: 16px; right: 16px; text-align: center; font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; text-transform: uppercase; line-height: .95; color: #fff; text-shadow: 0 4px 20px rgba(0, 0, 0, .6); }
.embed-play {
  position: relative; width: 74px; height: 74px; border-radius: 50%; border: 0; cursor: pointer; display: grid; place-items: center;
  background: var(--red); color: #fff; box-shadow: 0 0 0 10px rgba(220, 30, 30, .25), 0 20px 40px -10px rgba(220, 30, 30, .7); transition: transform .25s var(--ease), box-shadow .25s;
}
.embed-play svg { width: 30px; height: 30px; margin-left: 4px; }
.embed-play:hover { transform: scale(1.08); box-shadow: 0 0 0 16px rgba(220, 30, 30, .2), 0 20px 40px -10px rgba(220, 30, 30, .8); }
.embed-hint { position: absolute; left: 12px; right: 12px; bottom: 16px; text-align: center; font-family: var(--font-mono); font-size: 10px; letter-spacing: .06em; color: rgba(255, 255, 255, .7); }
.embed-confirm {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 14px; padding: 48px 18px 20px; text-align: center;
  background: rgba(7, 7, 8, .9); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: #fff; animation: faq-in .3s var(--ease);
}
.embed-confirm[hidden] { display: none; }
.embed-confirm p { font-size: 12.5px; line-height: 1.5; color: rgba(255, 255, 255, .85); }
.embed-confirm a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.embed-confirm label { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; color: rgba(255, 255, 255, .8); cursor: pointer; }
.embed-confirm input { width: 15px; height: 15px; margin: 0; accent-color: var(--red); }
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #000; }
.embed.is-loaded .embed-ui, .embed.is-loaded .embed-poster { display: none; }
.phone figcaption { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; margin-top: 16px; padding: 0 6px; font-size: .92rem; }
.phone figcaption strong { color: #fff; font-weight: 600; }
.phone figcaption a { font-family: var(--font-mono); font-size: 11.5px; color: var(--mute-d); white-space: nowrap; }
.phone figcaption a:hover { color: var(--red-text); }

/* ---------- Bewertungen ---------- */
.reviews-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.reviews-head h2 { margin-bottom: 0; }
.score { display: flex; align-items: center; gap: 14px; padding: 14px 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow); }
.score b { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--ink); line-height: 1; }
.score small { display: block; font-size: 11.5px; color: var(--dim); margin-top: 3px; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; display: block; }
.review-featured { position: relative; margin-bottom: 24px; padding: clamp(28px, 4vw, 48px); border-radius: var(--radius-lg); background: var(--ink); color: var(--text-d); overflow: hidden; }
.review-featured::before { content: "“"; position: absolute; top: -30px; right: 24px; font-family: var(--font-display); font-weight: 800; font-size: 260px; line-height: 1; color: rgba(220, 30, 30, .22); }
.review-featured .stars { font-size: 17px; margin-bottom: 18px; }
.review-featured blockquote { position: relative; font-size: clamp(1.1rem, 2vw, 1.4rem); line-height: 1.6; color: #fff; max-width: 900px; margin-bottom: 24px; }
figcaption { display: flex; align-items: center; gap: 10px; }
figcaption strong { font-size: .88rem; font-weight: 600; color: var(--ink); }
.review-featured figcaption strong { color: #fff; display: block; }
figcaption small { display: block; font-family: var(--font-mono); font-size: 12px; color: var(--mute); }
.review-featured figcaption small { color: var(--mute-d); }
.avatar { width: 32px; height: 32px; border-radius: 50%; flex: none; display: grid; place-items: center; background: #F0EFED; color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.avatar-red { width: 44px; height: 44px; background: var(--red); color: #fff; font-size: 18px; }
.carousel-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 40px) / 3); gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 4px 2px 24px; overscroll-behavior-x: contain; }
.carousel-track::-webkit-scrollbar { display: none; }
.review { scroll-snap-align: start; display: flex; flex-direction: column; padding: 26px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); }
.review .stars { font-size: 13px; margin-bottom: 12px; }
.review blockquote { flex: 1; font-size: .95rem; line-height: 1.65; color: var(--dim); margin-bottom: 18px; }
.carousel-nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.carousel-buttons { display: flex; gap: 10px; }
.carousel-btn { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); background: var(--card); color: var(--ink); cursor: pointer; transition: border-color .2s, background-color .2s, color .2s; }
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-btn[data-dir="-1"] svg { transform: scaleX(-1); }
.carousel-btn:hover:not(:disabled) { background: var(--ink); border-color: var(--ink); color: #fff; }
.carousel-btn:disabled { opacity: .35; cursor: default; }

/* ---------- Gutschein-Teaser ---------- */
.voucher-teaser {
  display: grid; grid-template-columns: 1fr 1.05fr; align-items: center; gap: 48px;
  padding: clamp(28px, 5vw, 64px); border-radius: var(--radius-lg); overflow: hidden;
  background: radial-gradient(70% 90% at 100% 50%, rgba(220, 30, 30, .25), transparent 70%), var(--bg-0); color: var(--text-d);
}
.voucher-teaser h2 { color: var(--text-d); margin-bottom: 16px; font-size: clamp(2.4rem, 5vw, 4rem); }
.voucher-teaser-text > p:not(.eyebrow) { color: var(--dim-d); max-width: 480px; }
.voucher-teaser-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.voucher-teaser-media { display: block; border-radius: 14px; overflow: hidden; transform: perspective(1200px) rotateY(-8deg) rotateX(3deg); transition: transform .8s var(--ease); box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .9); }
.voucher-teaser-media:hover { transform: perspective(1200px) rotateY(0) rotateX(0); }
.voucher-teaser-media img { width: 100%; height: auto; }

/* ---------- FAQ & Kontakt ---------- */
.faq-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 24px; align-items: start; }
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .25s, box-shadow .25s; }
.faq details[open] { border-color: rgba(220, 30, 30, .45); box-shadow: 0 0 0 4px var(--red-soft); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 24px; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; letter-spacing: .01em; text-transform: uppercase; line-height: 1.15; color: var(--ink);
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover, .faq details[open] summary { color: var(--red); }
.faq-icon { position: relative; flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); transition: background-color .25s, border-color .25s, transform .35s var(--ease); }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; left: 50%; top: 50%; background: var(--ink); transform: translate(-50%, -50%); border-radius: 1px; }
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; }
.faq details[open] .faq-icon { background: var(--red); border-color: var(--red); transform: rotate(45deg); }
.faq details[open] .faq-icon::before, .faq details[open] .faq-icon::after { background: #fff; }
.faq details p { padding: 0 24px 22px; color: var(--dim); font-size: .95rem; line-height: 1.7; }
.faq details[open] p { animation: faq-in .45s var(--ease); }
@keyframes faq-in { from { opacity: 0; transform: translateY(-6px); } }

.contact { position: sticky; top: calc(var(--header-h) + 24px); display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--card); border: 1px solid var(--line); }
.contact-head { position: relative; background: var(--ink); color: #fff; padding: 28px 28px 26px; overflow: hidden; }
.contact-head::after { content: ""; position: absolute; right: -40px; top: -40px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(220, 30, 30, .5), transparent 70%); }
.contact-head span { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--red-text); margin-bottom: 10px; }
.contact-head strong { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; text-transform: uppercase; line-height: .95; }
.contact-item { display: flex; align-items: center; gap: 16px; padding: 20px 28px; border-bottom: 1px solid var(--line); transition: background-color .2s; min-width: 0; }
.contact-item:hover { background: var(--card-2); }
.contact-icon { flex: none; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: var(--red-soft); color: var(--red); }
.contact-icon svg { width: 20px; height: 20px; }
.contact-item > span:last-child { min-width: 0; }
.contact-item small { display: block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); margin-bottom: 3px; }
.contact-item strong { display: block; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--ink); line-height: 1.2; }
.contact-item strong.contact-mail { font-family: var(--font); font-size: .84rem; font-weight: 600; overflow-wrap: anywhere; }
.contact-wa { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 16px; padding: 18px; border-radius: 999px; background: var(--wa); color: #fff; font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: background-color .2s, transform .2s var(--ease); }
.contact-wa:hover { background: #1ebe5d; transform: translateY(-2px); }
.contact-wa svg { width: 22px; height: 22px; }

/* ---------- SEO ---------- */
.seo h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 26px; }
.seo-cols { columns: 3 280px; column-gap: 40px; }
.seo p { color: var(--dim); font-size: .92rem; line-height: 1.75; margin-bottom: 16px; break-inside: avoid; }
.seo strong { color: var(--text); font-weight: 600; }
.areas { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.areas li { font-family: var(--font-mono); font-size: 12px; padding: 6px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--dim); background: var(--card); }

/* ---------- Footer ---------- */
.site-footer { position: relative; overflow: hidden; background: var(--bg-0); color: var(--text-d); padding: 80px 0 28px; }
.site-footer .container { position: relative; z-index: 1; }
.footer-cta { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 28px; padding-bottom: 52px; margin-bottom: 44px; border-bottom: 1px solid var(--line-d); }
.footer-cta h2 { color: var(--text-d); font-size: clamp(2.4rem, 5.6vw, 4.4rem); max-width: 720px; margin-bottom: 10px; }
.footer-cta p { color: var(--mute-d); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.2fr 1fr; gap: 32px; margin-bottom: 48px; }
.footer-desc { margin-top: 18px; font-size: .88rem; color: var(--mute-d); line-height: 1.6; max-width: 290px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line-d2); border-radius: 50%; color: var(--text-d); transition: border-color .2s, color .2s, background-color .2s; }
.footer-social a:hover { border-color: var(--red); background: var(--red); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }
.site-footer h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute-d); font-weight: 400; margin: 0 0 16px; }
.site-footer ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a { font-size: .92rem; transition: color .2s; overflow-wrap: anywhere; }
.site-footer ul a:hover { color: var(--red-text); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; padding-top: 24px; border-top: 1px solid var(--line-d); font-family: var(--font-mono); font-size: 12px; color: var(--mute-d); }
.footer-bottom a:hover { color: var(--red-text); }
.footer-watermark {
  position: absolute; left: 50%; bottom: -3vw; transform: translateX(-50%); z-index: 0; pointer-events: none; white-space: nowrap;
  font-family: var(--font-display); font-weight: 800; font-style: italic; font-size: 19vw; line-height: 1; letter-spacing: -.02em;
  color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .06);
}

/* ---------- Mobile-CTA ---------- */
.mobile-cta {
  position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 95; display: none; gap: 8px; padding: 8px;
  border-radius: 999px; background: rgba(7, 7, 8, .82); border: 1px solid var(--line-d2); box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .6);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transform: translateY(140%); transition: transform .4s var(--ease);
}
.mobile-cta .btn { flex: 1; min-height: 48px; }
.mobile-cta .btn-primary { background: var(--wa); box-shadow: none; }
.mobile-cta.is-visible { transform: none; }
body.nav-open .mobile-cta { transform: translateY(140%); }

/* ---------- Gutschein-Seite ---------- */
.gift-hero { position: relative; overflow: hidden; background: radial-gradient(60% 80% at 90% 40%, rgba(220, 30, 30, .22), transparent 70%), var(--bg-0); color: var(--text-d); padding: calc(var(--header-h) + 80px) 0 clamp(72px, 9vw, 110px); }
.gift-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.gift-hero h1 { color: var(--text-d); font-size: clamp(3.4rem, 8vw, 6.8rem); line-height: .88; margin-bottom: 24px; }
.gift-sub { color: var(--dim-d); font-size: 1.08rem; max-width: 520px; margin-bottom: 26px; }
.gift-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.gift-badges li { padding: 8px 14px; border: 1px solid var(--line-d2); border-radius: 999px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-d); background: rgba(255, 255, 255, .03); }
.gift-badges b { color: var(--red-text); font-weight: 600; }
.gift-card { border-radius: 16px; overflow: hidden; box-shadow: 0 50px 90px -40px rgba(0, 0, 0, .95); transform: perspective(1400px) rotateY(-10deg) rotateX(4deg); transition: transform .8s var(--ease); }
.gift-card:hover { transform: none; }
.gift-card img { width: 100%; height: auto; }
.gift-caption { display: block; margin-top: 14px; text-align: center; font-family: var(--font-mono); font-size: 12px; color: var(--mute-d); }
.gift-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 20px; }
.gift-fact { padding: 26px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); }
.gift-fact-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 12px; background: var(--red-soft); color: var(--red); font-family: var(--font-mono); font-weight: 600; font-size: 16px; }
.gift-fact h3 { font-size: 1.4rem; line-height: 1; margin-bottom: 10px; }
.gift-fact p { font-size: .9rem; color: var(--dim); line-height: 1.6; }
.panel { padding: 30px 34px; margin-top: 20px; border-radius: var(--radius-lg); background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); }
.panel h3 { font-size: 1.5rem; margin-bottom: 18px; }
.terms li { display: flex; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); font-size: .94rem; color: var(--dim); }
.terms li:first-child { border-top: 0; }
.terms li::before { content: "—"; color: var(--red); flex: none; }
.gift-fleet { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gift-fleet a { display: block; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--card-2); transition: border-color .2s, transform .3s var(--ease); }
.gift-fleet a:hover { border-color: var(--red); transform: translateY(-3px); }
.gift-fleet img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; object-position: center 62%; }
.gift-fleet div { padding: 18px 20px 20px; }
.gift-fleet strong { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; text-transform: uppercase; line-height: 1; color: var(--ink); }
.gift-fleet span { display: block; font-family: var(--font-mono); font-size: 12px; color: var(--dim); margin: 6px 0 10px; }
.gift-fleet em { font-style: normal; color: var(--dim); font-size: .9rem; }
.gift-fleet em b { font-family: var(--font-mono); color: var(--red); font-size: 1.05rem; }

/* ---------- Rechtsseiten ---------- */
.legal { padding: calc(var(--header-h) + 72px) 0 110px; background: var(--paper); }
.legal .container { max-width: 860px; }
.legal h1 { font-size: clamp(2.3rem, 6.4vw, 4.4rem); margin-bottom: 32px; overflow-wrap: break-word; hyphens: auto; }
.legal h2 { font-size: 1.6rem; margin: 44px 0 12px; overflow-wrap: break-word; hyphens: auto; }
.legal h3 { font-family: var(--font); text-transform: none; font-size: 1rem; font-weight: 600; line-height: 1.35; margin: 24px 0 8px; color: var(--ink); letter-spacing: 0; }
.legal p, .legal li { color: var(--dim); margin-bottom: 10px; overflow-wrap: break-word; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal ol { list-style: decimal; padding-left: 22px; }
.legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.legal .penalty { display: block; color: var(--red); font-weight: 600; margin-top: 2px; }
.legal hr { border: 0; border-top: 1px solid var(--line); margin: 32px 0; }
.legal-meta { font-family: var(--font-mono); font-size: 13px; color: var(--dim); margin-bottom: 8px; }
.legal .eyebrow { margin-bottom: 18px; }

/* ---------- Scroll-Animationen ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .car-media.reveal { transform: none; clip-path: inset(6% 6% 6% 6% round var(--radius-lg)); transition: clip-path 1.2s var(--ease-out), opacity .8s var(--ease); }
.js .car-media.reveal.is-visible { clip-path: inset(0 0 0 0 round var(--radius-lg)); }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .main-nav ul a { padding: 8px 11px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-photo { grid-column: span 2; grid-row: auto; }
  .faq-layout { grid-template-columns: minmax(0, 1fr) 330px; }
}

@media (max-width: 1024px) {
  :root { --header-h: 68px; }
  .site-header.is-scrolled { height: 62px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0; z-index: 110; flex-direction: column; justify-content: center; gap: 36px;
    background: radial-gradient(80% 60% at 50% 100%, rgba(220, 30, 30, .22), transparent 70%), var(--bg-0);
    opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; align-items: center; gap: 6px; padding: 0; background: none; border: 0; }
  .main-nav ul a { font-family: var(--font-display); font-size: 2.3rem; font-weight: 800; text-transform: uppercase; color: #fff; padding: 4px 16px; background: none; }
  .main-nav ul a:hover, .main-nav ul a.is-active { background: none; box-shadow: none; color: var(--red-text); }
  .main-nav.is-open ul li { animation: menu-in .5s var(--ease) both; }
  .main-nav.is-open ul li:nth-child(2) { animation-delay: .04s; }
  .main-nav.is-open ul li:nth-child(3) { animation-delay: .08s; }
  .main-nav.is-open ul li:nth-child(4) { animation-delay: .12s; }
  .main-nav.is-open ul li:nth-child(5) { animation-delay: .16s; }
  .main-nav.is-open ul li:nth-child(6) { animation-delay: .2s; }
  .main-nav .btn { min-height: 54px; padding: 0 30px; font-size: 1rem; }
  body.nav-open { overflow: hidden; }
  body.nav-open .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: transparent; border-bottom-color: transparent; }
  .header-inner > .logo { position: relative; z-index: 120; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { justify-self: start; max-width: 460px; }
  .car, .car-reverse { grid-template-columns: 1fr; }
  .car-reverse .car-media { order: 0; }
  .car-media { max-width: 620px; aspect-ratio: 4 / 4.4; }
  .calc { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
  .steps::before { display: none; }
  .social { grid-template-columns: 1fr; }
  .phones { max-width: 620px; }
  .carousel-track { grid-auto-columns: calc((100% - 20px) / 2); }
  .faq-layout { grid-template-columns: 1fr; }
  .contact { position: static; }
  .voucher-teaser, .gift-grid { grid-template-columns: 1fr; }
  .gift-facts { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@keyframes menu-in { from { opacity: 0; transform: translateY(16px); } }

@media (max-width: 640px) {
  .logo img, .site-header.is-scrolled .logo img { height: 32px; }
  .hero { padding-bottom: 28px; }
  .hero-title { font-size: clamp(3.2rem, 17vw, 5rem); }
  .hero-cta .btn { flex: 1 1 100%; }
  .hero-card { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; margin-top: 40px; }
  .hero-stats div, .hero-stats div + div { padding: 16px 12px 12px 0; border-left: 0; }
  .hero-stats div:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line-d); }
  .hero-stats div:nth-child(n+3) { border-top: 1px solid var(--line-d); }
  .scroll-cue { display: none; }
  .marquee span { font-size: 1.25rem; }
  .pill { font-size: 10px; letter-spacing: .1em; padding: 8px 14px; gap: 8px; }
  .car-index { font-size: 4rem; }
  .car-specs div { padding: 14px 12px; }
  .car-terms { grid-template-columns: 1fr; }
  .car-terms li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
  .car-terms span { margin: 0; }
  .car-terms strong { text-align: right; }
  .car-cta .btn { flex: 1 1 100%; }
  .price-option { padding: 12px 14px; column-gap: 12px; }
  .po-price { font-size: 1.45rem; }
  .bento { grid-template-columns: 1fr; }
  .bento-photo { grid-column: auto; }
  .bento-photo { min-height: 380px; }
  .phone-frame { padding: 7px; border-radius: 30px; }
  .phone-frame::before { top: 12px; height: 16px; }
  .embed { border-radius: 24px; }
  .embed-provider { top: 34px; left: 10px; }
  .embed-play { width: 58px; height: 58px; }
  .embed-play svg { width: 24px; height: 24px; }
  .embed-hint { font-size: 8.5px; bottom: 10px; }
  .embed-confirm { padding: 36px 10px 12px; gap: 10px; }
  .embed-confirm p { font-size: 10.5px; }
  .embed-confirm label { font-size: 10px; }
  .embed-title { font-size: 1.5rem; }
  .carousel-track { grid-auto-columns: 86%; }
  .review-featured::before { font-size: 180px; }
  .faq summary { padding: 18px; font-size: 1.1rem; }
  .faq details p { padding: 0 18px 18px; }
  .contact-item, .contact-head { padding-left: 20px; padding-right: 20px; }
  .gift-facts, .gift-fleet { grid-template-columns: 1fr; }
  .voucher-teaser-cta .btn { flex: 1 1 100%; }
  .panel { padding: 22px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-cta .btn { width: 100%; }
  .footer-bottom { flex-direction: column; padding-bottom: 72px; }
  .mobile-cta { display: flex; }
}


/* ---------- SEO-Landingpages ---------- */
.car-more { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--red-text); }
.car-more:hover { text-decoration: underline; text-underline-offset: 4px; }
.areas a { color: inherit; text-decoration: underline; text-decoration-color: rgba(220, 30, 30, .5); text-underline-offset: 3px; }
.areas a:hover { color: var(--red); }
.footer-seo { padding: 26px 0 30px; margin-bottom: 4px; border-top: 1px solid var(--line-d); }
.site-footer .footer-seo ul { flex-direction: row; flex-wrap: wrap; gap: 8px 22px; }
.footer-seo a { font-size: .86rem; color: var(--mute-d); }

.crumbs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--mute-d); }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--red-text); }
.crumbs a:hover { color: var(--text-d); }
.lp-hero h1 { font-size: clamp(2.8rem, 7vw, 5.8rem); }
.lp-figure { margin: 0; border-radius: 18px; overflow: hidden; box-shadow: 0 50px 90px -40px rgba(0, 0, 0, .95); border: 1px solid var(--line-d); }
.lp-figure img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.lp-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.lp-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(28px, 5vw, 64px); align-items: start; }
.prose h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin: 0 0 20px; }
.prose h2:not(:first-child) { margin-top: 56px; }
.prose h3 { font-size: 1.5rem; margin: 30px 0 10px; }
.prose p, .prose li { color: var(--dim); font-size: 1rem; line-height: 1.75; margin-bottom: 14px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose ul { list-style: none; padding: 0; margin: 0 0 18px; }
.prose ul li { position: relative; padding-left: 26px; margin-bottom: 8px; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .72em; width: 12px; height: 2px; background: var(--red); }
.prose a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 3px; }
.lp-aside { position: sticky; top: calc(var(--header-h) + 24px); display: flex; flex-direction: column; gap: 16px; }
.lp-aside .panel { margin-top: 0; }
.lp-aside .btn { width: 100%; justify-content: center; margin-top: 18px; }

.price-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.price-table th, .price-table td { padding: 12px 10px; text-align: left; border-top: 1px solid var(--line); }
.price-table thead th { border-top: 0; font-family: var(--font-mono); font-size: 11px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); }
.price-table td:last-child, .price-table th:last-child { text-align: right; }
.price-table th[scope="rowgroup"] { text-align: left; font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; text-transform: uppercase; color: var(--ink); }
.price-table td strong { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; color: var(--ink); }
.price-table small { display: block; color: var(--dim); font-size: .78rem; }
.price-note { margin-top: 14px; font-size: .84rem; color: var(--dim); line-height: 1.6; }

.fact-list li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-top: 1px solid var(--line); font-size: .93rem; color: var(--dim); }
.fact-list li:first-child { border-top: 0; }
.fact-list strong { color: var(--ink); font-weight: 600; text-align: right; }

.lp-faq { max-width: 860px; margin-inline: auto; }
.link-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.link-cards a { display: flex; flex-direction: column; gap: 6px; padding: 20px 22px; border-radius: var(--radius); border: 1px solid var(--line-d2); background: rgba(255, 255, 255, .03); color: var(--text-d); transition: border-color .2s, transform .3s var(--ease), background-color .2s; }
.link-cards a:hover { border-color: var(--red); background: rgba(220, 30, 30, .08); transform: translateY(-3px); }
.link-cards strong { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; text-transform: uppercase; line-height: 1; }
.link-cards span { font-size: .85rem; color: var(--mute-d); }

@media (max-width: 1024px) {
  .lp-grid { grid-template-columns: 1fr; }
  .lp-aside { position: static; }
}
@media (max-width: 640px) {
  .lp-hero .gift-grid { grid-template-columns: 1fr; }
  .lp-actions .btn { width: 100%; justify-content: center; }
  .price-table th, .price-table td { padding: 11px 6px; }
  .prose h2:not(:first-child) { margin-top: 44px; }
  .link-cards { grid-template-columns: 1fr 1fr; }
  .link-cards a { padding: 16px; }
  .link-cards strong { font-size: 1.1rem; }
}

/* ---------- Handy-Feinschliff ---------- */
@media (hover: none) {
  .btn-primary:hover, .car:hover .car-slide img, .bento-tile:hover, .step:hover, .gift-fleet a:hover, .contact-wa:hover { transform: none; }
  .step:hover .step-img img, .bento-photo:hover img, .embed:hover .embed-poster img { transform: none; }
}
@media (max-width: 640px) {
  .section { padding: 68px 0; }
  #fahrzeuge { padding-top: 88px; }
  .section h2, .section-head h2 { font-size: clamp(2.3rem, 11vw, 3rem); }
  .section-head { margin-bottom: 36px; }
  .sub { font-size: .98rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 26px; }
  .hero-trust { font-size: .82rem; }
  .car + .car { margin-top: 72px; }
  .car-info h3 { font-size: 2.4rem; margin-bottom: 20px; }
  .car-specs dd { font-size: 1.7rem; }
  .price-option { min-height: 64px; }
  .po-save { right: 10px; }
  .bento-tile { padding: 24px; }
  .bento-icon { margin-bottom: 24px; }
  .bento-photo { min-height: 320px; }
  .bento-photo-text { padding: 24px; }
  .calc { border-radius: 20px; }
  .calc-cars { grid-template-columns: 1fr 1fr; gap: 10px; }
  .calc-car { grid-template-columns: 1fr; gap: 10px; padding: 8px; text-align: center; }
  .calc-car img { width: 100%; height: 96px; }
  .calc-car strong { font-size: 1.3rem; }
  .calc-total { font-size: 4.2rem; }
  .step-img { height: 190px; }
  .step-num { font-size: 4.6rem; }
  .step h3 { font-size: 1.7rem; }
  .phones {
    grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 74%; gap: 16px;
    overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; margin-inline: calc(var(--gutter) * -1); padding: 4px var(--gutter) 8px;
  }
  .phones::-webkit-scrollbar { display: none; }
  .phone { scroll-snap-align: center; }
  .phone-offset { margin-top: 0; }
  .phone-frame { padding: 8px; border-radius: 36px; }
  .embed { border-radius: 29px; }
  .embed-hint { font-size: 9.5px; }
  .embed-confirm p { font-size: 12px; }
  .review-featured blockquote { font-size: 1.05rem; }
  .review { padding: 22px; }
  .voucher-teaser { padding: 26px 20px; gap: 28px; }
  .voucher-teaser-media { transform: none; }
  .footer-cta h2 { font-size: 2.4rem; }
  .site-footer { padding-top: 64px; }
}
@media (max-width: 380px) {
  .hero-title { font-size: 3rem; }
  .hero-stats dd { font-size: 1.8rem; }
  .car-specs div { padding: 12px 10px; }
  .car-specs dd { font-size: 1.45rem; }
  .po-price { font-size: 1.3rem; }
  .calc-total { font-size: 3.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal, .js .car-media.reveal { opacity: 1; transform: none; clip-path: none; }
  .hero-title .line > span { transform: none; }
  .marquee-track { animation: none; }
}

