/* ============================================================
   KURT TRANSPORT — Premium Design System
   Awwwards-Level CSS — v4
   ============================================================ */

/* ── Custom Properties ── */
:root {
  --dark:       #0d0d0d;
  --dark-2:     #141414;
  --dark-3:     #1a1a1a;
  --red:        #d81d39;
  --red-dim:    #8c1225;
  --red-glow:   rgba(216, 29, 57, .4);
  --white:      #ffffff;
  --gray-50:    #f7f7f7;
  --gray-200:   #e5e5e5;
  --gray-400:   #999999;
  --gray-600:   #555555;

  /* Typography Scale */
  --fs-hero:    clamp(52px, 8vw, 96px);
  --fs-h2:      clamp(36px, 5.5vw, 72px);
  --fs-h3:      clamp(20px, 2.5vw, 30px);
  --fs-body:    clamp(15px, 1.4vw, 17px);
  --fs-sm:      13px;
  --fs-tag:     11px;

  /* Spacing */
  --section-py: clamp(80px, 10vw, 140px);
  --container:  1280px;
  --gap:        clamp(16px, 2vw, 32px);

  /* Easing */
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:    cubic-bezier(0.76, 0, 0.24, 1);
  --spring:         cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,.15);
  --shadow-md:  0 8px 32px rgba(0,0,0,.25);
  --shadow-lg:  0 24px 64px rgba(0,0,0,.4);
  --shadow-red: 0 8px 32px var(--red-glow);

  /* Layout */
  --header-h:   72px;

  /* Scroll progress (updated by JS) */
  --scroll-prog: 0%;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.75;
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar       { width: 3px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: #ff2244; }

/* ── Scroll Progress Bar ── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--scroll-prog);
  height: 2px;
  background: var(--red);
  z-index: 9999;
  pointer-events: none;
  will-change: width;
}

/* ══════════════════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════════════════ */
#cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 200ms var(--spring),
              height 200ms var(--spring),
              background 200ms ease;
  will-change: transform;
}

#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(216, 29, 57, .6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width 400ms var(--ease-out-expo),
              height 400ms var(--ease-out-expo),
              border-color 250ms ease,
              opacity 250ms ease;
  will-change: transform;
}

#cursor-dot.hovering  { width: 10px; height: 10px; background: var(--white); }
#cursor-ring.hovering { width: 64px; height: 64px; border-color: rgba(255,255,255,.22); }
#cursor-dot.clicking  { transform: translate(-50%,-50%) scale(0.6); }

/* ══════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════ */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-variation-settings: 'wght' 800;
}

