
@import url('https://fonts.googleapis.com/css2?family=Jura:wght@300&display=swap');

body {
    font-family: 'Jura', sans-serif;
}
:root {
  --bg: #05070a;
  --bg-soft: #0b1118;
  --paper: #eef1f4;
  --paper-soft: #d8dde2;
  --text: #f6f8fa;
  --text-dark: #05070a;
  --muted: #a9b1b8;
  --line: rgba(210,218,224,.18);
  --accent: #0078c8;
  --accent-dark: #005f9f;
  --silver: #78848c;
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0,0,0,.28);
  --brand-font: 'Jura', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Jura', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .22em; }

img { max-width: 100%; height: auto; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--paper);
  color: var(--text-dark);
  padding: 10px 14px;
  z-index: 1000;
}

.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,7,10,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 44px;
  max-width: 230px;
}

.footer-logo { height: 38px; max-width: 220px; }
.brand:hover .brand-logo {
  filter: drop-shadow(0 0 10px rgba(0,120,200,.28));
}


.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-family: var(--brand-font);
  letter-spacing: .04em;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color .18s ease;
}

.main-nav a:hover,
.main-nav a.active { color: var(--text); }

.nav-toggle { display: none; }

.hero {
  padding: 92px 0 72px;
  background:
    radial-gradient(circle at top right, rgba(0,120,200,.26), transparent 34%),
    linear-gradient(135deg, #05070a 0%, #0b1118 58%, #020304 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 44px;
  align-items: center;
}

.hero-wordmark {
  max-width: 560px;
  margin: 0 0 12px;
}

.hero-wordmark img {
  display: block;
  width: min(560px, 100%);
  height: auto;
  filter: drop-shadow(0 16px 34px rgba(0,0,0,.32));
}

.hero-claim {
  margin: 0 0 28px 3px;
  color: var(--paper-soft);
  font-family: var(--brand-font);
  font-size: clamp(19px, 2.1vw, 26px);
  letter-spacing: .08em;
}

.eyebrow {
  margin: 0 0 14px;
  font-family: var(--brand-font);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
}

h1, h2, h3 { line-height: 1.08; margin: 0; }

h1 {
  font-size: clamp(42px, 7vw, 86px);
  max-width: 980px;
  letter-spacing: -.055em;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -.045em;
}

h3 { font-size: 24px; letter-spacing: -.025em; }

.lead {
  font-size: clamp(19px, 2vw, 25px);
  color: #d8dde2;
  max-width: 760px;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #05070a;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.button.light {
  background: var(--paper);
  color: var(--text-dark);
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255,255,255,.045);
  box-shadow: var(--shadow);
}

.stat {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.stat:last-child { border-bottom: 0; }

.stat strong {
  display: block;
  font-size: 31px;
  line-height: 1.1;
  color: var(--accent);
  letter-spacing: -.04em;
}

.stat span {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: var(--paper);
  color: var(--text-dark);
}

.section-soft .eyebrow { color: var(--accent-dark); }
.section-soft .lead,
.section-soft .muted,
.section-soft p { color: #243244; }

.two-col {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(300px, 1.1fr);
  gap: 56px;
}

.two-col p {
  margin-top: 0;
  font-size: 18px;
}

.section-head {
  margin-bottom: 28px;
  max-width: 850px;
}

.cards {
  display: grid;
  gap: 22px;
}

.cards.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255,255,255,.045);
}

.section-soft .card {
  background: #f6f8fb;
  border-color: rgba(25,25,25,.12);
}

.card p { color: var(--muted); margin-bottom: 0; }
.section-soft .card p { color: #2c3a4d; }

.card.large { min-height: 100%; }

.check-list {
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

.check-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
  margin-right: 10px;
}

.split-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
  gap: 42px;
  align-items: stretch;
}

.text-link {
  color: var(--accent);
  font-weight: 800;
}

.quote-card {
  border-radius: var(--radius);
  padding: 32px;
  background: var(--paper);
  color: var(--text-dark);
}

.quote-card p {
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 18px;
}

.quote-card span {
  color: #5c6978;
  font-weight: 700;
}

