/*
Theme Name: Wachlin Transport
Theme URI: https://wachlin-transport.de
Author: Wachlin Transport & Dienstleistungen
Description: Professionelles WordPress-Theme für Wachlin Transport – ADR-Gefahrgut, Spezialtransporte & Logistik. Industrial Precision Design 2026. Barlow Condensed Headlines, Teal Accent #00d6ca, Dark Professional.
Version: 3.2.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
License URI: https://wachlin-transport.de
Text Domain: wachlin
Tags: transport, logistics, dark, teal, professional, responsive
*/

/* ═══════════════════════════════════════════════════════════════
   WACHLIN TRANSPORT v3.1 – INDUSTRIAL PRECISION / TEAL EDITION
   Fonts  : Barlow Condensed (headlines) · DM Sans (body)
   Palette: #080808 ink · #00d6ca teal · #F2F0EC white
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── Custom Properties ─────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --ink:          #080808;
  --surface:      #0D0D0D;
  --surface-2:    #141414;
  --card:         #181818;
  --card-hover:   #1E1E1E;
  --elevated:     #222222;

  /* Teal Accent */
  --teal:         #00d6ca;
  --teal-light:   #33ddd3;
  --teal-dark:    #00a89e;
  --teal-dim:     rgba(0, 214, 202, 0.72);
  --teal-glow:    rgba(0, 214, 202, 0.10);
  --teal-glow2:   rgba(0, 214, 202, 0.18);
  --teal-border:  rgba(0, 214, 202, 0.28);

  /* Gold – for ADR/special certifications */
  --gold:         #C8A84A;
  --gold-glow:    rgba(200, 168, 74, 0.15);

  /* Text */
  --white:        #F2F0EC;
  --grey-1:       #C8C8C4;
  --grey-2:       #888884;
  --grey-3:       #444440;
  --border:       rgba(255,255,255,0.07);
  --border-card:  rgba(255,255,255,0.05);

  /* Semantic */
  --success:      #2ECC71;
  --error:        #E74C3C;

  /* Spacing */
  --nav-h:        72px;
  --section-v:    clamp(72px, 9vw, 128px);
  --container-w:  1320px;
  --container-px: clamp(20px, 5vw, 52px);
  --card-r:       16px;
  --btn-r:        10px;

  /* Typography */
  --font-head:    'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'DM Sans', -apple-system, 'Segoe UI', sans-serif;

  /* Transitions */
  --ease:         0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow:    0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:  0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-card:  0 4px 24px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.04);
  --shadow-teal:  0 0 40px rgba(0,214,202,0.22), 0 0 80px rgba(0,214,202,0.08);
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  line-height: 1.65;
  overflow-x: clip; /* clip statt hidden – fixed-Elemente (mobile nav) bleiben auf iOS korrekt */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--teal-light); }
a:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Scrollbar ──────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--teal-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal); }

/* ── Selection ──────────────────────────────────────────────────── */
::selection { background: rgba(0,214,202,0.28); color: var(--white); }

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem);   font-weight: 700; }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }

p { color: var(--grey-1); line-height: 1.7; }

.text-teal  { color: var(--teal) !important; }
.text-gold  { color: var(--gold) !important; }
.text-white { color: var(--white) !important; }
.text-grey  { color: var(--grey-2) !important; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════ */

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  padding: var(--section-v) 0;
  position: relative;
}

.section--dark    { background: var(--ink); }
.section--surface { background: var(--surface); }
.section--surface2{ background: var(--surface-2); }
.section--card    { background: var(--card); }

.section-head {
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head--center { text-align: center; }
.section-head--center p { max-width: 660px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  flex-shrink: 0;
  transition: width var(--ease-slow);
}
.section-label:hover::before { width: 36px; }

.section-head h2 { margin-bottom: 16px; }
.section-head p  { font-size: 1.05rem; margin-top: 12px; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--btn-r);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn:hover::after { left: 160%; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--teal);
  color: var(--ink);
  border-color: var(--teal);
  font-weight: 700;
}
.btn--primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,214,202,0.35);
}
.btn--primary:active { transform: translateY(0); box-shadow: none; }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.22);
}
.btn--outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,214,202,0.12);
}

.btn--teal-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal-border);
}
.btn--teal-outline:hover {
  background: var(--teal-glow);
  border-color: var(--teal);
  color: var(--teal-light);
  box-shadow: 0 4px 20px rgba(0,214,202,0.15);
}

/* alias for backwards compat in templates */
.btn--orange-outline { background: transparent; color: var(--teal); border-color: var(--teal-border); }
.btn--orange-outline:hover { background: var(--teal-glow); border-color: var(--teal); color: var(--teal-light); }

.btn--white {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  font-weight: 700;
}
.btn--white:hover {
  background: var(--surface-2);
  color: var(--teal);
  border-color: var(--surface-2);
  transform: translateY(-2px);
}
.btn--white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn--white-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

.btn--lg { padding: 18px 38px; font-size: 1.05rem; }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION / HEADER
   ═══════════════════════════════════════════════════════════════ */

#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--ease), box-shadow var(--ease), border-color var(--ease);
}

#site-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--teal);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity var(--ease), transform 0.5s var(--ease-slow);
}

#site-header.scrolled {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

#site-header.scrolled::after {
  opacity: 0.4;
  transform: scaleX(1);
}

.nav-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity var(--ease);
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo img { height: 44px; width: auto; display: block; }

.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text .logo-main {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}
.nav-logo-text .logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-1);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--ease), background var(--ease);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--ease-slow);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active { color: var(--teal); }

/* Nav phone + CTA */
.nav-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; margin-left: 16px; }

.nav-phone {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  color: var(--grey-1); text-decoration: none; transition: color var(--ease);
}
.nav-phone:hover { color: var(--teal); }
.nav-phone svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  min-width: 48px; /* touch-safe */
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  gap: 5px;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease);
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav-hamburger:hover,
.nav-hamburger:focus-visible { background: rgba(255,255,255,0.12); border-color: var(--teal-border); outline: none; }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
  transform-origin: center;
  pointer-events: none;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav – Overlay */
