:root {
  --bg: #f8f7f5;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #ffffff;
  --text: #1a1a1a;
  --muted: #6f6a67;
  --line: rgba(166, 30, 26, 0.10);

  --brand-primary: #a61e1a;
  --brand-primary-dark: #871612;
  --brand-primary-soft: rgba(166, 30, 26, 0.08);

  --brand-secondary: #c7ad57;
  --brand-secondary-dark: #aa9145;
  --brand-secondary-soft: rgba(199, 173, 87, 0.20);

  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.06);
  --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.14);
  --radius-xl: 28px;
  --radius-pill: 999px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(to bottom, #fcfbfa 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.page-content {
  min-height: 60vh;
}

.section {
  padding: 110px 0;
}

.section-topless {
  padding-top: 0;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 14px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.7);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.section-text {
  margin-top: 20px;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
}

.section-text-full {
  max-width: 100%;
  margin-top: 18px;
}

/* =========================================
   HEADER & NAVIGATION (Floating Box Style)
========================================= */
.site-header {
  position: fixed; /* Löst den Header vom Layout, Video startet GANZ oben! */
  top: 24px;
  left: 0;
  right: 0;
  z-index: 1000;
  
  width: calc(100% - 40px);
  max-width: var(--container);
  margin: 0 auto;
  
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
  
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-inner {
  min-height: 86px;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: min-height 0.4s ease;
}

.site-header.header-scrolled {
  top: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(166, 30, 26, 0.15);
}

.site-header.header-scrolled .header-inner {
  min-height: 70px;
}

/* --- LOGO IM HEADER --- */
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-logo-wrap {
  height: 60px;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
}

.site-header.header-scrolled .brand-logo-wrap {
  height: 48px;
}

.brand-logo-wrap:hover {
  transform: translateY(-2px) scale(1.03);
}

.brand-logo {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: none; 
}

/* --- NAVIGATION LINKS --- */
.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav a,
.mobile-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.3s ease, transform 0.2s ease;
  position: relative;
}

.nav a:hover,
.mobile-nav a:hover {
  color: var(--brand-primary);
  transform: translateY(-1px);
}

.nav a.active,
.mobile-nav a.active {
  color: var(--brand-primary);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 2px;
}

/* --- CTA BUTTON IM HEADER --- */
.header-cta {
  background: var(--brand-primary);
  color: white !important;
  padding: 12px 26px;
  border-radius: 99px;
  font-weight: 700 !important;
  font-size: 0.88rem;
  box-shadow: 0 10px 24px rgba(166, 30, 26, 0.18);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease !important;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--brand-primary-dark);
  box-shadow: 0 14px 28px rgba(166, 30, 26, 0.25);
}

/* =========================================
   MOBILE MENÜ (PREMIUM APP-FEELING)
========================================= */
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(166, 30, 26, 0.12);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--brand-primary);
  display: block;
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 32px;
  margin-top: 15px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  text-align: center;
}

/* Die weiche Einblend-Animation */
.mobile-nav.active {
  display: flex;
  animation: slideDownFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDownFade {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Die Links als große, klickbare Flächen */
.mobile-nav a {
  font-size: 1.35rem;
  font-weight: 800;
  color: #111;
  padding: 14px 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
}

.mobile-nav a:hover, 
.mobile-nav a:active {
  background: rgba(166, 30, 26, 0.05);
  color: var(--brand-primary);
}

.mobile-nav a.active {
  color: var(--brand-primary);
}

.mobile-nav a.active::after {
  display: none; /* Versteckt den Desktop-Strich auf dem Handy */
}

/* Der fette Button ganz unten im Menü */
.mobile-nav a.mobile-cta {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: #fff !important;
  margin-top: 15px;
  border-radius: 99px;
  font-size: 1.15rem;
  padding: 18px 20px;
  box-shadow: 0 10px 24px rgba(166, 30, 26, 0.2);
}

.mobile-nav a.mobile-cta:hover {
  box-shadow: 0 15px 30px rgba(166, 30, 26, 0.3);
  transform: translateY(-2px);
}

/* =========================================
   HERO BEREICH & VIDEO (CINEASTISCH)
========================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 100px; /* Platz gelassen für den schwebenden Header */
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #000;
  isolation: isolate;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #000;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  /* Edler, dunkler Kino-Filter für perfekten Kontrast */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff; /* Weißer Text! */
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 24px auto 0;
  max-width: 1200px; /* Vorher 900px. Gibt den Sätzen den nötigen Raum! */
  font-size: clamp(3.2rem, 9vw, 6.8rem); /* Deutlich vergrößert (vorher max 5.2rem) */
  line-height: 0.95;
  letter-spacing: -0.04em; 
  font-weight: 800; /* Etwas fetter, passend zur neuen Größe */
  color: #ffffff; 
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  /* text-wrap: balance; Wurde gelöscht, da es die komischen Umbrüche erzwungen hat */
  position: relative;
  z-index: 3;
}

.hero p {
  max-width: 720px;
  margin: 32px auto 0;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9); /* Weißer Text! */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 3;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  position: relative;
  z-index: 3;
}

.hero-fade-bottom {
  display: none; /* Keine weißen Balken mehr! */
}

/* =========================================
   BUTTONS (Smooth Hover)
========================================= */
.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.button:hover,
.button-secondary:hover {
  transform: translateY(-3px);
}

/* Primärer Button (Rot) */
.button {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: #ffffff !important;
  border: 2px solid transparent;
  box-shadow: 0 16px 36px rgba(166, 30, 26, 0.18);
}

.button:hover {
  background: linear-gradient(135deg, var(--brand-primary-dark) 0%, #70100d 100%);
  box-shadow: 0 20px 40px rgba(166, 30, 26, 0.25);
}

/* Sekundärer Button (Weiß mit rotem Rand und roter Schrift) */
.button-secondary {
  background: #ffffff;
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary) !important; /* Hier ist die Schrift sofort rot! */
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.04);
}

.button-secondary:hover {
  background: #fdfdfd;
  color: var(--brand-primary-dark) !important;
  border-color: var(--brand-primary-dark);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* =========================================
   LAYOUT GRIDS & PREMIUM CARD HOVER
========================================= */
.highlight-grid,
.service-grid,
.project-grid,
.value-grid {
  display: grid;
  gap: 22px;
}

.service-grid,
.value-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 52px;
}

.project-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.card,
.glass-card,
.dark-card,
.reference-card {
  border-radius: var(--radius-xl);
  padding: 40px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.glass-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.dark-card {
  background: linear-gradient(145deg, #7f1915 0%, #a61e1a 100%);
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(166, 30, 26, 0.15);
  border: none;
}

.card:hover,
.glass-card:hover,
.reference-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), 0 10px 20px rgba(0, 0, 0, 0.04);
}

.dark-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(166, 30, 26, 0.25), 0 10px 20px rgba(166, 30, 26, 0.15);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.22) 35%,
    rgba(255, 255, 255, 0) 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass-card:hover::before {
  opacity: 1;
}