.cta {
  padding: 66px 0;
  background: linear-gradient(135deg, #0078c8, #78848c);
  color: #05070a;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.cta .eyebrow { color: #05070a; }
.cta p { max-width: 690px; }

.page-hero {
  padding: 82px 0 54px;
  background:
    radial-gradient(circle at top right, rgba(0,120,200,.18), transparent 36%),
    #07111f;
  border-bottom: 1px solid var(--line);
}

.page-hero.compact { padding: 62px 0 40px; }

.ref-card ul {
  columns: 2;
  padding-left: 18px;
  margin-bottom: 0;
  color: var(--muted);
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.logo-strip span {
  border: 1px solid rgba(7,17,31,.16);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  background: #f6f8fb;
}

.note {
  color: var(--muted);
  font-size: 14px;
}

.section-soft .note { color: #617082; }

.trailer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.trailer-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.045);
  box-shadow: 0 18px 54px rgba(0,0,0,.16);
}

.trailer-card h2,
.trailer-card p,
.trailer-card .text-link {
  margin-left: 20px;
  margin-right: 20px;
}

.trailer-card h2 {
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 4px;
}

.trailer-card p { color: var(--muted); margin-top: 0; }

.trailer-card .text-link {
  display: inline-block;
  margin-bottom: 22px;
}

.trailer-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0,120,200,.36), rgba(255,255,255,.04)),
    #0d1b2d;
  text-decoration: none;
}

.trailer-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .22s ease, filter .22s ease;
}

.trailer-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,7,10,.02), rgba(5,7,10,.34));
}

.trailer-thumb span {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(238,241,244,.92);
  color: var(--text-dark);
  font-weight: 900;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}

.trailer-card:hover .trailer-thumb img { transform: scale(1.04); filter: saturate(1.05); }

.disabled { color: var(--muted); pointer-events: none; }
.muted-card { opacity: .78; }


.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(300px, 1.2fr);
  gap: 28px;
  align-items: start;
}

.contact-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255,255,255,.045);
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

input, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #080d13;
  color: var(--text);
  font: inherit;
}

.legal-text {
  max-width: 850px;
}

.legal-text h2 {
  margin-top: 28px;
  font-size: 28px;
}

.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  background: #020304;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .6fr;
  gap: 30px;
}

.site-footer h2 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 12px;
}

.site-footer p,
.muted {
  color: var(--muted);
}

.footer-brand { margin-bottom: 16px; }

@media (max-width: 950px) {
  .hero-grid,
  .two-col,
  .split-highlight,
  .contact-grid,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards.three,
  .cards.two,
  .trailer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav {
    display: none;
    position: absolute;
    inset: 78px 20px auto;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #0b1118;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--text);
    padding: 9px 13px;
  }
}

@media (max-width: 620px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .hero { padding-top: 58px; }
  .section { padding: 58px 0; }
  .cards.three,
  .cards.two,
  .trailer-grid {
    grid-template-columns: 1fr;
  }
  .ref-card ul { columns: 1; }
  .brand-logo { height: 34px; max-width: 178px; }
  .hero-wordmark { max-width: 360px; margin-bottom: 8px; }
  .hero-claim { margin-bottom: 22px; }
  h1 { font-size: clamp(38px, 13vw, 58px); }
}


/* Longer project descriptions on trailer cards */
.trailer-card p {
  font-size: 15px;
  line-height: 1.45;
}

.legal-text h3 {
  margin-top: 22px;
  font-size: 21px;
  letter-spacing: -.02em;
}

.legal-text ul {
  padding-left: 22px;
  color: var(--muted);
}

.legal-text li {
  margin: 8px 0;
}

.legal-text a {
  word-break: break-word;
}


/* Clean logo reference wall */
.compact-hero { padding-bottom: 38px; }
.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.logo-tile {
  min-height: 132px;
  border: 1px solid rgba(216,221,226,.18);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  box-shadow: 0 16px 50px rgba(0,0,0,.18);
}
.logo-tile img {
  max-width: 100%;
  max-height: 74px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.16) contrast(.92);
  opacity: .78;
  transition: transform .18s ease, filter .18s ease, opacity .18s ease;
}
.logo-tile:hover img {
  filter: grayscale(.15) brightness(1.08) contrast(1);
  opacity: 1;
  transform: translateY(-2px);
}
.production-strip-section { padding-top: 54px; padding-bottom: 64px; }
.production-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.production-strip span {
  border: 1px solid rgba(5,7,10,.15);
  border-radius: 999px;
  padding: 9px 14px;
  color: #182331;
  background: rgba(255,255,255,.55);
  font-weight: 700;
}
@media (max-width: 900px) { .logo-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .logo-wall { grid-template-columns: 1fr; } .logo-tile { min-height: 112px; } }


