/* =========================================================
   GEBRAUCHTWAGENCENTER KONZ — Premium Stylesheet
   Black · White · Dark Grey + subtle LED-blue accent
   inspired by the showroom's blue rim lighting
   ========================================================= */

/* RESET & TOKENS
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

:root {
  /* Palette */
  --c-bg: #0a0a0a;
  --c-bg-2: #111111;
  --c-bg-3: #161616;
  --c-ink: #ffffff;
  --c-ink-2: #e6e6e6;
  --c-ink-3: #b0b0b0;
  --c-ink-4: #7a7a7a;
  --c-line: rgba(255, 255, 255, 0.08);
  --c-line-strong: rgba(255, 255, 255, 0.18);
  --c-silver-1: #f6f6f6;
  --c-silver-2: #c8c8c8;
  --c-silver-3: #9a9a9a;
  --c-silver-4: #5a5a5a;
  --c-accent: #ffffff;

  /* LED-blue accent — matches the rim lighting in the showroom photo.
     Used sparingly: button glow, focus rings, filter highlights, badges.
     Adjust the RGB triplet here to retune the whole site at once. */
  --c-led: 72, 160, 255;
  --c-led-rgb: rgb(var(--c-led));
  --c-led-soft: rgba(var(--c-led), 0.10);
  --c-led-mid:  rgba(var(--c-led), 0.30);
  --c-led-strong: rgba(var(--c-led), 0.65);

  /* Gradients */
  --grad-silver: linear-gradient(180deg, #ffffff 0%, #d4d4d4 45%, #8d8d8d 100%);
  --grad-silver-h: linear-gradient(90deg, #ffffff 0%, #b8b8b8 50%, #6a6a6a 100%);
  --grad-glass: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.06) 100%);

  /* Typography */
  --ff-display: 'Playfair Display', 'Times New Roman', serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Sizes */
  --container: 1280px;
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
  --radius-xl: 40px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }

html, body {
  background: var(--c-bg);
  color: var(--c-ink-2);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100%;
}

body {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 80%, rgba(255,255,255,0.03), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

/* Defensive sizing: SVGs without explicit width attributes can otherwise
   default to 100% inside flex parents and blow the layout. When an explicit
   size is set via CSS or width="..." attribute, that wins via specificity. */
svg { max-width: 100%; flex-shrink: 0; }

/* Belt-and-braces — no page should ever produce horizontal scroll.
   Anything that needs to break out (full-bleed hero etc.) does it via
   transform, never via overflow. */
html, body { overflow-x: clip; }

::selection { background: rgba(255,255,255,0.18); color: #fff; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
  border-radius: 10px;
  border: 2px solid #050505;
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #555, #333); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   BACKGROUND STAGE — rotating logo + glassmorphism
   ========================================================= */
.bg-stage {
  position: fixed; inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg-noise {
  position: absolute; inset: -200px;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.04) 0px, transparent 2px),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.04) 0px, transparent 2px),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.025) 0px, transparent 2px);
  background-size: 12px 12px, 18px 18px, 8px 8px;
  opacity: 0.4;
  mix-blend-mode: overlay;
}

.bg-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, transparent 30%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  mix-blend-mode: screen;
}
.bg-orb--a {
  top: -10%; left: -10%;
  width: 50vmax; height: 50vmax;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
  animation: orb-float-a 22s var(--ease) infinite alternate;
}
.bg-orb--b {
  bottom: -20%; right: -10%;
  width: 60vmax; height: 60vmax;
  background: radial-gradient(circle, rgba(220,220,220,0.12) 0%, transparent 70%);
  animation: orb-float-b 28s var(--ease) infinite alternate;
}
.bg-orb--c {
  top: 40%; right: 30%;
  width: 30vmax; height: 30vmax;
  background: radial-gradient(circle, rgba(200,200,200,0.08) 0%, transparent 70%);
  animation: orb-float-c 18s var(--ease) infinite alternate;
}

@keyframes orb-float-a {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(8vw, 6vh, 0) scale(1.15); }
}
@keyframes orb-float-b {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-10vw, -8vh, 0) scale(1.2); }
}
@keyframes orb-float-c {
  0% { transform: translate3d(0,0,0) scale(0.9); }
  100% { transform: translate3d(-6vw, 4vh, 0) scale(1.1); }
}

.bg-logo-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120vmin; height: 120vmin;
  pointer-events: none;
  filter:
    drop-shadow(0 0 80px rgba(255,255,255,0.10))
    drop-shadow(0 0 160px rgba(255,255,255,0.06))
    drop-shadow(0 0 300px rgba(255,255,255,0.04));
}
.bg-logo-spin {
  width: 100%; height: 100%;
  animation: logo-rotate 120s linear infinite;
  will-change: transform;
  display: grid;
  place-items: center;
}
.bg-logo {
  width: 100%; height: 100%;
  opacity: 0.15;
  /* Invert black line-art into silver/white for dark background */
  filter: invert(1) brightness(1.1) contrast(0.95) blur(0.4px);
  mix-blend-mode: screen;
}

@keyframes logo-rotate {
  0% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(90deg) scale(1.03); }
  50% { transform: rotate(180deg) scale(1.01); }
  75% { transform: rotate(270deg) scale(1.03); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Additional glow halo behind the logo */
.bg-logo-wrap::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60%; height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: logo-pulse 8s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 40% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 40% at 50% 30%, black 30%, transparent 80%);
}

.bg-scanline {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 49.5%, rgba(255,255,255,0.02) 50%, transparent 50.5%, transparent 100%);
  background-size: 100% 6px;
  mix-blend-mode: overlay;
  opacity: 0.4;
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  mix-blend-mode: screen;
  will-change: transform, opacity;
}
.cursor-glow.is-active { opacity: 1; }

@media (hover: none) {
  .cursor-glow { display: none; }
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.6s var(--ease);
  padding: 18px 0;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: var(--radius-xl);
  position: relative;
}

.nav.is-scrolled {
  padding: 10px 0;
}
.nav.is-scrolled .nav-inner {
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--c-line);
  padding: 12px 24px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 30px 60px -20px rgba(0,0,0,0.5),
    0 0 80px rgba(0,0,0,0.3);
  max-width: calc(var(--container) - 32px);
  margin: 0 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.nav-brand-mark {
  width: 44px; height: 44px;
  border-radius: 12px;
  overflow: hidden;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 1px solid var(--c-line-strong);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
  padding: 5px;
}
.nav-brand:hover .nav-brand-mark {
  transform: rotate(-8deg);
}
.nav-brand-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  /* Invert the black logo to silver/white for the dark navbar mark */
  filter: invert(1) brightness(1.05);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand-name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-brand-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-4);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  position: relative;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--c-ink-3);
  padding: 10px 16px;
  border-radius: 999px;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-line);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s var(--ease);
  z-index: -1;
}
.nav-links a:hover { color: var(--c-ink); }
.nav-links a:hover::after { opacity: 1; transform: scale(1); }
.nav-links a.is-active { color: var(--c-ink); }
.nav-links a.is-active::after { opacity: 1; transform: scale(1); background: rgba(255,255,255,0.08); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #d4d4d4);
  color: #0a0a0a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    0 4px 12px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.7),
    inset 0 -1px 0 rgba(0,0,0,0.15);
  transition: all 0.35s var(--ease);
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.1),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.nav-burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  transition: all 0.3s var(--ease);
}
.nav-burger span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.nav-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--c-line);
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.nav.is-scrolled .nav-progress { opacity: 1; }
.nav-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad-silver-h);
  transition: width 0.1s linear;
}

/* Mobile drawer */
.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 90vw);
  height: 100dvh;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-left: 1px solid var(--c-line);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  padding: 100px 32px 32px;
  display: flex;
  flex-direction: column;
}
.drawer.is-open { transform: translateX(0); }
.drawer-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer-inner a {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-ink);
  transition: all 0.3s var(--ease);
  transform: translateX(20px);
  opacity: 0;
}
.drawer.is-open .drawer-inner a {
  transform: translateX(0);
  opacity: 1;
}
.drawer.is-open .drawer-inner a:nth-child(1) { transition-delay: 0.1s; }
.drawer.is-open .drawer-inner a:nth-child(2) { transition-delay: 0.15s; }
.drawer.is-open .drawer-inner a:nth-child(3) { transition-delay: 0.2s; }
.drawer.is-open .drawer-inner a:nth-child(4) { transition-delay: 0.25s; }
.drawer.is-open .drawer-inner a:nth-child(5) { transition-delay: 0.3s; }
.drawer-inner a:hover { padding-left: 12px; color: var(--c-silver-1); }
.drawer-actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease) 0.4s;
}
.drawer.is-open .drawer-actions { opacity: 1; transform: translateY(0); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  --mag-x: 0px;
  --mag-y: 0px;
}
[data-magnetic] {
  transform: translate3d(var(--mag-x), var(--mag-y), 0);
  transition: transform 0.4s var(--ease);
}
[data-magnetic]:hover {
  transition: transform 0.05s linear;
}
.btn-large {
  padding: 18px 32px;
  font-size: 15px;
}

