/* ==========================================================================
   FIFEN LOGISTIK – Uelzen
   Premium One-Pager · statisch, ohne externe Abhängigkeiten
   ========================================================================== */

:root {
  --ink: #101828;
  --ink-2: #344256;
  --muted: #5b6b7f;
  --paper: #ffffff;
  --soft: #f4f6fa;
  --line: #e6eaf1;

  --dark: #0a1730;
  --dark-2: #0f2348;
  --dark-3: #1a3260;
  --dark-line: rgba(255, 255, 255, 0.08);

  --navy: #2c58ae;
  --navy-2: #3e71d6;
  --accent: #e02b3a;
  --accent-2: #ff5462;
  --accent-deep: #b81f2d;
  --grad: linear-gradient(120deg, #d42230 0%, #f4414f 100%);

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(13, 25, 48, 0.06);
  --shadow-md: 0 12px 34px rgba(13, 25, 48, 0.1);
  --shadow-lg: 0 24px 70px rgba(13, 25, 48, 0.18);
  --shadow-accent: 0 12px 34px rgba(212, 34, 48, 0.35);

  --font: "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  --header-h: 78px;
  --topbar-h: 42px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body.no-topbar { --topbar-h: 0px; }

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }

::selection { background: var(--accent); color: #fff; }

.container {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Grid-/Flex-Spalten dürfen unter ihre Inhaltsbreite schrumpfen (verhindert Overflow) */
.hero-inner > *, .split > *, .split-rev > *, .air-inner > *, .contact-grid > *,
.cards-grid > *, .footer-inner > *, .form-row > .form-field { min-width: 0; }
.container-narrow { width: min(860px, 100% - 2.5rem); }

.center { display: flex; justify-content: center; margin-top: 3rem; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 300;
  background: var(--accent); color: #fff; padding: 0.6rem 1.2rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Scroll progress ---------- */
.progress-bar {
  position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 200;
  background: transparent; pointer-events: none;
}
#progressFill {
  display: block; height: 100%; width: 0;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(255, 73, 86, 0.7);
}

/* ==========================================================================
   TOP-BANNER (LUFTFRACHT)
   ========================================================================== */
.topbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 149;
  height: var(--topbar-h);
  display: flex; align-items: center; justify-content: center; gap: 0.9rem;
  padding: 0 3rem 0 1rem;
  background: linear-gradient(100deg, #b81f2d 0%, #e02b3a 45%, #d42230 100%);
  color: #fff; overflow: hidden;
}
body.no-topbar .topbar { display: none; }
.topbar::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: tbShine 5.5s ease-in-out infinite;
}
@keyframes tbShine { 0%, 55% { transform: translateX(-120%); } 85%, 100% { transform: translateX(120%); } }

.tb-plane {
  position: absolute; left: -70px; top: 50%; width: 46px; height: auto;
  transform: translateY(-50%);
  animation: tbFly 11s linear infinite;
  pointer-events: none;
  opacity: 0.9;
}
@keyframes tbFly {
  0% { transform: translate(0, -50%); }
  100% { transform: translate(calc(100vw + 150px), -50%); }
}

.tb-text {
  font-size: 0.86rem; font-weight: 600; letter-spacing: 0.01em;
  display: inline-flex; align-items: center; gap: 0.55rem;
  white-space: nowrap; position: relative;
}
.tb-text strong {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.1rem 0.6rem; border-radius: 999px;
  font-weight: 900; font-size: 0.72rem; letter-spacing: 0.1em;
  animation: tbPulse 2.4s ease-in-out infinite;
}
@keyframes tbPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.07); } }
.tb-short { display: none; }

.tb-link {
  position: relative;
  font-size: 0.86rem; font-weight: 800; white-space: nowrap;
  text-decoration: underline; text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}
.tb-link:hover { opacity: 0.85; }
.tb-link span { display: inline-block; transition: transform 0.25s var(--ease); }
.tb-link:hover span { transform: translateX(4px); }