/* v12 final typography and trailer grid fixes */
html, body, button, input, textarea, select, a, p, h1, h2, h3, h4, h5, h6, nav, label {
  font-family: 'Jura', sans-serif !important;
  font-weight: 300;
}
.trailer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.trailer-card p {
  display: block;
  color: var(--muted);
  margin-top: 0;
  font-size: 15px;
  line-height: 1.45;
}
.trailer-card .text-link {
  color: var(--paper);
}
@media (max-width: 980px) {
  .trailer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .trailer-grid { grid-template-columns: 1fr; }
}


/* v13 final corrections */
.two-col h2 br {
  display: block;
  margin-top: .42em;
}
.werte-portrait {
  margin: 28px 0 0;
  max-width: 280px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(216,221,226,.22);
  background: rgba(255,255,255,.04);
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
}
.werte-portrait img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(100%) contrast(1.03) brightness(.98);
}

/* Leistungen / Ablauf: prevent words from sticking together */
.process { max-width: 980px; }
.steps {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
}
.steps li {
  counter-increment: step;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  padding: 24px;
  min-height: 170px;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: .14em;
  margin-bottom: 18px;
}
.steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.15;
}
.steps span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.check-list li::before {
  flex: 0 0 auto;
  margin-right: 0;
}

/* Referenzen: consistent logo sizing and brighter visibility */
.logo-wall {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.logo-tile {
  height: 142px;
  min-height: 142px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(238,241,244,.97), rgba(194,203,212,.86));
  border-color: rgba(238,241,244,.42);
}
.logo-tile img {
  width: 185px;
  height: 78px;
  max-width: 88%;
  max-height: 78px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.08) contrast(1.18);
  opacity: .96;
}
.logo-tile:hover img {
  filter: grayscale(.2) brightness(1.03) contrast(1.12);
  opacity: 1;
}
@media (max-width: 950px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .steps { grid-template-columns: 1fr; }
  .logo-wall { grid-template-columns: 1fr 1fr; }
  .logo-tile { height: 116px; min-height: 116px; padding: 18px; }
  .logo-tile img { width: 150px; height: 62px; }
  .werte-portrait { max-width: 220px; }
}


/* Wofür wir stehen: Portrait + persönlicher Untertitel */
.werte-person {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
}

.werte-portrait {
  margin: 0;
}