h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p    { line-height: 1.75; }
a    { color: inherit; text-decoration: none; }
img  { display: block; max-width: 100%; height: auto; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.accent { color: var(--red); }

/* ══════════════════════════════════════════════
   ANIMATED GRAIN OVERLAY (reusable)
══════════════════════════════════════════════ */
.grain-overlay {
  position: absolute;
  inset: -100%;
  width: 300%;
  height: 300%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.038;
  pointer-events: none;
  z-index: 1;
  animation: grain 0.75s steps(1) infinite;
  mix-blend-mode: overlay;
}

@keyframes grain {
  0%   { transform: translate(0, 0); }
  10%  { transform: translate(-5%, -10%); }
  20%  { transform: translate(-15%, 5%); }
  30%  { transform: translate(7%, -25%); }
  40%  { transform: translate(-5%, 25%); }
  50%  { transform: translate(-15%, 10%); }
  60%  { transform: translate(15%, 0%); }
  70%  { transform: translate(0%, 15%); }
  80%  { transform: translate(3%, 35%); }
  90%  { transform: translate(-10%, 10%); }
  100% { transform: translate(0, 0); }
}

/* ══════════════════════════════════════════════
   HEADER / NAVIGATION
══════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background 400ms var(--ease-in-out),
              backdrop-filter 400ms ease,
              border-color 400ms ease;
  border-bottom: 1px solid transparent;
}

/* ── Logo-Wasserzeichen im Header-Hintergrund ── */
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 133 27' fill='white'%3E%3Cpath d='M65.91.02l-3.13,17.9c-.44,2.73-1.78,5.16-4.01,6.81-1.32.98-2.9,1.76-4.61,1.76l-18.57-.02c-2.27,0-4.2-1.46-5.07-3.41-.67-1.49-.74-2.95-.5-4.56L33.26,0l6.2.02-3.29,18.83c0,.55.12,1.46.81,1.46h18.15c.67,0,1.2-1.01,1.31-1.61L59.72,0l6.19.02Z'/%3E%3Cpolygon points='17.78 13.29 28.84 26.49 20.41 26.51 11.9 16.34 7.96 16.34 6.2 26.5 0 26.51 4.65 .03 10.85 0 9.1 10.12 12.98 10.11 24.34 .02 32.77 .05 17.78 13.29'/%3E%3Cpolygon points='116.39 26.5 110.18 26.51 113.75 6.18 101.77 6.17 102.85 0 133.01 0 131.94 6.16 119.95 6.18 116.39 26.5'/%3E%3Cpath d='M99.92,3.76c-.89-2.22-2.9-3.73-5.39-3.73h-26s-1.08,6.14-1.08,6.14h21.08s.05-3.32.05-3.32l9.96,5.7-10.03,5.67v-2.55h-14.35s0,0,0,0h-7.67l-2.6,14.84h6.2s1.5-8.66,1.5-8.66l8.76.02,6.27,8.65,8.45-.02-6.2-8.58,2.68-.11c6.43-.26,10.46-8.4,8.38-14.04Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center right 10%;
  background-size: auto 220%;
  opacity: 0.032;
  pointer-events: none;
  z-index: 0;
  transition: opacity 400ms ease;
}

.header.scrolled::before { opacity: 0.045; }

.header.scrolled {
  background: rgba(13, 13, 13, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: rgba(255,255,255,.06);
}

.header.bg-light {
  background: rgba(247, 247, 247, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.header.bg-light::before { opacity: 0.06; filter: invert(1); }

.header.bg-light .nav a {
  color: rgba(13,13,13,.6);
}

.header.bg-light .nav a:hover {
  color: var(--dark);
}

.header.bg-light .logo-svg {
  filter: invert(1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 2;
}

.logo-svg {
  height: 26px;
  width: auto;
  transition: opacity 200ms ease;
}

.logo:hover .logo-svg { opacity: .7; }

/* Desktop nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Vertikaler roter Strich zwischen den Links */
.nav a {
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  position: relative;
  padding: 8px 20px;
  transition: color 200ms ease;
}

/* Roter senkrechter Trennstrich rechts von jedem Link (außer letztem) */
.nav a:not(.btn-nav)::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: var(--red);
  opacity: 0.55;
  transition: opacity 200ms ease, height 200ms ease;
}

.nav a:not(.btn-nav):hover::before { opacity: 0.9; height: 18px; }

/* Unterstrich-Hover entfernt, stattdessen Farb+Glow */
.nav a::after { display: none; }

.nav a:not(.btn-nav):hover { color: var(--white); }

/* bg-light: rote Striche invertieren zu dunkel */
.header.bg-light .nav a:not(.btn-nav)::before {
  background: var(--dark);
  opacity: 0.2;
}

.btn-nav {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: var(--fs-sm) !important;
  font-weight: 600 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  margin-left: 12px;
  transition: background 200ms ease,
              transform 200ms var(--spring),
              box-shadow 200ms ease !important;
}

.btn-nav::before { display: none !important; }
.btn-nav::after  { display: none !important; }

.btn-nav:hover {
  background: #e8203f !important;
  transform: translateY(-1px) !important;
  box-shadow: var(--shadow-red) !important;
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 8px;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: transform 300ms var(--ease-out-expo),
              opacity 200ms ease,
              width 200ms ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  z-index: 1001;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 600ms var(--ease-out-expo);
  pointer-events: none;
}

.mobile-nav.open {
  clip-path: inset(0 0 0% 0);
  pointer-events: all;
}

.mobile-nav a {
  font-size: clamp(28px, 7vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  transition: color 200ms ease;
}

.mobile-nav a:hover { color: var(--red); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}

/* BG image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.1);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(13,13,13,.97) 40%, rgba(13,13,13,.55) 100%),
    linear-gradient(to top, rgba(13,13,13,.6) 0%, transparent 50%);
}

/* Red grid lines */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(216,29,57,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216,29,57,.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.35) 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.35) 40%, transparent 100%);
  pointer-events: none;
}

/* Logo pattern — drifting grid */
.hero-logo-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.logo-pattern-svg {
  width: 100%;
  height: 100%;
  fill: white;
}

.logo-drift {
  animation: logoDrift 40s linear infinite;
  will-change: transform;
}

@keyframes logoDrift {
  from { transform: translate(0, 0); }
  to   { transform: translate(-240px, -120px); }
}

/* Diagonaler roter Akzent-Strich rechts vom Text */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 28%;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--red) 30%, var(--red) 70%, transparent 100%);
  z-index: 2;
  opacity: .45;
  transform: skewX(-8deg);
  pointer-events: none;
}

