/* =============================================================
   ELI-MAR EXPRESS EU — Stylesheet
   Lokal eingebundene Fonts (DSGVO-konform, ohne Google-Fonts-CDN)
   ============================================================= */

/* --- LOKALE FONTS --- */
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url("fonts/dm-sans-latin.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+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url("fonts/dm-sans-latin-ext.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;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("fonts/manrope-latin.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+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("fonts/manrope-latin-ext.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;
}

/* --- DESIGN TOKENS --- */
:root {
  --navy-900: #06112A;
  --navy-800: #0B2547;
  --navy-700: #102E5C;
  --navy-600: #173972;
  --royal: #1E5DB8;
  --royal-light: #3B82F6;
  --sky: #38B6FF;
  --gold: #FACD19;
  --gold-deep: #E0B400;
  --ink: #0E1B33;
  --ink-soft: #2A3A5B;
  --paper: #F6F8FB;
  --paper-2: #EEF2F8;
  --line: rgba(11, 37, 71, 0.10);
  --line-strong: rgba(11, 37, 71, 0.18);
  --shadow-sm: 0 2px 8px rgba(11, 37, 71, 0.06);
  --shadow-md: 0 12px 30px rgba(11, 37, 71, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 37, 71, 0.18);
  --shadow-xl: 0 40px 90px rgba(6, 17, 42, 0.30);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --gradient-brand: linear-gradient(135deg, var(--navy-800) 0%, var(--royal) 60%, var(--sky) 130%);
  --gradient-gold: linear-gradient(135deg, #FFE066 0%, var(--gold) 50%, var(--gold-deep) 100%);
  --container: 1240px;
  --header-h: 96px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }
img, svg { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: "DM Sans", "Manrope", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--navy-800);
}
h1 { font-size: clamp(2.2rem, 4.8vw, 3.8rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.02em; }
h4 { font-size: 1rem; letter-spacing: -0.01em; }

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

.skip-link {
  position: absolute;
  top: -100px; left: 1rem;
  background: var(--navy-800); color: #fff;
  padding: .8rem 1.2rem; border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* --- ÜBERSCHRIFTEN-KOMPONENTEN --- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: "DM Sans", sans-serif;
  font-size: .78rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--royal);
  padding: .45rem .9rem;
  background: rgba(30, 93, 184, .08);
  border-radius: 999px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(250, 205, 25, .25);
}
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-head { max-width: 760px; margin: 0 auto clamp(2rem, 4vw, 3.5rem); text-align: center; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head .section-sub { color: var(--ink-soft); font-size: 1.08rem; }
.section-head.light h2, .section-head.light .section-sub { color: #fff; }
.section-head.light .section-sub { color: rgba(255,255,255,.85); }
.section-head.light .eyebrow {
  background: rgba(250, 205, 25, .15); color: var(--gold);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: .96rem; letter-spacing: -0.005em;
  padding: .8rem 1.3rem;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }
.btn-lg { padding: 1.05rem 1.7rem; font-size: 1rem; }
.btn-lg svg { width: 20px; height: 20px; }
.btn-block { width: 100%; }

.btn-gold {
  background: var(--gradient-gold);
  color: var(--navy-800);
  box-shadow: 0 8px 22px rgba(250, 205, 25, .35), inset 0 1px 0 rgba(255,255,255,.6);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(250,205,25,.45); }

.btn-primary {
  background: var(--navy-800); color: #fff;
  box-shadow: 0 8px 20px rgba(11,37,71,.28);
}
.btn-primary:hover { background: var(--navy-700); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .15); }

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: var(--header-h);
  padding-top: .4rem; padding-bottom: .4rem;
}
.brand {
  display: flex; align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}
.brand img {
  width: 88px; height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(11,37,71,.20));
  transition: transform .25s ease;
}
.brand:hover img { transform: scale(1.04); }
.primary-nav {
  display: flex; align-items: center; gap: 1.6rem;
  margin-left: auto;
}
.primary-nav a {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: .96rem;
  color: var(--ink-soft);
  position: relative;
  padding: .4rem 0;
  transition: color .15s;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 50%; bottom: -2px;
  width: 0; height: 2px; background: var(--gold);
  transition: width .2s, left .2s; transform-origin: center;
}
.primary-nav a:hover { color: var(--navy-800); }
.primary-nav a:hover::after { width: 100%; left: 0; }
.header-cta { margin-left: 1.2rem; }
.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  border-radius: 14px;
  margin-left: auto;
  background: var(--navy-800);
  color: #fff;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 110;
  transition: background .2s ease;
}
.nav-toggle:hover { background: var(--navy-700); }
.nav-toggle .ico-menu,
.nav-toggle .ico-close { width: 22px; height: 22px; }
.nav-toggle .ico-close { display: none; }
.nav-toggle[aria-expanded="true"] .ico-menu { display: none; }
.nav-toggle[aria-expanded="true"] .ico-close { display: block; }