.nav-mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  animation: fadeIn 0.25s ease;
}
.nav-mobile-backdrop.open { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Mobile nav – Panel */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  max-height: calc(100svh - var(--nav-h));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background: rgba(10,10,10,0.99);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 16px 20px 32px;
  border-top: 1px solid var(--teal-border);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  flex-direction: column;
  gap: 2px;
  animation: slideDown 0.28s var(--ease-slow);
  box-shadow: 0 24px 48px rgba(0,0,0,0.6);
}
.nav-mobile.open { display: flex; }

/* Nav links – grote Touch-Targets */
.nav-mobile a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--grey-1);
  padding: 15px 18px;
  border-radius: 10px;
  text-decoration: none;
  display: block;
  min-height: 52px;
  display: flex;
  align-items: center;
  transition: color var(--ease), background var(--ease), padding-left var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile a:hover,
.nav-mobile a:active,
.nav-mobile a.active { color: var(--white); background: rgba(255,255,255,0.07); padding-left: 24px; }
.nav-mobile a.active { color: var(--teal); }

/* Trennlinie zwischen Links und CTA */
.nav-mobile .nav-mobile-cta {
  margin-top: 16px;
  padding: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border);
}
.nav-mobile .nav-mobile-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(0,214,202,0.06);
  border: 1px solid var(--teal-border);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: background var(--ease), border-color var(--ease);
}
.nav-mobile .nav-mobile-phone:hover { background: rgba(0,214,202,0.1); border-color: var(--teal); }
.nav-mobile .nav-mobile-phone svg { color: var(--teal); width: 20px; height: 20px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.72) 50%, rgba(8,8,8,0.38) 100%),
    linear-gradient(to top, rgba(0,214,202,0.07) 0%, transparent 40%);
}

.hero-bg-fallback {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,214,202,0.07) 0%, transparent 70%),
              linear-gradient(160deg, #0D0D0D 0%, #080808 100%);
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(255,255,255,0.022) 48px, rgba(255,255,255,0.022) 49px),
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(255,255,255,0.022) 48px, rgba(255,255,255,0.022) 49px);
  opacity: 0.7;
}

/* Teal vertical stripe */
.hero-stripe {
  position: absolute; top: 0; bottom: 0;
  right: clamp(180px, 25vw, 420px);
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, var(--teal) 20%, var(--teal) 80%, transparent 100%);
  opacity: 0.25; z-index: 1; pointer-events: none;
}

/* Ambient glow orb – animated */
.hero-glow-orb {
  position: absolute;
  top: 20%; right: 8%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,214,202,0.06) 0%, transparent 70%);
  z-index: 1; pointer-events: none;
  animation: orb-drift 12s ease-in-out infinite alternate;
}

@keyframes orb-drift {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.8; }
  50%  { transform: translate(-30px, 20px) scale(1.1); opacity: 1; }
  100% { transform: translate(20px, -30px) scale(0.95); opacity: 0.7; }
}

/* Scan line */
.hero-scanline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  z-index: 3; pointer-events: none;
  animation: scanline 6s ease-in-out infinite;
  animation-delay: 1.5s;
}
@keyframes scanline {
  0%   { top: 0%; opacity: 0; }
  5%   { opacity: 0.4; }
  95%  { opacity: 0.15; }
  100% { top: 100%; opacity: 0; }
}

/* Particles container */
.hero-particles {
  position: absolute; inset: 0;
  z-index: 2; pointer-events: none; overflow: hidden;
}
.hero-particles span {
  position: absolute;
  bottom: -8px;
  left: var(--x, 50%);
  width: var(--sz, 3px);
  height: var(--sz, 3px);
  border-radius: 50%;
  background: var(--teal);
  opacity: 0;
  animation: particle-rise var(--dur, 9s) var(--delay, 0s) infinite ease-in;
}
@keyframes particle-rise {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  8%   { opacity: var(--op, 0.18); }
  88%  { opacity: var(--op, 0.18); }
  100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
}

.hero-inner {
  position: relative; z-index: 4;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
}

.hero-content { max-width: 640px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 28px;
  animation: fadeSlideUp 0.8s var(--ease-slow) both;
  animation-delay: 0.2s;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal);
  animation: pulse-ring 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,214,202,0.6); transform: scale(1); }
  50%       { box-shadow: 0 0 0 8px rgba(0,214,202,0); transform: scale(1.1); }
}

.hero-headline {
  font-family: var(--font-head); font-size: clamp(3rem, 7.5vw, 6.5rem); font-weight: 900;
  line-height: 0.95; text-transform: uppercase; letter-spacing: 0.01em; color: var(--white);
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s var(--ease-slow) both; animation-delay: 0.35s;
}
.hero-headline .hl-teal { color: var(--teal); }
.hero-headline .hl-orange { color: var(--teal); } /* backwards compat */
.hero-headline .hl-stroke { -webkit-text-stroke: 2px rgba(255,255,255,0.55); color: transparent; }

.hero-claim {
  font-family: var(--font-body); font-size: clamp(1rem, 1.8vw, 1.2rem); font-style: italic;
  color: var(--teal-dim); font-weight: 400; margin-bottom: 16px; letter-spacing: 0.01em;
  animation: fadeSlideUp 0.8s var(--ease-slow) both; animation-delay: 0.5s;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: var(--grey-1); line-height: 1.7; margin-bottom: 40px; max-width: 520px;
  animation: fadeSlideUp 0.8s var(--ease-slow) both; animation-delay: 0.62s;
}

.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px;
  animation: fadeSlideUp 0.8s var(--ease-slow) both; animation-delay: 0.74s;
}

.hero-trust {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeSlideUp 0.8s var(--ease-slow) both; animation-delay: 0.86s;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; color: var(--grey-1);
  letter-spacing: 0.03em; text-transform: uppercase;
  transition: color var(--ease);
}
.hero-trust-item:hover { color: var(--teal); }
.hero-trust-item svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; transition: transform var(--ease-spring); }
.hero-trust-item:hover svg { transform: scale(1.2); }

