/* =====================================================================
   Erdemtrans GmbH – Modern Stylesheet
   Mavi/Beyaz kurumsal tema · tamamen yerel varlıklar (GDPR uyumlu)
   ===================================================================== */

/* ---------- Fonts (lokal) ---------- */
@font-face {
  font-family: "Aileron";
  src: url("../fonts/Aileron-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Aileron";
  src: url("../fonts/Aileron-Heavy.otf") format("opentype");
  font-weight: 800;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  --c-primary: #0b3b75;
  --c-primary-dark: #07294f;
  --c-accent: #2f7fce;
  --c-accent-2: #3476ba;
  --c-ink: #15212e;
  --c-muted: #5d6b7a;
  --c-bg: #ffffff;
  --c-bg-alt: #f3f7fc;
  --c-line: #e3eaf2;
  --c-white: #ffffff;
  --shadow-sm: 0 4px 14px rgba(11, 59, 117, 0.08);
  --shadow-md: 0 14px 40px rgba(11, 59, 117, 0.14);
  --shadow-lg: 0 24px 60px rgba(7, 41, 79, 0.22);
  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1200px;
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --sans: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --head: "Aileron", "Segoe UI", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--c-accent); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--c-primary); }
ul { margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--head); font-weight: 800; line-height: 1.15; color: var(--c-ink); margin: 0 0 .5em; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--head); font-weight: 800; font-size: 15px;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: all .25s var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--c-accent); color: #fff; box-shadow: 0 10px 24px rgba(47,127,206,.35); }
.btn-primary:hover { background: var(--c-primary); color: #fff; transform: translateY(-3px); box-shadow: 0 16px 32px rgba(11,59,117,.4); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn-ghost:hover { background: #fff; color: var(--c-primary); transform: translateY(-3px); }
.btn-dark { background: var(--c-primary); color: #fff; }
.btn-dark:hover { background: var(--c-primary-dark); color: #fff; transform: translateY(-3px); }
.btn-sm { padding: 11px 22px; font-size: 13px; }

/* Marken-Pfeilform (aus dem Logo): rechts spitz, links eingekerbt */
.btn-primary, .btn-dark {
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 17px) 0, 100% 50%, calc(100% - 17px) 100%, 0 100%, 15px 50%);
  padding-left: 38px; padding-right: 42px;
  box-shadow: none;
}
.btn-sm.btn-primary, .btn-sm.btn-dark {
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 50%, calc(100% - 13px) 100%, 0 100%, 11px 50%);
  padding-left: 30px; padding-right: 32px;
}
.btn-primary { filter: drop-shadow(0 8px 16px rgba(47,127,206,.32)); }
.btn-primary:hover { box-shadow: none; filter: drop-shadow(0 12px 22px rgba(11,59,117,.4)); }

/* Telefon-Buttons behalten die normale Pillenform (keine Pfeilform) */
.btn[href^="tel:"] {
  clip-path: none; border-radius: 999px;
  padding-left: 30px; padding-right: 30px;
  filter: none;
}