.btn-primary {
  background: linear-gradient(180deg, #ffffff 0%, #d8d8d8 100%);
  color: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.4),
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 -1px 0 rgba(0,0,0,0.15) inset;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  transition: left 0.6s var(--ease);
}
.btn-primary:hover {
  box-shadow:
    0 16px 36px rgba(0,0,0,0.6),
    0 0 60px rgba(255,255,255,0.15),
    0 1px 0 rgba(255,255,255,0.8) inset;
}
.btn-primary:not([data-magnetic]):hover {
  transform: translateY(-3px) scale(1.02);
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:not([data-magnetic]):active { transform: translateY(-1px) scale(1); }

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--c-ink);
  border: 1px solid var(--c-line-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.btn-ghost:not([data-magnetic]):hover {
  transform: translateY(-3px) scale(1.02);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 32px 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero-inner {
  max-width: var(--container);
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* ====================== HERO EMBLEM (Original Logo behind title) ====================== */
.hero-emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -68%);
  width: min(78vmin, 720px);
  height: min(78vmin, 720px);
  pointer-events: none;
  z-index: 1;
  display: grid;
  place-items: center;
}

/* 3D perspective stage — gives the rotateY a real depth feel */
.hero-emblem-stage {
  width: 100%;
  height: 100%;
  perspective: 1800px;
  transform-style: preserve-3d;
}

/* Horizontal rotation around vertical axis (Y-axis) — like a slowly turning emblem */
.hero-emblem-spin {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: emblem-spin-y 28s linear infinite;
  will-change: transform;
}

/* Continuous horizontal rotation — emblem spins 360° around its own vertical axis.
   Two overlapping faces (front + back) ensure the logo is always readable and
   never appears mirrored; see .hero-emblem-face--back below. */
@keyframes emblem-spin-y {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}

/* Both logo faces share all visual styles.
   They are stacked absolutely so they overlap perfectly inside the spin container.
   backface-visibility: hidden makes each face invisible when it points away
   from the viewer — the other face takes over seamlessly at exactly that moment. */
.hero-emblem-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;

  filter:
    invert(1)
    brightness(0.92)
    contrast(0.88)
    drop-shadow(0 0 1px rgba(255,255,255,0.4))
    drop-shadow(0 14px 30px rgba(0,0,0,0.55))
    drop-shadow(0 0 60px rgba(255,255,255,0.18))
    drop-shadow(0 0 140px rgba(255,255,255,0.08));
  opacity: 0.80;
  animation: emblem-breathe 9s ease-in-out infinite;

  /* Critical: hide this face the moment it starts pointing away from the viewer.
     Combined with the back face below, the logo is always shown front-facing. */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Back face: pre-rotated 180° on Y so it starts pointing away from the viewer.
   When the spin container reaches 180°, this face has completed a full 360°
   turn in world space (180° container + 180° own offset) = identity transform —
   it faces the viewer with the logo in correct, non-mirrored orientation.
   The two faces alternate seamlessly every half-revolution. */
.hero-emblem-face--back {
  transform: rotateY(180deg);
}

@keyframes emblem-breathe {
  0%, 100% { opacity: 0.72; }
  50%      { opacity: 0.88; }
}

/* Halo behind the emblem — radial silver glow giving 3D depth */
.hero-emblem-halo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 75%; height: 75%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%,
      rgba(255,255,255,0.20) 0%,
      rgba(255,255,255,0.08) 25%,
      rgba(255,255,255,0.025) 50%,
      transparent 70%);
  filter: blur(24px);
  animation: halo-pulse 9s ease-in-out infinite;
  pointer-events: none;
}

@keyframes halo-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.85; }
  50%      { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

/* Hero text content — bring forward, layer above emblem */
.hero-title { position: relative; z-index: 3; }
.hero-badge, .hero-sub, .hero-meta, .hero-cta, .hero-scroll {
  position: relative;
  z-index: 3;
}

.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-line-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-ink-3);
  margin-bottom: 32px;
  transition: all 0.4s var(--ease);
}
.hero-badge::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent 50%, rgba(255,255,255,0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  pointer-events: none;
}
.hero-badge:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e0e0e0;
  box-shadow: 0 0 12px rgba(255,255,255,0.7);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(38px, 6.8vw, 108px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 40px;
  color: var(--c-ink);
  position: relative;
  text-align: center;
}
/* Make "Konz" visually slightly smaller for an elegant subtitle feel */
.hero-title-script {
  font-size: 0.9em;
  margin-top: 0.05em;
}
.hero-title-line {
  display: block;
  overflow: hidden;
  padding: 0.05em 0.02em;
}
.hero-title-line > span {
  display: inline-block;
  background: linear-gradient(180deg, #ffffff 0%, #d8d8d8 40%, #8a8a8a 100%);
  background-size: 100% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 30px rgba(255,255,255,0.12));
  animation: title-shimmer 8s ease-in-out infinite;
}
.hero-title-script {
  font-style: italic;
  font-weight: 600;
}
.hero-title-script > span {
  background: linear-gradient(180deg, #c8c8c8 0%, #888888 50%, #5a5a5a 100%);
  background-size: 100% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: title-shimmer 8s ease-in-out infinite 0.5s;
}

@keyframes title-shimmer {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 0% 100%; }
}

.hero-sub {
  font-family: var(--ff-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--c-ink-3);
  margin-bottom: 56px;
  letter-spacing: 0.02em;
}

/* HERO STATS — Apple/Tesla clean.
   No glass container, no blur, no background — just the three values
   with elegant thin silver dividers floating directly on the hero. */
.hero-meta {
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 8px 4px;
  margin-bottom: 56px;
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-radius: 0;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 4px 0;
}
.hero-meta-num {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.hero-meta-num small {
  font-size: 0.5em;
  font-weight: 400;
  opacity: 0.6;
}
.hero-meta-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-4);
  text-align: center;
  white-space: nowrap;
}
/* Elegant 1px vertical silver gradient dividers */
.hero-meta-sep {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255,255,255,0.10) 20%,
    rgba(255,255,255,0.30) 50%,
    rgba(255,255,255,0.10) 80%,
    transparent 100%
  );
  align-self: center;
}

/* HERO CALLOUT — "Wir kaufen Ihr Auto"
   Modern sans-serif (Inter) with refined letter-spacing for elegance.
   Sits centred between the stats row and the CTA buttons. */
.hero-callout {
  display: inline-block;
  margin: 0 auto 36px;
  padding: 14px 28px;
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink);
  position: relative;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.06) 40%,
    rgba(255,255,255,0.06) 60%,
    rgba(255,255,255,0) 100%);
  border-top: 1px solid var(--c-line-strong);
  border-bottom: 1px solid var(--c-line-strong);
}
.hero-callout::before,
.hero-callout::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-silver-2), transparent);
  transform: translateY(-50%);
}
.hero-callout::before { left: -40px; }
.hero-callout::after  { right: -40px; }

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-ink-4);
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--c-ink-3), transparent);
  background-size: 100% 200%;
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { background-position: 0% 200%; }
  100% { background-position: 0% -200%; }
}

.hero-marquee {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.hero-marquee-track {
  display: flex;
  gap: 32px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.hero-marquee-track span {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--c-ink-3);
  letter-spacing: 0.05em;
}
.hero-marquee-track span:nth-child(odd) {
  color: var(--c-silver-1);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   SECTIONS — generic
   ========================================================= */
.section {
  position: relative;
  padding: 140px 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-ink-4);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #c8c8c8 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(180deg, #b0b0b0 0%, #6a6a6a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-lead {
  font-size: 18px;
  color: var(--c-ink-3);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}
.section-lead strong {
  color: var(--c-ink);
  font-weight: 600;
}

.section-foot {
  text-align: center;
  margin-top: 60px;
}

/* Main CTA wrapper on the home page — large primary action + secondary link */
.section-foot--cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 80px;
}
@media (min-width: 700px) {
  .section-foot--cta { flex-direction: row; justify-content: center; }
}
.btn-cta-main {
  min-width: 280px;
  padding: 22px 40px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow:
    0 20px 40px -16px rgba(72, 160, 255, 0.30),
    0 0 0 1px rgba(72, 160, 255, 0.15);
}
.btn-cta-main:hover {
  box-shadow:
    0 26px 50px -16px rgba(72, 160, 255, 0.45),
    0 0 0 1px rgba(72, 160, 255, 0.30);
}

/* =========================================================
   ADVANTAGES
   ========================================================= */
/* RESPONSIVE GRID FOR THE 10 SERVICE CARDS
   Desktop (≥1400px):  5 columns × 2 rows
   Large laptop:        4 columns
   Tablet/laptop:       3 columns
   Phone landscape:     2 columns (also default for mobile portrait)
*/
.advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: stretch;
}
@media (min-width: 600px) {
  .advantages {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (min-width: 900px) {
  .advantages {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
@media (min-width: 1100px) {
  .advantages {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1400px) {
  .advantages {
    grid-template-columns: repeat(5, 1fr);
  }
}

.advantage-card {
  position: relative;
  padding: 36px 32px 32px;
  border-radius: var(--radius-l);
  background: linear-gradient(135deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--c-line);
  backdrop-filter: blur(20px);
  height: 100%; /* equal-height inside grid */
  display: flex;
  flex-direction: column;
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.advantage-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.advantage-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.advantage-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-line-strong);
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.advantage-card:hover::before { opacity: 1; }
.advantage-card:hover::after { opacity: 1; }

.advantage-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1f1f1f 0%, #0a0a0a 100%);
  border: 1px solid var(--c-line-strong);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--c-silver-1);
  box-shadow: 0 8px 16px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.5s var(--ease);
}
.advantage-card:hover .advantage-icon {
  transform: rotate(-6deg) scale(1.05);
}
.advantage-icon svg {
  width: 26px; height: 26px;
}

.advantage-card h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.advantage-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--c-ink-3);
}
.advantage-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-ink-4);
  letter-spacing: 0.1em;
}

/* =========================================================
   NAV — Social icons + Language switcher (top right)
   ========================================================= */
.nav-social {
  display: none; /* hidden on small screens, shown via media query */
  align-items: center;
  gap: 4px;
  padding: 0 6px;
}
@media (min-width: 1100px) {
  .nav-social { display: inline-flex; }
}
.nav-social-link {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--c-silver-2);
  border: 1px solid transparent;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav-social-link:hover {
  color: rgba(var(--c-led), 0.95);
  background: var(--c-led-soft);
  border-color: var(--c-led-mid);
  transform: translateY(-1px);
}
.nav-social-link.is-disabled { pointer-events: none; opacity: 0.4; }

/* Language switcher — compact 2-letter toggle, dropdown lists only the OTHER languages */
.nav-lang {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--c-line-strong);
  background: rgba(255,255,255,0.03);
  color: var(--c-ink-2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  line-height: 1;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav-lang-toggle:hover {
  border-color: var(--c-led-mid);
  background: var(--c-led-soft);
  color: rgba(var(--c-led), 0.95);
}
.nav-lang-toggle svg {
  width: 9px;
  height: 9px;
  opacity: 0.55;
  transition: transform 0.25s var(--ease);
}
.nav-lang.is-open .nav-lang-toggle svg { transform: rotate(180deg); opacity: 0.9; }
.nav-lang.is-open .nav-lang-toggle {
  border-color: var(--c-led-mid);
  background: var(--c-led-soft);
  color: rgba(var(--c-led), 0.95);
}

.nav-lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 68px;
  margin: 0;
  padding: 4px;
  list-style: none;
  background: linear-gradient(135deg, rgba(20,20,20,0.96), rgba(10,10,10,0.96));
  border: 1px solid var(--c-line-strong);
  border-radius: 12px;
  box-shadow: 0 16px 32px -10px rgba(0,0,0,0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.18s var(--ease), visibility 0.18s var(--ease), transform 0.18s var(--ease);
  z-index: 90;
}
.nav-lang.is-open .nav-lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-lang-menu li { margin: 0; }
.nav-lang-menu button {
  width: 100%;
  padding: 7px 12px;
  text-align: center;
  background: none;
  border: none;
  color: var(--c-ink-2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  border-radius: 8px;
  line-height: 1.2;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.nav-lang-menu button:hover {
  background: var(--c-led-soft);
  color: rgba(var(--c-led), 0.95);
}
/* Hide the currently-selected language from the dropdown — only show alternatives */
.nav-lang-menu button.is-active {
  display: none;
}

/* Drawer social (drawer-lang is removed — nav-lang dropdown works on mobile too) */
.drawer-social {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--c-line);
  flex-wrap: wrap;
  justify-content: center;
}
.drawer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--c-line-strong);
  color: var(--c-ink-2);
  font-size: 13px;
  font-weight: 500;
}
.drawer-social-link:hover {
  color: rgba(var(--c-led), 0.95);
  border-color: var(--c-led-mid);
}
.drawer-social-link.is-disabled { display: none; }