/* Hero form card */
.hero-form-card {
  background: rgba(12,12,12,0.92);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px var(--teal-border);
  animation: fadeSlideUp 1s var(--ease-slow) both; animation-delay: 0.5s;
  transition: box-shadow var(--ease-slow);
}
.hero-form-card:hover { box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px var(--teal), 0 0 40px rgba(0,214,202,0.06); }

.hero-form-card h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 6px; color: var(--white); }
.hero-form-card .form-sub { font-size: 0.85rem; color: var(--grey-2); margin-bottom: 28px; }

/* Stats strip */
.hero-stats {
  background: linear-gradient(90deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-dark) 100%);
  padding: 22px 0; position: relative; z-index: 5; overflow: hidden;
}
.hero-stats::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.04) 80px, rgba(255,255,255,0.04) 81px);
}
.hero-stats-inner {
  max-width: var(--container-w); margin: 0 auto; padding: 0 var(--container-px);
  display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px; position: relative;
}
.hero-stat { display: flex; align-items: center; gap: 14px; }
.hero-stat-num {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900; color: var(--ink); line-height: 1;
}
.hero-stat-label {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  color: rgba(8,8,8,0.72); text-transform: uppercase; letter-spacing: 0.1em; line-height: 1.3;
}
.hero-stat-divider { width: 1px; height: 32px; background: rgba(8,8,8,0.2); }

/* ═══════════════════════════════════════════════════════════════
   USP INTRO STRIP
   ═══════════════════════════════════════════════════════════════ */

.usp-strip {
  background: var(--surface-2); padding: clamp(32px, 5vw, 56px) 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.usp-strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border);
}
.usp-item {
  background: var(--surface-2); padding: 28px 28px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: background var(--ease), transform var(--ease);
}
.usp-item:hover { background: var(--card); }
.usp-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--teal-glow); border: 1px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background var(--ease), transform var(--ease-spring), box-shadow var(--ease);
}
.usp-item:hover .usp-icon {
  background: var(--teal-glow2); transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 20px rgba(0,214,202,0.15);
}
.usp-icon svg { width: 22px; height: 22px; color: var(--teal); }
.usp-text h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--white); }
.usp-text p  { font-size: 0.82rem; color: var(--grey-2); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════════════════════════ */

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.service-card {
  background: var(--card); border: 1px solid var(--border-card); border-radius: var(--card-r);
  padding: 32px; position: relative; overflow: hidden;
  transition: background var(--ease), border-color var(--ease), transform var(--ease-slow), box-shadow var(--ease);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal), var(--teal-light));
  opacity: 0; transition: opacity var(--ease);
}
.service-card::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--card-r);
  background: radial-gradient(circle at 50% 0%, rgba(0,214,202,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--ease);
}
.service-card:hover {
  background: var(--card-hover); border-color: var(--teal-border);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px var(--teal-border), 0 0 40px rgba(0,214,202,0.06);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { opacity: 1; }

.service-card--featured {
  border-color: var(--teal-border);
  background: linear-gradient(135deg, var(--card) 0%, rgba(0,214,202,0.04) 100%);
}
.service-card--featured::before { opacity: 1; }

.service-card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--teal-glow); border: 1px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: background var(--ease), transform var(--ease-spring), box-shadow var(--ease);
}
.service-card:hover .service-card-icon {
  background: var(--teal-glow2); transform: scale(1.1);
  box-shadow: 0 0 24px rgba(0,214,202,0.2);
}
.service-card-icon svg { width: 26px; height: 26px; color: var(--teal); }
.service-card-icon--gold { background: var(--gold-glow); border-color: rgba(200,168,74,0.3); }
.service-card-icon--gold svg { color: var(--gold); }

.service-card h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 10px; color: var(--white); }
.service-card p  { font-size: 0.9rem; color: var(--grey-2); line-height: 1.65; }

.service-card-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
  font-size: 0.85rem; font-weight: 600; color: var(--teal); text-decoration: none;
  transition: gap var(--ease), color var(--ease);
}
.service-card-link svg { width: 16px; height: 16px; transition: transform var(--ease); }
.service-card-link:hover { color: var(--teal-light); gap: 10px; }
.service-card-link:hover svg { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════════════
   ADR / GEFAHRGUT SECTION
   ═══════════════════════════════════════════════════════════════ */

.adr-section {
  background: var(--surface-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.adr-section::before {
  content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: linear-gradient(to left, rgba(200,168,74,0.04) 0%, transparent 100%); pointer-events: none;
}

.adr-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 96px); align-items: center; }

.adr-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold-glow); border: 1px solid rgba(200,168,74,0.4); border-radius: 100px;
  padding: 8px 18px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; transition: background var(--ease), box-shadow var(--ease);
}
.adr-badge:hover { background: rgba(200,168,74,0.12); box-shadow: 0 0 20px rgba(200,168,74,0.1); }
.adr-badge svg { width: 14px; height: 14px; }

.adr-classes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.adr-class-tag {
  background: rgba(200,168,74,0.07); border: 1px solid rgba(200,168,74,0.2); color: var(--gold);
  border-radius: 6px; padding: 5px 12px; font-size: 0.78rem; font-weight: 600; font-family: var(--font-body);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.adr-class-tag:hover { background: rgba(200,168,74,0.14); transform: translateY(-1px); box-shadow: 0 2px 8px rgba(200,168,74,0.1); }

.adr-image-wrap { position: relative; border-radius: var(--card-r); overflow: hidden; border: 1px solid rgba(200,168,74,0.2); }
.adr-image-wrap img { width: 100%; height: 420px; object-fit: cover; transition: transform 0.7s var(--ease-slow); }
.adr-image-wrap:hover img { transform: scale(1.04); }

.adr-image-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(8,8,8,0.88); backdrop-filter: blur(12px);
  border: 1px solid rgba(200,168,74,0.4); border-radius: 10px; padding: 12px 18px;
  display: flex; align-items: center; gap: 12px;
}
.adr-diamond { width: 40px; height: 40px; background: var(--gold); transform: rotate(45deg); display: flex; align-items: center; justify-content: center; border-radius: 4px; flex-shrink: 0; }
.adr-diamond span { display: block; transform: rotate(-45deg); font-family: var(--font-head); font-size: 0.75rem; font-weight: 900; color: var(--ink); letter-spacing: 0.05em; }
.adr-diamond-label { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; color: var(--white); }
.adr-diamond-sub   { font-size: 0.68rem; color: var(--grey-2); }

