/* =========================================================
   SANTOS TRANSPORT – Stylesheet
   ========================================================= */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  /* Firefox: dunkle Marken-Scrollbar – Navy-Track (wie Hero) + Markenblau-Thumb */
  scrollbar-width: thin;
  scrollbar-color: #1d6fdc #081c3b;
}
body { line-height: 1.65; }

/* ---------- SCROLLBAR (Chrome/Edge/Safari) ----------
   Teil des Corporate Designs: dunkles Navy wie die Hero (kein helles Standard-Grau),
   Thumb im Markenblau (--blue) als schlanke Pill, dezenter Hover. */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #081c3b; }
::-webkit-scrollbar-thumb {
  background-color: #1d6fdc;
  border-radius: 999px;
  border: 2px solid #081c3b;   /* Navy-Rand = Innenabstand im Track → schlanke, abgesetzte Pill */
  background-clip: padding-box;
  transition: background-color .2s ease;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #4c9bff;   /* dezent aufgehellt (Marken-Akzentblau), keine Animation */
}
img, picture, svg, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
button { background: none; border: none; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- VARS ---------- */
:root {
  /* Color: Blau ist Akzent, sonst neutral */
  --blue: #1d6fdc;
  --blue-d: #1657b3;
  --blue-dd: #103a78;
  --blue-light: #eaf3ff;

  --wa: #25D366;
  --wa-d: #1ea355;

  --text: #111827;
  --text-2: #374151;
  --muted: #6b7280;
  --muted-2: #9ca3af;

  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --bg-anhaenger: #f8f9fb;
  --border: #e5e7eb;
  --border-2: #f1f3f5;

  --dark: #081c3b;
  --dark-2: #071b34;
  --dark-3: #0c2548;

  --font: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 8px;
  --radius-sm: 6px;
  --radius-lg: 12px;

  --container: 1160px;
}

/* ---------- FONT (Geist – lokal gehostet, kein externer Google-Aufruf / DSGVO) ---------- */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-display: swap;
  font-weight: 300 800;
  src: url('../fonts/geist-latin-wght-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-display: swap;
  font-weight: 300 800;
  src: url('../fonts/geist-latin-ext-wght-normal.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- BASE ---------- */
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 420;
  letter-spacing: -0.006em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font);
  line-height: 1.12;
  color: var(--text);
  letter-spacing: -0.028em;
  font-weight: 740;
}
h1 { font-size: clamp(2.05rem, 4.4vw, 2.9rem); line-height: 1.06; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.55rem, 2.7vw, 2.05rem); }
h3 { font-size: 1.2rem; line-height: 1.25; letter-spacing: -0.018em; font-weight: 650; }
h4 { font-size: 0.85rem; letter-spacing: -0.01em; font-weight: 650; }

p  { color: var(--text-2); line-height: 1.7; }
strong { color: var(--text); font-weight: 600; }

.section-head { max-width: 720px; margin: 0 auto 40px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 1.08rem; line-height: 1.7; max-width: 60ch; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
  transition: transform .25s cubic-bezier(.22, 1, .36, 1), box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn:hover { transform: scale(1.02); }
.btn:active { transform: scale(0.98); transition-duration: .1s; }

.btn-lg { padding: 15px 28px; font-size: 1.05rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-d);
  border-color: var(--blue-d);
  box-shadow: 0 4px 12px rgba(29, 111, 220, .2);
}

.btn-whatsapp {
  background: var(--wa);
  color: #fff;
  border-color: var(--wa);
}
.btn-whatsapp:hover {
  background: var(--wa-d);
  border-color: var(--wa-d);
  box-shadow: 0 4px 12px rgba(37, 211, 102, .25);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--text);
  background: #fff;
}