/* Ankauf nav link — subtle accent */
.nav-link-buy,
.drawer-link-buy {
  position: relative;
}
.nav-link-buy::after {
  content: '';
  position: absolute;
  top: 0; right: -10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(var(--c-led), 0.85);
  box-shadow: 0 0 8px rgba(var(--c-led), 0.6);
}

/* =========================================================
   EINBLICK — Showroom + Outdoor gallery (4 images)
   ========================================================= */
.section-einblick { padding-top: 80px; padding-bottom: 100px; }

.einblick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 800px) {
  .einblick-grid {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "hero hero2"
      "img3 img4";
    gap: 18px;
  }
  .einblick-item--hero { grid-area: hero; }
  .einblick-item:nth-child(2) { grid-area: hero2; }
  .einblick-item:nth-child(3) { grid-area: img3; }
  .einblick-item:nth-child(4) { grid-area: img4; }
}
@media (min-width: 1100px) {
  .einblick-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "hero hero2 hero2"
      "hero img3 img4";
    gap: 20px;
  }
  .einblick-item--hero img { min-height: 100%; }
}

.einblick-item {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid var(--c-line);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,0.6);
  aspect-ratio: 16 / 10;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.einblick-item--hero { aspect-ratio: 4 / 5; }
@media (min-width: 800px) {
  .einblick-item--hero { aspect-ratio: auto; min-height: 480px; }
}
.einblick-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.02) saturate(0.98);
  transition: transform 0.8s var(--ease), filter 0.6s var(--ease);
}
.einblick-item:hover {
  transform: translateY(-4px);
  border-color: var(--c-led-mid);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7);
}
.einblick-item:hover img {
  transform: scale(1.05);
  filter: contrast(1.05) saturate(1.04);
}
.einblick-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 22px 18px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.85) 100%);
  color: var(--c-ink);
}
.einblick-caption-num {
  flex: 0 0 auto;
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  color: rgba(var(--c-led), 0.85);
  letter-spacing: -0.02em;
}
.einblick-caption-text { min-width: 0; }
.einblick-caption-text strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.einblick-caption-text small {
  display: block;
  font-size: 12.5px;
  color: var(--c-ink-3);
  line-height: 1.5;
}
.einblick-foot { text-align: center; margin-top: 36px; }

/* =========================================================
   GOOGLE REVIEWS — modernes, kompaktes Google-Style Layout
   Defensive sizing for stars (explicit flex-basis) so SVGs never
   expand to fill their flex parent and break the layout.
   ========================================================= */
.google-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 640px;
  margin: 0 auto 40px;
  padding: 24px 26px;
  border-radius: var(--radius-l);
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--c-line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
@media (min-width: 700px) {
  .google-summary {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
  }
}
.google-summary-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.google-g {
  flex: 0 0 auto;
  width: 40px !important;
  height: 40px !important;
  background: #fff;
  border-radius: 10px;
  padding: 5px;
}
.google-summary-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.google-summary-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}
.google-summary-business {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.google-summary-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}
@media (min-width: 700px) {
  .google-summary-rating { align-items: flex-end; }
}
.google-summary-num {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
.google-summary-stars {
  display: inline-flex;
  gap: 2px;
  align-items: center;
}
.google-summary-stars svg {
  width: 16px !important;
  height: 16px !important;
  flex: 0 0 auto;
  display: block;
}
.google-summary-count {
  font-size: 11.5px;
  color: var(--c-ink-3);
  margin-top: 2px;
}

.google-reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 700px) {
  .google-reviews { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (min-width: 1100px) {
  .google-reviews { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

.google-review {
  display: flex;
  flex-direction: column;
  padding: 20px 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--c-line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  overflow: hidden;
}
.google-review:hover {
  transform: translateY(-2px);
  border-color: var(--c-led-mid);
  box-shadow: 0 12px 28px -14px rgba(0,0,0,0.5);
}
.google-review-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.google-avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
}
.google-avatar[data-avatar-color="blue"]   { background: linear-gradient(135deg, #4285F4, #1a73e8); }
.google-avatar[data-avatar-color="red"]    { background: linear-gradient(135deg, #EA4335, #c5221f); }
.google-avatar[data-avatar-color="green"]  { background: linear-gradient(135deg, #34A853, #1e8e3e); }
.google-avatar[data-avatar-color="purple"] { background: linear-gradient(135deg, #8e44ad, #6c3483); }
.google-avatar[data-avatar-color="orange"] { background: linear-gradient(135deg, #f39c12, #d68910); }
.google-avatar[data-avatar-color="teal"]   { background: linear-gradient(135deg, #16a085, #117864); }

.google-review-meta {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
}
.google-review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.google-review-date {
  font-size: 11.5px;
  color: var(--c-ink-4);
  margin-top: 1px;
}
.google-mark {
  flex: 0 0 auto;
  width: 14px !important;
  height: 14px !important;
  background: #fff;
  border-radius: 50%;
  padding: 1px;
  opacity: 0.85;
}
.google-review-stars {
  display: inline-flex;
  gap: 1px;
  margin-bottom: 10px;
  align-items: center;
}
.google-review-stars svg {
  width: 14px !important;
  height: 14px !important;
  flex: 0 0 auto;
  display: block;
}
.google-review blockquote {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--c-ink-2);
  margin: 0;
  flex: 1 1 auto;
  /* Prevent the placeholder reviews from blowing the card open on mobile */
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.google-foot { text-align: center; margin-top: 32px; }

/* Small screens — even tighter */
@media (max-width: 480px) {
  .google-summary { padding: 20px; gap: 14px; }
  .google-summary-num { font-size: 32px; }
  .google-summary-business { font-size: 14.5px; white-space: normal; }
  .google-review { padding: 18px; }
  .google-review blockquote { -webkit-line-clamp: 5; }
}

/* =========================================================
   UNSERE GESCHICHTE — Premium-Storytelling
   ========================================================= */
.section-geschichte { padding-top: 80px; padding-bottom: 80px; }

.geschichte {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 950px) {
  .geschichte { grid-template-columns: 1.1fr 1fr; gap: 60px; }
}

.geschichte-text .eyebrow { display: inline-block; margin-bottom: 12px; }
.geschichte-text .section-title { text-align: left; margin-bottom: 20px; font-size: clamp(28px, 4vw, 40px); }
.geschichte-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-ink-2);
  margin-bottom: 14px;
  max-width: 540px;
}
.geschichte-text p strong { color: var(--c-ink); font-weight: 600; }

.geschichte-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0 24px;
  padding: 20px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.geschichte-stat { display: flex; flex-direction: column; align-items: flex-start; }
.geschichte-stat-num {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff 0%, #d4d4d4 60%, #8d8d8d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}
.geschichte-stat-lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-ink-3);
  text-transform: uppercase;
}

.geschichte-quote {
  position: relative;
  padding: 20px 22px 20px 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--c-led-soft), rgba(255,255,255,0.02));
  border: 1px solid var(--c-led-mid);
  margin: 0 0 24px;
}
.geschichte-quote-mark {
  position: absolute;
  top: 16px;
  left: 14px;
  /* !important so global svg rules can't accidentally upscale the quote mark */
  width: 16px !important;
  height: 16px !important;
  color: rgba(var(--c-led), 0.6);
  fill: rgba(var(--c-led), 0.6);
}
.geschichte-quote blockquote {
  font-family: var(--ff-display);
  font-size: 15px;
  font-style: italic;
  line-height: 1.5;
  color: var(--c-ink);
  margin: 0 0 8px;
}
.geschichte-quote cite {
  font-size: 12.5px;
  font-style: normal;
  color: var(--c-ink-3);
}

.geschichte-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Visual side */
.geschichte-visual {
  position: relative;
}
.geschichte-image {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow:
    0 50px 100px -30px rgba(0,0,0,0.7),
    0 0 0 1px rgba(var(--c-led), 0.05);
  aspect-ratio: 4 / 5;
}
.geschichte-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(0.95) brightness(0.92);
  transition: transform 0.9s var(--ease);
}
.geschichte-image:hover img { transform: scale(1.04); }
.geschichte-image-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 50% 100%, rgba(0,0,0,0.4), transparent 60%),
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}
.geschichte-badge {
  position: absolute;
  bottom: -24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(20,20,20,0.95), rgba(10,10,10,0.95));
  border: 1px solid var(--c-led-mid);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
}
.geschichte-badge-num {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(var(--c-led), 0.95);
}
.geschichte-badge-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink-2);
  line-height: 1.4;
}
@media (min-width: 950px) {
  .geschichte-text p { max-width: 100%; }
}

/* =========================================================
   STORY PAGE (geschichte.html) — long-form narrative
   ========================================================= */
.story-page { background: var(--c-bg); }

.story-hero {
  padding: 140px 24px 36px;
  text-align: center;
}
.story-hero-inner { max-width: 720px; margin: 0 auto; }
.story-hero .eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(var(--c-led), 0.85);
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(var(--c-led), 0.30);
  border-radius: 999px;
  background: rgba(var(--c-led), 0.06);
}
.story-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--c-ink);
}
.story-hero-title em {
  font-style: italic;
  font-weight: 400;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.story-hero-lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink-3);
  margin: 0 auto;
  max-width: 580px;
}

.story-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 22px 80px;
}
.story-article {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.story-chapter { display: flex; flex-direction: column; gap: 12px; }
.story-chapter-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.story-chapter-num {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  padding: 5px 10px;
  border-radius: 7px;
  background: var(--c-led-soft);
  border: 1px solid var(--c-led-mid);
  color: rgba(var(--c-led), 0.95);
}
.story-chapter-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}
.story-chapter-title {
  font-family: var(--ff-display);
  font-size: clamp(19px, 2.6vw, 26px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--c-ink);
  margin-bottom: 2px;
}
.story-chapter p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-ink-2);
  margin: 0;
}
.story-chapter p strong { color: var(--c-ink); font-weight: 600; }
.story-chapter--partner {
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--c-led-soft), rgba(255,255,255,0.02));
  border: 1px solid var(--c-led-mid);
}
.story-chapter--outlook { opacity: 0.95; }

/* Hero figure */
.story-figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55);
  position: relative;
}
.story-figure img {
  width: 100%;
  height: clamp(220px, 38vw, 360px);
  object-fit: cover;
  display: block;
  filter: contrast(1.04) saturate(0.96);
}
.story-figure figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 20px;
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--c-ink-2);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
}