.tb-close {
  position: absolute; right: 0.55rem; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.16); color: #fff;
  font-size: 1.05rem; font-weight: 700; line-height: 1;
  transition: background 0.2s ease, transform 0.2s var(--ease);
}
.tb-close:hover { background: rgba(255, 255, 255, 0.32); transform: translateY(-50%) scale(1.08); }

@media (max-width: 640px) {
  .tb-long { display: none; }
  .tb-short { display: inline; }
  .topbar { gap: 0.6rem; }
  .tb-text { font-size: 0.78rem; }
  .tb-link { font-size: 0.78rem; }
}
@media (max-width: 460px) {
  .tb-link { display: none; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 150;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease, top 0.35s var(--ease);
}
.site-header.scrolled {
  top: 0;
  background: rgba(8, 19, 40, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(3, 8, 18, 0.35);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-mark {
  width: 74px; height: 50px; flex: 0 0 auto;
  background: #fff; border-radius: 12px; padding: 3px;
  box-shadow: 0 4px 14px rgba(3, 10, 28, 0.45);
  transition: transform 0.25s var(--ease);
}
.brand:hover .brand-mark { transform: translateY(-2px) scale(1.03); }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; border-radius: 9px; }
.brand-text {
  display: flex; flex-direction: column; line-height: 1.05;
  font-weight: 900; font-style: italic; letter-spacing: 0.03em; font-size: 1.18rem; color: #fff;
  white-space: nowrap;
}
.brand-text em { color: var(--accent-2); }
.brand-text small {
  font-weight: 600; font-style: italic; font-size: 0.58rem; letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55); margin-top: 3px;
}

.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.main-nav > a:not(.btn):not(.nav-phone) {
  color: rgba(255, 255, 255, 0.78); font-weight: 600; font-size: 0.95rem;
  position: relative; padding: 0.3rem 0; transition: color 0.25s ease;
}
.main-nav > a:not(.btn):not(.nav-phone)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--grad); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.main-nav > a:not(.btn):not(.nav-phone):hover { color: #fff; }
.main-nav > a:not(.btn):not(.nav-phone):hover::after,
.main-nav > a.active::after { transform: scaleX(1); }
.main-nav > a.active { color: #fff; }

.nav-phone {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: #fff; font-weight: 800; font-size: 0.98rem;
  padding: 0.45rem 0.9rem; border: 1.5px solid rgba(255, 255, 255, 0.22); border-radius: 999px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.nav-phone:hover { border-color: var(--accent); background: rgba(224, 43, 58, 0.12); transform: translateY(-1px); }
.nav-phone svg { color: var(--accent); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 10px; z-index: 160;
}
.nav-toggle span {
  width: 26px; height: 2.5px; background: #fff; border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-weight: 800; font-size: 0.98rem; letter-spacing: 0.01em;
  padding: 0.85rem 1.6rem; border-radius: 999px;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-accent); }
.btn-primary::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.35) 50%, transparent 80%);
  transform: translateX(-120%); transition: transform 0.6s var(--ease);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(212, 34, 48, 0.45); }
.btn-primary:hover::before { transform: translateX(120%); }
.btn-primary:active { transform: translateY(-1px); }

.btn-ghost {
  color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--accent); background: rgba(224, 43, 58, 0.14); transform: translateY(-3px); }
.btn-ghost svg { color: var(--accent); }