/* Slash-Streifen: senkrechte rote Linien rechts vom Text */
.hero-slashes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  display: block;
}

.hero-slashes span {
  position: absolute;
  top: 0;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--red) 25%, var(--red) 75%, transparent 100%);
  transform: skewX(-12deg) scaleY(0);
  transform-origin: top;
  animation: slashGrow .9s cubic-bezier(.16,1,.3,1) both;
}

.hero-slashes span:nth-child(1) { right: 32%;   width: 2px; opacity: .5;  animation-delay: .1s; }
.hero-slashes span:nth-child(2) { right: 30.5%; width: 1px; opacity: .2;  animation-delay: .2s; }
.hero-slashes span:nth-child(3) { right: 28%;   width: 3px; opacity: .15; animation-delay: .3s; }
.hero-slashes span:nth-child(4) { right: 26%;   width: 1px; opacity: .08; animation-delay: .4s; }
.hero-slashes span:nth-child(5) { right: 22%;   width: 1px; opacity: .05; animation-delay: .5s; }

@keyframes slashGrow {
  from { transform: skewX(-12deg) scaleY(0); }
  to   { transform: skewX(-12deg) scaleY(1); }
}

/* Large watermark logo */
.hero-logo-watermark {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(420px, 45vw, 680px);
  opacity: .04;
  pointer-events: none;
  z-index: 3;
  will-change: transform, opacity;
  animation: watermarkFloat 12s ease-in-out infinite;
}

.hero-logo-watermark svg { width: 100%; height: auto; }

@keyframes watermarkFloat {
  0%, 100% { transform: translateY(-50%) translateX(0px);   opacity: .04; }
  50%       { transform: translateY(-52%) translateX(-12px); opacity: .06; }
}

/* Thin red vertical slice through watermark */
.hero-logo-watermark::after {
  content: '';
  position: absolute;
  left: -6px;
  top: 28%;
  width: 5px;
  height: 44%;
  background: var(--red);
  opacity: .55;
}

/* Hero content block */
.hero-content {
  position: relative;
  z-index: 5;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  max-width: 860px;
}

/* Badge pill */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-tag);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red-glow);
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: .55; }
}

/* H1 — two-line treatment */
.hero h1 {
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-variation-settings: 'wght' 900;
}

/* Second line: solid red with 3D shadow */
.hero h1 .accent {
  display: block;
  color: var(--red);
  -webkit-text-stroke: 0;
  text-shadow:
    0 2px 0 #7a0f1f,
    0 4px 24px rgba(216,29,57,.45),
    0 0 60px rgba(216,29,57,.2);
  position: relative;
}

.hero > .container > p {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,.56);
  max-width: 500px;
  line-height: 1.72;
}

/* CTA buttons */
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Stats Bar (glassmorphism) ── */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(13,13,13,.6);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(20px, 2.5vw, 36px) clamp(16px, 2vw, 32px);
  border-right: 1px solid rgba(255,255,255,.05);
  gap: 4px;
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  opacity: 0;
  transition: opacity 400ms ease;
}