/* Pull quote — compact, no oversized icon */
.story-pullquote {
  margin: 0;
  padding: 20px 22px 20px 48px;
  border-radius: 16px;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(var(--c-led), 0.10), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--c-line-strong);
  position: relative;
}
.story-pullquote svg {
  position: absolute;
  top: 16px;
  left: 16px;
  /* !important locks the size against any global svg rules */
  width: 18px !important;
  height: 18px !important;
  color: rgba(var(--c-led), 0.65);
  fill: rgba(var(--c-led), 0.65);
}
.story-pullquote blockquote {
  font-family: var(--ff-display);
  font-size: 16px;
  font-style: italic;
  line-height: 1.5;
  color: var(--c-ink);
  margin: 0 0 6px;
}
.story-pullquote cite {
  font-size: 12.5px;
  font-style: normal;
  color: var(--c-ink-3);
  letter-spacing: 0.02em;
}

/* Owner cards (Yasser + Majed) */
.story-owners {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) {
  .story-owners { grid-template-columns: 1fr 1fr; gap: 18px; }
}
.story-owner {
  padding: 26px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.story-owner:hover {
  border-color: var(--c-led-mid);
  transform: translateY(-3px);
}
.story-owner-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(var(--c-led), 0.95);
  background: var(--c-led-soft);
  border: 1px solid var(--c-led-mid);
  margin-bottom: 8px;
}
.story-owner--os .story-owner-badge {
  color: var(--c-ink);
  background: rgba(255,255,255,0.06);
  border-color: var(--c-line-strong);
}
.story-owner h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}
.story-owner-role {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink-3);
  margin-bottom: 6px;
}
.story-owner p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-ink-2);
  margin: 0 0 4px;
}
.story-owner-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin-top: 8px;
}
.story-owner-tags li {
  font-size: 11.5px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-line);
  color: var(--c-ink-3);
}

/* CTA row at the end */
.story-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid var(--c-line);
}

@media (max-width: 600px) {
  .story-main { padding: 24px 18px 80px; }
  .story-article { gap: 44px; }
  .story-chapter p { font-size: 15px; line-height: 1.7; }
  .story-chapter--partner { padding: 20px; }
  .story-pullquote { padding: 22px 22px 22px 56px; }
  .story-pullquote svg { top: 18px; left: 18px; width: 24px; height: 24px; }
  .story-pullquote blockquote { font-size: 17px; }
  .story-owner { padding: 22px 20px; }
  .story-figure img { height: 200px; }
}

/* =========================================================
   ANKAUF PAGE (ankauf.html) — Compact premium form
   Capped width keeps the form readable; sidebar is a compact
   info card next to it on desktop, stacked below on mobile.
   ========================================================= */
.ankauf-page { background: var(--c-bg); }

.ankauf-hero {
  padding: 140px 24px 32px;
  text-align: center;
  position: relative;
}
.ankauf-hero-inner { max-width: 720px; margin: 0 auto; }
.ankauf-hero .eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(var(--c-led), 0.85);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(var(--c-led), 0.30);
  border-radius: 999px;
  background: rgba(var(--c-led), 0.06);
}
.ankauf-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(34px, 5.2vw, 52px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 14px;
  color: var(--c-ink);
}
.ankauf-hero-title em {
  font-style: italic;
  font-weight: 400;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ankauf-hero-lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-ink-3);
  max-width: 560px;
  margin: 0 auto 18px;
}
.ankauf-hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.ankauf-hero-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--c-led-soft);
  border: 1px solid var(--c-led-mid);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--c-ink-2);
}
.ankauf-hero-feature svg {
  width: 16px !important;
  height: 16px !important;
  color: rgba(var(--c-led), 0.95);
  flex: 0 0 auto;
}

/* Main layout — capped at 1100px so form never spans the full width */
.ankauf-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 20px 100px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 980px) {
  .ankauf-main {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    padding: 32px 24px 100px;
  }
}

/* Form container */
.ankauf-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.form-section {
  padding: 24px 24px 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--c-line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
@media (max-width: 600px) { .form-section { padding: 20px 18px; border-radius: 18px; } }
.form-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line);
}
.form-section-num {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--c-led-soft), rgba(255,255,255,0.02));
  border: 1px solid var(--c-led-mid);
  color: rgba(var(--c-led), 0.95);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  flex: 0 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
@media (min-width: 600px) {
  .form-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}
.field-full { grid-column: 1 / -1; }
.ankauf-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.ankauf-form .field > span {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}

/* Override default field style with required indicator */
.ankauf-form .field span em {
  font-style: normal;
  color: rgba(var(--c-led), 0.85);
  font-weight: 600;
  margin-left: 2px;
}
.ankauf-form .field small { font-weight: 400; color: var(--c-ink-4); margin-left: 4px; }
.ankauf-form input,
.ankauf-form select,
.ankauf-form textarea {
  width: 100%;
  padding: 11px 13px;
  font-family: inherit;
  font-size: 14px;
  color: var(--c-ink);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-line-strong);
  border-radius: 10px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  box-sizing: border-box;
}
.ankauf-form textarea { resize: vertical; min-height: 96px; }
.ankauf-form input:focus,
.ankauf-form select:focus,
.ankauf-form textarea:focus {
  outline: none;
  border-color: rgba(var(--c-led), 0.65);
  background: rgba(var(--c-led), 0.04);
}
.ankauf-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 32px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgb(180,210,255)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}
.ankauf-form select option { background: #1a1a1a; color: var(--c-ink); }

/* Radio group */
.form-radio-group {
  border: none;
  padding: 0;
  margin: 0 0 18px;
  min-width: 0;
}
.form-radio-group legend {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-3);
  margin-bottom: 8px;
}
.form-radio-group legend em {
  font-style: normal;
  color: rgba(var(--c-led), 0.85);
  font-weight: 600;
}
.form-radio-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 600px) { .form-radio-row { grid-template-columns: repeat(3, 1fr); } }
.form-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--c-line-strong);
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.form-radio input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  accent-color: rgb(var(--c-led));
}
.form-radio span { font-size: 13px; color: var(--c-ink-2); line-height: 1.3; }
.form-radio:hover { border-color: var(--c-led-mid); }
.form-radio:has(input:checked) {
  background: var(--c-led-soft);
  border-color: rgba(var(--c-led), 0.55);
}
.form-radio:has(input:checked) span { color: var(--c-ink); font-weight: 500; }

/* Photo-handover hint note (replaces the legacy file upload) */
.field-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  margin-top: 4px;
  border: 1px solid rgba(var(--c-led), 0.28);
  background:
    linear-gradient(135deg, rgba(var(--c-led), 0.07), rgba(var(--c-led), 0.02)),
    rgba(255, 255, 255, 0.015);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.field-note::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 80% at 0% 0%, rgba(var(--c-led), 0.08), transparent 55%);
}
.field-note-icon {
  flex: 0 0 auto;
  color: rgba(var(--c-led), 0.95);
  margin-top: 2px;
  filter: drop-shadow(0 0 8px rgba(var(--c-led), 0.25));
}
.field-note-body { position: relative; min-width: 0; }
.field-note-body strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--c-ink);
  margin-bottom: 4px;
}
.field-note-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--c-ink-3);
}

.ankauf-form .check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-ink-2);
  cursor: pointer;
  margin-bottom: 18px;
}
.ankauf-form .check input {
  width: 16px;
  height: 16px;
  accent-color: rgb(var(--c-led));
  margin-top: 1px;
  flex: 0 0 auto;
}
.ankauf-form .check a { color: rgba(var(--c-led), 0.95); text-decoration: underline; }

.ankauf-submit {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 14.5px;
}
.ankauf-submit.is-loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}
.ankauf-submit.is-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  border-top-color: rgba(255,255,255,0.95);
  animation: btn-spin 0.7s linear infinite;
}

/* Side panel — compact info card */
.ankauf-side {
  position: sticky;
  top: 96px;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--c-line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  min-width: 0;
}
@media (max-width: 980px) { .ankauf-side { position: static; padding: 20px; } }
.ankauf-side h3 {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.ankauf-side > p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--c-ink-3);
  margin-bottom: 16px;
}
.ankauf-side-channels { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.ankauf-side-channel {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--c-line);
  background: rgba(255,255,255,0.02);
  text-decoration: none;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  min-width: 0;
}
.ankauf-side-channel > div { min-width: 0; overflow: hidden; }
.ankauf-side-channel:hover {
  border-color: var(--c-led-mid);
  background: var(--c-led-soft);
}
.ankauf-side-channel svg {
  width: 16px !important;
  height: 16px !important;
  color: rgba(var(--c-led), 0.95);
  flex: 0 0 auto;
}
.ankauf-side-channel small {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-ink-4);
}
.ankauf-side-channel strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-ink);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ankauf-side-trust {
  padding-top: 16px;
  border-top: 1px solid var(--c-line);
}
.ankauf-side-trust h4 {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-ink-3);
  margin-bottom: 10px;
}
.ankauf-side-trust ul { list-style: none; padding: 0; margin: 0; }
.ankauf-side-trust li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-ink-2);
  margin-bottom: 6px;
}
.ankauf-side-trust li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(var(--c-led), 0.85);
  box-shadow: 0 0 6px rgba(var(--c-led), 0.5);
}

/* =========================================================
   VEHICLES PAGE (fahrzeuge.html) — Hero + filter sidebar + grid
   ========================================================= */
.vehicles-page { background: var(--c-bg); }

.vehicles-hero {
  padding: 160px 24px 60px;
  text-align: center;
  position: relative;
}
.vehicles-hero-inner {
  max-width: 880px;
  margin: 0 auto;
}
.vehicles-hero .eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(180, 210, 255, 0.85);
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(72, 160, 255, 0.30);
  border-radius: 999px;
  background: rgba(72, 160, 255, 0.06);
}
.vehicles-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--c-ink);
}
.vehicles-hero-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, #fff 0%, #d4d4d4 50%, #8d8d8d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vehicles-hero-lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink-3);
  max-width: 640px;
  margin: 0 auto;
}

.vehicles-main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 24px 120px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 1000px) {
  .vehicles-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 20px 16px 80px;
  }
}

/* Filter panel */
.filters-panel {
  position: sticky;
  top: 100px;
  padding: 28px 24px;
  border-radius: var(--radius-l);
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--c-line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
@media (max-width: 1000px) {
  .filters-panel {
    position: static;
    max-height: none;
  }
}
.filters-panel::-webkit-scrollbar { width: 6px; }
.filters-panel::-webkit-scrollbar-track { background: transparent; }
.filters-panel::-webkit-scrollbar-thumb { background: var(--c-line-strong); border-radius: 3px; }

.filters-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--c-line);
}
.filters-panel-head h2 {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  margin: 0;
}
.filters-reset {
  font-size: 12px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--c-ink-3);
}
.filters-reset:hover { color: rgba(180, 210, 255, 0.95); }