/* MOBILE NAV OVERLAY */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--royal) 130%);
  z-index: 105;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
}
.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  width: 100%;
  max-width: 420px;
}
.mobile-nav-inner a:not(.btn) {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #fff;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  display: flex; align-items: center;
  justify-content: space-between;
  transition: padding .2s ease, color .2s ease;
}
.mobile-nav-inner a:not(.btn)::after {
  content: "→";
  color: var(--gold);
  opacity: .55;
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-nav-inner a:not(.btn):hover {
  padding-left: .4rem;
  color: var(--gold);
}
.mobile-nav-inner a:not(.btn):hover::after {
  transform: translateX(4px);
  opacity: 1;
}
.mobile-nav-inner .btn {
  margin-top: 1.5rem;
  justify-content: center;
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  padding: clamp(2rem, 4vw, 3rem) 0 0;
  overflow: hidden;
  background: var(--navy-900);
  color: #fff;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  filter: saturate(110%) brightness(.55);
  transform: scale(1.06);
  animation: heroZoom 24s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04) translateX(-10px); }
  to   { transform: scale(1.12) translateX(10px); }
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 70% 20%, rgba(56, 182, 255, .18) 0%, transparent 60%),
    radial-gradient(900px 500px at 10% 80%, rgba(250, 205, 25, .12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(6, 17, 42, .55) 0%, rgba(6, 17, 42, .85) 70%, var(--navy-900) 100%);
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 3rem;
  align-items: center;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
}
.hero-content .eyebrow {
  color: var(--gold);
  background: rgba(250, 205, 25, .15);
  border: 1px solid rgba(250, 205, 25, .3);
}
.hero-content h1 {
  color: #fff;
  font-weight: 800;
  margin: 1.2rem 0 1.4rem;
  text-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.hero-content h1 .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}
.hero-content .lead {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  color: rgba(255,255,255,.88);
  max-width: 590px;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
}
.hero-badges li {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  display: flex; flex-direction: column;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,255,255,.85);
  font-size: .86rem;
  line-height: 1.4;
}
.hero-badges strong {
  font-family: "DM Sans", sans-serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--gold);
  margin-bottom: .25rem;
  letter-spacing: -0.02em;
}