/* ═══════════════════════════════════════════════════════════════
   ADDITIONAL SERVICES
   ═══════════════════════════════════════════════════════════════ */

.add-services-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--card-r); overflow: hidden;
}
.add-service-item {
  background: var(--card); padding: 28px 20px; text-align: center;
  transition: background var(--ease), transform var(--ease);
  cursor: default;
}
.add-service-item:hover { background: var(--card-hover); }
.add-service-item svg {
  width: 28px; height: 28px; color: var(--teal); margin: 0 auto 12px; display: block;
  transition: transform var(--ease-spring), filter var(--ease);
}
.add-service-item:hover svg { transform: scale(1.15) translateY(-2px); filter: drop-shadow(0 0 8px rgba(0,214,202,0.4)); }
.add-service-item h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; color: var(--white); font-family: var(--font-body); text-transform: none; letter-spacing: 0; }
.add-service-item p  { font-size: 0.75rem; color: var(--grey-2); line-height: 1.4; }

/* ═══════════════════════════════════════════════════════════════
   TRUST / WHY WACHLIN
   ═══════════════════════════════════════════════════════════════ */

.trust-section {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  position: relative; overflow: hidden;
}
.trust-section::after {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(0,214,202,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border); }
.trust-item {
  background: var(--surface); padding: 40px 36px;
  display: flex; align-items: flex-start; gap: 24px;
  transition: background var(--ease), transform var(--ease);
}
.trust-item:hover { background: var(--surface-2); }

.trust-num {
  font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900;
  line-height: 1; color: var(--teal); flex-shrink: 0; min-width: 80px;
  transition: transform var(--ease-spring), text-shadow var(--ease);
}
.trust-item:hover .trust-num {
  transform: scale(1.05);
  text-shadow: 0 0 30px rgba(0,214,202,0.3);
}
.trust-body h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); margin-bottom: 10px; color: var(--white); }
.trust-body p  { font-size: 0.9rem; color: var(--grey-2); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   FUHRPARK
   ═══════════════════════════════════════════════════════════════ */

.fuhrpark-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vehicle-card {
  background: var(--card); border: 1px solid var(--border-card); border-radius: var(--card-r); overflow: hidden;
  transition: transform var(--ease-slow), box-shadow var(--ease), border-color var(--ease);
}
.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px var(--teal-border);
  border-color: var(--teal-border);
}
.vehicle-img { width: 100%; height: 220px; object-fit: cover; background: var(--surface-2); transition: transform 0.6s var(--ease-slow); }
.vehicle-card:hover .vehicle-img { transform: scale(1.05); }
.vehicle-img-wrap { overflow: hidden; position: relative; }
.vehicle-img-count {
  position: absolute; top: 14px; right: 14px;
  background: var(--teal); color: var(--ink);
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 5px;
}
.vehicle-body { padding: 24px 26px; }
.vehicle-body h3 { font-size: clamp(1rem, 2vw, 1.3rem); margin-bottom: 6px; color: var(--white); }
.vehicle-body p  { font-size: 0.85rem; color: var(--grey-2); line-height: 1.6; margin-bottom: 16px; }
.vehicle-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.vehicle-spec {
  background: var(--surface); border: 1px solid var(--border); border-radius: 5px;
  padding: 4px 10px; font-size: 0.75rem; font-family: var(--font-body); font-weight: 500; color: var(--grey-1);
  transition: border-color var(--ease), color var(--ease);
}
.vehicle-card:hover .vehicle-spec { border-color: var(--teal-border); color: var(--teal); }

/* ═══════════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════════ */

.cta-banner {
  background: linear-gradient(100deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-light) 100%);
  padding: clamp(48px, 7vw, 80px) 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -40%; right: -5%; width: 50%; height: 200%;
  background: rgba(255,255,255,0.04); transform: rotate(-15deg); pointer-events: none;
}
.cta-banner::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: rgba(255,255,255,0.15);
}
.cta-banner-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative;
}
.cta-banner-text h2 { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--ink); margin-bottom: 12px; }
.cta-banner-text p  { color: rgba(8,8,8,0.7); font-size: 1.05rem; }
.cta-banner-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════ */

.contact-section { background: var(--surface); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact-info h2      { margin-bottom: 20px; }
.contact-info > p     { margin-bottom: 36px; font-size: 1.05rem; }
.contact-details      { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }

.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--teal-glow); border: 1px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
  transition: background var(--ease), transform var(--ease-spring);
}
.contact-detail:hover .contact-detail-icon { background: var(--teal-glow2); transform: scale(1.08); }
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--teal); }
.contact-detail-body h4 { font-size: 0.75rem; font-weight: 700; color: var(--grey-2); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; font-family: var(--font-body); }
.contact-detail-body a,
.contact-detail-body p  { font-size: 1rem; font-weight: 600; color: var(--white); text-decoration: none; transition: color var(--ease); }
.contact-detail-body a:hover { color: var(--teal); }

.contact-availability {
  background: var(--card); border: 1px solid var(--border-card); border-left: 3px solid var(--teal);
  border-radius: var(--card-r); padding: 20px 24px; display: flex; align-items: center; gap: 14px;
}
.availability-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--success); flex-shrink: 0; animation: pulse-ring 2s ease-in-out infinite; }
.contact-availability p { font-size: 0.9rem; font-weight: 600; color: var(--white); }