/* ---------- BADGE (wiederverwendbar, variantengesteuert) ----------
   Eine Basisklasse für ALLE Status-Badges (Privatkunde, Gewerbekunde,
   künftige Status). Aussehen ausschließlich über Varianten steuern –
   niemals pro Verwendung individuell stylen. */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  /* Standard-Optik: dezentes Markenblau */
  background: var(--blue-light);
  color: var(--blue-d);
}
/* Varianten: .badge--privat / .badge--gewerbe tragen die Bedeutung und
   erben bewusst dieselbe ruhige Optik (keine neuen Farben, kein Design-Bruch).
   Künftige Unterscheidungen NUR hier ergänzen – innerhalb der Palette. */

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(16, 58, 120, 0.07);
  box-shadow: 0 1px 4px rgba(16, 58, 120, 0.05);
  transition: background .28s ease, box-shadow .28s ease, border-color .28s ease;
}
/* Beim Scrollen: fast deckendes Weiß + feiner Schatten. KEIN backdrop-filter –
   der repaintet beim Scrollen jeden Frame den Hintergrund (Scroll-Jank). Bei 0.98
   Deckkraft ist der Blur ohnehin praktisch unsichtbar. */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 22px rgba(16, 58, 120, 0.09);
  border-bottom-color: rgba(16, 58, 120, 0.09);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
  transition: height .28s ease;
}
.site-header.is-scrolled .header-inner { height: 58px; }
.logo-mark { transition: height .28s ease; }
.site-header.is-scrolled .logo-mark { height: 44px; }
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  line-height: 1;
  padding: 4px 0;
  transition: opacity .2s ease, transform .2s ease;
}
.logo:hover { transform: scale(1.03); }
.logo:active { transform: scale(1.0); }
.logo-mark {
  width: auto;
  height: 48px;
  aspect-ratio: 383 / 360;
  flex-shrink: 0;
  background: url('../images/rafael.png') center bottom / contain no-repeat;
}
.site-footer .logo-mark { height: 48px; }
.logo-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}
.logo-main {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.07em;
  color: var(--text);
}
.logo-sub {
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-top: 4px;
}

.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.nav-mobile-contact { display: none; }
.main-nav a {
  display: inline-flex;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--text-2);
  padding: 8px 8px;
  position: relative;
  transition: color .25s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--blue-dd);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width .3s cubic-bezier(0.22, 1, 0.36, 1);
}
.main-nav a:hover { color: var(--blue-dd); }
.main-nav a.active { color: var(--blue-dd); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 20px; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color .15s ease;
}
.header-link svg { flex-shrink: 0; }
/* Telefon als gefüllter Call-Button (Haupt-CTA im Header) – individuell gestaltet
   mit feinem Verlauf (hellere Oberkante = Tiefe) und weichem, realistischem Schatten */