.filter-block {
  margin-bottom: 22px;
}
.filter-block-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ink-3);
  margin-bottom: 10px;
}
.filter-value {
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(180, 210, 255, 0.85);
}

.filters-panel .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-start;
}

/* Range sliders */
.range-slider {
  width: 100%;
  height: 28px;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
}
.range-slider::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(72,160,255,0.45) 0%, var(--c-line-strong) 100%);
}
.range-slider::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  margin-top: -7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #c5c5c5);
  border: 2px solid #0a0a0a;
  box-shadow: 0 0 0 1px rgba(72,160,255,0.35), 0 2px 6px rgba(0,0,0,0.5);
  cursor: grab;
  transition: transform 0.2s var(--ease);
}
.range-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.range-slider::-webkit-slider-thumb:active { cursor: grabbing; }
.range-slider::-moz-range-track {
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(72,160,255,0.45) 0%, var(--c-line-strong) 100%);
}
.range-slider::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #c5c5c5);
  border: 2px solid #0a0a0a;
  box-shadow: 0 0 0 1px rgba(72,160,255,0.35), 0 2px 6px rgba(0,0,0,0.5);
  cursor: grab;
}

/* Select dropdowns */
.filter-select {
  width: 100%;
  padding: 10px 36px 10px 14px;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--c-ink);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgb(180,210,255)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") right 12px center / 14px no-repeat;
  border: 1px solid var(--c-line-strong);
  border-radius: 10px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.filter-select:hover { border-color: rgba(72,160,255,0.40); }
.filter-select:focus { outline: none; border-color: rgba(72,160,255,0.65); }
.filter-select:disabled { opacity: 0.45; cursor: not-allowed; }
.filter-select option { background: #1a1a1a; color: var(--c-ink); }

/* Grid wrap */
.vehicles-grid-wrap { min-width: 0; }
.vehicles-grid-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding: 14px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--c-line);
}
.vehicles-grid-count {
  font-size: 14px;
  color: var(--c-ink-2);
}
.vehicles-grid-count strong {
  color: rgba(180, 210, 255, 0.95);
  font-weight: 600;
  margin-right: 4px;
}
.vehicles-grid-head .link { font-size: 13px; }

/* =========================================================
   SERVICES — Highlight cards + grid (replacement for advantages)
   ========================================================= */
.services-highlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 22px;
}
@media (min-width: 900px) {
  .services-highlight {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 28px;
  }
}

.service-hero {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 36px 36px 36px 32px;
  border-radius: var(--radius-l);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(72,160,255,0.10), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--c-line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.service-hero::before {
  content: '';
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(72,160,255,0.55), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.service-hero:hover {
  transform: translateY(-4px);
  border-color: rgba(72,160,255,0.30);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55), 0 0 0 1px rgba(72,160,255,0.05);
}
.service-hero:hover::before { opacity: 1; }

.service-hero-icon {
  width: 64px; height: 64px;
  flex: 0 0 auto;
  border-radius: 16px;
  background:
    radial-gradient(120% 120% at 30% 30%, rgba(72,160,255,0.20), transparent 60%),
    linear-gradient(135deg, #1f1f1f, #0a0a0a);
  border: 1px solid rgba(72,160,255,0.20);
  display: grid;
  place-items: center;
  color: rgba(180, 210, 255, 0.95);
  box-shadow: 0 10px 24px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.6s var(--ease);
}
.service-hero:hover .service-hero-icon { transform: rotate(-6deg) scale(1.05); }
.service-hero-icon svg { width: 30px; height: 30px; }

.service-hero-text { min-width: 0; }
.service-hero-eyebrow {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: rgba(180, 210, 255, 0.7);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.service-hero h3 {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  margin-bottom: 10px;
}
.service-hero p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--c-ink-3);
  margin-bottom: 14px;
}
.service-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(180, 210, 255, 0.95);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.service-hero-cta:hover {
  gap: 12px;
  color: #fff;
}

/* Smaller service cards: 5-up responsive grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 700px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 1100px) {
  .services-grid { grid-template-columns: repeat(5, 1fr); gap: 18px; }
}

.service-card {
  position: relative;
  padding: 26px 24px 24px;
  border-radius: var(--radius-l);
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--c-line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(72,160,255,0.25);
  background: linear-gradient(135deg, rgba(72,160,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.55);
}
.service-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 1px solid var(--c-line-strong);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--c-silver-1);
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.service-card:hover .service-card-icon {
  color: rgba(180, 210, 255, 0.95);
  border-color: rgba(72,160,255,0.30);
}
.service-card-icon svg { width: 22px; height: 22px; }

.service-card h4 {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--c-ink);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--c-ink-3);
}

/* Single-column for very narrow phones */
@media (max-width: 420px) {
  .service-hero {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    text-align: center;
  }
  .service-hero-icon { margin: 0 auto 8px; }
  .service-hero-cta { justify-content: center; }
}

/* =========================================================
   VEHICLES
   ========================================================= */
.section-vehicles { padding-bottom: 100px; }

.filter-groups {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.filter-group-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink-4);
}

.filter-bar {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.chip-category {
  background: rgba(255,255,255,0.06);
  border-color: var(--c-line-strong);
  color: var(--c-ink-2);
}
.chip-empty,
.chip[disabled] {
  opacity: 0.35;
  cursor: not-allowed !important;
  pointer-events: none;
}
.chip-empty::after,
.chip[disabled]::after {
  content: ' · 0';
  font-size: 10px;
  opacity: 0.7;
  margin-left: 2px;
}
.chip {
  position: relative;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-line);
  color: var(--c-ink-3);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.4s var(--ease-elastic),
    box-shadow 0.3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.chip:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--c-line-strong);
  color: var(--c-ink);
  transform: translateY(-2px);
}
.chip:active {
  transform: translateY(0) scale(0.96);
}
.chip.is-active {
  background: linear-gradient(180deg, #ffffff, #d8d8d8);
  color: #0a0a0a;
  border-color: rgba(255,255,255,0.6);
  font-weight: 600;
  box-shadow:
    0 6px 16px rgba(0,0,0,0.4),
    0 0 24px rgba(255,255,255,0.10),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
/* Featured grid on the home page — 5 flagship vehicles in equal-height tiles.
   minmax raised to 260px so the 2-column specs don't truncate the value text. */
.vehicle-grid--featured {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
@media (min-width: 1100px) {
  .vehicle-grid--featured {
    /* 5 columns on wide screens — flagship cars side by side, but tiles
       wide enough that 'Laufleistung' and 'Kraftstoff' fit on one line. */
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* =========================================================
   Featured slider — premium arrow controls
   • Arrows always visible on the left/right of the grid
   • Mobile: live inside a padded gutter on .vehicle-slider-row so
     they never overlap card content; gutter scales with viewport
   • Desktop ≥1000px: arrows sit OUTSIDE the grid edges
   • LED-blue accent rim + hover glow keeps them visible against
     the dark site background without being noisy
   ========================================================= */
.vehicle-slider { position: relative; }

.vehicle-slider-row {
  position: relative;
  /* Mobile gutter — sized so a 44px arrow centered at left:6 sits
     fully inside the gutter without overlapping the card area. */
  padding: 0 56px;
}
.vehicle-slider-row .vehicle-grid--featured {
  width: 100%;
  min-width: 0;
}

/* Hide arrows + counter until JS confirms paging is actually needed */
.vehicle-slider:not(.has-paging) .vehicle-slider-arrow,
.vehicle-slider:not(.has-paging) .vehicle-slider-counter-wrap {
  display: none;
}

.vehicle-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-led-mid);
  background:
    radial-gradient(120% 120% at 30% 30%, rgba(var(--c-led), 0.18), rgba(15,15,15,0.96) 60%),
    linear-gradient(135deg, rgba(25,25,25,0.95), rgba(8,8,8,0.95));
  color: var(--c-ink);
  cursor: pointer;
  z-index: 10;
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    transform 0.25s var(--ease),
    opacity 0.3s var(--ease);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 8px 22px -8px rgba(0,0,0,0.7),
    0 0 0 1px rgba(var(--c-led), 0.08),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.vehicle-slider-arrow--prev { left: 6px; }
.vehicle-slider-arrow--next { right: 6px; }

.vehicle-slider-arrow:hover:not(:disabled) {
  border-color: rgba(var(--c-led), 0.55);
  background:
    radial-gradient(120% 120% at 30% 30%, rgba(var(--c-led), 0.32), rgba(20,20,20,0.96) 60%),
    linear-gradient(135deg, rgba(35,35,35,0.95), rgba(15,15,15,0.95));
  color: rgba(var(--c-led), 1);
  box-shadow:
    0 12px 28px -8px rgba(0,0,0,0.7),
    0 0 0 1px rgba(var(--c-led), 0.18),
    0 0 24px rgba(var(--c-led), 0.30),
    inset 0 1px 0 rgba(255,255,255,0.10);
  transform: translateY(-50%) scale(1.08);
}
.vehicle-slider-arrow:active:not(:disabled) {
  transform: translateY(-50%) scale(0.94);
  transition-duration: 0.1s;
}
/* Focus ring for keyboard users — matches the LED-blue hover state */
.vehicle-slider-arrow:focus-visible {
  outline: none;
  border-color: rgba(var(--c-led), 0.85);
  box-shadow:
    0 0 0 3px rgba(var(--c-led), 0.30),
    0 8px 22px -8px rgba(0,0,0,0.7);
}
.vehicle-slider-arrow:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  border-color: var(--c-line-strong);
  box-shadow: none;
}
.vehicle-slider-arrow svg {
  width: 22px;
  height: 22px;
  /* Slight outward shift so the chevron feels visually centered */
  stroke-width: 2.4;
}

/* Counter pill below the grid */
.vehicle-slider-counter-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.vehicle-slider-counter-wrap[hidden] { display: none; }
.vehicle-slider-counter {
  min-width: 60px;
  text-align: center;
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-ink-3);
  font-variant-numeric: tabular-nums;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-line);
}

/* Very narrow phones (≤380px): tighter gutter so the cards keep enough width */
@media (max-width: 380px) {
  .vehicle-slider-row { padding: 0 48px; }
  .vehicle-slider-arrow { width: 40px; height: 40px; }
  .vehicle-slider-arrow svg { width: 20px; height: 20px; }
  .vehicle-slider-arrow--prev { left: 4px; }
  .vehicle-slider-arrow--next { right: 4px; }
}

/* Tablet ≥700px — a touch larger, still inside a gutter */
@media (min-width: 700px) and (max-width: 999px) {
  .vehicle-slider-row { padding: 0 64px; }
  .vehicle-slider-arrow { width: 48px; height: 48px; }
  .vehicle-slider-arrow svg { width: 22px; height: 22px; }
  .vehicle-slider-arrow--prev { left: 8px; }
  .vehicle-slider-arrow--next { right: 8px; }
}

/* Desktop ≥1000px — arrows leave the gutter and sit OUTSIDE the grid */
@media (min-width: 1000px) {
  .vehicle-slider-row { padding: 0; }
  .vehicle-slider-arrow {
    width: 52px;
    height: 52px;
  }
  .vehicle-slider-arrow svg { width: 24px; height: 24px; }
  .vehicle-slider-arrow--prev { left: -26px; }
  .vehicle-slider-arrow--next { right: -26px; }
}
@media (min-width: 1300px) {
  .vehicle-slider-arrow--prev { left: -32px; }
  .vehicle-slider-arrow--next { right: -32px; }
}

/* Respect users who prefer reduced motion: no scale/glow choreography */
@media (prefers-reduced-motion: reduce) {
  .vehicle-slider-arrow:hover:not(:disabled),
  .vehicle-slider-arrow:active:not(:disabled) {
    transform: translateY(-50%);
  }
}

.vehicle-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-l);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 60%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--c-line);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  overflow: hidden;
  transition:
    transform 0.6s var(--ease),
    border-color 0.5s var(--ease),
    box-shadow 0.6s var(--ease),
    background 0.6s var(--ease),
    opacity 0.7s var(--ease);
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  will-change: transform, opacity;
}
.vehicle-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (hover: hover) and (pointer: fine) {
  .vehicle-card.is-visible {
    transform-style: preserve-3d;
    perspective: 1200px;
  }
  .vehicle-card.is-visible:hover {
    transform:
      translateY(-10px)
      rotateX(var(--tilt-x, 0deg))
      rotateY(var(--tilt-y, 0deg));
    transition: transform 0.25s var(--ease-soft);
  }
}
.vehicle-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  width: 60%;
  transform: translateX(-50%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
  z-index: 3;
}
.vehicle-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% -20%, rgba(255,255,255,0.10), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.vehicle-card:hover {
  transform: translateY(-10px);
  border-color: var(--c-line-strong);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.025) 60%, rgba(255,255,255,0.02) 100%);
  box-shadow:
    0 50px 100px -20px rgba(0,0,0,0.75),
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 120px rgba(255,255,255,0.06);
}
.vehicle-card:hover::before { opacity: 1; }
.vehicle-card:hover::after { opacity: 1; }