/* ---------- Section helpers ---------- */
.section { padding: 96px 0; }
.section--alt { background: var(--c-bg-alt); }
.section--dark { background: var(--c-primary-dark); color: #fff; }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--head); font-weight: 800; font-size: 13px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--c-accent);
  margin-bottom: 14px; position: relative; padding-bottom: 8px;
}
.eyebrow::after { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 42px; height: 3px; border-radius: 3px; background: var(--c-accent); }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); }
.section-head p { color: var(--c-muted); font-size: 18px; margin-top: 10px; }
.section--dark .section-head h2, .section--dark .eyebrow { color: #fff; }
.section--dark .section-head p { color: rgba(255,255,255,.8); }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--c-line);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.nav-logo img { height: 28px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-menu a {
  font-family: var(--head); font-weight: 800; font-size: 14px; letter-spacing: .06em;
  font-style: italic;
  text-transform: uppercase; color: var(--c-ink); padding: 10px 16px 10px 12px; border-radius: 8px;
  position: relative; transition: color .2s var(--ease);
}
.nav-menu li { position: relative; }
.nav-menu li:not(.mobile-cta)::before {
  content: ""; position: absolute; left: 4px; top: 3px; bottom: 6px; width: 3px;
  background: var(--c-accent); pointer-events: none;
  transform: skewX(-12deg) scaleY(0); transform-origin: top;
  transition: transform .25s var(--ease);
}
.nav-menu li:not(.mobile-cta):hover::before { transform: skewX(-12deg) scaleY(1); }
.nav-menu a::after { content: ""; position: absolute; left: 2px; right: 21px; top: 6px; height: 3px; background: var(--c-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.nav-menu a::before {
  content: ""; position: absolute; right: 16px; top: 4px; width: 0; height: 0;
  border-top: 3px solid transparent; border-bottom: 3px solid transparent;
  border-left: 5px solid var(--c-accent);
  opacity: 0; transform: translateX(-5px);
  transition: opacity .2s var(--ease) .14s, transform .2s var(--ease) .14s;
}
.nav-menu a:hover { color: var(--c-primary); }
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-menu a:hover::before { opacity: 1; transform: translateX(0); }
.nav-menu .mobile-cta { display: none; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 46px; height: 46px; border-radius: 10px; }
.nav-toggle span { display: block; width: 26px; height: 3px; margin: 5px auto; background: var(--c-primary); border-radius: 3px; transition: all .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  height: clamp(560px, 88vh, 820px);
  min-height: 520px;
  overflow: hidden;
  background: var(--c-primary-dark);
  isolation: isolate;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  background-size: cover; background-position: center;
  transition: opacity 1.1s var(--ease), transform 7s linear;
  transform: scale(1.08);
}
.hero-slide.active { opacity: 1; visibility: visible; transform: scale(1); z-index: 1; }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(7,41,79,.92) 0%, rgba(7,41,79,.70) 42%, rgba(7,41,79,.25) 100%); }
.hero-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(105deg, rgba(7,41,79,.92) 0%, rgba(7,41,79,.70) 42%, rgba(7,41,79,.25) 100%); }
.hero-inner { position: relative; z-index: 3; height: 100%; display: flex; align-items: center; }
.hero-content { max-width: 680px; color: #fff; }
.hero-content .eyebrow { color: #6fb2ff; }
.hero-content .eyebrow::after { display: none; }
.hero-content h1 { color: #fff; font-size: clamp(34px, 6vw, 64px); line-height: 1.05; margin-bottom: 20px; }
.hero-content p { font-size: clamp(17px, 2vw, 21px); color: rgba(255,255,255,.9); margin-bottom: 32px; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-dots { position: absolute; z-index: 4; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; }
.hero-dots button { width: 40px; height: 4px; border-radius: 4px; border: 0; background: rgba(255,255,255,.4); cursor: pointer; transition: background .25s var(--ease); }
.hero-dots button.active { background: var(--c-accent); }
.hero-arrow { position: absolute; z-index: 4; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; border: 0; background: rgba(255,255,255,.12); color: #fff; font-size: 18px; cursor: pointer; display: grid; place-items: center; transition: background .25s var(--ease); }
.hero-arrow:hover { background: var(--c-accent); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

/* Hero badge strip */
.hero-badges { background: var(--c-primary); }
.hero-badges .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero-badge { display: flex; align-items: center; gap: 16px; color: #fff; padding: 26px 20px; border-right: 1px solid rgba(255,255,255,.12); }
.hero-badge:last-child { border-right: 0; }
.hero-badge i { font-size: 30px; color: #7fb6f0; flex-shrink: 0; }
.hero-badge strong { display: block; font-family: var(--head); font-size: 17px; }
.hero-badge span { font-size: 14px; color: rgba(255,255,255,.7); }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about-media .exp-badge {
  position: absolute; bottom: -26px; right: -10px; background: var(--c-accent); color: #fff;
  padding: 22px 28px; border-radius: var(--radius); box-shadow: var(--shadow-md); text-align: center;
}
.about-media .exp-badge strong { font-family: var(--head); font-size: 40px; display: block; line-height: 1; }
.about-media .exp-badge span { font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }
.about-text h2 { font-size: clamp(26px, 3.6vw, 38px); }
.about-text .lead { font-size: 19px; color: var(--c-ink); font-weight: 600; }
.about-text p { color: var(--c-muted); }
.about-list { list-style: none; margin: 22px 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.about-list li { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; color: var(--c-ink); }
.about-list i { color: var(--c-accent); margin-top: 4px; }

/* =====================================================================
   STATS
   ===================================================================== */
/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial {
  position: relative; margin: 0; padding: 34px 30px 30px; border-radius: 16px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  display: flex; flex-direction: column; gap: 16px; overflow: hidden;
}
.testimonial .t-quote { position: absolute; top: 18px; right: 22px; font-size: 42px; color: rgba(255,255,255,.10); }
.testimonial .t-stars { color: #f5b301; font-size: 14px; letter-spacing: 2px; }
.testimonial blockquote { margin: 0; font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.88); }
.testimonial figcaption { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 8px; }
.t-avatar {
  width: 48px; height: 48px; flex: 0 0 48px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--head); font-weight: 800;
  font-style: italic; color: #fff; background: var(--c-accent);
}
.t-person { display: flex; flex-direction: column; line-height: 1.3; }
.t-person strong { color: #fff; font-family: var(--head); }
.t-person span { font-size: 13px; color: rgba(255,255,255,.65); }

/* =====================================================================
   SERVICES
   ===================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.service-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 34px 28px; transition: all .3s var(--ease); position: relative; overflow: hidden;
}
.service-card::before { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%; background: linear-gradient(90deg, var(--c-accent), var(--c-accent-2)); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(135deg, #eaf3fd, #d8e9fb); color: var(--c-primary); display: grid; place-items: center; font-size: 28px; margin-bottom: 20px; transition: all .3s var(--ease); }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--c-accent), var(--c-primary)); color: #fff; }
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { color: var(--c-muted); font-size: 15.5px; margin: 0; }

/* =====================================================================
   FLEET GALLERY
   ===================================================================== */
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; grid-auto-flow: dense; }
.fleet-item { position: relative; overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; background: #0a213d; }
.fleet-item.wide { grid-column: span 2; }
.fleet-item.tall { grid-row: span 2; }
.fleet-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.fleet-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,41,79,.55), transparent 55%); opacity: 0; transition: opacity .3s var(--ease); }
.fleet-item .zoom { position: absolute; right: 14px; bottom: 14px; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.18); color: #fff; display: grid; place-items: center; backdrop-filter: blur(4px); opacity: 0; transform: scale(.7); transition: all .3s var(--ease); z-index: 2; }
.fleet-item:hover img { transform: scale(1.1); }
.fleet-item:hover::after { opacity: 1; }
.fleet-item:hover .zoom { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(6,22,43,.94); display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox-close, .lightbox-nav { position: absolute; background: rgba(255,255,255,.12); border: 0; color: #fff; cursor: pointer; border-radius: 50%; display: grid; place-items: center; transition: background .2s var(--ease); }
.lightbox-close { top: 26px; right: 26px; width: 50px; height: 50px; font-size: 22px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 56px; height: 56px; font-size: 22px; }
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }
.lightbox-close:hover, .lightbox-nav:hover { background: var(--c-accent); }

/* =====================================================================
   WHY US
   ===================================================================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-card { text-align: center; padding: 20px; }
.why-card .why-icon { width: 84px; height: 84px; margin: 0 auto 22px; border-radius: 50%; display: grid; place-items: center; font-size: 34px; color: #fff; background: linear-gradient(135deg, var(--c-accent), var(--c-primary)); box-shadow: 0 14px 30px rgba(47,127,206,.35); }
.why-card h3 { font-size: 21px; }
.why-card p { color: var(--c-muted); }
.section--dark .why-card h3 { color: #fff; }
.section--dark .why-card p { color: rgba(255,255,255,.8); }

/* =====================================================================
   CTA banner
   ===================================================================== */
.cta-band { position: relative; background: linear-gradient(105deg, var(--c-primary-dark), var(--c-primary)); color: #fff; border-radius: 22px; padding: 56px 60px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; box-shadow: var(--shadow-md); overflow: hidden; }
.cta-band::before { content: "\f0d1"; font-family: "FontAwesome"; position: absolute; right: -10px; bottom: -40px; font-size: 220px; color: rgba(255,255,255,.06); }
.cta-band h2 { color: #fff; font-size: clamp(24px, 3.4vw, 36px); margin: 0; position: relative; }
.cta-band p { color: rgba(255,255,255,.82); margin: 8px 0 0; position: relative; }
.cta-band .cta-actions { display: flex; gap: 16px; flex-wrap: wrap; position: relative; }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: stretch; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-content: start; }
.contact-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 28px 24px; transition: all .3s var(--ease); }
.contact-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.contact-card .ci { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, #eaf3fd, #d8e9fb); color: var(--c-primary); display: grid; place-items: center; font-size: 22px; margin-bottom: 16px; }
.contact-card h4 { font-size: 16px; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.contact-card p { margin: 0; color: var(--c-muted); font-size: 15.5px; }
.contact-card a { font-weight: 600; }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); min-height: 400px; height: 100%; position: relative; border: 1px solid var(--c-line); background: #0a213d; }
.contact-map img { width: 100%; height: 100%; object-fit: cover; }
.contact-map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }
.contact-map .map-pin { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 24px; background: linear-gradient(to top, rgba(7,41,79,.5), transparent 50%); }
.contact-map .map-pin a { background: #fff; color: var(--c-primary); font-family: var(--head); font-weight: 800; padding: 12px 22px; border-radius: 999px; box-shadow: var(--shadow-sm); display: inline-flex; align-items: center; gap: 8px; font-size: 14px; }
.contact-map .map-pin a:hover { background: var(--c-accent); color: #fff; }

/* Map consent (Zwei-Klick-Lösung, DSGVO) */
.map-consent { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 14px; padding: 28px; background: linear-gradient(rgba(7,41,79,.62), rgba(7,41,79,.82)); color: #fff; }
.map-consent .map-ico { font-size: 44px; color: #7fb6f0; }
.map-consent p { max-width: 330px; margin: 0; font-size: 14.5px; color: rgba(255,255,255,.92); }
.map-consent .map-open { color: #cfe3fb; font-size: 13px; text-decoration: underline; }
.map-consent .map-open:hover { color: #fff; }

/* =====================================================================
   FORM (Anfrage / Angebot)
   ===================================================================== */
.form-wrap { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 38px 36px; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--head); font-weight: 800; font-size: 13px; letter-spacing: .03em; text-transform: uppercase; color: var(--c-primary); margin-bottom: 7px; }
.form-field label .req { color: #e0463c; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; font-family: var(--sans); font-size: 16px; color: var(--c-ink);
  padding: 13px 15px; border: 1.5px solid var(--c-line); border-radius: 10px;
  background: #fbfdff; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); outline: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--c-accent); box-shadow: 0 0 0 4px rgba(47,127,206,.14); background: #fff; }
.form-field textarea { resize: vertical; min-height: 120px; }
.input-icon { position: relative; }
.input-icon i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--c-accent); font-size: 15px; }
.input-icon input { padding-left: 40px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-consent { grid-column: 1 / -1; display: flex; gap: 12px; align-items: flex-start; margin-top: 4px; }
.form-consent input { width: 20px; height: 20px; margin-top: 3px; flex-shrink: 0; accent-color: var(--c-accent); }
.form-consent label { font-size: 14.5px; color: var(--c-muted); line-height: 1.5; font-family: var(--sans); font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-actions { grid-column: 1 / -1; margin-top: 8px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-actions .btn { border: 0; }
.form-note { font-size: 13.5px; color: var(--c-muted); }
.form-msg { grid-column: 1 / -1; border-radius: 10px; padding: 0; max-height: 0; overflow: hidden; opacity: 0; transition: all .35s var(--ease); font-weight: 600; }
.form-msg.show { padding: 16px 18px; max-height: 200px; opacity: 1; }
.form-msg.ok { background: #e7f6ec; color: #1c7a3f; border: 1px solid #b6e2c4; }
.form-msg.err { background: #fdeceb; color: #c0392b; border: 1px solid #f3c5c0; }
.form-msg i { margin-right: 8px; }
.is-invalid { border-color: #e0463c !important; box-shadow: 0 0 0 4px rgba(224,70,60,.12) !important; }

.form-aside { display: flex; flex-direction: column; gap: 18px; }
.aside-card { background: var(--c-primary-dark); color: #fff; border-radius: var(--radius); padding: 30px 28px; }
.aside-card h3 { color: #fff; font-size: 20px; }
.aside-card p { color: rgba(255,255,255,.8); font-size: 15px; }
.aside-contact { list-style: none; margin-top: 8px; }
.aside-contact li { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.aside-contact li:last-child { border-bottom: 0; }
.aside-contact i { color: #7fb6f0; font-size: 18px; margin-top: 3px; width: 20px; text-align: center; }
.aside-contact a { color: #fff; }
.aside-contact span { color: rgba(255,255,255,.7); font-size: 14px; display: block; }
.aside-steps { list-style: none; }
.aside-steps li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.aside-steps .num { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--c-accent); color: #fff; font-family: var(--head); font-weight: 800; display: grid; place-items: center; font-size: 14px; }
.aside-steps strong { display: block; }
.aside-steps p { margin: 2px 0 0; font-size: 14px; }

/* =====================================================================
   MEDIA HERO (Jobs / Unterseiten mit Bild)
   ===================================================================== */
.media-hero { position: relative; min-height: 480px; display: flex; align-items: center; color: #fff; background: var(--c-primary-dark) center/cover no-repeat; }
.media-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(7,41,79,.92) 0%, rgba(7,41,79,.72) 45%, rgba(7,41,79,.35) 100%); }
.media-hero .container { position: relative; z-index: 2; }
.media-hero .eyebrow { color: #6fb2ff; }
.media-hero .eyebrow::after { display: none; }
.media-hero h1 { color: #fff; font-size: clamp(32px, 5.5vw, 58px); line-height: 1.06; max-width: 760px; }
.media-hero p { color: rgba(255,255,255,.9); font-size: clamp(17px, 2vw, 20px); max-width: 600px; margin-top: 14px; }
.media-hero .crumb { margin-top: 16px; font-size: 14px; color: rgba(255,255,255,.7); letter-spacing: .05em; }
.media-hero .crumb a { color: #9ec8f5; }

/* =====================================================================
   JOBS
   ===================================================================== */
.job-layout { display: grid; grid-template-columns: 1.55fr 1fr; gap: 40px; align-items: start; }
.job-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 38px 36px; box-shadow: var(--shadow-sm); }
.job-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.job-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--head); font-weight: 800; font-size: 13px; letter-spacing: .03em; text-transform: uppercase; padding: 8px 16px; border-radius: 999px; background: #eaf3fd; color: var(--c-primary); }
.job-badge i { color: var(--c-accent); }
.job-card h2 { font-size: clamp(24px, 3.2vw, 32px); }
.job-card .job-intro { color: var(--c-muted); font-size: 17px; }
.job-block { margin-top: 28px; }
.job-block h3 { font-size: 19px; color: var(--c-primary); display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.job-block h3 i { color: var(--c-accent); }
.job-checks { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.job-checks li { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; color: var(--c-ink); }
.job-checks li i { color: var(--c-accent); margin-top: 4px; flex-shrink: 0; }
.job-closing { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--c-line); color: var(--c-muted); }
.job-closing strong { color: var(--c-ink); }

.job-aside { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 104px; }

/* Captcha-Feld */
.captcha-row { display: flex; align-items: center; gap: 14px; }
.captcha-q { font-family: var(--head); font-weight: 800; font-size: 18px; color: var(--c-primary); background: #eaf3fd; padding: 11px 16px; border-radius: 10px; white-space: nowrap; }
.captcha-row input { max-width: 110px; }

/* Datei-Upload */
.file-field input[type="file"] { padding: 11px 14px; background: #fbfdff; cursor: pointer; }
.file-field input[type="file"]::file-selector-button { font-family: var(--head); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .03em; color: #fff; background: var(--c-accent); border: 0; padding: 9px 16px; border-radius: 8px; margin-right: 14px; cursor: pointer; transition: background .2s var(--ease); }
.file-field input[type="file"]::file-selector-button:hover { background: var(--c-primary); }
.file-hint { font-size: 13px; color: var(--c-muted); margin-top: 6px; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: #061a31; color: rgba(255,255,255,.72); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-col h4 { color: #fff; font-size: 16px; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 20px; }
.footer-brand img { height: 36px; margin-bottom: 18px; }
.footer-brand p { font-size: 15px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: rgba(255,255,255,.72); font-size: 15px; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 15px; }
.footer-contact i { color: var(--c-accent); margin-top: 4px; }
.footer-contact a { color: rgba(255,255,255,.72); }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 14px; }
.footer-bottom a { color: rgba(255,255,255,.72); margin-left: 18px; }
.footer-bottom a:hover { color: #fff; }

/* =====================================================================
   BACK TO TOP
   ===================================================================== */
.to-top { position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 50px; height: 50px; border-radius: 50%; border: 0; background: var(--c-accent); color: #fff; font-size: 18px; cursor: pointer; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(14px); transition: all .3s var(--ease); }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--c-primary); transform: translateY(-3px); }

/* =====================================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ===================================================================== */
.page-hero { background: linear-gradient(105deg, var(--c-primary-dark), var(--c-primary)); color: #fff; padding: 70px 0; text-align: center; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 5vw, 46px); margin: 0; }
.page-hero .crumb { margin-top: 12px; font-size: 14px; color: rgba(255,255,255,.7); letter-spacing: .05em; }
.page-hero .crumb a { color: #9ec8f5; }
.legal { padding: 70px 0 90px; }
.legal .container { max-width: 920px; }
.legal h1 { font-size: 34px; margin-bottom: 24px; }
.legal h2 { font-size: 24px; margin: 38px 0 14px; color: var(--c-primary); }
.legal h3 { font-size: 19px; margin: 26px 0 10px; }
.legal h4 { font-size: 16px; margin: 18px 0 8px; }
.legal p, .legal li { color: #3f4d5c; }
.legal ul { padding-left: 20px; list-style: disc; margin-bottom: 16px; }
.legal li { margin-bottom: 6px; }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1080px) {
  .hero { height: clamp(540px, 84vh, 760px); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 920px) {
  .hero { height: clamp(540px, 82vh, 720px); }
  .nav-menu, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    align-items: stretch; gap: 0; background: #fff; padding: 12px 18px 24px;
    border-bottom: 1px solid var(--c-line); box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .35s var(--ease); display: flex; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    visibility: hidden; pointer-events: none;
  }
  .nav-menu.open { transform: translateY(0); visibility: visible; pointer-events: auto; }
  .nav-menu li:not(.mobile-cta) + li:not(.mobile-cta) { border-top: 1px solid var(--c-line); }
  .nav-menu a { display: block; padding: 15px 12px 15px 22px; border-radius: 8px; font-size: 15px; }
  .nav-menu a::after { display: none; }
  .nav-menu .mobile-cta { display: block; margin-top: 14px; }
  .nav-menu .mobile-cta .btn { display: flex; width: 100%; justify-content: center; padding-top: 14px; padding-bottom: 14px; font-size: 14px; }
  .about-grid, .contact-grid, .form-wrap, .job-layout { grid-template-columns: 1fr; gap: 40px; }
  .job-aside { position: static; top: auto; }
  .about-list { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 22px; max-width: 540px; margin: 0 auto; }
  .hero-badges .container { grid-template-columns: repeat(2, 1fr); }
  .hero-badge:nth-child(2) { border-right: 0; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; max-width: 460px; margin: 0 auto; }
  .about-media .exp-badge { right: 16px; }
}
@media (max-width: 680px) {
  .section { padding: 64px 0; }
  .hero { height: clamp(520px, 86vh, 660px); min-height: 500px; }
  .nav-logo img { height: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .fleet-item.wide, .fleet-item.tall { grid-column: auto; grid-row: auto; }
  .contact-cards { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card, .job-card { padding: 28px 22px; }
  .job-checks { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .cta-band { padding: 40px 28px; text-align: center; justify-content: center; }
  .cta-band .cta-actions { justify-content: center; width: 100%; }
  .hero-arrow { display: none; }
  .about-list { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { height: auto; min-height: 560px; }
  .hero-inner { min-height: 560px; padding: 56px 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; padding-left: 18px; padding-right: 18px; white-space: normal; text-align: center; }
}

@supports (height: 100svh) {
  .hero { height: clamp(560px, 88svh, 820px); }

  @media (max-width: 1080px) {
    .hero { height: clamp(540px, 84svh, 760px); }
  }

  @media (max-width: 920px) {
    .hero { height: clamp(540px, 82svh, 720px); }
  }

  @media (max-width: 680px) {
    .hero { height: clamp(520px, 86svh, 660px); }
  }

  @media (max-width: 460px) {
    .hero { height: auto; }
  }
}