.header-phone {
  gap: 11px;
  padding: 10px 22px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(180deg, #1a4f97 0%, var(--blue-dd) 100%);
  border: 1px solid #0e336b;
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 1px 2px rgba(16, 58, 120, 0.16),
    0 3px 9px rgba(16, 58, 120, 0.15);
  transition: background .28s ease, border-color .28s ease, transform .28s ease, box-shadow .28s ease, padding .28s ease;
}
.header-phone svg { color: #fff; }
.header-phone:hover {
  background: linear-gradient(180deg, #1d5aa9 0%, #134285 100%);
  transform: scale(1.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 2px 4px rgba(16, 58, 120, 0.2),
    0 8px 20px rgba(16, 58, 120, 0.26);
}
.header-phone:active { transform: scale(1); }
/* Sticky: fast unmerklich kompakter, Schatten minimal kräftiger – Schriftgröße bleibt */
.site-header.is-scrolled .header-phone {
  padding: 8px 20px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 2px 4px rgba(16, 58, 120, 0.18),
    0 4px 12px rgba(16, 58, 120, 0.18);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
}

.hero > .container {
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 64px 0 72px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  max-width: 520px;
  position: relative;
  z-index: 2;
}
.hero-text > * {
  opacity: 0;
  animation: heroFadeUp .7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-text > *:nth-child(1) { animation-delay: 0.05s; }
.hero-text > *:nth-child(2) { animation-delay: 0.12s; }
.hero-text > *:nth-child(3) { animation-delay: 0.20s; }
.hero-text > *:nth-child(4) { animation-delay: 0.28s; }
.hero-text > *:nth-child(5) { animation-delay: 0.36s; }
.hero-text > *:nth-child(6) { animation-delay: 0.44s; }

.hero-loc {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-bottom: 18px;
}
.hero-loc svg { color: rgba(255, 255, 255, 0.7); }

.hero h1 {
  color: #fff;
  max-width: 480px;
  margin-bottom: 20px;
  letter-spacing: -0.022em;
  text-wrap: balance;
}
.hero-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-trust {
  display: grid;
  gap: 9px;
  margin-bottom: 28px;
}
.hero-trust li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  line-height: 1.5;
}
.hero-trust li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--wa);
}

/* ✓-Variante (Hero) */
.hero-trust-check {
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-top: 30px;
  margin-bottom: 0;
}
.hero-trust-check li {
  font-size: 0.94rem;
}
.hero-trust-check li::before {
  content: '✓';
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  margin-top: 0;
  color: var(--wa);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
}

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

/* Hero-Telefon als hochwertiger Text-Link statt zweitem Button */
.hero-phone {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hero-phone-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero-phone-number {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
  color: #fff;
  width: max-content;
  transition: color .15s ease;
}
.hero-phone-number:hover { color: var(--wa); }

/* Hero-Bild: großes, echtes Foto auf der rechten Hälfte – kein Card, kein Shadow,
   keine Vignette. Das Foto bleibt hell und natürlich; nur die linke Kante geht
   weich ins Navy über (per ::before, liegt NICHT über Gesicht/Fahrzeug). */
.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(46%, 52vw, 780px);
  z-index: 0;
  overflow: hidden;   /* clippt den ~4 % Zoom, damit das Bild nicht links über die Gradient-Maske ragt (keine harte Kante) */
  opacity: 0;
  animation: heroImageReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Subjekt minimal nach rechts (mehr Navy-Luft links) + ~4 % näher heran,
     damit Rafael präsenter wirkt, ohne den Transporter zu überdecken */
  object-position: 46% 44%;
  transform: scale(1.04);
  transform-origin: center;
}
/* Weicher Übergang ausschließlich an der linken Bildkante zum Textbereich hin. */
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
    var(--dark) 0%,
    rgba(8, 28, 59, 0.85) 14%,
    rgba(8, 28, 59, 0.58) 26%,
    rgba(8, 28, 59, 0.30) 38%,
    rgba(8, 28, 59, 0.10) 50%,
    transparent 64%);
  pointer-events: none;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroImageReveal {
  from { opacity: 0; transform: scale(1.03); }
  to   { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-text > *,
  .hero-image { animation: none; opacity: 1; transform: none; }
}

/* ---------- HERO STATS ---------- */
.hero-stats {
  background: var(--bg-soft);
  padding: 26px 0;
}
.hero-stats-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}
.hero-stats-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  position: relative;
}
.hero-stats-list li + li::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: var(--border);
}
.stat-num {
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stat-label {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

/* ---------- TRUST STRIP (Referenzen + Instagram) ---------- */
.trust-strip {
  background: var(--bg-soft);
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.trust-solo {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.trust-solo h2 {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  color: var(--dark);
}
.trust-solo p {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 28px;
}
.trust-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-buttons .btn { gap: 8px; }

/* ---------- ABSCHLUSS-CTA (Referenzen) ---------- */
.ref-cta {
  max-width: 560px;
  margin: 80px auto 0;
  padding-top: 56px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.ref-cta h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--text);
}
.ref-cta p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 auto 28px;
  max-width: 460px;
}
.ref-cta .btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- INSTAGRAM-ZEILE (Referenzen) ---------- */
.instagram-teaser {
  padding: 72px 0 80px;
  background: #fff;
  border-top: 1px solid var(--border);
}
.ig-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px 40px;
  flex-wrap: wrap;
}
.ig-text h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.ig-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 540px;
}
.ig-btn { flex-shrink: 0; }
.ig-btn svg { width: 17px; height: 17px; flex: none; }

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.ts-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.ts-label {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ---------- LEISTUNGEN ---------- */
.leistungen {
  padding: 80px 0 88px;
  background: #fff;
}

.leistungen-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid #E2E8F0;
  margin-top: 8px;
}
.leistungen-list li {
  position: relative;
  border-bottom: 1px solid #E2E8F0;
}
.leistungen-list li::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0;
  background: var(--blue);
  border-radius: 0 2px 2px 0;
  transition: width 220ms ease;
}
.leistungen-list li:hover::before { width: 3px; }
.leistungen-list li:nth-child(odd) { border-right: 1px solid #E2E8F0; }

.lei-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 32px 28px 28px;
  text-decoration: none;
  color: inherit;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  height: 100%;
}
.leistungen-list li:nth-child(even) .lei-item { padding-left: 32px; }
.lei-item:hover {
  background: rgba(29, 111, 220, 0.028);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(29, 111, 220, 0.07);
}

.lei-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  opacity: 0.7;
  transition: opacity 200ms ease;
  margin-top: 1px;
}
.lei-icon svg {
  width: 20px;
  height: 20px;
}
.lei-item:hover .lei-icon { opacity: 1; }

.lei-body h3 {
  font-size: 1rem;
  font-weight: 650;
  margin-bottom: 5px;
  color: var(--dark);
  transition: color 200ms ease;
}
.lei-item:hover .lei-body h3 { color: var(--blue); }
.lei-body p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.leistungen-cta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.leistungen-cta p {
  color: var(--text);
  font-weight: 500;
}

/* ---------- REFERENZEN ---------- */
.referenzen {
  padding: 84px 0 96px;
  background: var(--bg-soft);
}

.ref-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.ref-block {
  display: grid;
  grid-template-columns: 1.15fr 1fr;   /* Bild ~53 % */
  gap: 60px;
  align-items: center;
}
.ref-block-reverse {
  grid-template-columns: 1fr 1.15fr;    /* Bild rechts, weiterhin größer */
}
.ref-block-reverse .ref-block-image { order: 2; }