.stat:hover::before { opacity: 1; }
.stat:last-child { border-right: none; }
.stat-divider { display: none; }

.stat-num {
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  display: block;
  will-change: contents;
}

.stat-label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.42);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 100px;
  right: clamp(20px, 4vw, 60px);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .38;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollLineAnim 2.2s ease-in-out infinite;
}

@keyframes scrollLineAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════════════════════
   SHARED BUTTONS
══════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: none;
  transition: background 200ms ease,
              transform 200ms var(--spring),
              box-shadow 200ms ease;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.14) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 200ms ease;
}

.btn-primary:hover {
  background: #e8203f;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(216,29,57,.45);
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-primary.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.2);
  cursor: none;
  transition: border-color 200ms ease,
              background 200ms ease,
              transform 200ms var(--spring);
  will-change: transform;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.05);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   SECTION SHARED
══════════════════════════════════════════════ */
.section {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 96px);
  position: relative;
}

.section-header h2 { margin-top: 16px; margin-bottom: 20px; }

.section-header p {
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  font-size: clamp(15px, 1.4vw, 17px);
}

.section-header.light p { color: rgba(255,255,255,.48); }

/* Section tag */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-tag);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--red);
  flex-shrink: 0;
}

/* ── Scroll Reveal Animations ── */
[data-reveal] {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transition: clip-path 900ms var(--ease-out-expo),
              opacity 400ms ease;
}

[data-reveal].revealed {
  clip-path: inset(0 0 0% 0);
  opacity: 1;
}

[data-reveal-fade] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease-out-expo),
              transform 700ms var(--ease-out-expo);
}

[data-reveal-fade].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Logo BG decorations */
.section-logo-bg,
.logo-bg {
  position: absolute;
  pointer-events: none;
  overflow: visible;
}

.section-logo-bg {
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  opacity: .07;
  color: rgba(255,255,255,1);
}

.section-logo-bg svg,
.logo-bg svg {
  width: 100%;
  height: auto;
}

.logo-bg--ueber {
  top: -5%;
  right: -5%;
  width: min(700px, 70vw);
  opacity: .04;
}

.logo-bg--bewerbung {
  top: 5%;
  left: -5%;
  width: min(600px, 65vw);
  opacity: .06;
}

.logo-bg--kontakt {
  bottom: 5%;
  right: -5%;
  width: min(700px, 70vw);
  opacity: .038;
}

.logo-bg--footer {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 95vw);
  opacity: .048;
}

/* ══════════════════════════════════════════════
   LEISTUNGEN — red background
══════════════════════════════════════════════ */
.leistungen {
  background: var(--red);
  position: relative;
  padding-top: calc(var(--section-py) + 40px);
  padding-bottom: calc(var(--section-py) + 40px);
}

/* Diagonal top clip — dark triangle */
.leistungen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(50px, 7vw, 90px);
  background: var(--dark);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
  z-index: 1;
}

/* Diagonal bottom clip — white triangle */
.leistungen::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: clamp(50px, 7vw, 90px);
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.leistungen .section-header h2          { color: var(--white); }
.leistungen .section-header .section-tag { color: rgba(255,255,255,.7); }
.leistungen .section-header .section-tag::before { background: rgba(255,255,255,.5); }
.leistungen .section-header p            { color: rgba(255,255,255,.58); }

/* Grid */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
  position: relative;
  z-index: 2;
}

/* Card — dark glass */
.leistung-card {
  position: relative;
  background: rgba(10, 10, 10, .72);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.5vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  cursor: none;
  transition: transform 400ms var(--ease-out-expo),
              border-color 300ms ease,
              box-shadow 300ms ease;
  will-change: transform;
}

/* Ghost number */
.leistung-card::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 14px;
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,.042);
  pointer-events: none;
  transition: color 300ms ease;
  font-family: inherit;
}