.card h3,
.glass-card h3,
.dark-card h3 {
  font-size: 1.7rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-top: 10px;
}

.card p,
.glass-card p,
.dark-card p {
  margin-top: 14px;
  color: var(--muted);
}

.dark-card p,
.dark-card .muted-light {
  color: rgba(255, 255, 255, 0.85);
}

.label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-primary);
  margin-bottom: 12px;
  display: block;
}

.dark-card .label {
  color: rgba(255, 255, 255, 0.75);
}

.card-wide {
  grid-column: span 2;
  min-height: 320px;
}

.card-tall {
  min-height: 320px;
}

/* =========================================
   IMAGE PAN HOVER (Cinematic Depth)
========================================= */
.feature-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.feature-split-reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.feature-media,
.image-card,
.service-feature-media {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(166, 30, 26, 0.08);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  -webkit-mask-image: -webkit-radial-gradient(white, black); 
}

.feature-media {
  min-height: 520px;
}

.feature-image,
.image-card-media,
.service-feature-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.feature-image {
  min-height: 520px;
}

.image-card {
  min-height: 320px;
}

.image-card-media {
  min-height: 320px;
}

.feature-media:hover .feature-image,
.image-card:hover .image-card-media,
.service-feature-media:hover .service-feature-image {
  transform: scale(1.06);
}

.feature-copy {
  max-width: 560px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}

/* =========================================
   STATISTIK-KARTE (GLASS) & MARQUEE
========================================= */
.stats-section {
  margin-top: -100px;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
  padding-bottom: 20px;
}

.glass-card-stats {
  background: rgb(255, 255, 255);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.stat-item h3 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brand-primary);
  margin-bottom: 5px;
  text-shadow: 0 2px 15px rgba(255, 255, 255, 0.8);
}

.stat-item span {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text);
}

.marquee-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

.marquee-label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
  color: var(--muted);
  font-weight: 700;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
  display: flex;
  align-items: center;
  animation: marquee 30s linear infinite;
  gap: 100px;
  padding-right: 100px;
}

.marquee-item {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  opacity: 0.25;
  filter: grayscale(100%);
  transition: opacity 0.4s ease, filter 0.4s ease;
  color: var(--text);
  cursor: default;
}

.marquee-item:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}

/* =========================================
   PARALLAX BANNER
========================================= */
.parallax-banner {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 80px 0;
  /* Diese drei Zeilen zaubern den Parallax-Scroll-Effekt: */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  z-index: -1;
  pointer-events: none;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(166,30,26,0.6) 0%, rgba(0,0,0,0.85) 100%);
}

.parallax-content h2 {
  position: relative;
  z-index: 2;
  color: white;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.03em;
}

/* =========================================
   FOOTER (UNBOXED LOGO)
========================================= */
.site-footer {
  padding: 80px 0 40px;
  background: var(--bg);
  margin-top: 40px;
}

.footer-shell {
  background: white;
  border-radius: 42px;
  padding: 70px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}

.footer-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.22) 35%,
    rgba(255, 255, 255, 0) 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.footer-shell:hover::before {
  opacity: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 80px;
}

.footer-brand-block {
  max-width: 460px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 100%;
}

.footer-brand-logo {
  height: 90px;
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 10px;
}

.footer-brand-logo:hover {
  transform: translateY(-2px) scale(1.02);
}

.footer-brand-logo .brand-logo {
  height: 100%;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.footer-brand-text {
  display: none;
}

.footer-brand-title {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.15;
}

.footer-brand-subtitle {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.3;
}

.footer-brand-description {
  margin: 24px 0 32px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text);
}

.social-link:hover {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
  transform: translateY(-3px);
}

.footer-column {
  min-width: 0;
}

.footer-heading {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 28px;
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a,
.footer-contact-item {
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--brand-primary);
  transform: translateX(4px);
}

.footer-contact-item {
  display: block;
  margin-bottom: 22px;
  font-size: 1rem;
  line-height: 1.5;
}