.vehicle-link {
  display: block;
  position: relative;
  z-index: 2;
}

.vehicle-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, #1f1f1f 0%, #0e0e0e 70%, #060606 100%);
  isolation: isolate;
}
.vehicle-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 30% at 50% 100%, rgba(255,255,255,0.06), transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.vehicle-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}
.vehicle-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease);
  background:
    radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 100%);
}
.vehicle-card:hover .vehicle-img {
  transform: scale(1.06);
}

/* Mobile: consistent cover crop (no awkward whitespace from contain) */
@media (max-width: 768px) {
  .vehicle-img {
    object-fit: cover;
    object-position: center 55%;
    padding: 0;
  }
  .vehicle-card:hover .vehicle-img {
    transform: scale(1.02);
  }
  .vehicle-media {
    aspect-ratio: 16 / 10;
  }
}

.vehicle-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--c-line-strong);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-silver-1);
  z-index: 2;
}

.vehicle-fav {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--c-line-strong);
  display: grid;
  place-items: center;
  color: var(--c-ink-3);
  z-index: 2;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.vehicle-fav:hover {
  background: rgba(255,255,255,0.95);
  color: #0a0a0a;
  transform: scale(1.1);
}
.vehicle-fav svg { width: 18px; height: 18px; }
.vehicle-fav.is-fav { color: #fff; background: rgba(255,255,255,0.15); }
.vehicle-fav.is-fav svg { fill: currentColor; }

.vehicle-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  position: relative;
  z-index: 2;
}

.vehicle-title {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--c-ink);
  letter-spacing: -0.01em;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 49px;
}

.vehicle-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.vehicle-price {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 700;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.vehicle-financing {
  font-size: 11.5px;
  color: var(--c-ink-4);
  letter-spacing: 0.02em;
}
.vehicle-financing strong {
  color: var(--c-silver-1);
  font-weight: 600;
}

.vehicle-specs {
  display: grid;
  /* minmax(0, 1fr) so the columns can shrink and the value ellipsis activates
     before any text gets clipped by the parent card boundary */
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px 12px;
  padding: 16px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.vehicle-spec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  min-width: 0;
}
.vehicle-spec-icon {
  width: 24px; height: 24px;
  border-radius: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--c-silver-2);
}
.vehicle-spec-icon svg { width: 12px; height: 12px; }
.vehicle-spec-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
  flex: 1 1 auto;
}
.vehicle-spec-label {
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink-4);
}
.vehicle-spec-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vehicle-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #d8d8d8);
  color: #0a0a0a;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255,255,255,0.6);
  /* margin-top: auto pushes the CTA to the bottom of the flex column
     so cards with shorter content still align their CTAs along one
     baseline — equal visual rhythm even when specs differ. */
  margin-top: auto;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.7);
}
.vehicle-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
  transition: left 0.6s var(--ease);
}
.vehicle-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.5), 0 0 30px rgba(255,255,255,0.15);
}
.vehicle-cta:hover::before { left: 100%; }
.vehicle-cta svg {
  transition: transform 0.4s var(--ease);
}
.vehicle-cta:hover svg {
  transform: translateX(3px);
}

/* Loading skeleton (shown while vehicles.json is being fetched) */
.vehicle-skeleton {
  border-radius: var(--radius-l);
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--c-line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.vehicle-skeleton-media {
  aspect-ratio: 16 / 11;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0.03) 0%,
      rgba(255,255,255,0.06) 50%,
      rgba(255,255,255,0.03) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.6s linear infinite;
}
.vehicle-skeleton-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vehicle-skeleton-line {
  height: 12px;
  border-radius: 6px;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0.04) 0%,
      rgba(255,255,255,0.08) 50%,
      rgba(255,255,255,0.04) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.6s linear infinite;
}
.vehicle-skeleton-line.w70 { width: 70%; }
.vehicle-skeleton-line.w40 { width: 40%; height: 22px; }
.vehicle-skeleton-line.w90 { width: 90%; height: 60px; border-radius: 12px; }

@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.vehicle-empty {
  text-align: center;
  padding: 60px 32px;
  color: var(--c-ink-3);
}
.vehicle-empty .link {
  color: var(--c-ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}

.link {
  color: var(--c-ink-3);
  font-weight: 500;
  transition: color 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link:hover { color: var(--c-ink); }

/* =========================================================
   ABOUT
   ========================================================= */
.section-about { padding-top: 100px; }

/* Showroom hero visual — full-width premium photo with caption overlay */
.about-showroom {
  margin: 0 auto 80px;
  max-width: var(--container);
  padding: 0;
}
.about-showroom-frame {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow:
    0 50px 100px -30px rgba(0,0,0,0.7),
    0 0 0 1px rgba(72,160,255,0.04);
  background: #0a0a0a;
  aspect-ratio: 16 / 9;
}
.about-showroom-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.02) saturate(0.98);
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
}
.about-showroom-frame:hover img {
  transform: scale(1.03);
  filter: contrast(1.05) saturate(1.02);
}
.about-showroom-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 48px 48px 40px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.85) 100%);
  color: var(--c-ink);
}
.about-showroom-eyebrow {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(180, 210, 255, 0.85);
  margin-bottom: 14px;
  padding: 6px 12px;
  border: 1px solid rgba(72,160,255,0.35);
  border-radius: 999px;
  background: rgba(72,160,255,0.08);
  backdrop-filter: blur(8px);
}
.about-showroom-overlay h3 {
  font-family: var(--ff-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
.about-showroom-overlay p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--c-ink-2);
  max-width: 640px;
  margin: 0;
}

@media (max-width: 700px) {
  .about-showroom { margin-bottom: 60px; }
  .about-showroom-overlay { padding: 28px 22px 24px; }
  .about-showroom-overlay h3 { font-size: 19px; }
  .about-showroom-overlay p { font-size: 13.5px; }
}

.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-side .section-title {
  text-align: left;
}
.about-side .eyebrow { margin-bottom: 24px; }
.about-side p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-ink-3);
  margin-bottom: 20px;
  max-width: 540px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
  padding: 28px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  max-width: 540px;
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-stat-num {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 700;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
}
.about-stat-num small {
  font-size: 0.5em;
  font-weight: 400;
  opacity: 0.6;
}
.about-stat-lbl {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-4);
}

.about-cta {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.about-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 5/7;
  border-radius: var(--radius-l);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--c-line-strong);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 50px 100px -30px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 1px 0 rgba(255,255,255,0.1) inset;
  transform-style: preserve-3d;
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.6s var(--ease);
}
.about-card:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

/* Logo as background watermark inside the about card */
.about-card-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 130%; height: 130%;
  pointer-events: none;
  display: grid;
  place-items: center;
  z-index: 0;
}
.about-card-bg img {
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0.07;
  filter: invert(1) brightness(1.1) drop-shadow(0 0 20px rgba(255,255,255,0.1));
  animation: about-bg-rotate 80s linear infinite;
}
@keyframes about-bg-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* All other inner content stays above watermark */
.about-card > *:not(.about-card-bg):not(.about-card-glow):not(.about-card-ring) {
  position: relative;
  z-index: 1;
}

.about-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 4px;
  padding: 0;
}
.about-card-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-line);
}
.about-card-list li:last-child { border-bottom: none; }
.about-card-list li > span {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-4);
}
.about-card-list li > strong {
  font-family: var(--ff-display);
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  line-height: 1.35;
}

.about-card-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 40%);
  pointer-events: none;
  animation: about-glow 8s ease-in-out infinite alternate;
}
@keyframes about-glow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30%, 20%); }
}

.about-card-ring {
  position: absolute;
  bottom: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  pointer-events: none;
}
.about-card-ring::before, .about-card-ring::after {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
}
.about-card-ring::after { inset: 40px; }

.about-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-line);
}
.about-card-header > span:first-child {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-card-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--c-silver-1);
  box-shadow: 0 0 16px rgba(255,255,255,0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}

.about-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 20px 0 12px;
}
.about-card-body h3 {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--c-ink);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.about-card-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-ink-3);
}

.about-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-ink-4);
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.review-card, .review-rating {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-l);
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--c-line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.5s var(--ease);
}
.review-card:hover, .review-rating:hover {
  transform: translateY(-4px);
  border-color: var(--c-line-strong);
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: #ffffff;
}
.review-stars svg {
  width: 16px; height: 16px;
}

.review-card blockquote {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--c-ink-2);
  font-style: italic;
  flex: 1;
}
.review-card blockquote::before {
  content: '"';
  display: block;
  font-family: var(--ff-display);
  font-size: 50px;
  line-height: 0.5;
  color: var(--c-silver-3);
  margin-bottom: 8px;
  opacity: 0.5;
}