.werte-portrait img {
  width: 100%;
  display: block;
  border-radius: 18px;
  filter: grayscale(100%);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.werte-portrait figcaption {
  margin-top: 12px;
  font-size: 0.92rem;
  line-height: 1.35;
  color: rgba(230, 236, 245, 0.78);
}

.werte-portrait figcaption strong {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.werte-portrait figcaption span {
  display: block;
  margin-top: 2px;
}

.werte-caption {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(230, 236, 245, 0.80);
  max-width: 430px;
}

@media (max-width: 760px) {
  .werte-person {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .werte-caption {
    max-width: none;
  }
}

.two-col { align-items: flex-start; }


/* Final polish: silver depth, alignment, references page */
.two-col {
  align-items: flex-start;
}

body,
p,
li,
h1,
h2,
h3,
.lead,
.card,
.stat,
.werte-caption,
.site-footer {
  text-shadow: 0 1px 0 rgba(255,255,255,0.08), 0 8px 22px rgba(190,205,220,0.08);
}

.eyebrow,
.main-nav a,
.text-link,
.button {
  text-shadow: 0 0 16px rgba(70,160,220,0.22);
}

.reference-productions-section {
  padding-top: 54px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(210, 222, 235, 0.16);
}

.production-columns {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
}

.production-column {
  list-style: none;
  margin: 0;
  padding: 0 22px 0 0;
  border-right: 1px solid rgba(210, 222, 235, 0.16);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.6s ease forwards;
}

.production-column:nth-child(1) { animation-delay: 0.08s; }
.production-column:nth-child(2) { animation-delay: 0.16s; }
.production-column:nth-child(3) { animation-delay: 0.24s; }
.production-column:nth-child(4) { animation-delay: 0.32s; }
.production-column:nth-child(5) { animation-delay: 0.40s; }

.production-column:last-child {
  border-right: 0;
}

.production-column li {
  position: relative;
  margin: 0 0 8px 0;
  padding-left: 20px;
  line-height: 1.35;
  color: rgba(235, 239, 245, 0.88);
  transition: transform 0.25s ease, color 0.25s ease, text-shadow 0.25s ease;
  cursor: default;
}

.production-column li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #18a8ee;
  text-shadow: 0 0 12px rgba(24, 168, 238, 0.45);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.production-column li:hover {
  transform: translateX(4px);
  color: rgba(255,255,255,1);
  text-shadow: 0 0 10px rgba(180, 210, 240, 0.35);
}

.production-column li:hover::before {
  color: #3cc3ff;
  text-shadow: 0 0 14px rgba(60,195,255,0.8);
}

.reference-logos-section {
  padding-top: 28px;
  padding-bottom: 56px;
}





@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .production-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .production-columns {
    grid-template-columns: 1fr;
  }

  .production-column {
    border-right: 0;
    border-bottom: 1px solid rgba(210, 222, 235, 0.14);
    padding-bottom: 14px;
  }

  .production-column:last-child {
    border-bottom: 0;
  }

  }

.logo-wall-final {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:40px;
  margin-top:30px;
}

.logo-wall-final .logo-tile img{
  max-height:40px;
  opacity:0.85;
  filter: grayscale(100%) brightness(1.6);
  transition: opacity 0.3s ease;
}

.logo-wall-final .logo-tile img:hover{
  opacity:1;
}

.two-col{
  align-items:flex-start !important;
}



/* === XSCAPE FINAL V19: visible silver depth + clean reference motion === */

/* Stronger, visible silver text depth */
body,
p,
li,
h1,
h2,
h3,
.lead,
.card,
.stat,
.werte-caption,
.site-footer,
.production-column li {
  text-shadow:
    0 1px 0 rgba(255,255,255,0.16),
    0 3px 10px rgba(210,225,240,0.16),
    0 12px 28px rgba(120,150,180,0.18) !important;
}

/* Blue headings keep their cool glow */
.eyebrow,
.main-nav a,
.text-link,
.button {
  text-shadow:
    0 0 10px rgba(0,155,230,0.34),
    0 0 22px rgba(0,155,230,0.18) !important;
}

/* Wofür wir stehen: right text starts level with the caption text, not above it */
.two-col,
.two-col.align-top {
  align-items: flex-start !important;
}

.two-col.align-top > div:nth-child(2) {
  padding-top: 0 !important;
}

/* References production list: clear multi-column layout */
.reference-productions-section {
  padding-top: 54px !important;
  padding-bottom: 38px !important;
  border-bottom: 1px solid rgba(210, 222, 235, 0.16) !important;
}

.production-columns {
  margin-top: 24px !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 28px !important;
}

.production-column {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 22px 0 0 !important;
  border-right: 1px solid rgba(210, 222, 235, 0.18) !important;
  opacity: 0;
  transform: translateY(22px);
  animation-name: xscapeFadeInUp !important;
  animation-duration: 1.05s !important;
  animation-timing-function: cubic-bezier(.22,.9,.28,1) !important;
  animation-fill-mode: forwards !important;
  will-change: opacity, transform;
}

.production-column:nth-child(1) { animation-delay: 0.12s !important; }
.production-column:nth-child(2) { animation-delay: 0.26s !important; }
.production-column:nth-child(3) { animation-delay: 0.40s !important; }
.production-column:nth-child(4) { animation-delay: 0.54s !important; }
.production-column:nth-child(5) { animation-delay: 0.68s !important; }

.production-column:last-child {
  border-right: 0 !important;
}

.production-column li {
  position: relative !important;
  margin: 0 0 8px 0 !important;
  padding-left: 20px !important;
  line-height: 1.35 !important;
  color: rgba(235, 239, 245, 0.90) !important;
  transition:
    transform 0.24s ease,
    color 0.24s ease,
    text-shadow 0.24s ease !important;
  cursor: default !important;
}

.production-column li::before {
  content: "•" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: #18a8ee !important;
  text-shadow:
    0 0 8px rgba(24, 168, 238, 0.75),
    0 0 18px rgba(24, 168, 238, 0.35) !important;
  transition: color 0.24s ease, text-shadow 0.24s ease !important;
}

.production-column li:hover {
  transform: translateX(5px) !important;
  color: rgba(255,255,255,1) !important;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.20),
    0 0 12px rgba(210,225,240,0.42),
    0 10px 26px rgba(120,150,180,0.22) !important;
}

.production-column li:hover::before {
  color: #55ccff !important;
  text-shadow:
    0 0 10px rgba(85,204,255,0.95),
    0 0 22px rgba(85,204,255,0.55) !important;
}

@keyframes xscapeFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logos: smaller, calm, bright enough, no jumping animation */
.reference-logos-section {
  padding-top: 26px !important;
  padding-bottom: 56px !important;
}

.logo-wall-final {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 34px !important;
  margin-top: 18px !important;
}

.logo-wall-final .logo-tile {
  min-height: auto !important;
  padding: 6px 12px !important;
  border-right: 1px solid rgba(210,222,235,0.14) !important;
  background: transparent !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.logo-wall-final .logo-tile img {
  max-height: 36px !important;
  max-width: 112px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 0.88 !important;
  filter:
    grayscale(100%)
    brightness(1.85)
    contrast(1.10)
    drop-shadow(0 8px 14px rgba(210,225,240,0.20)) !important;
  transition: opacity 0.30s ease, filter 0.30s ease !important;
}

.logo-wall-final .logo-tile:hover img {
  opacity: 1 !important;
  filter:
    grayscale(100%)
    brightness(2.12)
    contrast(1.12)
    drop-shadow(0 10px 20px rgba(210,225,240,0.30)) !important;
}

@media (max-width: 1100px) {
  .production-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .production-columns {
    grid-template-columns: 1fr !important;
  }

  .production-column {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(210, 222, 235, 0.14) !important;
    padding-bottom: 14px !important;
  }

  .production-column:last-child {
    border-bottom: 0 !important;
  }

  .logo-wall-final {
    gap: 22px !important;
  }
}



/* === XSCAPE FINAL V20 CLEAN OVERRIDES === */

/* Wofür wir stehen: rechte Textspalte auf Höhe des linken Caption-Textes bringen */
.werte-person {
  display: grid !important;
  grid-template-columns: 260px 1fr !important;
  gap: 30px !important;
  align-items: start !important;
}

.werte-person .werte-caption {
  margin-top: 20px !important;
}

.two-col.align-top,
.two-col {
  align-items: flex-start !important;
}

.two-col.align-top > div:nth-child(2),
.two-col > div:nth-child(2) {
  padding-top: 85px !important;
}

/* Referenzen: Logos frei, kleiner, ohne Rahmen/Kacheln */
.reference-logos-section {
  padding-top: 26px !important;
  padding-bottom: 56px !important;
}

.logo-wall-final {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 50px !important;
  flex-wrap: wrap !important;
  margin-top: 30px !important;
}

.logo-wall-final .logo-tile {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
  width: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.logo-wall-final .logo-tile img,
.logo-wall-final img {
  max-height: 28px !important;
  max-width: 110px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 0.75 !important;
  filter: grayscale(100%) brightness(1.6) !important;
  transition: opacity 0.3s ease, filter 0.3s ease !important;
  transform: none !important;
}

.logo-wall-final .logo-tile:hover img,
.logo-wall-final img:hover {
  opacity: 1 !important;
  filter: grayscale(100%) brightness(2.0) !important;
  transform: none !important;
}

@media (max-width: 900px) {
  .werte-person {
    grid-template-columns: 1fr !important;
  }

  .two-col.align-top > div:nth-child(2),
  .two-col > div:nth-child(2) {
    padding-top: 0 !important;
  }

  .logo-wall-final {
    gap: 30px !important;
  }

  .logo-wall-final .logo-tile img,
  .logo-wall-final img {
    max-height: 24px !important;
  }
}

/* v21 fine tuning */

/* text slightly higher */
.two-col > div:nth-child(2){
  padding-top:65px !important;
}

/* logos in one clean row */
.logo-wall-final{
  display:flex !important;
  flex-wrap:nowrap !important;
  justify-content:center !important;
  gap:40px !important;
  overflow:hidden;
}

.logo-wall-final img{
  max-height:26px !important;
  opacity:0.7 !important;
}



/* === XSCAPE FINAL V22 CLEAN === */

/* Wofür wir stehen: rechter Text minimal höher, exakt ruhiger */
.two-col.align-top > div:nth-child(2),
.two-col > div:nth-child(2) {
  padding-top: 48px !important;
}

/* Referenzen: Logos komplett sichtbar, klein, frei, ohne Abschneiden */
.logo-wall-final {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 38px 46px !important;
  margin-top: 30px !important;
  overflow: visible !important;
}

.logo-wall-final .logo-tile {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
  width: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.logo-wall-final .logo-tile img,
.logo-wall-final img {
  max-height: 24px !important;
  max-width: 105px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 0.78 !important;
  filter: grayscale(100%) brightness(1.75) contrast(1.05) !important;
  transform: none !important;
  transition: opacity 0.25s ease, filter 0.25s ease !important;
}

.logo-wall-final .logo-tile:hover img,
.logo-wall-final img:hover {
  opacity: 1 !important;
  filter: grayscale(100%) brightness(2.05) contrast(1.08) !important;
  transform: none !important;
}

@media (max-width: 900px) {
  .two-col.align-top > div:nth-child(2),
  .two-col > div:nth-child(2) {
    padding-top: 0 !important;
  }

  .logo-wall-final {
    gap: 28px 34px !important;
  }

  .logo-wall-final .logo-tile img,
  .logo-wall-final img {
    max-height: 22px !important;
    max-width: 96px !important;
  }
}



/* === XSCAPE FINAL V23 CLEAN VISIBILITY FIX === */

/* Text wieder etwas tiefer als v22, aber nicht so tief wie vorher */
.two-col.align-top > div:nth-child(2),
.two-col > div:nth-child(2) {
  padding-top: 58px !important;
}

/* Logo-Reihe: kompakt, sichtbar, ohne Rand */
.logo-wall-final {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 34px 42px !important;
  margin-top: 28px !important;
  overflow: visible !important;
}

.logo-wall-final .logo-tile {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
}

.logo-wall-final .logo-tile img,
.logo-wall-final img {
  max-height: 25px !important;
  max-width: 108px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 0.82 !important;
  filter: grayscale(100%) brightness(1.75) contrast(1.08) drop-shadow(0 7px 14px rgba(210,225,240,0.16)) !important;
  transform: none !important;
}

.logo-wall-final .logo-tile:hover img,
.logo-wall-final img:hover {
  opacity: 1 !important;
  filter: grayscale(100%) brightness(2.05) contrast(1.10) drop-shadow(0 8px 16px rgba(210,225,240,0.24)) !important;
  transform: none !important;
}

.logo-wall-final img[src$="disney.png"],
.logo-wall-final img[src$="universal.png"],
.logo-wall-final img[src$="sony.png"] {
  filter: invert(1) grayscale(100%) brightness(1.45) contrast(1.08) drop-shadow(0 7px 14px rgba(210,225,240,0.16)) !important;
  opacity: 0.88 !important;
}

@media (max-width: 900px) {
  .two-col.align-top > div:nth-child(2),
  .two-col > div:nth-child(2) {
    padding-top: 0 !important;
  }
}



/* === XSCAPE FINAL V24 MICRO FIX === */

/* rechter Text noch eine halbe Zeile tiefer */
.two-col.align-top > div:nth-child(2),
.two-col > div:nth-child(2) {
  padding-top: 70px !important;
}

/* Logo-Hover: dezente Farb-/Lichtanimation ohne Bewegung */
.logo-wall-final .logo-tile img,
.logo-wall-final img {
  transition:
    opacity 0.35s ease,
    filter 0.35s ease,
    transform 0.35s ease !important;
}

.logo-wall-final .logo-tile:hover img,
.logo-wall-final img:hover {
  opacity: 1 !important;
  filter:
    grayscale(45%)
    saturate(1.18)
    brightness(2.0)
    contrast(1.08)
    drop-shadow(0 0 14px rgba(55, 175, 240, 0.28))
    drop-shadow(0 8px 16px rgba(210,225,240,0.20)) !important;
  transform: none !important;
}

@media (max-width: 900px) {
  .two-col.align-top > div:nth-child(2),
  .two-col > div:nth-child(2) {
    padding-top: 0 !important;
  }
}


/* v25: highlight MGM (1) + Telepool (7) */
.logo-wall-final .logo-tile:nth-child(1) img,
.logo-wall-final .logo-tile:nth-child(7) img {
  max-height: 32px !important;
  opacity: 0.9 !important;
}


/* === XSCAPE V26 Trailer Lightbox === */
.trailer-thumb {
  border: 0;
  padding: 0;
  width: 100%;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.trailer-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.trailer-lightbox.is-open {
  display: flex;
}

.trailer-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 13, 0.88);
  backdrop-filter: blur(8px);
}

.trailer-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 92vw);
  background: #05090f;
  border: 1px solid rgba(210, 222, 235, 0.22);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.62), 0 0 44px rgba(40, 160, 230, 0.14);
}