.btn-dark { background: var(--dark); color: #fff; box-shadow: 0 14px 34px rgba(6, 12, 24, 0.35); }
.btn-dark:hover { transform: translateY(-3px); background: #050f24; }

.btn-outline-dark { border: 2px solid rgba(255, 255, 255, 0.85); color: #fff; font-weight: 900; }
.btn-outline-dark:hover { background: #fff; color: var(--accent-deep); transform: translateY(-3px); }

.btn-nav { padding: 0.6rem 1.25rem; font-size: 0.92rem; }

.btn-arrow { display: inline-block; transition: transform 0.25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(5px); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  background: radial-gradient(120% 120% at 80% 0%, var(--dark-2) 0%, var(--dark) 55%);
  color: #fff; overflow: hidden;
  padding: calc(var(--header-h) + var(--topbar-h) + 4.5rem) 0 5.5rem;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5;
  animation: orbFloat 14s ease-in-out infinite alternate;
}
.orb-1 { width: 560px; height: 560px; top: -220px; right: -120px; background: radial-gradient(circle, rgba(224, 43, 58, 0.55), transparent 65%); }
.orb-2 { width: 460px; height: 460px; bottom: -200px; left: -140px; background: radial-gradient(circle, rgba(38, 99, 235, 0.4), transparent 65%); animation-delay: -5s; }
.orb-3 { width: 300px; height: 300px; top: 30%; left: 42%; background: radial-gradient(circle, rgba(255, 84, 98, 0.22), transparent 65%); animation-delay: -9s; }
@keyframes orbFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(40px, 34px, 0) scale(1.12); }
}

.hero-grid {
  position: absolute; inset: 0; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(75% 65% at 50% 40%, #000 30%, transparent 100%);
  mask-image: radial-gradient(75% 65% at 50% 40%, #000 30%, transparent 100%);
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: center;
}

/* Load-in Stagger */
[data-load] { opacity: 0; transform: translateY(28px); animation: loadUp 0.9s var(--ease) forwards; }
[data-load="1"] { animation-delay: 0.05s; }
[data-load="2"] { animation-delay: 0.16s; }
[data-load="3"] { animation-delay: 0.3s; }
[data-load="4"] { animation-delay: 0.45s; }
[data-load="5"] { animation-delay: 0.6s; }
@keyframes loadUp { to { opacity: 1; transform: translateY(0); } }

.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 999px;
  padding: 0.5rem 1.1rem; margin-bottom: 1.6rem;
  background: rgba(255, 255, 255, 0.04);
}
.pulse-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #3ddc7b; position: relative; flex: 0 0 auto;
}
.pulse-dot::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid rgba(61, 220, 123, 0.6); animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(0.6); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

.hero h1 {
  font-size: clamp(2.35rem, 5.2vw, 4.05rem);
  line-height: 1.06; font-weight: 900; letter-spacing: -0.025em;
  margin-bottom: 1.4rem;
}
.hero h1 .line { display: block; }

.grad-text {
  background: linear-gradient(120deg, #c1202e, #f4414f, #c1202e);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: gradShift 6s linear infinite;
}
.hero .grad-text,
.section-dark .grad-text {
  background-image: linear-gradient(120deg, #ff4956, #ff97a0, #ff4956);
}
@keyframes gradShift { to { background-position: 200% center; } }

.hero-sub {
  font-size: 1.14rem; color: rgba(255, 255, 255, 0.72);
  max-width: 34rem; margin-bottom: 2.2rem;
}
.hero-sub strong { color: #fff; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.2rem; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.hero-trust li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.93rem; font-weight: 600; color: rgba(255, 255, 255, 0.8);
}
.check {
  display: inline-grid; place-items: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(61, 220, 123, 0.16); color: #3ddc7b;
  font-size: 0.7rem; font-weight: 900;
}

/* Hero Visual */
.hero-visual { position: relative; }
.truck-scene { position: relative; animation: sceneFloat 6s ease-in-out infinite; will-change: transform; }
@keyframes sceneFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.logo-card {
  position: relative;
  border-radius: 30px;
  border: 3px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--navy) 0%, #d42230 38%, #ff8791 55%, var(--navy-2) 100%) border-box;
  padding: clamp(1rem, 2.6vw, 2.1rem);
  box-shadow: 0 34px 80px rgba(3, 10, 28, 0.6);
  animation: cardGlow 5s ease-in-out infinite;
}
.logo-card img { width: 100%; height: auto; border-radius: 16px; }
@keyframes cardGlow {
  0%, 100% { box-shadow: 0 34px 80px rgba(3, 10, 28, 0.6), 0 0 44px rgba(212, 34, 48, 0.16); }
  50%      { box-shadow: 0 34px 80px rgba(3, 10, 28, 0.6), 0 0 64px rgba(62, 113, 214, 0.28); }
}

.float-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(16, 28, 48, 0.85);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff; font-weight: 700; font-size: 0.88rem;
  padding: 0.55rem 1rem; border-radius: 999px;
  box-shadow: 0 14px 34px rgba(3, 8, 18, 0.45);
  animation: chipFloat 5s ease-in-out infinite;
}
.chip-1 { top: 2%; left: -4%; animation-delay: -1s; }
.chip-2 { top: 34%; right: -6%; animation-delay: -2.5s; }
.chip-3 { bottom: 4%; left: 6%; animation-delay: -4s; }
@keyframes chipFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.scroll-hint {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 3;
  opacity: 0.65; transition: opacity 0.25s ease;
}
.scroll-hint:hover { opacity: 1; }
.mouse {
  display: block; width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.6); border-radius: 14px; position: relative;
}
.mouse-wheel {
  position: absolute; left: 50%; top: 7px; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 3px; background: var(--accent);
  animation: wheelScroll 1.8s ease-in-out infinite;
}
@keyframes wheelScroll {
  0% { transform: translate(-50%, 0); opacity: 1; }
  70% { transform: translate(-50%, 14px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  background: var(--grad);
  overflow: hidden; padding: 0.95rem 0;
  transform: rotate(-1.2deg) scale(1.02); transform-origin: center;
  box-shadow: 0 10px 40px rgba(212, 34, 48, 0.35);
  position: relative; z-index: 5; margin-top: -1.4rem;
}
.marquee-track {
  display: flex; align-items: center; gap: 2.2rem; width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-weight: 900; font-size: 1.02rem; letter-spacing: 0.08em; text-transform: uppercase; color: #fff;
  white-space: nowrap;
}
.marquee-track i { font-style: normal; color: rgba(255, 255, 255, 0.55); font-size: 0.6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   SECTIONS – Grundlagen
   ========================================================================== */
.section { padding: 6.5rem 0; position: relative; }
.section-soft { background: var(--soft); }
.section-dark { background: radial-gradient(110% 130% at 15% 0%, var(--dark-2) 0%, var(--dark) 60%); color: #fff; }

.section-head { max-width: 46rem; margin-bottom: 3.6rem; }
.section-head h2, .cta-banner h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.12; font-weight: 900; letter-spacing: -0.02em;
}
.section-sub { margin-top: 1.1rem; color: var(--muted); font-size: 1.08rem; }
.sub-light { color: rgba(255, 255, 255, 0.68); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-deep); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 2px; background: var(--grad); }
.eyebrow-light { color: var(--accent-2); }

/* Scroll-Reveal */
[data-reveal] {
  opacity: 0; transform: translateY(34px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: calc(var(--rd, 0) * 90ms);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }

/* ==========================================================================
   LEISTUNGEN – Cards
   ========================================================================== */
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.1rem 1.9rem 1.7rem;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
  display: flex; flex-direction: column;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(224, 43, 58, 0.12), rgba(255, 84, 98, 0.12));
  color: var(--accent-deep); margin-bottom: 1.3rem;
  transition: transform 0.35s var(--ease), background 0.35s ease, color 0.35s ease;
}
.card-icon svg { width: 28px; height: 28px; }
.card:hover .card-icon { background: var(--grad); color: #fff; transform: scale(1.08) rotate(-4deg); }

.card h3 { font-size: 1.22rem; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 0.55rem; }
.card p { color: var(--muted); font-size: 0.98rem; flex: 1; }

.card-link {
  margin-top: 1.3rem; font-weight: 800; font-size: 0.94rem; color: var(--accent-deep);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.card-link span { transition: transform 0.25s var(--ease); }
.card-link:hover span { transform: translateX(5px); }

/* ==========================================================================
   VORTEILE – Split & Stats
   ========================================================================== */
.split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 4rem; align-items: center; }
.split-rev { grid-template-columns: 1fr 0.9fr; }

.feature-list { margin-top: 2.4rem; display: grid; gap: 1.5rem; }
.feature-list li { display: flex; gap: 1.1rem; align-items: flex-start; }
.feature-ico {
  flex: 0 0 auto; width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(224, 43, 58, 0.12); color: var(--accent);
  border: 1px solid rgba(224, 43, 58, 0.25);
}
.feature-ico svg { width: 24px; height: 24px; }
.feature-list h3 { font-size: 1.08rem; font-weight: 800; margin-bottom: 0.15rem; }
.feature-list p { color: rgba(255, 255, 255, 0.62); font-size: 0.95rem; }

.split-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.stat-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--dark-line); border-radius: var(--radius);
  padding: 1.7rem 1.4rem;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: transform 0.3s var(--ease), border-color 0.3s ease, background 0.3s ease;
}
.stat-card:hover { transform: translateY(-5px); border-color: rgba(224, 43, 58, 0.5); background: rgba(224, 43, 58, 0.07); }
.stat-num {
  display: block; font-size: 2.6rem; font-weight: 900; letter-spacing: -0.03em; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin-bottom: 0.5rem;
}
.stat-label { color: rgba(255, 255, 255, 0.66); font-size: 0.92rem; font-weight: 600; line-height: 1.4; display: block; }

.stat-cta { display: flex; flex-direction: column; justify-content: center; gap: 0.9rem; align-items: flex-start; }
.stat-cta p { color: rgba(255, 255, 255, 0.8); font-weight: 700; font-size: 1.02rem; }

/* ==========================================================================
   ABLAUF – Steps
   ========================================================================== */
.steps {
  counter-reset: step;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem;
  position: relative;
}
.steps::before {
  content: ""; position: absolute; top: 34px; left: 6%; right: 6%; height: 2.5px;
  background: linear-gradient(90deg, transparent, var(--line) 12%, var(--line) 88%, transparent);
  z-index: 0;
}
.step {
  position: relative; z-index: 1;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.7rem; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.step:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.step-num {
  display: inline-grid; place-items: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--grad); color: #fff;
  font-size: 1.5rem; font-weight: 900;
  margin: -3.9rem auto 1.1rem;
  box-shadow: var(--shadow-accent), 0 0 0 8px #fff;
  transition: transform 0.35s var(--ease);
}
.step:hover .step-num { transform: scale(1.12) rotate(6deg); }
.step h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.45rem; }
.step p { color: var(--muted); font-size: 0.93rem; }