/* ═══════════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════════ */

.form-card {
  background: var(--card); border: 1px solid var(--border-card); border-radius: 20px;
  padding: clamp(28px, 4vw, 44px); transition: box-shadow var(--ease-slow);
}
.form-card:hover { box-shadow: 0 0 0 1px var(--teal-border), 0 0 40px rgba(0,214,202,0.04); }
.form-card h2, .form-card h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 6px; }
.form-card .form-sub { font-size: 0.85rem; color: var(--grey-2); margin-bottom: 28px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }

.form-label { font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; color: var(--grey-1); letter-spacing: 0.04em; text-transform: uppercase; }
.form-label .req { color: var(--teal); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%; background: var(--surface); border: 1.5px solid var(--border); border-radius: 10px;
  padding: 12px 16px; font-family: var(--font-body); font-size: 0.95rem; color: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
  outline: none; -webkit-appearance: none; appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--grey-3); }
.form-input:hover,  .form-textarea:hover  { background: var(--surface-2); border-color: rgba(255,255,255,0.12); }
.form-input:focus,  .form-select:focus, .form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,214,202,0.12);
  background: var(--surface-2);
}
.form-input.error { border-color: var(--error); }
.form-error-msg { font-size: 0.75rem; color: var(--error); margin-top: -4px; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888884' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.form-select option { background: var(--surface-2); color: var(--white); }
.form-honey { display: none; }
.form-privacy { font-size: 0.78rem; color: var(--grey-2); line-height: 1.5; margin-top: 8px; }
.form-privacy a { color: var(--teal); }
.form-success {
  background: rgba(46,204,113,0.08); border: 1px solid rgba(46,204,113,0.25); border-radius: 10px;
  padding: 20px 24px; font-size: 0.92rem; color: var(--success); display: none; margin-top: 16px;
}
.form-success.visible { display: flex; align-items: center; gap: 12px; }

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════════════════════════ */

.page-hero {
  background: var(--surface); padding: calc(var(--nav-h) + 60px) 0 60px;
  border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  animation: shimmer-line 3s ease-in-out infinite;
}
@keyframes shimmer-line {
  0%   { opacity: 0.3; transform: scaleX(0.3); }
  50%  { opacity: 0.8; transform: scaleX(1); }
  100% { opacity: 0.3; transform: scaleX(0.3); }
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(ellipse at right center, rgba(0,214,202,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 760px; position: relative; z-index: 1; }
.page-hero .section-label { display: inline-flex; margin-bottom: 16px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p  { font-size: 1.1rem; max-width: 580px; }

/* ═══════════════════════════════════════════════════════════════
   CONTENT SECTIONS
   ═══════════════════════════════════════════════════════════════ */

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 96px); align-items: center; }
.split-grid--reverse > *:first-child { order: 2; }
.split-grid--reverse > *:last-child  { order: 1; }

.content-image { border-radius: var(--card-r); overflow: hidden; border: 1px solid var(--border-card); transition: border-color var(--ease), box-shadow var(--ease-slow); }
.content-image:hover { border-color: var(--teal-border); box-shadow: 0 0 40px rgba(0,214,202,0.06); }
.content-image img { width: 100%; height: 400px; object-fit: cover; transition: transform 0.7s var(--ease-slow); }
.content-image:hover img { transform: scale(1.04); }

.feature-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal-glow); border: 1px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
  transition: background var(--ease), transform var(--ease-spring);
}
.feature-item:hover .feature-check { background: var(--teal-glow2); transform: scale(1.1); }
.feature-check svg { width: 12px; height: 12px; color: var(--teal); }
.feature-item p { font-size: 0.92rem; color: var(--grey-1); }

/* ═══════════════════════════════════════════════════════════════
   BLOG / ARCHIVE / SINGLE POST
   ═══════════════════════════════════════════════════════════════ */

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .blog-grid { grid-template-columns: 1fr; } }

/* Post card */
.post-card {
  background: var(--card);
  border: 1px solid var(--border-card);
  border-radius: var(--card-r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease-slow), box-shadow var(--ease), border-color var(--ease);
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px var(--teal-border);
  border-color: var(--teal-border);
}

.post-card-thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--surface-2);
}
.post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-slow);
}
.post-card:hover .post-card-thumb img { transform: scale(1.05); }

.post-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.75rem;
  font-family: var(--font-body);
  color: var(--grey-2);
}
.post-card-cat {
  background: var(--teal-glow);
  border: 1px solid var(--teal-border);
  color: var(--teal);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.post-card-title {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin-bottom: 10px;
  line-height: 1.3;
}
.post-card-title a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--ease);
}
.post-card-title a:hover { color: var(--teal); }

.post-card-excerpt {
  font-size: 0.88rem;
  color: var(--grey-2);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.post-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: gap var(--ease), color var(--ease);
  margin-top: auto;
}
.post-card-link:hover { color: var(--teal-light); gap: 10px; }
.post-card-link svg { transition: transform var(--ease); }
.post-card-link:hover svg { transform: translateX(3px); }

/* Pagination */
.blog-pagination { margin-top: 56px; display: flex; justify-content: center; }
.blog-pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.blog-pagination .page-numbers {
  display: flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; border-radius: 8px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  background: var(--card); border: 1px solid var(--border);
  color: var(--grey-1); text-decoration: none;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
  padding: 0 10px;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--teal-glow);
  border-color: var(--teal-border);
  color: var(--teal);
}
.blog-pagination .page-numbers.current { color: var(--teal); font-weight: 700; }

/* Single post */
.post-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 0.8rem;
  font-family: var(--font-body);
  color: var(--grey-2);
}
.post-meta-bar > * { display: flex; align-items: center; gap: 6px; }

.single-post-thumb { padding: 0 0 clamp(32px,5vw,56px); }
.single-thumb-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--card-r);
  border: 1px solid var(--border-card);
}