.leistung-card:nth-child(1)::before { content: '01'; }
.leistung-card:nth-child(2)::before { content: '02'; }
.leistung-card:nth-child(3)::before { content: '03'; }
.leistung-card:nth-child(4)::before { content: '04'; }
.leistung-card:nth-child(5)::before { content: '05'; }
.leistung-card:nth-child(6)::before { content: '06'; }

.leistung-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 32px 64px rgba(0,0,0,.45),
              0 0 0 1px rgba(255,255,255,.07);
}

.leistung-card:hover::before {
  color: rgba(255,255,255,.08);
}

/* Featured card */
.leistung-card.featured {
  border-color: rgba(255,255,255,.12);
  background: rgba(0,0,0,.85);
}

.leistung-card.featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
}

/* Mouse-tracking shine */
.card-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,255,255,.07) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
  border-radius: inherit;
}

.leistung-card:hover .card-shine { opacity: 1; }

/* Icon box with glow halo */
.leistung-icon {
  width: 52px;
  height: 52px;
  background: rgba(216,29,57,.12);
  border: 1px solid rgba(216,29,57,.28);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background 300ms ease, box-shadow 300ms ease;
}

.leistung-icon::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 14px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 300ms ease;
}

.leistung-card:hover .leistung-icon {
  background: rgba(216,29,57,.22);
  box-shadow: 0 0 28px rgba(216,29,57,.35);
}

.leistung-card:hover .leistung-icon::after { opacity: 1; }

.leistung-icon svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  position: relative;
  z-index: 1;
}

.leistung-card h3 {
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.leistung-card p {
  font-size: 14px;
  color: rgba(255,255,255,.48);
  line-height: 1.72;
  flex: 1;
}

.card-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 200ms ease, opacity 200ms ease;
  margin-top: auto;
}

.card-link:hover { gap: 12px; opacity: .75; }

/* ══════════════════════════════════════════════
   ÜBER UNS — white background
══════════════════════════════════════════════ */
.ueber-uns {
  background: var(--white);
  color: var(--dark);
}

.ueber-uns .section-tag { color: var(--red); }
.ueber-uns .section-tag::before { background: var(--red); }

.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

/* Images side */
.ueber-images {
  position: relative;
  height: clamp(420px, 55vw, 660px);
}

/* Main image with 3D perspective */
.img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 84%;
  border-radius: 12px;
  overflow: hidden;
}

.img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out-expo);
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
}

.ueber-images:hover .img-main img {
  transform: perspective(1200px) rotateY(0) rotateX(0) scale(1.02);
}

/* Red block that cuts into image from the right side */
.img-main::before {
  content: '';
  position: absolute;
  top: 0;
  right: -14px;
  width: 14px;
  height: 58%;
  background: var(--red);
  z-index: 2;
}

/* Secondary image bottom-right */
.img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 46%;
  height: 50%;
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Experience badge */
.exp-badge {
  position: absolute;
  top: 38%;
  right: -2%;
  transform: translateX(18%);
  background: var(--red);
  color: var(--white);
  border-radius: 12px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-red);
  z-index: 3;
}

.exp-num {
  display: block;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.exp-text {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .82;
  margin-top: 4px;
  white-space: nowrap;
}

/* Text side */
.ueber-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ueber-text h2 { color: var(--dark); margin-top: 10px; margin-bottom: 0; }

.ueber-text .lead {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--gray-600);
  line-height: 1.72;
  font-weight: 400;
}

.ueber-text p:not(.lead) {
  color: var(--gray-400);
  font-size: 15px;
}

/* Feature checklist */
.ueber-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-top: 4px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.feature-check {
  width: 22px;
  height: 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   FLOTTE — dark background
══════════════════════════════════════════════ */
.flotte {
  background: var(--dark-2);
  position: relative;
}

/* White diagonal leading into dark */
.flotte::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(50px, 7vw, 90px);
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  z-index: 0;
}

/* Spinning logo BG */
.flotte-logo-spin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(800px, 85vw);
  opacity: .055;
  pointer-events: none;
  z-index: 0;
}