/* ==========================================================================
   EINSATZGEBIET
   ========================================================================== */
.city-chips { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.9rem; }
.city-chips li {
  padding: 0.55rem 1.15rem; border-radius: 999px;
  background: #fff; border: 1.5px solid var(--line);
  font-weight: 700; font-size: 0.93rem; color: var(--ink-2);
  transition: transform 0.25s var(--ease), border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: default;
}
.city-chips li:hover {
  transform: translateY(-3px); border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(212, 34, 48, 0.18);
  background: linear-gradient(135deg, rgba(224, 43, 58, 0.08), rgba(255, 84, 98, 0.08));
  color: var(--accent-deep);
}
.chip-more { background: var(--dark) !important; color: #fff !important; border-color: var(--dark) !important; }

.route-visual { position: relative; }
.route-visual svg { width: 100%; height: auto; }
.route-line { animation: routeDash 1.6s linear infinite; }
@keyframes routeDash { to { stroke-dashoffset: -44; } }
.pin-pulse { animation: pinPulse 2s ease-out infinite; transform-origin: 70px 330px; }
@keyframes pinPulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(3.4); opacity: 0; } }
.pin-b { animation: pinBob 2.6s ease-in-out infinite; }
@keyframes pinBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ==========================================================================
   LUFTFRACHT (ANKÜNDIGUNG)
   ========================================================================== */