/* HERO CARD — compact */
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.98), #fff);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,1);
  position: relative;
  overflow: hidden;
  align-self: center;
}
.hero-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--gradient-gold);
}
.hero-card-head {
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 1.5rem;
}
.hero-card-head h2 {
  font-size: 1.4rem;
  margin: 0 0 .25rem;
}
.hero-card-head p { color: var(--ink-soft); font-size: .87rem; line-height: 1.45; }
.pulse {
  position: absolute; left: 0; top: 8px;
  width: 10px; height: 10px;
  background: #16a34a; border-radius: 999px;
}
.pulse::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 999px;
  border: 2px solid rgba(22, 163, 74, .4);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { transform: scale(.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.quick-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}
.quick-form label { display: flex; flex-direction: column; gap: .3rem; }
.quick-form span {
  font-size: .78rem; font-weight: 600;
  color: var(--ink-soft);
  font-family: "DM Sans", sans-serif;
  letter-spacing: -0.005em;
}
.quick-form input, .quick-form select {
  padding: .7rem .85rem;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--paper);
  transition: border .15s, box-shadow .15s, background .15s;
  font-size: .92rem;
}
.quick-form input:focus, .quick-form select:focus {
  outline: none;
  border-color: var(--royal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30, 93, 184, .15);
}
.quick-form .btn { margin-top: .35rem; }
.quick-form textarea {
  padding: .7rem .85rem;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--paper);
  font-family: inherit;
  font-size: .92rem;
  line-height: 1.45;
  resize: vertical;
  min-height: 2.6rem;
  transition: border .15s, box-shadow .15s, background .15s;
}
.quick-form textarea:focus {
  outline: none; border-color: var(--royal); background: #fff;
  box-shadow: 0 0 0 3px rgba(30, 93, 184, .15);
}
.quick-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.form-hint { font-size: .72rem; color: var(--ink-soft); line-height: 1.4; margin-top: .2rem; }
.form-hint strong { color: var(--royal); }
.micro { font-size: .7rem; color: var(--ink-soft); line-height: 1.4; margin-top: -.2rem; }
.micro a { text-decoration: underline; color: var(--royal); }

/* MARQUEE */
.marquee {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(0, 0, 0, .25);
  overflow: hidden;
  font-family: "DM Sans", sans-serif;
}
.marquee-track {
  display: flex;
  gap: 1.4rem;
  white-space: nowrap;
  padding: .9rem 0;
  animation: marquee 50s linear infinite;
  color: rgba(255,255,255,.7);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .8rem;
  width: max-content;
}
.marquee-track span { display: inline-block; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   USP STRIP
   ============================================================= */
.usp {
  padding: 0; margin: -3.5rem auto 0;
  position: relative; z-index: 5;
  max-width: var(--container);
  padding: 0 1.5rem;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.usp-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.6rem 1.4rem;
  border-right: 1px solid var(--line);
  background: #fff;
  transition: background .2s;
}
.usp-item:last-child { border-right: none; }
.usp-item:hover { background: var(--paper); }
.usp-item > svg {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  color: var(--royal);
  padding: 8px;
  background: rgba(30, 93, 184, .08);
  border-radius: 12px;
}
.usp-item h3 { font-size: 1rem; margin-bottom: .25rem; }
.usp-item p { font-size: .87rem; color: var(--ink-soft); line-height: 1.5; }

/* =============================================================
   LEISTUNGEN
   ============================================================= */
.section-leistungen { background: var(--paper); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s;
}
.service-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient-brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--gradient-brand);
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 10px 22px rgba(30,93,184,.25);
  color: #fff;
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.service-card p { color: var(--ink-soft); margin-bottom: 1rem; font-size: .95rem; }
.service-card ul { display: flex; flex-direction: column; gap: .35rem; }
.service-card ul li {
  position: relative; padding-left: 1.4rem;
  font-size: .9rem; color: var(--ink-soft);
}
.service-card ul li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 3px;
  transform: rotate(45deg);
}

.leistungen-cta {
  margin-top: 2.5rem; padding: 2rem;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-radius: var(--radius-lg);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem; flex-wrap: wrap;
  color: #fff;
  position: relative; overflow: hidden;
}
.leistungen-cta::before {
  content: ""; position: absolute;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(250,205,25,.18) 0%, transparent 70%);
  right: -50px; top: -50px;
}
.leistungen-cta p { font-size: 1.1rem; font-weight: 500; max-width: 620px; }

/* =============================================================
   STATS
   ============================================================= */
.stats-section {
  background: var(--navy-800);
  color: #fff;
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 380px at 20% 30%, rgba(56,182,255,.16), transparent 60%),
    radial-gradient(500px 280px at 85% 80%, rgba(250,205,25,.10), transparent 60%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.stat { text-align: center; }
.stat .num, .stat .suffix {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--gold);
  line-height: 1;
  display: inline-block;
}
.stat p {
  margin-top: .6rem;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}