.review-card footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--c-line);
}
.review-author {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-ink);
}
.review-source {
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-ink-4);
}

.review-rating {
  align-items: center;
  text-align: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
}
.review-rating-big {
  font-family: var(--ff-display);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.review-rating-big span {
  font-size: 0.4em;
  font-weight: 400;
  opacity: 0.5;
}
.review-rating-stars {
  display: flex;
  gap: 4px;
  color: #ffffff;
}
.review-rating-stars svg {
  width: 20px; height: 20px;
}
.review-rating p {
  color: var(--c-ink-3);
  font-size: 14px;
}
.review-rating p strong {
  color: var(--c-ink);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.contact-card, .contact-form {
  border-radius: var(--radius-l);
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--c-line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 36px;
}

/* Two-owner contact card — GK (Yasser Khalife) + OS Cars (Majed Taha) side-by-side
   LARGE premium presentation, suitable for high-trust contact section. */
.contact-owners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: -4px 0 28px;
}
.contact-owner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 26px 26px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--c-line-strong);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  box-shadow:
    0 12px 30px -16px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.06);
  min-height: 160px;
}
.contact-owner:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.03) 100%);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-3px);
  box-shadow:
    0 20px 40px -16px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.contact-owner::before {
  content: '';
  position: absolute;
  top: -1px; left: 26px;
  width: 70px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
}
/* OS Cars accent: divider on the right side (mirrored) */
.contact-owner--os::before {
  left: auto;
  right: 26px;
}

/* Larger silver brand badge in upper-right corner */
.contact-owner-badge {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.6;
  transition: opacity 0.3s var(--ease);
}
.contact-owner:hover .contact-owner-badge { opacity: 0.95; }

.contact-owner-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-4);
  padding-right: 40px;
  line-height: 1.45;
}
.contact-owner-name {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.015em;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 10px;
  line-height: 1.1;
}

/* Languages — dedicated row with label + chip-style list */
.contact-owner-langs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--c-line);
}
.contact-owner-langs-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ink-4);
}
.contact-owner-langs-list {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: 0.02em;
}

/* Mobile: stack vertically with comfortable padding */
@media (max-width: 600px) {
  .contact-owners {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .contact-owner {
    padding: 22px 22px 20px;
    min-height: 140px;
  }
  .contact-owner-name { font-size: 22px; }
  .contact-owner-badge { font-size: 20px; top: 14px; right: 18px; }
  .contact-owner-label { font-size: 9.5px; padding-right: 32px; }
  .contact-owner-langs { margin-top: 12px; padding-top: 12px; }
  .contact-owner-langs-list { font-size: 13.5px; }
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  margin: 0 -16px;
  border-radius: 16px;
  transition: all 0.3s var(--ease);
}
.contact-channel:hover {
  background: rgba(255,255,255,0.04);
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1f1f1f 0%, #0a0a0a 100%);
  border: 1px solid var(--c-line-strong);
  display: grid;
  place-items: center;
  color: var(--c-silver-1);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}
.contact-channel:hover .contact-icon {
  transform: scale(1.08) rotate(-5deg);
  background: linear-gradient(135deg, #2a2a2a 0%, #151515 100%);
}
.contact-icon svg { width: 20px; height: 20px; }

.contact-channel-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.contact-channel-text small {
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-ink-4);
}
.contact-channel-text strong {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-ink);
  word-break: break-word;
}

.contact-hours h4 {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 16px;
}
.contact-hours ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.contact-hours li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 14px;
}
.contact-hours li:last-child { border-bottom: none; }
.contact-hours li > span:first-child { color: var(--c-ink-3); }
.contact-hours li > span:last-child { color: var(--c-ink); font-weight: 500; }
.contact-hours li .closed { color: var(--c-ink-4); font-style: italic; }
.contact-hours small {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  color: var(--c-ink-4);
  font-style: italic;
}

.contact-form h3 {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin-bottom: 8px;
}
.contact-form > p {
  font-size: 13.5px;
  color: var(--c-ink-3);
  margin-bottom: 24px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.field span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-4);
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  color: var(--c-ink);
  font-size: 14.5px;
  transition: all 0.3s var(--ease);
  font-family: inherit;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.5);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.06);
}
.field textarea {
  resize: vertical;
  min-height: 100px;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b0b0b0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
}
.field select option {
  background: #1a1a1a;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0 20px;
  font-size: 12.5px;
  color: var(--c-ink-3);
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
}
.check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  margin-top: 1px;
  border: 1px solid var(--c-line-strong);
  border-radius: 5px;
  background: rgba(0,0,0,0.3);
  display: grid; place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s var(--ease);
}
.check input[type="checkbox"]:checked {
  background: linear-gradient(180deg, #ffffff, #d4d4d4);
  border-color: rgba(255,255,255,0.6);
}
.check input[type="checkbox"]:checked::after {
  content: '';
  width: 6px; height: 10px;
  border: solid #0a0a0a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.form-status {
  margin-top: 16px;
  padding: 0 4px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--c-silver-1);
}
.form-status:not(:empty) { padding: 14px 16px; border-radius: 12px; }
.form-status.is-success {
  color: var(--c-ink);
  background: linear-gradient(135deg, rgba(72,160,255,0.10), rgba(72,160,255,0.04));
  border: 1px solid rgba(72,160,255,0.35);
}
.form-status.is-info {
  color: var(--c-ink-2);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-line-strong);
}
.form-status.is-error {
  color: #ffd4d4;
  background: rgba(220, 60, 60, 0.10);
  border: 1px solid rgba(220, 60, 60, 0.35);
}
.form-status a.link { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

/* Honeypot — hidden from real users, visible to dumb bots */
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  pointer-events: none;
  opacity: 0;
}

/* Submit button loading state */
.contact-form button[type="submit"].is-loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}
.contact-form button[type="submit"].is-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  border-top-color: rgba(255,255,255,0.95);
  animation: btn-spin 0.7s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }
.contact-form button[type="submit"]:disabled { cursor: not-allowed; }

.map-wrap {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--c-line);
  height: 420px;
  background: #111;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.85);
  transition: filter 0.5s var(--ease);
}
.map-wrap:hover iframe {
  filter: grayscale(1) invert(0.95) contrast(0.95);
}

/* Click-to-load consent placeholder (DSGVO: load Maps only after explicit consent) */
.map-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(192,160,98,0.10), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(192,160,98,0.06), transparent 60%),
    linear-gradient(180deg, #131313, #0a0a0a);
}
.map-placeholder iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.85);
  transition: filter 0.5s var(--ease);
}
.map-placeholder.is-loaded { background: #0a0a0a; }
.map-placeholder:hover iframe { filter: grayscale(1) invert(0.95) contrast(0.95); }
.map-consent {
  max-width: 440px;
  padding: 28px 32px;
  text-align: center;
  color: var(--c-fg);
}
.map-consent h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.map-consent p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-mute);
  margin: 0 0 18px;
}
.map-consent .btn { margin: 0 auto 12px; }
.map-consent small {
  display: block;
  font-size: 12px;
  color: var(--c-mute);
}
.map-consent small a {
  color: var(--c-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.map-placeholder.is-loaded .map-consent { display: none; }

/* =========================================================
   STANDORT-GALERIE — Drohnenaufnahmen, Premium Grid
   ========================================================= */
.section-gallery {
  padding-bottom: 100px;
}

.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
  max-width: var(--container);
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 1px solid var(--c-line);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition:
    transform 0.6s var(--ease),
    box-shadow 0.6s var(--ease),
    border-color 0.5s var(--ease);
  cursor: pointer;
}

/* The hero image spans the full left column and full height */
.gallery-item--hero {
  grid-row: 1 / span 2;
  aspect-ratio: 16 / 11;
}
.gallery-item:not(.gallery-item--hero) {
  aspect-ratio: 16 / 10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.4s var(--ease), filter 0.6s var(--ease);
  filter: brightness(0.95) saturate(0.95);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.5s var(--ease);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: translateX(-50%);
  transition: width 0.6s var(--ease);
  z-index: 2;
  pointer-events: none;
}

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: var(--c-line-strong);
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 80px rgba(255,255,255,0.06);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.02) saturate(1);
}
.gallery-item:hover::after {
  width: 70%;
}

.gallery-item figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 12px;
  pointer-events: none;
  transform: translateY(4px);
  opacity: 0.85;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.gallery-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-caption-num {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--c-silver-2);
  flex-shrink: 0;
}

.gallery-caption-text {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-ink);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.gallery-foot {
  text-align: center;
  margin-top: 40px;
}

/* Tablet down */
@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
  }
  .gallery-item--hero {
    grid-row: auto;
    grid-column: 1 / span 2;
    aspect-ratio: 16 / 9;
  }
}

/* Mobile — stack vertically, full-width */
@media (max-width: 640px) {
  .gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .gallery-item,
  .gallery-item--hero {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }
  .gallery-item figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .gallery-caption-text { font-size: 12.5px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 80px 32px 40px;
  border-top: 1px solid var(--c-line);
  max-width: var(--container);
  margin: 80px auto 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  width: 200px;
  transform: translateX(-50%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-silver-2), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-col h5 {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-4);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li, .footer-col ul a {
  font-size: 13.5px;
  color: var(--c-ink-3);
  transition: color 0.3s var(--ease);
}
.footer-col ul a:hover { color: var(--c-ink); }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-brand img {
  width: 44px; height: 44px;
  border-radius: 10px;
  object-fit: contain;
  padding: 4px;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 1px solid var(--c-line);
  /* Invert the black original logo to silver for dark footer */
  filter: invert(1) brightness(1.05);
}
.footer-brand:hover img {
  filter: invert(1) brightness(1.15);
}
.footer-brand span {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.footer-col p {
  font-size: 13.5px;
  color: var(--c-ink-3);
  line-height: 1.65;
  max-width: 360px;
}

.footer-partner {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 20px 16px;
  margin-top: 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--c-line-strong);
  position: relative;
  transition: all 0.4s var(--ease);
  cursor: default;
}
.footer-partner::before {
  content: '';
  position: absolute;
  top: -1px; left: 20px;
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}
.footer-partner:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.025) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(0,0,0,0.4);
}
.footer-partner-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink-4);
}
.footer-partner-name {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.footer-partner-meta {
  font-size: 12px;
  color: var(--c-ink-3);
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.footer-partner-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--c-ink-2);
  transition: color 0.3s var(--ease);
  letter-spacing: 0.02em;
}
.footer-partner-tel::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--c-silver-1);
  box-shadow: 0 0 8px rgba(255,255,255,0.4);
}
.footer-partner-tel:hover {
  color: var(--c-ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--c-line);
  color: var(--c-ink-4);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
/* Floating WhatsApp — modern, animated, always visible on mobile */
.float-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #1ebe5d 100%);
  color: #ffffff;
  display: grid;
  place-items: center;
  z-index: 90;
  box-shadow:
    0 14px 36px rgba(37, 211, 102, 0.45),
    0 0 0 1px rgba(255,255,255,0.10),
    inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
/* Pulse ring — dezente WhatsApp-Animation */
.float-whatsapp::before,
.float-whatsapp::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  pointer-events: none;
  animation: wa-pulse 2.4s ease-out infinite;
}
.float-whatsapp::after { animation-delay: 1.2s; }
@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: 0.6; }
  80%  { transform: scale(1.7);  opacity: 0;   }
  100% { transform: scale(1.7);  opacity: 0;   }
}
.float-whatsapp:hover {
  transform: scale(1.08);
  box-shadow:
    0 18px 44px rgba(37, 211, 102, 0.6),
    0 0 0 1px rgba(255,255,255,0.15),
    inset 0 1px 0 rgba(255,255,255,0.30);
}
.float-whatsapp:active { transform: scale(0.96); }
@media (prefers-reduced-motion: reduce) {
  .float-whatsapp::before,
  .float-whatsapp::after { animation: none; }
}
/* Smaller + always-visible on phones */
@media (max-width: 700px) {
  .float-whatsapp {
    width: 56px; height: 56px;
    bottom: 18px; right: 18px;
  }
}
/* Footer column secondary heading (replaces an inline style="margin-top:24px") */
.footer-h5-spaced { margin-top: 24px; }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: transform, opacity;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-reveal-delay] {
  transition-delay: var(--reveal-delay);
}