.air-section { overflow: hidden; }
.air-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: center;
}
.air-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: #ff97a0;
  border: 1px solid rgba(255, 84, 98, 0.35); border-radius: 999px;
  background: rgba(224, 43, 58, 0.08);
  padding: 0.5rem 1.1rem; margin-bottom: 1.3rem;
}
.air-chips { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1.7rem 0 1.2rem; }
.air-chips li {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 1.15rem; border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-line);
  color: rgba(255, 255, 255, 0.85); font-weight: 700; font-size: 0.95rem;
  transition: transform 0.25s var(--ease), border-color 0.25s ease;
}
.air-chips li:hover { transform: translateY(-3px); border-color: rgba(255, 84, 98, 0.5); }
.air-chips strong {
  color: var(--accent-2); font-weight: 900; letter-spacing: 0.06em;
  border-right: 1px solid rgba(255, 255, 255, 0.15); padding-right: 0.6rem;
}
.air-note { color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; margin-bottom: 1.7rem; }

.air-visual svg { width: 100%; height: auto; }
.plane-group { animation: planeFloat 5s ease-in-out infinite; }
@keyframes planeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-1deg); }
}
.contrail line { stroke-dasharray: 80; animation: contrailMove 1.4s linear infinite; }
.contrail line:nth-child(2) { animation-delay: -0.7s; }
@keyframes contrailMove {
  0% { stroke-dashoffset: 80; opacity: 0; }
  30% { opacity: 0.55; }
  100% { stroke-dashoffset: -80; opacity: 0; }
}
.cloud { animation: cloudDrift 18s ease-in-out infinite alternate; }
.cloud-2 { animation-delay: -9s; }
@keyframes cloudDrift {
  from { transform: translateX(-24px); }
  to { transform: translateX(24px); }
}