.trailer-lightbox-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.trailer-lightbox-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.trailer-lightbox-close {
  position: absolute;
  top: -42px;
  right: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.86);
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  text-shadow: 0 0 18px rgba(210,225,240,0.38);
}

.trailer-lightbox-close:hover {
  color: #fff;
}

/* v27 micro text adjust */
.two-col > div:nth-child(2){
  padding-top:62px !important; /* slightly higher than v24 (70) and v23 (58) */
}

/* v28 micro adjust +2px */
.two-col > div:nth-child(2){
  padding-top:60px !important;
}

/* v29 micro adjust +3px */
.two-col > div:nth-child(2){
  padding-top:57px !important;
}

/* v30 micro adjust +5px */
.two-col > div:nth-child(2){
  padding-top:52px !important;
}

/* v31 micro adjust +5px */
.two-col > div:nth-child(2){
  padding-top:47px !important;
}

/* v32 micro adjust +10px */
.two-col > div:nth-child(2){
  padding-top:37px !important;
}

/* v33 micro adjust +10px higher */
.two-col > div:nth-child(2){
  padding-top:27px !important;
}

/* v34 SEO text: readable for visitors and search engines, visually restrained */
.seo-text-section {
  padding-top: 26px;
  padding-bottom: 10px;
}
.seo-copy {
  max-width: 920px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(230, 236, 245, 0.74);
}