.flotte-logo-spin svg {
  width: 100%;
  height: auto;
  animation: spinSlow 80s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.flotte .section-header { position: relative; z-index: 1; }

/* Hero truck wide banner */
.flotte-hero-truck {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(24px, 3vw, 48px);
}

.flotte-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 21/8;
}

.flotte-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out-expo);
  will-change: transform;
}

.flotte-img-wrap:hover .flotte-img { transform: scale(1.03); }

/* Logo over truck — screen blend */
.truck-logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38%;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: .2;
}

.truck-logo-overlay svg { width: 100%; height: auto; }

.truck-logo-stripe {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--red) 15%,
    var(--red) 85%,
    transparent 100%
  );
  z-index: 3;
  opacity: .28;
}

/* Stats overlay on truck image */
.flotte-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,13,13,.92) 0%, transparent 100%);
  padding: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 48px) clamp(20px, 2.5vw, 36px);
  z-index: 4;
}

.flotte-stats {
  display: flex;
  gap: clamp(24px, 4vw, 64px);
}

.fstat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fnum {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}

.flabel {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}

/* Editorial gallery — 1 large left, 2 small right stacked */
.flotte-gallery {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(12px, 1.5vw, 18px);
  height: clamp(300px, 38vw, 480px);
  position: relative;
  z-index: 1;
  margin-bottom: clamp(32px, 4vw, 60px);
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out-expo);
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-col {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 18px);
  width: clamp(190px, 26vw, 360px);
}

.gallery-col .gallery-item { flex: 1; }

.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(13,13,13,.78) 0%, transparent 100%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

/* Vehicle type cards */
.fahrzeug-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
  position: relative;
  z-index: 1;
}

.ftype {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: clamp(20px, 2.5vw, 32px) clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: none;
  transition: border-color 300ms ease, background 300ms ease;
}

.ftype:hover {
  border-color: rgba(216,29,57,.32);
  background: rgba(216,29,57,.055);
}

.ftype-icon {
  height: 52px;
  display: flex;
  align-items: center;
}

.ftype-icon svg {
  height: 32px;
  width: auto;
  color: rgba(255,255,255,.38);
  transition: color 300ms ease;
}

.ftype:hover .ftype-icon svg { color: var(--red); }

.ftype h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--white);
}

.ftype p {
  font-size: 13px;
  color: rgba(255,255,255,.38);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════
   BEWERBUNG — light gray background
══════════════════════════════════════════════ */
.bewerbung {
  background: var(--gray-50);
  color: var(--dark);
  padding-top: calc(var(--section-py) + 40px);
}

.bewerbung::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: clamp(50px, 7vw, 90px);
  background: var(--dark-2);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
  z-index: 0;
}

.bewerbung-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Left column */
.bewerbung-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bewerbung-left h2 { color: var(--dark); margin-top: 12px; }
.bewerbung-left > p { color: var(--gray-600); line-height: 1.75; }

/* Benefits — numbered with red left border, no icons */
.job-benefits {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: benefit-counter;
  position: relative;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0 20px 28px;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  border-left: 3px solid transparent;
  transition: border-left-color 300ms ease, background 300ms ease;
  counter-increment: benefit-counter;
}

.benefit::before {
  content: counter(benefit-counter, decimal-leading-zero);
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(13,13,13,.055);
  line-height: 1;
  pointer-events: none;
}

.benefit:hover { border-left-color: var(--red); }

.benefit-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(216,29,57,.08);
  border-radius: 10px;
  transition: background 300ms ease;
}

.benefit:hover .benefit-icon { background: rgba(216,29,57,.14); }

.benefit > div { display: flex; flex-direction: column; gap: 2px; }

.benefit strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.benefit span {
  font-size: 13px;
  color: var(--gray-400);
}

/* Job image */
.job-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-top: 4px;
}

.job-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out-expo);
}

.job-img:hover img { transform: scale(1.04); }