.footer-contact-item strong {
  color: var(--text);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 60px 0 32px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-bottom-right a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-bottom-right a:hover {
  color: var(--brand-primary);
}

/* =========================================
   ANIMATION & REVEAL
========================================= */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* =========================================
   RESPONSIVE & MEDIA QUERIES
========================================= */
@media (min-width: 981px) {
  .feature-split-reverse .feature-media { order: 1; }
  .feature-split-reverse .feature-copy { order: 2; }
}

@media (max-width: 1024px) {
  .service-grid,
  .project-grid,
  .value-grid,
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card-wide {
    grid-column: 1 / -1;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .footer-brand-block {
    grid-column: span 2;
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .feature-split,
  .image-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .feature-media,
  .feature-image {
    min-height: 380px;
  }
}

@media (max-width: 860px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand-block {
    grid-column: span 1;
  }

  .footer-shell {
    padding: 40px;
  }
  
  .glass-card-stats {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 780px) {
  .section {
    padding: 80px 0;
  }

  .hero {
    padding: 74px 0 46px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 10vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .hero p,
  .section-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .service-grid,
  .project-grid,
  .value-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .glass-card,
  .dark-card {
    padding: 24px;
  }

  .card-wide,
  .card-tall {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .site-footer {
    margin-top: 56px;
    padding-bottom: 20px;
  }

  .footer-shell {
    padding: 24px 22px 18px;
    border-radius: 24px;
  }

  .footer-top {
    gap: 26px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    top: 10px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 74px;
    padding: 0 20px;
  }

  .brand-logo-wrap {
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible,
  .card,
  .glass-card,
  .dark-card,
  .footer-shell,
  .button {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.counter {
  font-variant-numeric: tabular-nums;
}
/* =========================================
   LEISTUNGEN FLIP-CARDS (Safari & Mobile Fix)
========================================= */
.services-flip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.flip-card {
  background-color: transparent;
  height: 400px;
  perspective: 1000px;
  -webkit-perspective: 1000px; /* Wichtig für Apple-Geräte */
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d; /* Wichtig für Apple-Geräte */
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

/* Kugelsicheres Setup für Vorder- und Rückseite */
.flip-card-front, 
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Versteckt die Rückseite strikt */
  backface-visibility: hidden;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* VORDERSEITE */
.flip-card-front {
  background-size: cover;
  background-position: center;
  color: white;
  z-index: 2; /* Safari braucht eine klare Z-Index Reihenfolge */
  transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  overflow: hidden;
}

.flip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.8));
  z-index: 1;
  /* Zwingt den Overlay beim Drehen unsichtbar zu werden */
  -webkit-backface-visibility: hidden; 
  backface-visibility: hidden;
}

.flip-card-front h3 {
  position: relative;
  z-index: 2;
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  /* Zwingt den Text beim Drehen unsichtbar zu werden */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* RÜCKSEITE */
.flip-card-back {
  background-color: #ffffff !important; /* Erzwingt reines Weiß */
  color: var(--text);
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  z-index: 1;
  pointer-events: auto; /* Wichtig, damit Buttons klickbar bleiben */
}

/* Der magische Trick: Macht die Vorderseite beim Hover für Klicks unsichtbar */
.flip-card:hover .flip-card-front {
  pointer-events: none;
}

.flip-card-back h3 {
  color: var(--brand-primary);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.flip-card-back ul {
  text-align: left;
  margin: 0 auto 24px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* DER BUTTON */
.button-small {
  padding: 12px 24px;
  background: var(--brand-primary);
  color: white !important;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 20px rgba(166, 30, 26, 0.2);
  /* Stellt sicher, dass der Button greifbar ist */
  position: relative;
  z-index: 10; 
  cursor: pointer;
}

.button-small:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(166, 30, 26, 0.3);
}
/* =========================================
   SUBPAGE HERO (Für Unterseiten)
========================================= */
.subpage-hero {
  /* Viel Platz nach oben, damit der schwebende Header nicht stört */
  padding: 190px 0 100px; 
  background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Ein ganz zartes, rotes Leuchten im Hintergrund für den Skyline-Look */
.subpage-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(circle, rgba(166,30,26,0.15) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.subpage-hero .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.subpage-hero .section-title {
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.subpage-hero .section-text {
  color: rgba(255, 255, 255, 0.85);
}

/* Leicht abgedunkelter Hintergrund für den Content-Bereich, damit es nicht so leer wirkt */
.bg-light-grey {
  background-color: var(--bg);
}
/* ==========================================================================
   GLOBALER EYEBROW-STANDARD (VEREINHEITLICHUNG)
   ========================================================================== 
*/
.eyebrow, 
.about-eyebrow, 
.cta-eyebrow, 
.tag-location,
.ceo-text h2 {
    font-family: monospace !important;
    font-size: 0.8rem !important;
    font-weight: 400 !important;
    color: #a61e1a !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3em !important;
    display: block;
    margin-bottom: 20px;
}
/* ==========================================================================
   GLOBAL PURE EXCELLENCE ARCHITECTURE (CLEAN COMPONENTS)
   ========================================================================== 
*/

/* --- GLOBAL BACKGROUNDS & UTILITIES --- */
.bg-transparent { background-color: transparent !important; }
.relative-z2 { position: relative; z-index: 2; }
.min-h-500 { min-height: 500px; }

/* --- CALL TO ACTION BOX (UNIFIED) --- */
.cta-section-wrapper { padding: 60px 0 100px; background-color: transparent; }
.cta-box-wide {
    background: #ffffff;
    border-radius: 40px; 
    padding: 80px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.02);
}
.cta-1400 { max-width: 1400px; }
.cta-1100 { max-width: 1400px; padding: 80px 100px; } /* Etwas komprimierter für Unterseiten */
.cta-gradient-bg {
    position: absolute; top: 0; right: 0; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(166,30,26,0.04) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%; pointer-events: none;
}
.cta-title { font-size: clamp(2.5rem, 5vw, 4rem); margin-top: 15px; margin-bottom: 25px; line-height: 1.05; color: #111; font-weight: 800; letter-spacing: -0.03em; }
.cta-text { color: #666; font-size: 1.2rem; max-width: 650px; margin-bottom: 45px; line-height: 1.6; }
.cta-actions { display: flex; gap: 20px; flex-wrap: wrap; }
.button-outline-red {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 18px 38px; background: transparent; color: var(--brand-primary);
    border: 2px solid var(--brand-primary); border-radius: 99px; font-weight: 700;
    transition: all 0.3s ease; text-decoration: none;
}
.button-outline-red:hover { background: rgba(166,30,26,0.05); transform: translateY(-3px); }

/* --- LEISTUNGEN PAGE --- */
.hero-slant { padding: 180px 0 160px; position: relative; overflow: hidden; text-align: left; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 100%); background: #000; }
.hero-slant-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; opacity: 0.35; z-index: 0; }
.bg-industrie-thumb { background-image: url('/assets/images/industrie-thumb.jpg'); }
.hero-slant-overlay { position: absolute; inset: 0; z-index: 1; }
.hero-slant-gradient { position: absolute; top: 0; left: 0; width: 50%; height: 50%; background: radial-gradient(circle at 0% 0%, rgba(166,30,26,0.3) 0%, rgba(0,0,0,0) 70%); z-index: 1; pointer-events: none; }
.coordinates { font-family: monospace; font-size: 0.85rem; color: rgba(255, 255, 255, 0.4); letter-spacing: 0.2em; margin-bottom: 30px; display: block; text-transform: uppercase; }
.huge-title { font-size: clamp(3.5rem, 10vw, 7.5rem); font-weight: 800; line-height: 0.85; letter-spacing: -0.03em; margin: 0; color: #ffffff; text-shadow: 0 10px 30px rgba(0,0,0,0.3); }

.services-grid-section { background-color: transparent; padding-bottom: 120px; }
.services-editorial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: -120px; position: relative; z-index: 10; }
.editorial-card { position: relative; height: 650px; background: #000; border-radius: 40px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.15); cursor: pointer; transition: transform 0.4s ease; }
.editorial-card:hover { transform: translateY(-10px); }
.card-media { position: absolute; inset: 0; z-index: 1; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.editorial-card:hover .card-media img { transform: scale(1.1); }
.card-title-static { position: absolute; bottom: 0; left: 0; width: 100%; padding: 50px; z-index: 2; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%); transition: opacity 0.4s ease, transform 0.4s ease; }
.card-title-static h3 { color: #fff; font-size: 2.2rem; font-weight: 800; margin: 0; letter-spacing: -0.03em; line-height: 1.1; }
.card-hover-overlay { position: absolute; inset: 0; background: rgba(166, 30, 26, 0.95); z-index: 3; display: flex; flex-direction: column; justify-content: center; padding: 50px; opacity: 0; visibility: hidden; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.editorial-card:hover .card-hover-overlay { opacity: 1; visibility: visible; }
.editorial-card:hover .card-title-static { opacity: 0; transform: translateY(20px); }
.card-tag { font-family: monospace; font-size: 0.75rem; color: rgba(255,255,255,0.7); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; display: block; }
.card-hover-overlay h3 { color: #fff; font-size: 2.2rem; font-weight: 800; margin-bottom: 25px; letter-spacing: -0.03em; }
.card-list { list-style: none; padding: 0; margin: 0 0 35px 0; }
.card-list li { font-size: 1.05rem; color: #fff; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; gap: 10px; }
.card-list li::before { content: "—"; opacity: 0.5; }
.card-btn-reveal { font-family: monospace; font-size: 0.85rem; font-weight: 800; color: #a61e1a; background: #fff; padding: 15px 30px; border-radius: 99px; text-decoration: none; text-transform: uppercase; display: inline-block; align-self: flex-start; transition: 0.3s; }

.parallax-banner-large { position: relative; min-height: 500px; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; background-attachment: fixed; margin-bottom: 0; }
.bg-parallax-general { background-image: url('/assets/images/parallax-bg.jpg'); }
.bg-drone-operation { background-image: url('/assets/images/feature-drone-operation.jpg'); }
.parallax-overlay-dark { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(166,30,26,0.7) 0%, rgba(0,0,0,0.85) 100%); z-index: 1; }
.parallax-title { font-size: clamp(2.4rem, 5vw, 4rem); max-width: 800px; margin: 0 auto; line-height: 1.1; color: #ffffff; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }

.feature-philosophy-title { font-size: clamp(2rem, 3vw, 2.8rem); }
.feature-lead-text { font-size: 1.35rem; font-weight: 700; color: #111; margin: 32px 0; line-height: 1.5; letter-spacing: -0.01em; }
.feature-check-list { margin-top: 32px; list-style: none; padding: 0; color: #111; font-weight: 600; font-size: 1.05rem; }
.feature-check-item { margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.feature-check-icon { color: var(--brand-primary); font-size: 1.4rem; }

.process-header { max-width: 600px; margin: 0 auto 60px; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; position: relative; }
.process-number { font-size: 4.5rem; font-weight: 900; color: rgba(166,30,26,0.08); line-height: 1; margin-bottom: 10px; font-family: sans-serif; }
.process-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; color: #111; }
.process-text { color: #555; font-size: 0.95rem; line-height: 1.6; }

/* --- UEBER UNS PAGE --- */
.container-editorial { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

.about-hero { 
    /* EXAKT WIE BEI LEISTUNGEN */
    padding: 180px 0 160px !important; 
    height: auto !important; /* Löscht unsere alten Höhen-Fixes */
    display: block !important;
    
    background-image: linear-gradient(135deg, rgba(166,30,26,0.85) 0%, rgba(0,0,0,0.9) 100%), url('/assets/images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 100%);
}
.about-hero h1 { font-size: clamp(3.5rem, 9vw, 7.5rem); font-weight: 800; line-height: 0.9; letter-spacing: -0.03em; margin: 0; color: #ffffff; }
.about-hero h1 span { display: block; color: rgba(255, 255, 255, 0.25);letter-spacing: -0.03em; }

.ceo-section { padding: 120px 0; display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: start; }
.ceo-image { position: relative; border-radius: 40px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.1); }
.ceo-image img { width: 100%; display: block; }
.ceo-text h3 { font-size: 4rem; font-weight: 800; margin-bottom: 30px; letter-spacing: -0.03em; line-height: 1.1; }
.ceo-text p { font-size: 1.2rem; line-height: 1.8; color: #444; margin-bottom: 20px; }
.ceo-quote { font-size: 1.6rem; font-weight: 700; font-style: italic; color: #111; border-left: 4px solid var(--brand-primary); padding-left: 30px; margin: 40px 0; letter-spacing: -0.01em; }

.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 120px; }
.trust-card { background: #fff; padding: 50px; border-radius: 40px; box-shadow: 0 15px 50px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.02); }
.trust-card h4 { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; letter-spacing: -0.02em; }
.trust-card p { font-size: 1.1rem; line-height: 1.7; color: #555; }
.trust-tags { margin-top: 25px; display: flex; gap: 15px; opacity: 0.7; }
.trust-tag-item { font-family: monospace; font-size: 0.7rem; }
.trust-checklist { margin-top: 15px; font-weight: 700; color: #111; }

.team-section { padding: 100px 0 150px; background: #fff; }
.team-header { text-align: center; max-width: 800px; margin: 0 auto 100px; }
.team-section-title { font-size: 3.5rem; font-weight: 800; letter-spacing: -0.04em; }
.team-section-desc { font-size: 1.2rem; color: #666; margin-top: 20px; }

/* --- TEAM GRID (Dynamisches Layout für 5 Personen) --- */
.team-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 40px; 
}
.team-member {
    width: calc(33.333% - 27px); 
    max-width: 380px; 
}

.member-img { width: 100%; aspect-ratio: 3/4; background: #fafafa; border-radius: 30px; overflow: hidden; margin-bottom: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.member-img img { width: 100%; height: 100%; object-fit: cover; }
.team-member h4 { font-size: 1.5rem; font-weight: 800; margin-bottom: 5px; }
.team-member-desc { color: #666; font-size: 0.95rem; }

.company-values { background: #000; color: #fff; padding: 150px 0; margin: 100px 0; border-radius: 60px; }
.container-w1270 { max-width: 1270px; margin: 0 auto; padding: 0 40px; }
.values-header { margin-bottom: 80px; }
.values-title { font-size: 3rem; font-weight: 800; color: #fff; }
.values-flex { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; }
.value-item h4 { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; color: #fff; }
.value-item p { font-size: 1.1rem; color: #888; line-height: 1.6; }

/* --- KONTAKT PAGE --- */
.contact-hero { 
    padding: 240px 0 150px; 
    background-image: linear-gradient(135deg, rgba(166,30,26,0.85) 0%, rgba(0,0,0,0.9) 100%), url('/assets/images/kontakt-hero.jpg');
    background-size: cover;
    background-position: center;
    /* HIER IST DIE EXAKT GLEICHE ABSCHRÄGUNG: */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 100%);
}
.contact-hero h1 { font-size: clamp(3.5rem, 9vw, 7.5rem); font-weight: 800; line-height: 0.9; letter-spacing: -0.03em; margin: 0; color: #ffffff; }
.contact-hero h1 span { display: block; color: rgba(255, 255, 255, 0.25); }
.contact-wrapper { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 100px; padding: 100px 0 150px; align-items: start; }
.contact-form-container h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 50px; letter-spacing: -0.02em; }
.form-group { margin-bottom: 45px; position: relative; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.form-label { display: block; font-family: monospace; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: #888; margin-bottom: 12px; }
.form-control { width: 100%; background: transparent; border: none; border-bottom: 2px solid #e0e0e0; padding: 15px 0; font-size: 1.25rem; color: #111; transition: all 0.3s ease; border-radius: 0; }
.form-control:focus { outline: none; border-bottom-color: var(--brand-primary); }
.submit-btn { background: #111; color: #fff; padding: 22px 60px; border: none; border-radius: 99px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: 0.4s; margin-top: 20px; }
.submit-btn:hover { background: var(--brand-primary); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.contact-sidebar { position: sticky; top: 150px; background: #fff; padding: 60px; border-radius: 40px; box-shadow: 0 30px 80px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.02); }
.info-block { margin-bottom: 50px; }
.info-block-separated { padding-top: 30px; border-top: 1px solid #f0f0f0; }
.info-block a, .info-block p { font-size: 1.4rem; font-weight: 700; color: #111; text-decoration: none; line-height: 1.3; }
.info-block-text { font-size: 0.95rem; color: #666; font-weight: 500; line-height: 1.6; }
.status-message { padding: 20px; border-radius: 15px; margin-bottom: 40px; font-weight: 600; }
.status-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.status-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.honeypot-field { position: absolute; left: -9999px; }

/* --- PROJEKTE PAGE --- */
.lookbook-hero { 
    position: relative; 
    
    /* EXAKT WIE BEI LEISTUNGEN */
    padding: 180px 0 160px !important; 
    height: auto !important; /* Löscht unsere alten Höhen-Fixes */
    display: block !important;
    
    background-image: linear-gradient(135deg, rgba(166,30,26,0.85) 0%, rgba(0,0,0,0.9) 100%), url('/assets/images/projekte-hero.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden; 
    border-bottom: none; 
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 100%);
}

/* Das gigantische Hintergrund-Wasserzeichen ("UAV") wird zart-weiß statt grau */
.hero-watermark { position: absolute; right: -5%; top: 55%; transform: translateY(-50%); font-size: 25vw; font-weight: 900; color: rgba(255,255,255,0.03); user-select: none; line-height: 1; z-index: 1; letter-spacing: -0.03em; }

/* Die kleine HUD-Linie links ausblenden */
.hero-hud-line { display: none !important; }
.hero-coordinates { position: relative; font-family: monospace; font-size: 0.75rem; color: rgba(255,255,255,0.6); letter-spacing: 0.3em; margin-bottom: 25px; display: block; text-transform: uppercase; z-index: 2; }

/* Die riesige Überschrift ("Pure Excellence") wird weiß */
.lookbook-hero h1 { position: relative; font-size: clamp(4rem, 12vw, 9rem); font-weight: 800; letter-spacing: -0.06em; line-height: 0.85; color: #ffffff; margin: 0; z-index: 2; }
.lookbook-tagline { position: relative; margin-top: 50px; font-family: monospace; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5em; color: #ffffff; opacity: 0.8; font-weight: 700; z-index: 2; }
.lookbook-section { padding: 100px 0 100px; }
.project-row { display: flex; align-items: center; margin-bottom: 180px; gap: 100px; }
.project-row:last-child { margin-bottom: 0; }
.project-row:nth-child(even) { flex-direction: row-reverse; }
.project-visual-part { flex: 1.3; position: relative; overflow: hidden; background: #eee; }
.project-visual-part img { width: 100%; height: auto; display: block; transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1); }
.project-visual-part:hover img { transform: scale(1.05); }
.project-text-part { flex: 0.7; }
.project-index { font-family: serif; font-style: italic; font-size: 4rem; color: #efedeb; margin-bottom: 15px; display: block; line-height: 1; }
.project-headline { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 25px; line-height: 1.1; }
.project-summary { font-size: 1.15rem; line-height: 1.8; color: #555; margin-bottom: 40px; }
.project-action { display: inline-flex; align-items: center; gap: 15px; font-family: monospace; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; color: #000; font-weight: 700; border-bottom: 1px solid #000; padding-bottom: 5px; transition: all 0.3s ease; }
.project-action:hover { color: var(--brand-primary); border-color: var(--brand-primary); }
.specs-section { padding: 100px 0; background: #fff; border-top: 1px solid #f0f0f0; }
.specs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 60px; text-align: center; }
.spec-eyebrow { font-family: monospace; color: var(--brand-primary); display: block; margin-bottom: 10px; font-size: 0.8rem; letter-spacing: 2px; }
.spec-value { font-size: 2.5rem; font-weight: 800; margin: 0; }
.spec-desc { font-size: 0.9rem; color: #888; margin-top: 10px; }

/* --- TECH-SUBPAGES (FILM, EVENT, INDUSTRIE) --- */
.tech-header-clean { position: relative; background: #000; color: #fff; padding: 280px 0 200px; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 100%); margin-top: -120px; overflow: hidden; }
.tech-bg-film::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(166, 30, 26, 0.1) 1px, transparent 1px); background-size: 40px 40px; mask-image: radial-gradient(circle, black, transparent 90%); pointer-events: none; z-index: 1; }
.tech-bg-event::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(166, 30, 26, 0.03) 50%, transparent 50%); background-size: 100% 4px; mask-image: radial-gradient(circle, black, transparent 90%); pointer-events: none; z-index: 1; }
.tech-bg-ind::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(166, 30, 26, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(166, 30, 26, 0.08) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(circle, black, transparent 85%); pointer-events: none; z-index: 1; }
.tech-status-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 25px; font-family: monospace; font-size: 0.7rem; color: var(--brand-primary); letter-spacing: 2px; }
.status-dot { width: 8px; height: 8px; background: var(--brand-primary); border-radius: 50%; }
.pulse-rec { animation: recordingPulse 1.5s infinite; }
.pulse-live { animation: livePulse 1s infinite; }
.pulse-tech { box-shadow: 0 0 10px var(--brand-primary); animation: techPulse 2s infinite; }
@keyframes recordingPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }
@keyframes techPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }
.tech-header-clean h1 { font-size: clamp(3.5rem, 8vw, 6.5rem); line-height: 0.85; letter-spacing: -0.04em; font-weight: 800; margin-bottom: 40px; }
.header-intro-text { max-width: 700px; margin-top: 40px; font-size: 1.3rem; opacity: 0.8; line-height: 1.6; text-wrap: balance; }
/* --- HINTERGRUNDBILDER FÜR TECH-HEADER --- */
.tech-bg-film {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/images/film-hero.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

.tech-bg-event {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/images/event-hero.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

.tech-bg-ind {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/images/industrie-hero.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

.editorial-row { display: grid; grid-template-columns: 1fr 1.5fr; gap: 100px; padding: 120px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.editorial-sticky { position: sticky; top: 150px; height: fit-content; }
.editorial-sticky h2 { font-size: 2.8rem; line-height: 1.1; margin-bottom: 30px; }
.content-block { margin-bottom: 80px; }
.content-block h3 { font-size: 1.6rem; margin-bottom: 20px; color: #111; }
.content-block p { font-size: 1.15rem; line-height: 1.7; color: #444; margin-bottom: 30px; }
.spec-list { list-style: none; padding: 0; }
.spec-list li { padding: 15px 0; border-top: 1px solid rgba(0,0,0,0.04); display: flex; justify-content: space-between; font-weight: 600; font-size: 0.95rem; }
.spec-list li span { color: var(--brand-primary); }
.full-stage-img { width: 100%; height: 70vh; object-fit: cover; margin-top: 60px; border-radius: 4px; box-shadow: 0 20px 50px rgba(0,0,0,0.05); }

.extended-services-section { padding-top: 150px; }
.extended-title { font-size: 3.5rem; margin-bottom: 60px; }
.extended-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 60px; }
.extended-item-title { margin-bottom: 20px; }
.extended-desc { color: #666; font-size: 1.1rem; }

.parallax-banner-tech { position: relative; min-height: 600px; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; background-attachment: fixed; margin: 100px 0; overflow: hidden; }
.parallax-overlay-tech { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(135deg, rgba(166,30,26,0.7) 0%, rgba(0,0,0,0.85) 100%); 
    z-index: 1; 
}
.parallax-quote { font-size: clamp(2.2rem, 5vw, 4.2rem); color: #fff; line-height: 1.1; font-weight: 800; text-shadow: 0 10px 40px rgba(0,0,0,0.4); letter-spacing: -0.02em; }
.bg-parallax-film { background-image: url('/assets/images/film-parallax.jpg'); }
.bg-parallax-event { background-image: url('/assets/images/event-parallax.png'); }
.bg-parallax-industrie { background-image: url('/assets/images/industrie-parallax.png'); }

/* ==========================================================================
   CASE STUDIES & PROJEKTE BEREICH (Engineering, FPV, Broadcast, Solar)
   ========================================================================== 
*/

/* --- TECH GRID BACKGROUND --- */
.tech-bg {
    background-image: 
      linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
}

.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* --- HEADER & TITEL --- */
.case-header { padding: 220px 0 80px; }
.case-intro { font-size: 1.4rem; color: #555; max-width: 850px; line-height: 1.6; }

.nav-back-btn {
    display: inline-flex; align-items: center; gap: 8px; font-family: monospace;
    font-size: 0.8rem; color: #888; text-transform: uppercase; letter-spacing: 2px;
    text-decoration: none; margin-bottom: 30px; transition: all 0.3s ease;
}
.nav-back-btn:hover { color: var(--brand-primary); transform: translateX(-5px); }

.mission-tag {
    display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px;
    background: #fff; border: 1px solid rgba(0,0,0,0.05); border-radius: 99px;
    font-family: monospace; font-size: 0.8rem; letter-spacing: 2px;
    color: var(--brand-primary); margin-bottom: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.mission-tag::before {
    content: ""; width: 6px; height: 6px; background: var(--brand-primary);
    border-radius: 50%; display: block; box-shadow: 0 0 8px var(--brand-primary);
}

/* Spezial-Animationen für die Tags (FPV & Live) */
@keyframes fastPulse { 0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--brand-primary); } 50% { opacity: 0.2; box-shadow: 0 0 2px var(--brand-primary); } }
@keyframes pulseLive { 0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--brand-primary); } 50% { opacity: 0.4; box-shadow: 0 0 2px var(--brand-primary); } }

.tag-pulse-fast::before { animation: fastPulse 0.8s infinite ease-in-out; }
.tag-pulse-live::before { animation: pulseLive 1.5s infinite ease-in-out; }

.case-title { font-size: clamp(3rem, 7vw, 5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 30px; }

/* --- SLIDER BEREICH --- */
.slider-section { margin-bottom: 120px; }
.slider-wrapper { position: relative; border-radius: 40px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.08); background: #000; aspect-ratio: 21 / 9; }
.slider-track { display: flex; height: 100%; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.slide { min-width: 100%; height: 100%; position: relative; }
.slide img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }

/* HUD Varianten (Hell & Dunkel) */
.slider-hud, .slider-hud-dark {
    position: absolute; top: 40px; right: 40px; padding: 20px; border-radius: 20px;
    font-family: monospace; font-size: 0.75rem; z-index: 5; backdrop-filter: blur(10px);
}
.slider-hud { background: rgba(255,255,255,0.95); border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.slider-hud-dark { background: rgba(0,0,0,0.8); border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 10px 30px rgba(0,0,0,0.5); color: #fff; }

.slider-hud .hud-title { margin-bottom: 10px; border-bottom: 1px solid #eee; padding-bottom: 5px; color: #000; }
.slider-hud-dark .hud-title { margin-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 5px; color: #fff; }

.slider-hud .hud-text { color: #444; }
.slider-hud-dark .hud-text { color: #aaa; }

.hud-status { color: var(--brand-primary); margin-top: 5px; font-weight: bold; }

.slider-nav { position: absolute; bottom: 40px; right: 40px; display: flex; gap: 15px; z-index: 10; }
.nav-dot { width: 50px; height: 6px; background: rgba(255,255,255,0.4); border-radius: 3px; cursor: pointer; transition: all 0.3s ease; }
.nav-dot.active { width: 80px; }
.slider-hud ~ .slider-nav .nav-dot.active { background: #fff; box-shadow: 0 0 10px rgba(255,255,255,0.5); }
.slider-hud-dark ~ .slider-nav .nav-dot.active { background: var(--brand-primary); box-shadow: 0 0 10px var(--brand-primary); }

/* --- BENTO INFO GRID & VALUE GRID --- */
.info-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; margin-bottom: 120px; }
.info-card { background: #fff; padding: 50px; border-radius: 40px; box-shadow: 0 15px 50px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.02); position: relative; overflow: hidden; }
.info-card::before { content: ""; position: absolute; top: 0; left: 50px; width: 40px; height: 3px; background: var(--brand-primary); }
.info-card h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 25px; letter-spacing: -0.02em; }
.info-card p { font-size: 1.15rem; line-height: 1.7; color: #555; }

.case-value-header { text-align: center; margin-bottom: 60px; }
.case-value-header h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; }
.case-value-header p { font-size: 1.25rem; color: #666; max-width: 700px; margin: 15px auto 0; }

.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 120px; }
.value-card { background: #fff; padding: 60px; border-radius: 40px; box-shadow: 0 15px 50px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.02); }
.value-card h3 { font-size: 2rem; font-weight: 800; margin-bottom: 30px; border-bottom: 2px solid rgba(0,0,0,0.05); padding-bottom: 20px; display: flex; align-items: center; gap: 15px; }

.value-list { list-style: none; padding: 0; margin: 0; }
.value-list li { position: relative; padding-left: 35px; margin-bottom: 25px; font-size: 1.15rem; color: #555; line-height: 1.6; }
.value-list li:last-child { margin-bottom: 0; }
.value-list li::before { content: "■"; position: absolute; left: 0; top: 2px; color: var(--brand-primary); font-size: 0.8rem; }
.value-list strong { display: block; color: #111; font-size: 1.25rem; margin-bottom: 5px; font-weight: 800; }

/* --- FLEET SPEC BAR --- */
.fleet-spec-bar { background: #050505; color: #fff; border-radius: 40px; padding: 60px; margin-bottom: 150px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; box-shadow: 0 25px 60px rgba(0,0,0,0.1); }
.spec-item span { display: block; font-family: monospace; font-size: 0.75rem; color: #888; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.spec-item strong { font-size: 1.4rem; font-weight: 800; color: #fff; display: block; letter-spacing: -0.02em; }
.spec-item i { color: var(--brand-primary); font-style: normal; font-size: 0.85rem; margin-top: 8px; display: block; font-family: monospace; }


/* ==========================================================================
   RECHTLICHE SEITEN (Datenschutz, Impressum)
   ========================================================================== 
*/
.legal-container { max-width: 900px; margin: 0 auto; padding: 200px 40px 150px; }
.legal-eyebrow { font-family: monospace; font-size: 0.8rem; color: #999; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 20px; }
.legal-section { margin-bottom: 60px; }
.legal-section h2 { font-size: 0.85rem; font-family: monospace; color: #a61e1a; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 25px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.legal-section h3 { font-size: 1.5rem; font-weight: 800; margin: 30px 0 15px; letter-spacing: -0.02em; }
.legal-section p, .legal-section li { font-size: 1.1rem; line-height: 1.7; color: #555; margin-bottom: 15px; }

.legal-link { color: inherit; text-decoration: none; transition: color 0.2s ease; }
.legal-link:hover { color: var(--brand-primary); }
.highlight-link { color: #a61e1a; }

/* =========================================
   GLOBALES UAV-WASSERZEICHEN (NUR für Kontakt & Leistungen)
========================================= */

/* 1. Stellt sicher, dass das Wasserzeichen nicht über den Rand ragt */
.contact-hero, .tech-header-clean {
    position: relative;
    overflow: hidden;
}

/* 2. Legt deine Texte in den Vordergrund */
.contact-hero > .container, 
.tech-header-clean > .container {
    position: relative;
    z-index: 2;
}

/* 3. Das automatische UAV-Wasserzeichen (Nur noch für Kontakt und Tech/Leistungen) */
.contact-hero::after,
.tech-header-clean::after {
    content: "UAV";
    position: absolute;
    right: -5%;
    top: 55%;
    transform: translateY(-50%);
    font-size: 25vw; 
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03); 
    user-select: none;
    line-height: 1;
    z-index: 1;
    letter-spacing: -0.03em;
    pointer-events: none; 
}

/* 4. Schaltet das alte Wasserzeichen auf der Referenzen-Seite komplett ab */
.hero-watermark {
    display: none !important;
}

/* ==========================================================================
   PIXEL-PERFEKTER ANKER FÜR: LEISTUNGEN, REFERENZEN, ÜBER UNS, KONTAKT
   ========================================================================== */

.hero-slant, 
.lookbook-hero, 
.about-hero, 
.contact-hero {
    /* 1. Die Boxen werden alle exakt gleich hoch (680px) */
    height: 680px !important; 
    min-height: 680px !important;
    max-height: 680px !important;
    
    /* 2. Der Text fängt bei allen exakt bei Pixel 250 von oben an */
    padding-top: 180px !important; 
    padding-bottom: 0 !important;
    
    display: block !important; /* Wichtig: Kein Flex-Center mehr, da Textmengen variieren */
    position: relative !important;
    box-sizing: border-box !important;
}

/* 3. Wir fixieren den "Platzhalter" für die kleinen Texte über der Überschrift */
.hero-coordinates, 
.coordinates,
.about-hero .eyebrow, 
.lookbook-hero .eyebrow,
.contact-hero .eyebrow {
    height: 30px !important; /* Feste Höhe für die kleine Zeile */
    margin-bottom: 20px !important; /* Fixer Abstand zur großen H1 */
    margin-top: 0 !important;
    display: flex !important;
    align-items: center !important;
}

/* 4. Die großen Überschriften (H1) werden normiert, damit sie nicht springen */
.huge-title, 
.lookbook-hero h1, 
.about-hero h1, 
.contact-hero h1 {
    margin: 0 !important;
    line-height: 0.9 !important;
}

/* ==========================================================================
   MOBILE & RESPONSIVE UPGRADE (FINAL CLEAN FULL-WIDTH VERSION)
   ========================================================================== 
*/

@media (max-width: 1024px) {
    .info-grid, .fleet-spec-bar, .services-editorial-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .team-member { width: calc(50% - 20px) !important; }
}

@media (max-width: 768px) {
    /* 0. VERHINDERT RAUSZOOMEN UND SEITLICHES SCROLLEN AUF DEM HANDY */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    /* 1. HEADER FULL WIDTH FIX */
    .site-header {
        width: 100% !important;
        max-width: 100% !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        border: none !important;
        background: rgba(255, 255, 255, 0.98) !important;
    }
    .header-inner { padding: 0 20px !important; min-height: 70px !important; }
    .brand-logo-wrap { height: 35px !important; }

    /* 1b. MOBILE MENU FULL WIDTH */
    .mobile-nav {
        margin-top: 0 !important;
        border-radius: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        border: none !important;
        padding: 30px 20px !important;
        gap: 10px !important;
    }
    .mobile-nav a { font-size: 1.1rem !important; padding: 5px 0 !important; }

    /* 1c. FOOTER FULL WIDTH */
    .site-footer { padding-top: 40px !important; padding-bottom: 0 !important; margin-top: 0 !important; }
    .footer-shell {
        border-radius: 0 !important;
        padding: 40px 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border: none !important;
    }

    /* RANDABSTAND (Verhindert, dass Formulare und Texte links am Rand kleben) */
    .container, .container-editorial, .container-wide {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important; 
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    /* 2. HEADER-HÖHEN & ABSTÄNDE FÜR MOBILE LÖSEN */
    .hero { padding-top: 120px !important; min-height: 80vh !important; }
    
    .hero-slant, .lookbook-hero, .about-hero, .contact-hero,
    .media-header-clean, .event-header-clean, .ind-header-clean, .case-header, .tech-header-clean {
        height: auto !important; 
        min-height: 380px !important; 
        max-height: none !important;
        padding-top: 140px !important;
        padding-bottom: 80px !important; 
        margin-top: 0 !important; 
        display: block !important;
    }

    .services-editorial-grid, .editorial-row, .extended-services-section, .stats-section { 
        margin-top: 0 !important; 
        padding-top: 40px !important;
    }

    .hero-coordinates, .coordinates, .about-hero .eyebrow, 
    .lookbook-hero .eyebrow, .contact-hero .eyebrow, .tech-status-bar {
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        min-height: 30px !important;
        flex-wrap: wrap !important;
        margin-bottom: 15px !important;
    }

    /* 3. SCHRIFTEN & UMBRÜCHE KORRIGIEREN */
    .huge-title, .lookbook-hero h1, .about-hero h1, .contact-hero h1, .case-title, .tech-header-clean h1, .hero h1 { 
        font-size: clamp(2rem, 10vw, 2.5rem) !important; 
        line-height: 1.1 !important; 
        margin-bottom: 20px !important; 
        word-wrap: break-word !important; 
        overflow-wrap: break-word !important;
        hyphens: none !important; 
        -webkit-hyphens: none !important;
        white-space: normal !important;
    }
    .about-hero h1 span { font-size: clamp(2rem, 10vw, 2.5rem) !important; display: inline !important; }

    .section-title, .team-section-title, .values-title, .ceo-text h3, .cta-title { 
        font-size: 2rem !important; 
        line-height: 1.2 !important; 
        margin-bottom: 15px !important; 
    }

    .huge-title br, .case-title br, .cta-title br, .section-title br, .about-hero h1 br { display: none !important; }

    .ceo-text p, .team-section-desc, .cta-text, .hero p, .section-text { font-size: 1rem !important; line-height: 1.6 !important; }
    .ceo-quote { font-size: 1.15rem !important; margin: 30px 0 !important; padding-left: 20px !important; }
    .trust-card h4, .value-item h4 { font-size: 1.4rem !important; }

    /* 4. LEISTUNGEN-GRID (TOUCH-OPTIMIERT) */
    .services-editorial-grid {
        grid-template-columns: 1fr !important;
        margin-top: 20px !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }
    .editorial-card { height: 520px !important; border-radius: 20px !important; }
    .editorial-card .card-title-static { display: none !important; }
    .editorial-card .card-hover-overlay {
        opacity: 1 !important; visibility: visible !important;
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.1) 100%) !important;
        justify-content: flex-end !important; padding: 30px 20px !important;
    }
    .editorial-card .card-hover-overlay h3 { font-size: 2rem !important; }
    .editorial-card .card-list li { font-size: 0.95rem !important; border-color: rgba(255,255,255,0.1) !important; }
    .editorial-card .card-btn-reveal { width: 100% !important; text-align: center !important; }

    /* 5. IOS REVEAL FIX */
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

    /* 6. TEAM, CEO & PROJEKTE (SOLARPARK) FIX */
    .ceo-section, .trust-grid, .values-flex, .info-grid, .value-grid, .fleet-spec-bar {
        grid-template-columns: 1fr !important; gap: 30px !important;
    }
    
    .editorial-row, .project-row, .feature-split { 
        display: flex !important; 
        flex-direction: column !important; 
        gap: 40px !important;
    }
    
    .project-row:nth-child(even) {
        flex-direction: column !important; 
    }

    .project-visual-part, .project-text-part, .ceo-image { width: 100% !important; max-width: 100% !important; }
    .team-member { width: 100% !important; max-width: 100% !important; }

    /* 7. KARTEN-PADDING & CTA */
    .trust-card, .info-card, .value-card, .fleet-spec-bar { padding: 25px 20px !important; border-radius: 20px !important; }
    .cta-box-wide { padding: 40px 20px !important; }

    /* 8. KONTAKT FORMULAR */
    .contact-wrapper { display: flex !important; flex-direction: column !important; gap: 50px !important; }
    .form-row-split { display: flex !important; flex-direction: column !important; gap: 20px !important; }
    
    .contact-form-container, .contact-sidebar { 
        width: 100% !important; 
        max-width: 100% !important; 
        box-sizing: border-box !important; 
        text-align: center !important; 
    }
    
    .form-label { text-align: center !important; }
    
    .form-control { 
        width: 100% !important; 
        box-sizing: border-box !important; 
        text-align: center !important; 
        text-align-last: center !important; 
    }
    
    .submit-btn { margin: 20px auto 0 !important; display: block !important; }

    /* 9. STATISTIK-KARTE FIX */
    .stats-section { margin-top: 20px !important; margin-bottom: 40px !important; padding: 0 15px !important; }
    .glass-card-stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 10px !important;
        padding: 25px 15px !important;
        border-radius: 24px !important;
        margin: 0 auto !important;
    }
    .stat-item h3 { font-size: 1.6rem !important; }
    .stat-item span { font-size: 0.6rem !important; white-space: nowrap !important; }

    /* 10. LEISTUNGEN-DETAILS (ENTSCHACHTELN) */
    .editorial-row { display: flex !important; flex-direction: column !important; }
    .editorial-sticky { position: relative !important; top: 0 !important; margin-bottom: 30px !important; }
    .spec-list li { flex-direction: column !important; align-items: flex-start !important; }

    /* 11. KONTAKT-INFO (E-MAIL WRAP FIX) */
    .contact-sidebar { padding: 30px 20px !important; }
    .info-block a, .info-block p { font-size: 1.1rem !important; word-wrap: break-word !important; overflow-wrap: break-word !important; }

    /* 12. SLIDER & BILDER & HUD FIX (GEÄNDERT: Behebt das Sichtbar-sein des 2. Bildes) */
    .slider-wrapper { 
        height: auto !important; 
        display: flex !important; 
        flex-direction: column !important; 
        background: transparent !important;
        overflow: hidden !important; /* Schneidet das Nachbar-Bild ab! */
        width: 100% !important;
    }
    .slider-track {
        order: 1 !important; 
        height: auto !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important; /* Stellt sicher, dass die Slides als Slider nebeneinander liegen */
    }
    .slider-hud, .slider-hud-dark { 
        order: 2 !important; 
        position: relative !important; 
        top: 0 !important; 
        right: 0 !important; 
        left: 0 !important;
        width: 100% !important; 
        margin-top: 20px !important; 
        box-sizing: border-box !important; 
    }
    .slide { 
        min-width: 100% !important; /* Zwingt das Bild, genau 1 Display-Breite zu haben! */
        height: auto !important; 
    }
    .slide img { 
        border-radius: 20px !important; 
        height: 280px !important; 
        width: 100% !important;
        object-fit: cover !important;
    }
    
    .hero-actions, .cta-actions { display: flex !important; flex-direction: column !important; gap: 15px !important; width: 100% !important; }
    .hero-actions a, .cta-actions a { width: 100% !important; }

    /* 13. PARALLAX MOBILE FIX */
    .parallax-banner, 
    .parallax-banner-large, 
    .parallax-banner-tech {
        background-attachment: scroll !important; 
        background-position: center center !important;
        min-height: 300px !important; 
    }

    /* 14. VIDEO AUF DEM HANDY ABSCHALTEN (Datenvolumen schonen) */
    .hero-bg-video {
        display: none !important; /* Versteckt das Video komplett */
    }
    .hero-bg-media {
        /* Lade dir ein schönes Foto hoch und trage hier den Namen ein: */
        background-image: url('/assets/images/mobile-hero-bild.jpg') !important; 
        background-size: cover !important;
        background-position: center center !important;
        background-color: #000 !important;
    }

} /* <--- DIESE KLAMMER BEENDET DEN HANDY-BEREICH UND DARF NICHT ENTFERNT WERDEN */
/* ==========================================================================
   DESKTOP VIDEO FIX (Kugelsicher für Safari & MacBooks)
   ========================================================================== */
@media (min-width: 769px) {
    .hero-bg-media {
        /* Das Bild als Lade-Puffer (Ebene 0) */
        background-image: url('/assets/images/mobile-hero-bild.jpg') !important; 
        background-size: cover !important;
        background-position: center center !important;
        background-color: #000 !important;
        z-index: 0 !important;
    }
    
    .hero-bg-video {
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        z-index: 1 !important; /* Video liegt über dem Hintergrundbild */
        opacity: 1 !important;
    }
    
    .hero-bg-overlay {
        position: absolute !important;
        inset: 0 !important;
        z-index: 2 !important; /* Der dunkle Filter liegt über dem Video */
    }
}