/* === XSCAPE Bewerbung Pro === */
.application-layout{display:grid;grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);gap:56px;align-items:start}
.application-notes{list-style:none;margin:24px 0 0;padding:0}
.application-notes li{position:relative;padding-left:20px;margin:0 0 10px;color:rgba(235,239,245,.78)}
.application-notes li::before{content:"•";position:absolute;left:0;color:#18a8ee;text-shadow:0 0 12px rgba(24,168,238,.45)}
.application-form{background:rgba(255,255,255,.035);border:1px solid rgba(210,222,235,.16);border-radius:20px;padding:28px;box-shadow:0 22px 60px rgba(0,0,0,.26)}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.application-form label{display:block;margin-bottom:18px}
.application-form label span{display:block;margin-bottom:8px;color:rgba(235,239,245,.78);font-size:.95rem}
.application-form input,.application-form select,.application-form textarea{width:100%;box-sizing:border-box;border:1px solid rgba(210,222,235,.18);border-radius:12px;background:rgba(4,8,13,.58);color:rgba(255,255,255,.92);padding:13px 14px;font:inherit;outline:none}
.application-form input:focus,.application-form select:focus,.application-form textarea:focus{border-color:rgba(24,168,238,.72);box-shadow:0 0 0 3px rgba(24,168,238,.14)}
.checkbox-row{display:grid!important;grid-template-columns:20px 1fr;gap:12px;align-items:start}
.checkbox-row input{width:auto;margin-top:3px}.checkbox-row span{margin:0!important;line-height:1.45}
.form-hint{margin-top:16px;font-size:.92rem;color:rgba(235,239,245,.62)}
.hp-field{position:absolute!important;left:-9999px!important;opacity:0!important}
@media(max-width:900px){.application-layout,.form-grid{grid-template-columns:1fr}.application-form{padding:22px}}

/* v36 Bewerbung: optionale Felder */
.application-form .optional {
  font-style: normal;
  opacity: 0.62;
  font-size: 0.9em;
}

/* v40 international */
.map-embed iframe{border-radius:18px;filter:grayscale(100%) brightness(.82) contrast(1.05);box-shadow:0 22px 60px rgba(0,0,0,.32)}

/* v43 SEO Landingpage */
.landing-hero .hero-copy p:not(.eyebrow):not(.lead) {
  max-width: 760px;
  color: rgba(230,236,245,.78);
  line-height: 1.7;
}
.seo-landing-copy p {
  line-height: 1.75;
}