/* =============================================================
   FLOTTE
   ============================================================= */
.flotte-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.flotte-text .eyebrow { margin-bottom: 1.1rem; }
.flotte-text h2 { margin-bottom: 1rem; }
.flotte-text > p {
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
}
.check-list { margin-bottom: 1.6rem; display: flex; flex-direction: column; gap: .65rem; }
.check-list li {
  position: relative; padding-left: 2rem;
  color: var(--ink-soft);
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 20px; height: 20px;
  background: var(--gradient-brand);
  border-radius: 6px;
}
.check-list li::after {
  content: ""; position: absolute; left: 5px; top: 9px;
  width: 10px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.flotte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 180px 180px;
  gap: .8rem;
}
.flotte-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  background: var(--navy-700);
}
.flotte-card.big {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}
.flotte-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.flotte-card:hover img { transform: scale(1.08); }
.flotte-card figcaption {
  position: absolute; left: .7rem; right: .7rem; bottom: .7rem;
  width: fit-content; max-width: calc(100% - 1.4rem);
  background: rgba(8, 26, 52, .94);
  color: #fff;
  padding: .4rem .8rem;
  font-size: .82rem; font-weight: 700;
  line-height: 1.25;
  border-radius: 12px;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}

/* =============================================================
   ABOUT
   ============================================================= */
.section-about { background: var(--paper-2); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-image::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,37,71,.0) 50%, rgba(11,37,71,.25));
  z-index: 1;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.about-badge {
  position: absolute; left: 1.4rem; bottom: 1.4rem;
  background: rgba(255, 255, 255, .95);
  padding: 1rem 1.3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.about-badge strong {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  color: var(--navy-800);
  letter-spacing: -0.02em;
}
.about-badge span {
  color: var(--gold-deep);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-text .eyebrow { margin-bottom: 1.1rem; }
.about-text h2 { margin-bottom: 1.2rem; }
.about-text > p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.about-points h3 {
  font-size: 1rem;
  margin-bottom: .3rem;
  color: var(--royal);
}
.about-points p { font-size: .9rem; color: var(--ink-soft); }

/* =============================================================
   ROUTEN
   ============================================================= */
.section-routen {
  background: linear-gradient(180deg, var(--paper) 0%, #fff 100%);
}
.routen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 2.2rem;
}
.standort-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.standort-card.primary {
  background: linear-gradient(160deg, #fff 0%, rgba(56, 182, 255, .07) 100%);
  border-color: rgba(56,182,255,.25);
}
.standort-card.eu {
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--royal) 100%);
  color: #fff;
}
.standort-tag {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  padding: .35rem .8rem;
  background: var(--gold);
  color: var(--navy-800);
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.standort-card.eu .standort-tag {
  background: rgba(255,255,255,.18);
  color: #fff;
}
.standort-card h3 {
  font-size: 1.6rem;
  margin-bottom: .6rem;
}
.standort-card.eu h3 { color: #fff; }
.standort-card > p {
  margin-bottom: 1rem;
  color: var(--ink-soft);
}
.standort-card.eu > p { color: rgba(255,255,255,.85); }
.standort-card ul { display: flex; flex-direction: column; gap: .4rem; }
.standort-card ul li {
  position: relative; padding-left: 1.4rem;
  font-size: .92rem; color: var(--ink-soft);
}
.standort-card.eu ul li { color: rgba(255,255,255,.85); }
.standort-card ul li::before {
  content: "→"; position: absolute; left: 0;
  color: var(--gold-deep); font-weight: bold;
}
.standort-card.eu ul li::before { color: var(--gold); }

.routen-pills {
  display: flex; flex-wrap: wrap; gap: .55rem;
  justify-content: center;
}
.routen-pills span {
  background: #fff;
  border: 1px solid var(--line-strong);
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-soft);
  font-family: "DM Sans", sans-serif;
  transition: transform .2s, border-color .2s;
}
.routen-pills span:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  color: var(--navy-800);
}

/* =============================================================
   GALLERY
   ============================================================= */
.section-gallery { background: var(--paper); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: .8rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: block;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .3s;
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(.85); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,37,71,.4));
  opacity: 0; transition: opacity .25s;
}
.gallery-item:hover::after { opacity: 1; }