/* Post content (entry-content) – WordPress editor styles */
.post-content {
  color: var(--grey-1);
  line-height: 1.8;
  font-size: 1.02rem;
}
.post-content h2,
.post-content h3,
.post-content h4 { color: var(--white); margin: 40px 0 16px; }
.post-content h2 { font-size: clamp(1.5rem,3vw,2rem); }
.post-content h3 { font-size: clamp(1.2rem,2.5vw,1.55rem); }
.post-content p { margin-bottom: 20px; }
.post-content a { color: var(--teal); text-decoration: underline; text-decoration-color: var(--teal-border); text-underline-offset: 3px; }
.post-content a:hover { color: var(--teal-light); }
.post-content ul,
.post-content ol { margin: 0 0 20px 24px; }
.post-content li { margin-bottom: 8px; }
.post-content ul li { list-style: disc; }
.post-content blockquote {
  border-left: 3px solid var(--teal);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--card);
  border-radius: 0 var(--btn-r) var(--btn-r) 0;
  font-style: italic;
  color: var(--grey-1);
}
.post-content blockquote p { margin: 0; }
.post-content img { border-radius: var(--card-r); margin: 24px 0; border: 1px solid var(--border-card); }
.post-content hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.post-content code {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 0.88em;
  color: var(--teal);
  font-family: 'Courier New', monospace;
}
.post-content pre {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--card-r);
  padding: 20px 24px;
  overflow-x: auto;
  margin: 24px 0;
}
.post-content pre code { background: none; border: none; padding: 0; color: var(--grey-1); }
.post-content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.post-content th { background: var(--card); color: var(--white); padding: 12px 16px; text-align: left; border: 1px solid var(--border); font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; }
.post-content td { padding: 10px 16px; border: 1px solid var(--border); color: var(--grey-1); font-size: 0.9rem; }
.post-content tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

/* Post tags */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* Post navigation */
.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.post-nav-prev,
.post-nav-next {
  background: var(--card);
  border: 1px solid var(--border-card);
  border-radius: var(--card-r);
  padding: 20px 24px;
  transition: border-color var(--ease), background var(--ease);
}
.post-nav-prev:hover,
.post-nav-next:hover { border-color: var(--teal-border); background: var(--card-hover); }
.post-nav-next { text-align: right; }
.post-nav-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
  font-family: var(--font-body);
}
.post-nav-title a { color: var(--white); text-decoration: none; font-size: 0.92rem; font-weight: 600; transition: color var(--ease); }
.post-nav-title a:hover { color: var(--teal); }

@media (max-width: 640px) { .post-navigation { grid-template-columns: 1fr; } }

/* No results */
.no-results {
  text-align: center;
  padding: 80px 20px;
  max-width: 560px;
  margin: 0 auto;
}
.no-results-icon {
  width: 80px; height: 80px;
  background: var(--teal-glow);
  border: 1px solid var(--teal-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.no-results-icon svg { color: var(--teal); }
.no-results h2 { margin-bottom: 16px; }

/* ═══════════════════════════════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════════════════════════════ */

.error-404-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}
.error-404-code {
  font-family: var(--font-head);
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--teal-border);
  letter-spacing: -0.02em;
  position: relative;
  background: linear-gradient(135deg, var(--teal-border) 0%, var(--teal) 50%, var(--teal-border) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeSlideUp 0.8s var(--ease-slow) both;
}
.error-404-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal));
  border-radius: 2px;
  margin-top: 8px;
}

.error-404-links { margin-top: 48px; }
.error-404-links-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-2);
  margin-bottom: 16px;
}
.error-404-links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.error-404-links-grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--grey-1);
  text-decoration: none;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.error-404-links-grid a:hover {
  background: var(--teal-glow);
  border-color: var(--teal-border);
  color: var(--teal);
}
.error-404-links-grid a svg { color: var(--teal); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

#site-footer { background: var(--surface); border-top: 1px solid var(--border); }
.footer-main { padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 64px); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: clamp(32px, 5vw, 56px); }

.footer-brand .footer-logo-text { display: flex; flex-direction: column; line-height: 1; margin-bottom: 16px; }
.footer-brand .logo-main { font-family: var(--font-head); font-size: 1.6rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; color: var(--white); }
.footer-brand .logo-sub { font-family: var(--font-body); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); margin-top: 2px; }
.footer-brand img { height: 46px; width: auto; margin-bottom: 16px; }
.footer-brand > p { font-size: 0.88rem; color: var(--grey-2); line-height: 1.7; margin-bottom: 12px; max-width: 300px; }
.footer-claim { font-size: 0.82rem; font-style: italic; color: var(--teal-dim); margin-bottom: 24px; }

.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 8px; background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--grey-2);
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease-spring);
}
.footer-social a:hover { background: var(--teal-glow); border-color: var(--teal-border); color: var(--teal); transform: translateY(-2px); }
.footer-social a svg { width: 16px; height: 16px; }