/* =========================================================
   RESPONSIVE — MOBILE FIRST PERFECTION
   ========================================================= */

/* Large tablet down */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .about { grid-template-columns: 1fr; gap: 60px; }
  .about-side .section-title, .about-side .eyebrow { text-align: center; display: block; }
  .about-side p { margin-left: auto; margin-right: auto; text-align: center; }
  .about-stats { margin-left: auto; margin-right: auto; }
  .about-cta { justify-content: center; }

  /* On tablet/mobile: disable all 3D tilts so cards display flat and fully centered */
  .section-about { overflow-x: hidden; }
  .about { width: 100%; max-width: 100%; }
  .about-side, .about-visual {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .about-visual {
    perspective: none;
    transform-style: flat;
    padding: 0;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
  .about-card,
  .about-card--gk,
  .about-card--os {
    transform: none !important;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
  }
  .about-card:hover,
  .about-card--gk:hover,
  .about-card--os:hover {
    transform: translateY(-4px) !important;
  }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* Tablet down */
@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; }
  .nav.is-scrolled .nav-inner { padding: 10px 16px; margin: 0 12px; }
  .nav-brand-text { display: none; }
  .nav-cta span { display: none; }
  .nav-cta {
    width: 42px; height: 42px;
    padding: 0;
    border-radius: 50%;
  }

  .hero { padding: 120px 20px 80px; }
  .hero-emblem {
    width: min(90vmin, 520px);
    height: min(90vmin, 520px);
    transform: translate(-50%, -70%);
  }
  .hero-emblem-svg { opacity: 0.14; }
  .hero-meta {
    flex-direction: column;
    gap: 16px;
    padding: 20px 28px;
    width: 100%;
    max-width: 360px;
  }
  .hero-meta-sep {
    width: 80%; height: 1px;
  }
  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta .btn { width: 100%; }
  .hero-marquee { display: none; }

  .section { padding: 100px 20px; }
  .section-head { margin-bottom: 56px; }

  .filter-groups {
    gap: 14px;
    margin-top: 32px;
  }
  .filter-group { align-items: flex-start; gap: 8px; }
  .filter-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 4px 20px 8px;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .chip { flex-shrink: 0; }
  .filter-group-label { padding: 0 20px; }

  .vehicle-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* TABLET: 2 cards per row */
  .advantages {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .advantage-card {
    padding: 28px 22px 24px;
  }
  .advantage-card h3 {
    font-size: 18px;
  }
  .advantage-card p {
    font-size: 13.5px;
    line-height: 1.55;
  }
  .advantage-icon {
    width: 48px; height: 48px;
    margin-bottom: 18px;
  }
  .advantage-icon svg {
    width: 22px; height: 22px;
  }
  .advantage-num {
    top: 18px; right: 20px;
    font-size: 12px;
  }

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

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

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

  .contact-card, .contact-form { padding: 28px 24px; }

  .map-wrap { height: 320px; }

  .float-whatsapp {
    bottom: 16px; right: 16px;
    width: 52px; height: 52px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  body { font-size: 15px; }

  .nav { padding: 12px 0; }
  .nav-inner { padding: 0 16px; gap: 12px; }
  .nav-brand-mark { width: 36px; height: 36px; }

  .hero {
    padding: 120px 16px 70px;
    min-height: auto;
  }
  .hero-badge { font-size: 10.5px; padding: 7px 14px 7px 10px; margin-bottom: 30px; }

  /* Mobile title — fits "Gebrauchtwagens Konz" on every iPhone */
  .hero-title {
    font-size: clamp(26px, 8.5vw, 44px);
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 28px;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: keep-all;
    hyphens: none;
  }
  .hero-title-line { padding: 0; }

  /* Mobile callout — slim sans-serif badge */
  .hero-callout {
    font-size: 11.5px;
    padding: 10px 18px;
    letter-spacing: 0.18em;
    margin-bottom: 28px;
  }
  .hero-callout::before,
  .hero-callout::after {
    width: 18px;
  }
  .hero-callout::before { left: -24px; }
  .hero-callout::after  { right: -24px; }

  /* Mobile stats — NO container, NO glass, NO background */
  .hero-meta {
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-bottom: 36px;
    width: 100%;
    max-width: 100%;
    gap: 10px;
  }
  .hero-meta-num { font-size: 19px; }
  .hero-meta-lbl { font-size: 8.5px; letter-spacing: 0.12em; }
  .hero-meta-sep { height: 28px; }

  .section { padding: 80px 16px; }
  .section-head { margin-bottom: 48px; }
  .section-title { font-size: clamp(36px, 11vw, 56px); }
  .section-lead { font-size: 15.5px; }

  .vehicle-grid { gap: 16px; }
  .vehicle-body { padding: 20px 20px 22px; gap: 12px; }
  .vehicle-title { font-size: 17px; min-height: auto; }
  .vehicle-price { font-size: 24px; }
  .vehicle-specs { gap: 8px 12px; padding: 14px 0; }
  .vehicle-spec { font-size: 12px; }
  .vehicle-spec-icon { width: 24px; height: 24px; }
  .vehicle-spec-value { font-size: 12.5px; }

  /* SERVICE CARDS — 2 per row on mobile, compact but premium */
  .advantages {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .advantage-card {
    padding: 22px 18px 20px;
  }
  .advantage-card h3 {
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 8px;
  }
  .advantage-card p {
    font-size: 12.5px;
    line-height: 1.55;
  }
  .advantage-icon {
    width: 44px; height: 44px;
    margin-bottom: 16px;
    border-radius: 11px;
  }
  .advantage-icon svg { width: 20px; height: 20px; }
  .advantage-num {
    top: 16px; right: 16px;
    font-size: 11.5px;
  }

  /* ABOUT — compact mobile typography so everything fits */
  .section-about .section-title {
    font-size: clamp(28px, 8vw, 40px);
    letter-spacing: -0.025em;
  }
  .section-about .eyebrow {
    font-size: 10px;
    margin-bottom: 18px;
  }
  .about-side p {
    font-size: 14px;
    line-height: 1.65;
  }
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 18px 0;
  }
  .about-stat-num {
    font-size: 22px;
    letter-spacing: -0.02em;
  }
  .about-stat-lbl {
    font-size: 9px;
    letter-spacing: 0.08em;
  }
  .about-card {
    padding: 22px 20px;
    max-width: 100%;
    width: 100%;
    aspect-ratio: auto;
    min-height: auto;
    margin: 0 auto;
  }
  .about-card-header > span:first-child {
    font-size: 24px;
  }
  .about-card-header {
    padding-bottom: 16px;
  }
  .about-card-body { padding: 14px 0 6px; }
  .about-card-body h3 { font-size: 18px; margin-bottom: 6px; line-height: 1.2; }
  .about-card-list { gap: 8px; margin: 10px 0 4px; }
  .about-card-list li { padding-bottom: 8px; }
  .about-card-list li > span { font-size: 8.5px; letter-spacing: 0.15em; }
  .about-card-list li > strong { font-size: 13px; line-height: 1.3; }
  .about-card-footer {
    padding-top: 14px;
    font-size: 9.5px;
    letter-spacing: 0.12em;
  }

  .contact-card, .contact-form { padding: 24px 20px; }
  .contact-channel { padding: 12px; margin: 0 -12px; gap: 14px; }
  .contact-icon { width: 44px; height: 44px; }
  .contact-channel-text strong { font-size: 14px; word-break: break-word; }
  /* (about-card mobile typography is set higher up in this breakpoint block) */

  .review-card, .review-rating { padding: 28px 24px; }
  .review-card blockquote { font-size: 15px; }
  .review-rating-big { font-size: 60px; }

  .footer { padding: 60px 16px 32px; }

  .field input, .field textarea, .field select {
    padding: 12px 14px;
    font-size: 16px; /* prevent iOS zoom */
  }

  .btn { padding: 13px 22px; font-size: 13.5px; }
  .btn-large { padding: 15px 26px; font-size: 14px; }

  .float-whatsapp { width: 48px; height: 48px; bottom: 14px; right: 14px; }
  .float-whatsapp svg { width: 20px; height: 20px; }
}

/* Very small phones */
@media (max-width: 360px) {
  .hero-title { font-size: 42px; }
  .section-title { font-size: 36px; }
  .vehicle-specs { grid-template-columns: 1fr; }

  /* Service cards: keep 2 per row, just smaller */
  .advantages {
    gap: 10px;
  }
  .advantage-card {
    padding: 20px 16px 18px;
  }
  .advantage-card h3 { font-size: 15px; line-height: 1.25; }
  .advantage-card p { font-size: 12px; line-height: 1.5; }
  .advantage-icon {
    width: 40px; height: 40px;
    margin-bottom: 14px;
    border-radius: 10px;
  }
  .advantage-icon svg { width: 18px; height: 18px; }
  .advantage-num {
    top: 14px; right: 14px;
    font-size: 11px;
  }
}

/* Tall mobiles — iPhone landscape lock */
@media (max-width: 768px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 100px 20px 60px; }
}

/* Notched iPhones */
@supports (padding: max(0px)) {
  .nav-inner {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
  .hero, .section, .footer {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
  .float-whatsapp {
    bottom: max(16px, env(safe-area-inset-bottom));
    right: max(16px, env(safe-area-inset-right));
  }
}