.ref-block-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e5e7eb;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.10);
  transition: opacity .6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .35s ease;
}
.ref-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1);
}
.ref-block-image:hover { box-shadow: 0 20px 44px rgba(15, 23, 42, 0.17); }
.ref-block-image:hover img { transform: scale(1.03); }

/* Meta-Zeile: moderne Badges + Kundenname (Trust) */
.ref-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.ref-client-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-2);
}

.ref-block-text h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.ref-block-text .ref-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 24px;
}

.ref-facts {
  display: grid;
  gap: 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--border);
}
.ref-facts li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
}
.ref-facts li span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Kundenfeedback – ruhig, mit Akzentkante, ohne Box */
.ref-block-text blockquote {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text);
  border-left: 3px solid var(--blue);
  padding-left: 20px;
  margin-bottom: 0;
  font-style: normal;
}
.ref-block-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 0;
}
.ref-source {
  font-size: 0.85rem !important;
  color: var(--muted) !important;
  margin-top: 12px !important;
}

/* ---------- TRANSPORTER (Crafter – Premium Produkt-Showcase) ---------- */
.crafter {
  background: #031f4a;
  color: #fff;
  padding: clamp(76px, 10vw, 140px) 0;
  overflow: hidden;
}
.crafter-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;   /* Bild ~60 % / Text ~40 % */
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

/* Bühne: dominantes Fahrzeugbild, ragt links über den Content hinaus,
   faded links + rechts + unten weich ins Navy (keine Kanten, kein Rahmen). */
.crafter-stage {
  position: relative;
  width: calc(100% + clamp(60px, 16vw, 280px));
  margin-left: calc(-1 * clamp(60px, 16vw, 280px));
  aspect-ratio: 16 / 11;
}
.crafter-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  /* Sehr dezente Aufhellung – lässt den weißen Crafter hochwertiger wirken,
     ohne Himmel/Wolken auszubrennen. */
  filter: brightness(1.04) contrast(1.02) saturate(1.03);
  /* Weicher Verlauf an allen vier Kanten: links/rechts + oben + gebogene Unterkante.
     intersect = an jeder Stelle gilt der weichste Maskenwert → keine harten Kanten. */
  -webkit-mask-image:
    linear-gradient(to right,
      transparent 0%,
      rgba(0,0,0,0.5) 7%,
      #000 22%,
      #000 88%,
      rgba(0,0,0,0.45) 100%
    ),
    linear-gradient(to bottom,
      transparent 0%,
      #000 9%,
      #000 100%
    ),
    radial-gradient(
      ellipse 90% 34% at 50% 112%,
      transparent 0%,
      #000 90%
    );
  -webkit-mask-composite: source-in, source-in;
  mask-image:
    linear-gradient(to right,
      transparent 0%,
      rgba(0,0,0,0.5) 7%,
      #000 22%,
      #000 88%,
      rgba(0,0,0,0.45) 100%
    ),
    linear-gradient(to bottom,
      transparent 0%,
      #000 9%,
      #000 100%
    ),
    radial-gradient(
      ellipse 90% 34% at 50% 112%,
      transparent 0%,
      #000 90%
    );
  mask-composite: intersect;
}
.crafter-model {
  position: absolute;
  left: clamp(20px, 7vw, 110px);
  bottom: clamp(8px, 2.5vw, 26px);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 30px rgba(3, 18, 42, 0.7);
  pointer-events: none;
}

/* Glassmorphism-Feature-Pills auf dem Fahrzeug */
.ctag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  backdrop-filter: blur(14px) saturate(125%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
}
.ctag i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.9;
  flex: none;
}
.ctag--a { top: 12%; left: 16%; }
.ctag--b { top: 40%; right: 12%; }
.ctag--c { bottom: 30%; left: 24%; }