.footer-col h4 { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey-2); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: var(--grey-2); text-decoration: none; transition: color var(--ease), padding-left var(--ease); }
.footer-links a:hover { color: var(--teal-light); padding-left: 6px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-row svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.footer-contact-row span,
.footer-contact-row a { font-size: 0.85rem; color: var(--grey-2); line-height: 1.5; text-decoration: none; transition: color var(--ease); }
.footer-contact-row a:hover { color: var(--teal-light); }

.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0 0; display: flex; flex-direction: column; }
.footer-bottom > .container:first-child { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-bottom: 14px; }
.footer-copyright { font-size: 0.8rem; color: var(--grey-3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: var(--grey-3); text-decoration: none; transition: color var(--ease); }
.footer-legal a:hover { color: var(--grey-2); }

/* OneDay-Marketing Credit */
.footer-credit-wrap { padding-top: 10px; padding-bottom: 16px; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-credit {
  font-size: 0.73rem;
  color: var(--grey-3);
  text-align: center;
  letter-spacing: 0.02em;
}
.footer-credit a {
  color: var(--grey-3);
  text-decoration: none;
  transition: color var(--ease);
  border-bottom: 1px solid transparent;
}
.footer-credit a:hover {
  color: var(--teal);
  border-bottom-color: var(--teal-border);
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL-TO-TOP
   ═══════════════════════════════════════════════════════════════ */

#scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--teal); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity var(--ease), transform var(--ease), background var(--ease);
  border: none; z-index: 900; box-shadow: 0 4px 20px rgba(0,214,202,0.35);
}
#scroll-top.visible { opacity: 1; pointer-events: auto; }
#scroll-top:hover { background: var(--teal-light); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,214,202,0.5); }
#scroll-top svg { width: 20px; height: 20px; }

/* Mobile sticky phone bar */
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  padding: 12px var(--container-px); background: rgba(8,8,8,0.96); backdrop-filter: blur(16px);
  border-top: 1px solid var(--teal-border); gap: 10px;
}
.mobile-cta-bar a {
  flex: 1; text-align: center; padding: 14px; border-radius: 10px;
  font-size: 0.9rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none;
}
.mobile-cta-bar a:first-child { background: var(--teal); color: var(--ink); }
.mobile-cta-bar a:last-child  { background: var(--card); color: var(--white); border: 1px solid var(--border); }

/* ═══════════════════════════════════════════════════════════════
   MISC COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

.tag { display: inline-block; background: var(--surface); border: 1px solid var(--border); color: var(--grey-1); border-radius: 6px; padding: 4px 12px; font-size: 0.78rem; font-weight: 500; font-family: var(--font-body); transition: border-color var(--ease), color var(--ease); }
.tag:hover { border-color: var(--teal-border); color: var(--teal); }

.info-block { background: var(--teal-glow); border: 1px solid var(--teal-border); border-radius: var(--card-r); padding: 20px 24px; display: flex; gap: 14px; align-items: flex-start; }
.info-block svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.info-block p { font-size: 0.9rem; color: var(--grey-1); }

/* ═══════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease-slow), transform 0.7s var(--ease-slow);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity 0.7s var(--ease-slow), transform 0.7s var(--ease-slow);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity 0.7s var(--ease-slow), transform 0.7s var(--ease-slow);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0; transform: scale(0.93);
  transition: opacity 0.7s var(--ease-slow), transform 0.7s var(--ease-slow);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }

/* Stagger children */
.stagger-children > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease-slow), transform 0.6s var(--ease-slow);
}
.stagger-children.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.45s; }
.stagger-children.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.55s; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  :root { --nav-h: 68px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding-bottom: 60px; }
  .hero-content { max-width: 100%; }
  .usp-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .adr-inner { grid-template-columns: 1fr; gap: 40px; }
  .adr-image-wrap img { height: 300px; }
  .trust-grid { grid-template-columns: 1fr; }
  .fuhrpark-grid { grid-template-columns: repeat(2, 1fr); }
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-grid--reverse > *:first-child { order: 0; }
  .split-grid--reverse > *:last-child  { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .add-services-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-glow-orb { width: 300px; height: 300px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; --section-v: clamp(56px, 10vw, 80px); }
  .nav-links, .nav-phone { display: none; }
  .nav-actions { display: none; }           /* CTA-Button im Header auf Mobile ausblenden */
  .nav-inner { gap: 0; justify-content: space-between; } /* kein horizontaler Overflow */
  .nav-hamburger { display: flex; margin-left: auto; }   /* Hamburger sauber rechts */
  /* Sicherstellen dass Backdrop nicht auf Desktop sichtbar ist */
  /* (Wird über JS gesteuert, aber CSS sichert ab) */
  .hero-actions { gap: 12px; }
  .hero-trust { gap: 16px; }
  .hero-form-card { padding: 24px 20px; }
  .hero-stats-inner { gap: 8px; }
  .hero-stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .add-services-grid { grid-template-columns: repeat(2, 1fr); }
  .fuhrpark-grid { grid-template-columns: 1fr; }
  .trust-item { gap: 16px; padding: 28px 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { text-align: center; flex-direction: column; }
  .cta-banner-actions { justify-content: center; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 76px; }
  #scroll-top { bottom: 96px; right: 20px; }
  .usp-strip-inner { grid-template-columns: 1fr 1fr; }
  /* Disable particles on mobile for performance */
  .hero-particles,
  .hero-glow-orb,
  .hero-scanline { display: none; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .hero-headline { font-size: clamp(2.6rem, 11vw, 3.5rem); }
  .usp-strip-inner { grid-template-columns: 1fr; }
  .add-services-grid { grid-template-columns: 1fr 1fr; }
  .btn--lg { padding: 15px 26px; font-size: 0.95rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero-particles, .hero-glow-orb, .hero-scanline { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM ANIMATION LAYER v3.2
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   DATENSCHUTZ / LEGAL CONTENT
   ═══════════════════════════════════════════════════════════════ */

.dsgvo-content {
  color: var(--grey-1);
  line-height: 1.8;
  font-size: 0.95rem;
}

.dsgvo-section {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.dsgvo-section:last-child { border-bottom: none; }

.dsgvo-h2 {
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal-border);
  position: relative;
}
.dsgvo-h2::before {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 40px; height: 2px;
  background: var(--teal);
}

.dsgvo-h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 24px 0 10px;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}

.dsgvo-content p { margin-bottom: 16px; }
.dsgvo-content p:last-child { margin-bottom: 0; }
.dsgvo-content a { color: var(--teal); text-decoration: underline; text-decoration-color: var(--teal-border); text-underline-offset: 3px; transition: color var(--ease); }
.dsgvo-content a:hover { color: var(--teal-light); }

.dsgvo-list {
  margin: 12px 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dsgvo-list li {
  list-style: none;
  position: relative;
  padding-left: 16px;
  font-size: 0.92rem;
  color: var(--grey-1);
}
.dsgvo-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.dsgvo-contact-box {
  background: var(--card);
  border: 1px solid var(--border-card);
  border-left: 3px solid var(--teal);
  border-radius: var(--card-r);
  padding: 20px 24px;
  margin: 16px 0 20px;
  line-height: 1.9;
  font-size: 0.92rem;
  color: var(--grey-1);
}
.dsgvo-contact-box strong { color: var(--white); }
.dsgvo-contact-box a { color: var(--teal); text-decoration: none; transition: color var(--ease); }
.dsgvo-contact-box a:hover { color: var(--teal-light); }

/* ── Float (ambient decorative elements) ───────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-8px) rotate(0.5deg); }
  66%       { transform: translateY(-4px) rotate(-0.5deg); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
.floating      { animation: float      6s ease-in-out infinite; }
.floating-slow { animation: float-slow 9s ease-in-out infinite; }

/* ── Teal glow pulse on CTA banner ─────────────────────────── */
@keyframes cta-glow-pulse {
  0%, 100% { box-shadow: inset 0 0 60px rgba(255,255,255,0.03); }
  50%       { box-shadow: inset 0 0 100px rgba(255,255,255,0.07); }
}
.cta-banner { animation: cta-glow-pulse 5s ease-in-out infinite; }

/* ── Teal shimmer sweep on hero stats bar ───────────────────── */
@keyframes stats-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.hero-stats {
  background-size: 200% 100%;
  background-image: linear-gradient(
    90deg,
    var(--teal-dark) 0%,
    var(--teal)      30%,
    var(--teal-light) 50%,
    var(--teal)      70%,
    var(--teal-dark) 100%
  );
  animation: stats-shimmer 6s linear infinite;
}

/* ── Extended stagger-children (up to 9 items) ──────────────── */
.stagger-children.visible > *:nth-child(7) { opacity: 1; transform: none; transition-delay: 0.60s; }
.stagger-children.visible > *:nth-child(8) { opacity: 1; transform: none; transition-delay: 0.70s; }
.stagger-children.visible > *:nth-child(9) { opacity: 1; transform: none; transition-delay: 0.80s; }

/* ── Trust grid stagger override ───────────────────────────── */
.trust-grid.stagger-children > * {
  transition-duration: 0.8s;
}
.trust-grid.stagger-children.visible > *:nth-child(1) { transition-delay: 0.08s; }
.trust-grid.stagger-children.visible > *:nth-child(2) { transition-delay: 0.22s; }
.trust-grid.stagger-children.visible > *:nth-child(3) { transition-delay: 0.36s; }
.trust-grid.stagger-children.visible > *:nth-child(4) { transition-delay: 0.50s; }

/* ── Section label animated reveal ─────────────────────────── */
.section-head.reveal.visible .section-label::before,
.section-head.stagger-children.visible .section-label::before {
  width: 36px;
  transition: width 0.6s var(--ease-slow) 0.4s;
}

/* ── Service card icon spin on first view ───────────────────── */
@keyframes icon-pop {
  0%   { transform: scale(0.6) rotate(-15deg); opacity: 0; }
  70%  { transform: scale(1.12) rotate(3deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
.service-card.reveal.visible .service-card-icon,
.service-card.stagger-children.visible .service-card-icon {
  animation: icon-pop 0.6s var(--ease-spring) both;
  animation-delay: 0.15s;
}

/* ── Teal text glow utility ─────────────────────────────────── */
.text-glow { text-shadow: 0 0 24px rgba(0,214,202,0.45); }

/* ── Hero headline word by word fade ────────────────────────── */
.hero-headline > br + span,
.hero-headline .hl-teal {
  display: inline-block;
  animation: fadeSlideUp 0.9s var(--ease-slow) both;
  animation-delay: 0.42s;
}

/* ── Scroll-top button pulse ring ───────────────────────────── */
@keyframes scroll-top-ring {
  0%   { box-shadow: 0 0 0 0   rgba(0,214,202,0.55), 0 4px 20px rgba(0,214,202,0.35); }
  60%  { box-shadow: 0 0 0 10px rgba(0,214,202,0),   0 4px 20px rgba(0,214,202,0.35); }
  100% { box-shadow: 0 0 0 0   rgba(0,214,202,0),    0 4px 20px rgba(0,214,202,0.35); }
}
#scroll-top.visible { animation: scroll-top-ring 2.5s ease-out infinite; }
#scroll-top:hover   { animation: none; }

/* ── Section head underline teal accent ─────────────────────── */
.section-head h2 {
  position: relative;
}
.section-head--center h2::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 2px;
  margin: 14px auto 0;
  transition: width 0.8s var(--ease-slow);
}
.section-head--center.reveal.visible h2::after,
.section-head--center.stagger-children.visible h2::after {
  width: 60px;
}

/* ── Form input focus glow enhancement ──────────────────────── */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  box-shadow: 0 0 0 3px rgba(0,214,202,0.14), 0 0 20px rgba(0,214,202,0.07);
}

/* ── Vehicle card image hover zoom tighter ───────────────────── */
.vehicle-card:hover .vehicle-img { transform: scale(1.06); }

/* ── Hero BG scale reset for parallax JS override ───────────── */
.hero-bg { transition: transform 0s linear; }

/* ── Add-services grid stagger timing ───────────────────────── */
.add-services-grid.stagger-children > * {
  transition-duration: 0.65s;
}
.add-services-grid.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.add-services-grid.stagger-children.visible > *:nth-child(2) { transition-delay: 0.15s; }
.add-services-grid.stagger-children.visible > *:nth-child(3) { transition-delay: 0.25s; }
.add-services-grid.stagger-children.visible > *:nth-child(4) { transition-delay: 0.35s; }
.add-services-grid.stagger-children.visible > *:nth-child(5) { transition-delay: 0.45s; }

/* ── Disable new animations on mobile for performance ─────── */
@media (max-width: 768px) {
  .cta-banner { animation: none; }
  .hero-stats { animation: none; background-image: linear-gradient(90deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-dark) 100%); }
  #scroll-top.visible { animation: none; }
  .service-card.reveal.visible .service-card-icon { animation: none; }
}