@media (max-width: 1080px) {
  .air-inner { grid-template-columns: 1fr; gap: 2.6rem; }
  .air-visual { max-width: 480px; margin-inline: auto; width: 100%; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: grid; gap: 0.9rem; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item.open { border-color: rgba(224, 43, 58, 0.45); box-shadow: var(--shadow-md); }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  text-align: left; padding: 1.25rem 1.5rem;
  font-weight: 800; font-size: 1.04rem; color: var(--ink);
  transition: color 0.25s ease;
}
.faq-q:hover { color: var(--accent-deep); }

.faq-icon { position: relative; flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: rgba(224, 43, 58, 0.12); transition: background 0.3s ease, transform 0.4s var(--ease); }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--accent-deep);
  transform: translate(-50%, -50%); border-radius: 2px; transition: transform 0.4s var(--ease), background 0.3s ease;
}
.faq-icon::before { width: 12px; height: 2.5px; }
.faq-icon::after { width: 2.5px; height: 12px; }
.faq-item.open .faq-icon { background: var(--grad); transform: rotate(180deg); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: #fff; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 0 1.5rem 1.4rem; color: var(--muted); font-size: 0.99rem; }
.faq-a-inner a { color: var(--accent-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: var(--grad);
  padding: 4.2rem 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1.5px, transparent 1.5px);
  background-size: 26px 26px; opacity: 0.5;
}
.cta-banner-inner {
  position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.4rem; }
.cta-banner p { color: rgba(255, 255, 255, 0.88); font-weight: 600; font-size: 1.1rem; }
.cta-banner-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ==========================================================================
   KONTAKT
   ========================================================================== */
.section-contact { padding-bottom: 7rem; }
.contact-grid {
  display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 2rem; align-items: start;
}

.form-card {
  background: #fff; color: var(--ink);
  border-radius: var(--radius-lg); padding: 2.4rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.form-field label { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--ink-2); }
.req { color: var(--accent-deep); }

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 12px;
  padding: 0.78rem 1rem; background: var(--soft);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  width: 100%;
}
.form-field input:hover, .form-field select:hover, .form-field textarea:hover { border-color: #cdd6e4; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 4px rgba(224, 43, 58, 0.15);
}
.form-field textarea { resize: vertical; min-height: 110px; }