/* Textspalte rechts */
.crafter-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: #4c9bff;
  margin-bottom: 16px;
}
.crafter-title {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: #fff;
  margin: 0 0 clamp(18px, 2vw, 24px);
}
.crafter-lead {
  font-size: clamp(1.04rem, 1.3vw, 1.18rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 46ch;
}

/* Specs: editorial, typo-fokussiert – kein Box-Charakter */
.crafter-specs {
  list-style: none;
  margin: clamp(28px, 3.5vw, 40px) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.crafter-specs li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.crafter-specs li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.spec-ico {
  width: 20px;
  height: 20px;
  flex: none;
  display: grid;
  place-items: center;
  color: rgba(108, 176, 255, 0.65);
  margin-top: 2px;
}
.spec-ico svg { width: 15px; height: 15px; }
.spec-txt {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec-k {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}
.spec-v {
  font-size: 1.1rem;
  font-weight: 650;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

/* Link unter den Specs */
.crafter-ref-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(28px, 3vw, 36px);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding-bottom: 3px;
  transition: color .2s ease, border-color .2s ease;
}
.crafter-ref-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.crafter-ref-arrow {
  display: inline-block;
  transition: transform .2s ease;
}
.crafter-ref-link:hover .crafter-ref-arrow { transform: translateX(4px); }

/* ---------- ÜBER MICH ---------- */
.ueber-uns {
  padding: 60px 0 64px;
  background: #fff;
}

.ueber-uns .section-head { margin-bottom: 20px; text-align: left; }
.ueber-uns .section-head h2 { margin-bottom: 0; }

/* Zweispaltig: Foto links, persönliche Geschichte rechts */
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.ueber-photo {
  position: relative;
}
.ueber-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(8, 28, 59, 0.14);
}
/* Dezente Vignette – alle vier Kanten leicht abgedunkelt, Mitte bleibt hell */
.ueber-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  box-shadow: inset 0 0 46px 8px rgba(8, 28, 59, 0.3);
}

.ueber-text {
  max-width: 62ch;
  margin: 0;
}
.ueber-text .lead {
  font-size: 1.12rem;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.55;
  font-weight: 500;
}
.ueber-text p {
  margin-bottom: 14px;
  line-height: 1.65;
  font-size: 1rem;
}

.signature {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.signature-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px !important;
}
.signature-role {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0 !important;
}


/* ---------- KONTAKT (zweispaltig: CTAs links, Info-Karte rechts) ---------- */
.kontakt {
  background: #0f274d;
  color: #fff;
  padding: clamp(80px, 10vw, 130px) 0;
}
.kontakt-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
.kontakt-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: #4c9bff;
  margin-bottom: 16px;
}
.kontakt-title {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 22px;
  max-width: 16ch;
}
.kontakt-sub {
  font-size: clamp(1.1rem, 1.4vw, 1.2rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 50ch;
  margin: 0;
}
/* Vertrauenshinweis – persönlicher Anker direkt unter dem Fließtext */
.kontakt-trust {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 22px 0 0;
  max-width: 50ch;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}
.kontakt-trust svg {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 3px;
  color: #6bb0ff;
}
.kontakt-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(36px, 4vw, 44px);
}
/* Kontakt-Pills (WhatsApp + Telefon) – beide gleichwertig hochwertig */
.kontakt-pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  height: 54px;
  padding: 0 28px;
  border-radius: 9999px;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease, background-color .3s ease, border-color .3s ease;
}
.kontakt-pill svg { width: 19px; height: 19px; flex: none; }
.kontakt-pill:hover { transform: translateY(-3px); }
.kontakt-pill:active { transform: translateY(-1px); transition-duration: .1s; }
.kontakt-pill--wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.28);
}
.kontakt-pill--wa:hover {
  background: var(--wa-d);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.4);
}
.kontakt-pill--call {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}
.kontakt-pill--call:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