/* =============================================================
   BRANCHEN
   ============================================================= */
.section-branchen {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  color: #fff;
  position: relative; overflow: hidden;
}
.section-branchen::before {
  content: ""; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(56,182,255,.2) 0%, transparent 60%);
  top: -200px; left: -200px;
  filter: blur(40px);
}
.section-branchen::after {
  content: ""; position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(250,205,25,.15) 0%, transparent 60%);
  bottom: -150px; right: -100px;
  filter: blur(40px);
}
.branchen-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  position: relative;
}
.branche {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .25s, background .25s, border-color .25s;
}
.branche:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .09);
  border-color: rgba(250, 205, 25, .4);
}
.branche > svg {
  width: 40px; height: 40px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.branche h3 { color: #fff; font-size: 1.1rem; margin-bottom: .5rem; }
.branche p { color: rgba(255,255,255,.78); font-size: .92rem; }

/* =============================================================
   KONTAKT
   ============================================================= */
.section-kontakt { background: var(--paper); }
.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: flex-start;
}
.kontakt-text .eyebrow { margin-bottom: 1.1rem; }
.kontakt-text h2 { margin-bottom: 1rem; }
.kontakt-text > p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
}
.kontakt-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}
.kontakt-card {
  display: flex; gap: .9rem; align-items: center;
  background: #fff;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.kontakt-card:not(.static):hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.kontakt-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gradient-brand);
  display: grid; place-items: center;
  flex: 0 0 auto;
  color: #fff;
}
.kontakt-icon svg { width: 20px; height: 20px; }
.kontakt-card strong {
  display: block;
  font-family: "DM Sans", sans-serif;
  color: var(--navy-800);
  font-size: .98rem;
}
.kontakt-card span { font-size: .87rem; color: var(--ink-soft); }

.kontakt-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 1rem;
}
.kontakt-form h3 {
  margin-bottom: .4rem;
  display: flex; align-items: center; gap: .6rem;
}
.kontakt-form h3::before {
  content: ""; width: 4px; height: 22px;
  background: var(--gold);
  border-radius: 2px;
}
.kontakt-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.kontakt-form label { display: flex; flex-direction: column; gap: .35rem; }
.kontakt-form span {
  font-size: .82rem; font-weight: 600;
  color: var(--ink-soft);
  font-family: "DM Sans", sans-serif;
}
.kontakt-form input, .kontakt-form select, .kontakt-form textarea {
  padding: .8rem .95rem;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--paper);
  transition: border .15s, box-shadow .15s, background .15s;
  font-family: inherit;
}
.kontakt-form textarea { resize: vertical; min-height: 110px; }
.kontakt-form input:focus, .kontakt-form select:focus, .kontakt-form textarea:focus {
  outline: none;
  border-color: var(--royal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30, 93, 184, .15);
}
.kontakt-form .consent {
  flex-direction: row; align-items: flex-start; gap: .6rem;
}
.kontakt-form .consent input {
  margin-top: .15rem;
  width: 18px; height: 18px;
  accent-color: var(--royal);
}
.kontakt-form .consent span {
  font-size: .84rem; color: var(--ink-soft);
  font-weight: 400;
}
.kontakt-form .consent a {
  text-decoration: underline;
  color: var(--royal);
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand img { width: 110px; height: 110px; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,.6); max-width: 320px; font-size: .92rem; line-height: 1.6; }
.site-footer h4 {
  color: #fff;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul li {
  margin-bottom: .55rem;
  font-size: .92rem;
}
.site-footer ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom small { color: rgba(255,255,255,.5); font-size: .82rem; }