.input-suffix { position: relative; display: block; }
.input-suffix input { padding-right: 2.6rem; }
.input-suffix .suffix {
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  font-weight: 800; color: var(--muted); pointer-events: none;
}
.input-suffix input:focus ~ .suffix { color: var(--accent-deep); }
.form-field input.invalid, .form-field select.invalid { border-color: #e5484d; box-shadow: 0 0 0 4px rgba(229, 72, 77, 0.12); }

.honey { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.consent { display: flex; gap: 0.7rem; align-items: flex-start; margin: 0.4rem 0 1.4rem; cursor: pointer; }
.consent input {
  margin-top: 0.28rem; width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--accent-deep); cursor: pointer;
}
.consent span { font-size: 0.86rem; color: var(--muted); }
.consent a { color: var(--accent-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

.form-note { text-align: center; margin-top: 0.9rem; font-size: 0.85rem; color: var(--muted); }

.form-status { margin-top: 1rem; font-weight: 700; font-size: 0.95rem; text-align: center; }
.form-status.error { color: #e5484d; }
.form-status.sending { color: var(--muted); }

/* Success state */
.form-success { text-align: center; padding: 2.5rem 1rem; }
.form-success h3 { font-size: 1.5rem; font-weight: 900; margin: 1.2rem 0 0.6rem; }
.form-success p { color: var(--muted); max-width: 26rem; margin-inline: auto; }
.success-alt { margin-top: 1rem; font-weight: 600; }
.success-alt a { color: var(--accent-deep); font-weight: 800; }
.success-ico svg { width: 84px; height: 84px; margin-inline: auto; }
.s-circle { stroke: #2fbf71; stroke-width: 2.5; stroke-dasharray: 166; stroke-dashoffset: 166; animation: strokeDraw 0.7s var(--ease) forwards; }
.s-check { stroke: #2fbf71; stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 48; stroke-dashoffset: 48; animation: strokeDraw 0.5s 0.5s var(--ease) forwards; }
@keyframes strokeDraw { to { stroke-dashoffset: 0; } }

/* Kontakt-Aside */
.contact-aside { display: grid; gap: 1.4rem; }
.info-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--dark-line); border-radius: var(--radius-lg);
  padding: 1.8rem;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.info-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 1.2rem; color: #fff; }

.info-line {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.8rem 0.9rem; margin: 0 -0.9rem; border-radius: 14px;
  transition: background 0.25s ease, transform 0.25s var(--ease);
}
.info-line:hover { background: rgba(255, 255, 255, 0.06); transform: translateX(4px); }
.info-ico {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(224, 43, 58, 0.14); color: var(--accent);
  border: 1px solid rgba(224, 43, 58, 0.28);
}
.info-ico-wa { background: rgba(37, 211, 102, 0.13); color: #3ddc7b; border-color: rgba(37, 211, 102, 0.3); }
.info-line span:last-child { display: flex; flex-direction: column; font-weight: 800; color: #fff; font-size: 1.02rem; line-height: 1.3; min-width: 0; overflow-wrap: anywhere; }
.info-line small { font-weight: 600; font-size: 0.76rem; color: rgba(255, 255, 255, 0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.info-line-big span:last-child { font-size: 1.18rem; }

.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: 0.5rem 0; font-size: 0.95rem; color: rgba(255, 255, 255, 0.75); border-bottom: 1px dashed rgba(255, 255, 255, 0.1); }
.hours tr:last-child td { border-bottom: 0; }
.hours td:last-child { text-align: right; font-weight: 700; color: #fff; }
.hours tr.today td { color: var(--accent-2); font-weight: 800; }
.hours tr.today td:first-child::after { content: " · heute"; font-size: 0.75em; text-transform: uppercase; letter-spacing: 0.06em; }
.hours-note { margin-top: 1rem; font-size: 0.85rem; color: rgba(255, 255, 255, 0.55); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: #050f24; color: rgba(255, 255, 255, 0.65); padding: 3.6rem 0 0; }
.footer-slogan { font-style: italic; font-weight: 700; color: var(--accent-2); }
.footer-inner {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.4rem; border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-brand .brand-text { font-size: 1.3rem; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; }
.footer-nav, .footer-legal { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a, .footer-legal a { font-size: 0.95rem; font-weight: 600; transition: color 0.25s ease, transform 0.25s ease; width: fit-content; }
.footer-nav a:hover, .footer-legal a:hover { color: var(--accent); transform: translateX(3px); }
.footer-bottom { padding: 1.4rem 0; font-size: 0.85rem; color: rgba(255, 255, 255, 0.4); }

/* ==========================================================================
   FLOATING UI
   ========================================================================== */
.to-top {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 120;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--dark); color: #fff; font-size: 1.2rem; font-weight: 900;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(16px) scale(0.8); pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.25s ease;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--accent-deep); }

.mobile-cta {
  position: fixed; inset: auto 0 0 0; z-index: 130;
  display: none; gap: 1px;
  background: rgba(5, 15, 30, 0.92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 -8px 30px rgba(3, 8, 18, 0.45);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.m-cta {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.95rem 0.5rem; font-weight: 800; font-size: 0.92rem; color: #fff;
}
.m-call { background: rgba(255, 255, 255, 0.06); }
.m-wa { background: rgba(37, 211, 102, 0.16); color: #3ddc7b; }
.m-offer { background: var(--grad); color: #fff; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1180px) {
  .brand-text small { display: none; }
}

@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero { padding-top: calc(var(--header-h) + var(--topbar-h) + 3rem); min-height: 0; }
  .hero-visual { max-width: 560px; margin-inline: auto; width: 100%; }
  .split, .split-rev { grid-template-columns: 1fr; gap: 3rem; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 3.4rem; }
  .steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .route-visual { max-width: 460px; margin-inline: auto; }
}

@media (max-width: 860px) {
  :root { --header-h: 68px; }

  .main-nav {
    position: fixed; inset: 0; z-index: 150;
    flex-direction: column; justify-content: center; gap: 1.6rem;
    background: rgba(7, 17, 36, 0.97);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity 0.35s ease, transform 0.35s var(--ease), visibility 0.35s;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav > a:not(.btn):not(.nav-phone) { font-size: 1.35rem; }
  .nav-toggle { display: flex; }

  .scroll-hint { display: none; }
  .section { padding: 4.6rem 0; }
  .section-head { margin-bottom: 2.6rem; }

  .form-card { padding: 1.7rem 1.3rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-inner { grid-template-columns: 1fr; gap: 1.8rem; }

  .mobile-cta { display: flex; }
  body { padding-bottom: 56px; }
  .to-top { bottom: 4.6rem; }

  .float-chip { font-size: 0.78rem; padding: 0.45rem 0.8rem; }
  .chip-1 { left: 0; } .chip-2 { right: 0; } .chip-3 { left: 2%; }
}

@media (max-width: 480px) {
  .brand-mark { width: 60px; height: 41px; border-radius: 10px; }
  .brand-text { font-size: 1.02rem; }
}

@media (max-width: 360px) {
  .brand-mark { width: 50px; height: 34px; border-radius: 8px; }
  .brand-text { font-size: 0.9rem; }
  .header-inner { gap: 0.4rem; }
}

@media (max-width: 560px) {
  .cards-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .split-stats { grid-template-columns: 1fr; gap: 0.9rem; }
  .stat-num { font-size: 2.1rem; }
  .hero-cta .btn { width: 100%; }
  .cta-banner-actions { width: 100%; }
  .cta-banner-actions .btn { flex: 1; }
  .hours td { font-size: 0.88rem; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-load], [data-reveal] { opacity: 1 !important; transform: none !important; }
}