/* Info-Karte rechts – edel abgehoben, sehr feiner Rahmen + dezenter Verlauf */
.kontakt-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.022) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: clamp(34px, 3.4vw, 48px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 64px rgba(0, 0, 0, 0.34);
  /* backdrop-filter entfernt: liegt auf solidem Navy → kein sichtbarer Blur,
     aber Paint-Kosten. Optik unverändert. */
}
.kc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.kc-list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.kc-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: clamp(16px, 1.8vw, 20px) 0;
  margin: 0 -10px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color .2s ease;
}
.kc-list li:first-child .kc-row { padding-top: 0; }
.kc-list li:last-child .kc-row { padding-bottom: 0; }
a.kc-row:hover { background: rgba(255, 255, 255, 0.05); }
.kc-row--static { cursor: default; }
.kc-ico {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #6bb0ff;
  background: rgba(108, 176, 255, 0.1);
  border: 1px solid rgba(108, 176, 255, 0.2);
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
a.kc-row:hover .kc-ico {
  background: rgba(108, 176, 255, 0.18);
  border-color: rgba(108, 176, 255, 0.4);
  color: #8cc2ff;
}
.kc-ico svg { width: 18px; height: 18px; }
.kc-txt { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.kc-k {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}
.kc-v {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color .2s ease;
}
a.kc-row:hover .kc-v { color: #8cc2ff; }
/* Sekundärer Action-Link unter dem Standort (Google Maps) – dezent, kleiner als der Wert */
.kc-sublink {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 5px;
  margin-top: 6px;
  padding: 2px 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #6bb0ff;
  transition: color .25s ease;
}
.kc-sublink-arrow {
  display: inline-block;
  transition: transform .25s ease;
}
.kc-sublink:hover { color: #8cc2ff; }
.kc-sublink:hover .kc-sublink-arrow { transform: translateX(3px); }
.kc-badge {
  margin-top: clamp(26px, 3vw, 34px);
  padding-top: clamp(22px, 2.5vw, 28px);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.96rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
.kc-badge::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: none;
  background: var(--wa);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2);
}

/* ---------- SCROLL-REVEAL (dezent, performant: nur opacity + transform) ----------
   JS (main.js) setzt .is-revealed via IntersectionObserver.
   [data-reveal]      → opacity 0→1 + translateY(18px)→0
   [data-reveal-fade] → opacity 0→1 (für Bilder, kein Versatz)
   [data-reveal-group]→ staffelt seine direkten [data-reveal]-Kinder (max. 6). */
[data-reveal],
[data-reveal-fade] {
  opacity: 0;
  transition: opacity .6s cubic-bezier(.22, 1, .36, 1), transform .6s cubic-bezier(.22, 1, .36, 1);
}
[data-reveal] { transform: translateY(18px); }
[data-reveal].is-revealed,
[data-reveal-fade].is-revealed {
  opacity: 1;
  transform: none;
}

/* Stagger für Listen/Karten: 90 ms Versatz, ab dem 6. Element gedeckelt */
[data-reveal-group] > [data-reveal]:nth-child(2),
[data-reveal-group] > [data-reveal-fade]:nth-child(2) { transition-delay: .09s; }
[data-reveal-group] > [data-reveal]:nth-child(3),
[data-reveal-group] > [data-reveal-fade]:nth-child(3) { transition-delay: .18s; }
[data-reveal-group] > [data-reveal]:nth-child(4),
[data-reveal-group] > [data-reveal-fade]:nth-child(4) { transition-delay: .27s; }
[data-reveal-group] > [data-reveal]:nth-child(5),
[data-reveal-group] > [data-reveal-fade]:nth-child(5) { transition-delay: .36s; }
[data-reveal-group] > [data-reveal]:nth-child(n+6),
[data-reveal-group] > [data-reveal-fade]:nth-child(n+6) { transition-delay: .45s; }

/* Kontaktkarte folgt der Textspalte leicht versetzt */
.kontakt-card[data-reveal] { transition-delay: .12s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-fade] { opacity: 1; transform: none; transition: none; }
}

/* Outline-Button (Direkt anrufen auf dunklem Grund) */
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ---------- FOOTER (rechtlicher Abschluss) ---------- */
.site-footer {
  background: #061B3A;
  color: rgba(255, 255, 255, 0.6);
  padding: 52px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 32px;
  flex-wrap: wrap;
}
.footer-inner .logo { gap: 14px; }
.site-footer .logo-mark { height: 58px; }
.footer-inner .logo-main { color: #fff; font-size: 1.6rem; }
.footer-inner .logo-sub { color: rgba(255, 255, 255, 0.5); font-size: 0.84rem; }
.footer-copy {
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.55);
}
.footer-legal {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.footer-legal li { font-size: 0.875rem; }
.footer-legal a {
  position: relative;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color .22s ease;
}
.footer-legal a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s ease;
}
.footer-legal a:hover { color: #fff; }
.footer-legal a:hover::after { transform: scaleX(1); }

/* ---------- STICKY WHATSAPP (nur mobil/tablet) ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  transition: transform .18s ease, box-shadow .18s ease;
}
.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
}

/* ---------- PAGE HERO (Sub-Seiten) ---------- */
.page-hero {
  background: var(--dark);
  color: #fff;
  padding: 60px 0 52px;
}
.page-hero .container { max-width: 920px; }
.page-hero h1 {
  color: #fff;
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 3.4vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 640px;
}
.page-hero .crumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}
.page-hero .crumb a { color: rgba(255, 255, 255, 0.75); transition: color .15s ease; }
.page-hero .crumb a:hover { color: #fff; }

/* ---------- SERVICE SECTIONS (Leistungen-Seite) ---------- */
.services {
  padding: 72px 0 84px;
  background: #fff;
}
.service-block {
  display: grid;
  grid-template-columns: 1.08fr 1fr;   /* Bild ~52 % / Text ~48 % */
  gap: 56px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.service-block-reverse {
  grid-template-columns: 1fr 1.08fr;   /* Bild rechts, weiterhin ~52 % */
}
.service-block:last-child { border-bottom: none; }
.service-block-reverse .service-block-image { order: 2; }
.service-block-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e5e7eb;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transition: opacity .6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .32s ease;
}
.service-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .32s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-block-image:hover {
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
}
.service-block-image:hover img {
  transform: scale(1.02);
}
.service-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}
.service-block-text h2 {
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  margin-bottom: 24px;
}
.service-block-text p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 24px;
}
.service-block-text ul {
  display: grid;
  gap: 10px;
  margin-top: 0;
}
.service-block-text ul li {
  position: relative;
  padding-left: 18px;
  font-size: 0.96rem;
  color: var(--text-2);
  line-height: 1.55;
}
.service-block-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
/* Persönlicher Vertrauenssatz unter den Bulletpoints */
.service-note {
  margin: 24px 0 0;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

/* ---------- SECTION CTA (Übersicht → Detailseite) ---------- */
.section-bottom-cta {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.section-bottom-cta p {
  font-size: 0.9375rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.5;
  max-width: 480px;
}
.section-bottom-cta .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 650;
  font-size: 0.9375rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.section-bottom-cta .btn-link .btn-link-arrow {
  display: inline-block;
  transition: transform 180ms ease;
}
.section-bottom-cta .btn-link:hover .btn-link-arrow { transform: translateX(4px); }
.section-bottom-cta .btn-link::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--blue);
  opacity: 0;
  transition: opacity 180ms ease;
}
.section-bottom-cta .btn-link { position: relative; }

/* ---------- IMAGE FALLBACK ---------- */
.img-missing {
  position: relative;
  background: #f3f4f6;
}
.img-missing::after {
  content: 'Bild folgt: ' attr(data-img-name);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
}

@media (max-width: 900px) {
  /* Über mich: Foto oben, Text darunter */
  .ueber-grid { grid-template-columns: 1fr; gap: clamp(26px, 5vw, 38px); }
  .ueber-photo img { max-width: 480px; margin: 0 auto; }

  /* Mobile-Menü (Dropdown) */
  .main-nav {
    flex: 0;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 6px 24px 14px;
  }
  .main-nav li { width: 100%; }
  .main-nav a {
    display: block;
    padding: 15px 0;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--border-2);
  }
  .main-nav a::after { display: none; }
  .main-nav a.active { color: var(--blue); }
  .nav-mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 22px 24px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-soft);
  }
  /* Kontakt-Links: generische .main-nav-a-Stile (block/padding/border) zurücksetzen */
  .nav-mobile-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    padding: 0;
    border-bottom: none;
  }
  /* Vollständige Kontaktinfo: große, klickbare Telefonnummer (tel:) */
  .nav-mobile-contact .nav-mobile-phone {
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
  }
  .nav-mobile-contact .nav-mobile-phone svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--text-2);
  }
  /* WhatsApp als klarer CTA darunter – volle Breite, guter Touch-Target */
  .nav-mobile-contact .nav-mobile-wa {
    justify-content: center;
    background: var(--wa);
    color: #fff;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }
  .nav-mobile-contact .nav-mobile-wa svg { flex-shrink: 0; }

  /* Mobil: Header statisch (keine Scroll-Höhenänderung), damit das Dropdown
     bündig anschließt und nichts springt */
  .logo-mark { height: 44px; }
  .site-header.is-scrolled .header-inner { height: 64px; }
  .site-header.is-scrolled .logo-mark { height: 44px; }
  .site-header.is-scrolled .header-phone { padding: 10px; }

  .header-link span { display: none; }
  .header-phone { padding: 10px; }
  .header-actions { gap: 12px; }
  .nav-toggle { display: flex; }
  .whatsapp-float { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 48px; }
  .hero-text { max-width: 100%; order: 1; }
  /* Mobile: eigener Bildausschnitt – quadratisch, volle Bildbreite (Transporter +
     Rafael komplett), Himmel oben & Straße unten beschnitten → Fokus auf Person + Fahrzeug. */
  .hero-image {
    position: static;
    order: 2;
    width: 100%;
    max-width: 480px;
    margin: 16px auto 0;
    aspect-ratio: 1 / 1;
    border-radius: 0;
    /* Weicher Rand-Fade: alle vier Kanten lösen sich ins Navy auf (wie das Desktop-Bild),
       kein harter Karten-Rand mehr. */
    -webkit-mask-image:
      linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%),
      linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-composite: source-in;
    -webkit-mask-repeat: no-repeat;
    mask-image:
      linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%),
      linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-composite: intersect;
    mask-repeat: no-repeat;
  }
  .hero-image::before { display: none; }
  .hero-image img {
    object-position: 50% 54%;
    transform: scale(1.06);
    transform-origin: center 54%;
  }

  .hero-stats { padding: 22px 0; }
  .hero-stats-list { gap: 14px; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: 0.78rem; line-height: 1.3; }

  .trust-solo { text-align: left; }
  .trust-buttons { justify-content: flex-start; }

  .footer-inner { justify-content: center; text-align: center; gap: 14px 28px; }

  .kontakt-grid { grid-template-columns: 1fr; gap: clamp(34px, 6vw, 46px); }

  .leistungen-list { grid-template-columns: 1fr; }
  .leistungen-list li:nth-child(odd) { border-right: none; }
  .lei-item,
  .leistungen-list li:nth-child(even) .lei-item { padding: 22px 20px; }

  .ref-block,
  .ref-block-reverse { grid-template-columns: 1fr; gap: 28px; }
  /* Bild IMMER zuerst – auch bei umgekehrten Blöcken (einheitliche Reihenfolge) */
  .ref-block-reverse .ref-block-image { order: 0; }
  /* Einheitliche Trennlinie + symmetrischer Abstand zwischen den Referenzen */
  .ref-list { gap: 0; }
  .ref-block:not(:last-child) {
    padding-bottom: 56px;
    margin-bottom: 56px;
    border-bottom: 1px solid var(--border);
  }
  .ref-cta { margin-top: 56px; padding-top: 48px; }

  .service-block,
  .service-block-reverse { grid-template-columns: 1fr; gap: 28px; padding: 36px 0; }
  /* Bild IMMER zuerst – auch bei umgekehrten Blöcken (einheitliche Reihenfolge, kein Text vor dem Bild) */
  .service-block-reverse .service-block-image { order: 0; }
  .page-hero { padding: 40px 0 36px; }
  .section-bottom-cta { flex-direction: column; align-items: flex-start; gap: 14px; }

  /* Crafter-Showcase: einspaltig – Bild oben, Textspalte darunter */
  .crafter-inner {
    grid-template-columns: 1fr;
    gap: clamp(28px, 6vw, 40px);
  }
  .crafter-stage {
    width: 100%;
    margin-left: 0;
    aspect-ratio: 4 / 3;
  }
  .crafter-stage img {
    -webkit-mask-image:
      linear-gradient(to right,
        transparent 0%,
        rgba(0,0,0,0.5) 6%,
        #000 14%,
        #000 86%,
        rgba(0,0,0,0.5) 94%,
        transparent 100%
      ),
      linear-gradient(to bottom,
        transparent 0%,
        #000 8%,
        #000 100%
      ),
      radial-gradient(
        ellipse 95% 30% at 50% 110%,
        transparent 0%,
        #000 90%
      );
    -webkit-mask-composite: source-in, source-in;
    mask-image:
      linear-gradient(to right,
        transparent 0%,
        rgba(0,0,0,0.5) 6%,
        #000 14%,
        #000 86%,
        rgba(0,0,0,0.5) 94%,
        transparent 100%
      ),
      linear-gradient(to bottom,
        transparent 0%,
        #000 8%,
        #000 100%
      ),
      radial-gradient(
        ellipse 95% 30% at 50% 110%,
        transparent 0%,
        #000 90%
      );
    mask-composite: intersect;
  }
  .ctag--a { top: 8%; left: 6%; }
  .ctag--b { top: 8%; right: 6%; }
  .ctag--c { top: 30%; left: 6%; bottom: auto; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }

  .hero-grid { padding: 32px 0 48px; gap: 28px; }
  .hero-image { aspect-ratio: 4 / 5; }
  .hero h1 { font-size: 1.7rem; }
  .hero-lead { font-size: 1rem; margin-bottom: 22px; }
  .hero-cta .btn { width: 100%; }

  /* Header/Logo – eine konsistente Größe (Höhe bleibt 64px wie überall) */
  .header-inner { gap: 14px; }
  .logo { gap: 10px; }
  .logo-mark { height: 44px; }
  .logo-main { font-size: 1.2rem; }
  .logo-sub { font-size: 0.66rem; }

  .leistungen, .referenzen, .anhaenger, .ueber-uns { padding: 48px 0; }
  .ueber-uns { min-height: auto; display: block; }
  .section-head { margin-bottom: 28px; }

  .trust-buttons { flex-direction: column; }
  .trust-buttons .btn { width: 100%; }

  .leistungen-cta { flex-direction: column; }
  .leistungen-cta .btn { width: 100%; }

  .ref-facts li { grid-template-columns: 1fr; gap: 3px; padding: 12px 0; }
  .ref-cta p { font-size: 1rem; }
  .ig-btn { width: 100%; }

  .hero-phone-number { font-size: 1.45rem; }

  .kontakt-cta { gap: 12px; }
  .kontakt-cta .kontakt-pill { width: 100%; justify-content: center; }
  .footer-inner { flex-direction: column; gap: 18px; }
  .hero-trust-check { grid-template-columns: 1fr; }

  .whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}