/* BACK TO TOP */
.back-top {
  position: fixed; right: 1.3rem; bottom: 1.3rem;
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--gradient-gold);
  color: var(--navy-800);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(250,205,25,.45);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 90;
}
.back-top svg { width: 22px; height: 22px; }
.back-top.visible {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.back-top:hover { transform: translateY(-3px); }

/* =============================================================
   REVEAL ANIMATIONS
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   LEGAL PAGES
   ============================================================= */
.legal-page {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--paper);
  min-height: 70vh;
}
.legal-inner {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-md);
}
.legal-inner h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}
.legal-inner h1::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 60px; height: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
}
.legal-inner h2 {
  font-size: 1.25rem;
  margin: 2.2rem 0 .8rem;
  color: var(--navy-800);
}
.legal-inner p, .legal-inner address, .legal-inner ul {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  font-size: .95rem;
  line-height: 1.7;
}
.legal-inner address { font-style: normal; }
.legal-inner ul { padding-left: 1.4rem; }
.legal-inner ul li {
  list-style: disc;
  margin-bottom: .35rem;
}
.legal-inner a { color: var(--royal); text-decoration: underline; }
.legal-inner strong { color: var(--navy-800); }
.legal-inner code {
  background: var(--paper-2);
  padding: .12rem .4rem;
  border-radius: 4px;
  font-size: .85rem;
}
.legal-back {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-bottom: 1.5rem;
  font-size: .9rem; font-weight: 600;
  color: var(--royal);
}
.legal-back:hover { color: var(--navy-800); }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1080px) {
  :root { --header-h: 88px; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-badges { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .flotte-inner { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .kontakt-inner { grid-template-columns: 1fr; }
  .routen-grid { grid-template-columns: 1fr; }
  .branchen-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-item { border-bottom: 1px solid var(--line); }
  .usp-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .usp-item:nth-child(even) { border-right: none; }
  .usp-item:nth-child(n+3) { border-bottom: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --header-h: 76px; }
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .brand img { width: 64px; height: 64px; }
  .hero { min-height: auto; }
  .hero-inner { padding-top: 1rem; }
  .hero-content .eyebrow {
    font-size: .65rem;
    letter-spacing: .08em;
    padding: .4rem .75rem;
    white-space: nowrap;
  }
  .hero-content h1 {
    font-size: 1.85rem;
    letter-spacing: -0.03em;
    margin: 1rem 0 1rem;
  }
  .hero-content .lead {
    font-size: .98rem;
    margin-bottom: 1.5rem;
  }
  .hero-cta { margin-bottom: 1.8rem; }
  .hero-cta .btn-lg { padding: .9rem 1.3rem; font-size: .94rem; }
  .hero-badges { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .hero-badges li { padding: .8rem .9rem; font-size: .8rem; }
  .hero-badges strong { font-size: 1.05rem; }
  .hero-card { padding: 1.4rem 1.2rem 1.2rem; }
  .usp { margin-top: -2.5rem; padding: 0 1rem; }
  .usp-grid { grid-template-columns: 1fr; }
  .usp-item,
  .usp-item:nth-child(odd),
  .usp-item:nth-child(even) {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 1.2rem 1.2rem;
  }
  .usp-item:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .flotte-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px 160px;
  }
  .flotte-card.big { grid-column: 1 / -1; grid-row: 1; }
  .about-points { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .branchen-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
  .kontakt-cards { grid-template-columns: 1fr; }
  .kontakt-form .row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .4rem; }
  .leistungen-cta {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 1.6rem 1.2rem;
    gap: 1.1rem;
  }
  .leistungen-cta p {
    font-size: .98rem;
    text-align: center;
    max-width: 100%;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-wrap: break-word;
  }
  .leistungen-cta .btn {
    white-space: normal;
    width: 100%;
    max-width: 320px;
    padding: .85rem 1rem;
    font-size: .92rem;
    line-height: 1.25;
  }
  .mobile-nav-inner a:not(.btn) { font-size: 1.25rem; padding: .9rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-bg-image { animation: none; }
  .marquee-track { animation: none; }
}