/* Form card — multi-layer shadow */
.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: clamp(28px, 3.5vw, 52px);
  box-shadow:
    0 1px 3px rgba(0,0,0,.06),
    0 4px 12px rgba(0,0,0,.08),
    0 16px 40px rgba(0,0,0,.1),
    0 32px 80px rgba(0,0,0,.07);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.form-card h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--dark);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 28px;
  line-height: 1.65;
}

/* ── Form elements ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--dark);
  font-family: inherit;
  transition: border-color 200ms ease,
              background 200ms ease,
              box-shadow 200ms ease;
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(216,29,57,.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Checkboxes */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400 !important;
  color: var(--dark) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  cursor: none;
}

.checkbox-label input[type="checkbox"] { display: none; }

.checkmark {
  width: 18px;
  height: 18px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 180ms ease, border-color 180ms ease;
  position: relative;
}

.checkmark::after {
  content: '';
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg) translate(-1px, -1px);
  opacity: 0;
  transition: opacity 140ms ease;
}

.checkbox-label input:checked + .checkmark {
  background: var(--red);
  border-color: var(--red);
}

.checkbox-label input:checked + .checkmark::after { opacity: 1; }

.checkbox-label.datenschutz {
  font-size: 13px !important;
  color: var(--gray-600) !important;
}

.checkbox-label.datenschutz a {
  color: var(--red);
  text-decoration: underline;
}

.form-note {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 12px;
  text-align: center;
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-red);
}

.form-success h4 { font-size: 22px; color: var(--dark); margin-bottom: 12px; }
.form-success p  { color: var(--gray-600); font-size: 14px; }

/* ══════════════════════════════════════════════
   KONTAKT — dark background
══════════════════════════════════════════════ */
.kontakt {
  background: var(--dark-3);
  padding-top: calc(var(--section-py) + 40px);
}

/* Gray diagonal clip into dark */
.kontakt::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: clamp(50px, 7vw, 90px);
  background: var(--gray-50);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  z-index: 0;
}

.kontakt .section-header,
.kontakt-grid { position: relative; z-index: 1; }

/* Grid: info left, form right */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* Contact info — red left border line, no box */
.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.kinfo-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 0 26px 22px;
  border-bottom: 1px solid rgba(255,255,255,.055);
  border-left: 2px solid var(--red);
  transition: border-left-width 300ms ease,
              padding-left 300ms ease;
}

.kinfo-item:hover {
  border-left-width: 4px;
  padding-left: 24px;
}

.kinfo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.kinfo-icon svg { width: 20px; height: 20px; }

.kinfo-item > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kinfo-item strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}

.kinfo-item span {
  font-size: 15px;
  color: var(--white);
  line-height: 1.65;
}

/* Kontakt form */
.kontakt-form {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: clamp(28px, 3.5vw, 48px);
}

.kontakt-form .form-group label { color: rgba(255,255,255,.42); }

.kontakt-form .form-group input,
.kontakt-form .form-group select,
.kontakt-form .form-group textarea {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.08);
  color: var(--white);
}

.kontakt-form .form-group input::placeholder,
.kontakt-form .form-group textarea::placeholder {
  color: rgba(255,255,255,.2);
}

.kontakt-form .form-group input:focus,
.kontakt-form .form-group select:focus,
.kontakt-form .form-group textarea:focus {
  background: rgba(255,255,255,.07);
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(216,29,57,.12);
}

.kontakt-form select option { background: var(--dark-3); color: var(--white); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: clamp(60px, 8vw, 100px) 0 0;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 60px);
  padding-bottom: clamp(48px, 6vw, 80px);
  position: relative;
  z-index: 1;
}

.footer-brand .logo { margin-bottom: 20px; }

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.32);
  line-height: 1.78;
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 8px;
  line-height: 1;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  transition: color 200ms ease;
}

.footer-links a:hover { color: var(--white); }

.footer-contact h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 16px;
  line-height: 1;
}

.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.055);
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.22); }

.footer-bottom-line {
  width: 50px;
  height: 1.5px;
  background: var(--red);
  opacity: .5;
}

/* ══════════════════════════════════════════════
   SPLIT TEXT ANIMATION
   JS wraps each char in .char > .char-inner
══════════════════════════════════════════════ */
.split-text .char {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.split-text .char-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 720ms var(--ease-out-expo),
              opacity 400ms ease;
}

.split-text.chars-revealed .char-inner { transform: translateY(0); opacity: 1; }

/* ══════════════════════════════════════════════
   ODOMETER (slot-machine digit columns)
   JS generates the column structure
══════════════════════════════════════════════ */
.odometer-wrap {
  display: inline-flex;
  align-items: flex-start;
  overflow: hidden;
  height: 1em;
  line-height: 1;
}

.odometer-col {
  display: flex;
  flex-direction: column;
  will-change: transform;
  transition: transform 1300ms var(--ease-out-expo);
}

.odometer-digit { display: block; line-height: 1; }

/* ══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════ */

/* Large tablet */
@media (max-width: 1100px) {
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
  .fahrzeug-types  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; row-gap: 40px; }

  .gallery-col { width: clamp(160px, 22vw, 280px); }

  .exp-badge { transform: translateX(10%); }

  .ueber-grid { gap: clamp(32px, 4vw, 60px); }
}

/* Tablet */
@media (max-width: 860px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }

  .ueber-grid { grid-template-columns: 1fr; }
  .ueber-images { order: 2; height: clamp(280px, 50vw, 440px); }
  .ueber-text   { order: 1; }
  .exp-badge    { transform: none; top: auto; bottom: 16px; right: 16px; }

  .kontakt-grid    { grid-template-columns: 1fr; }
  .bewerbung-wrap  { grid-template-columns: 1fr; }
  .form-card       { position: static; }

  .flotte-gallery {
    height: auto;
    grid-template-columns: 1fr;
  }

  .gallery-item--tall { aspect-ratio: 16/9; }

  .gallery-col {
    width: 100%;
    flex-direction: row;
    height: clamp(140px, 25vw, 200px);
  }

  .gallery-col .gallery-item { flex: 1; }
}

/* Mobile */
@media (max-width: 640px) {
  :root { --header-h: 64px; }

  .nav       { display: none; }
  .hamburger { display: flex; }

  .hero-content {
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: 220px;
    gap: 20px;
  }

  .hero h1 { font-size: clamp(36px, 10vw, 56px); }

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

  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(4) { border-right: none; }

  /* Grid bleibt, ::after Akzentlinie ausblenden */
  .hero::after { display: none; }

  /* Slashes ausblenden auf Mobile */
  .hero-slashes { display: none; }

  /* Wasserzeichen kleiner + weiter rechts verschieben */
  .hero-logo-watermark {
    width: clamp(200px, 70vw, 320px);
    right: -15%;
    opacity: .025;
  }

  /* Logo-Pattern ausblenden auf Mobile */
  .hero-logo-pattern { display: none; }

  .leistungen-grid { grid-template-columns: 1fr; }
  .form-row        { grid-template-columns: 1fr; }
  .ueber-features  { grid-template-columns: 1fr; }
  .fahrzeug-types  { grid-template-columns: repeat(2, 1fr); }
  .flotte-stats    { flex-wrap: wrap; gap: 14px; }
  .footer-grid     { grid-template-columns: 1fr; }

  .hero-btns { flex-direction: column; align-items: flex-start; }

  /* Disable custom cursor on touch */
  #cursor-dot,
  #cursor-ring { display: none; }

  body { cursor: auto; }

  .btn-primary,
  .btn-outline,
  .btn-nav,
  .leistung-card,
  .gallery-item,
  .ftype,
  .benefit,
  select,
  button,
  a { cursor: pointer; }

  .benefit::before { display: none; }
}

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

  [data-reveal],
  [data-reveal-fade] {
    clip-path: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .split-text .char-inner {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  html { scroll-behavior: smooth; }

  .grain-overlay { animation: none !important; }
}

/* Print */
@media print {
  .header,
  .hero-logo-pattern,
  .hero-slashes,
  .grain-overlay,
  #cursor-dot,
  #cursor-ring,
  #scroll-progress,
  .scroll-indicator { display: none !important; }
}
