:root {
  --bg: #0c1016;
  --panel: #111722;
  --text: #eef3f8;
  --muted: rgba(238, 243, 248, 0.78);
  --line: rgba(238, 243, 248, 0.14);
  --texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23ffffff' fill-opacity='0.045'/%3E%3C/svg%3E");
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.25), rgba(5, 7, 10, 0.88));
}

.topbar {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px 8px 8px;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(8, 13, 21, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
  overflow: visible;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-size: 1rem;
  color: #f8fafc;
  position: relative;
  z-index: 1;
  margin-left: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 45;
}

.nav a,
.nav__trigger {
  text-decoration: none;
  text-transform: none;
  font-size: 0.88rem;
  letter-spacing: 0;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 10px;
  font: inherit;
  color: rgba(241, 245, 249, 0.94);
  position: relative;
  transition: background-color 260ms ease, color 260ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.nav a.is-active {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.nav a:hover,
.nav__trigger:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transform: translateY(-0.5px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.nav a::after,
.nav__trigger::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #60a5fa, #93c5fd);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms ease;
}

.nav a:hover::after,
.nav__trigger:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.nav__item {
  position: relative;
}

@media (min-width: 981px) {
  .nav__item {
    padding-bottom: 10px;
    margin-bottom: -10px;
  }
}

.nav__trigger {
  padding-right: 28px;
}

.nav__trigger::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.8px solid rgba(241, 245, 249, 0.82);
  border-bottom: 1.8px solid rgba(241, 245, 249, 0.82);
  transform: translateY(-62%) rotate(45deg);
  transition: transform 220ms ease;
}

.nav__item:hover .nav__trigger::before,
.nav__item:focus-within .nav__trigger::before,
.nav__item.is-open .nav__trigger::before {
  transform: translateY(-42%) rotate(225deg);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 320px;
  background: rgba(9, 14, 24, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 10px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(7px) scale(0.99);
  transform-origin: top left;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  z-index: 80;
  box-shadow: none;
}

.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown,
.nav__item.is-open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nav__dropdown a {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.89rem;
  border-radius: 10px;
  padding: 10px 12px;
  line-height: 1.25;
}

.nav__dropdown a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.nav__dropdown a + a {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__dropdown--mega {
  left: auto;
  right: 0;
  min-width: 520px;
  width: min(560px, calc(100vw - 48px));
  max-width: calc(100vw - 48px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  align-items: start;
  transform-origin: top right;
}

.nav__group {
  display: grid;
  gap: 2px;
  align-content: start;
}

.nav__group-title {
  margin: 0 0 10px;
  padding: 0 10px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 245, 249, 0.72);
}

.nav__promo {
  display: grid;
  grid-template-rows: 156px auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 180ms ease, transform 180ms ease;
}

.nav__promo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav__promo span {
  padding: 12px 12px;
  font-size: 0.84rem;
  color: rgba(241, 245, 249, 0.95);
}

.nav__promo:hover {
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}

.lang-switch {
  display: inline-flex;
  gap: 8px;
  margin-left: 8px;
}

.lang-switch a {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  opacity: 0.82;
}

/* ---- Sprachumschalter (Flaggen) ---- */
.topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang {
  position: relative;
  z-index: 60;
}

.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #f1f5f9;
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  line-height: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  min-height: 30px;
}

.lang__btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.lang__flag {
  font-size: 1.1rem;
  line-height: 1;
}

.flag {
  display: inline-block;
  width: 22px;
  height: 15px;
  border-radius: 3px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  flex: 0 0 auto;
}

.flag--de {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 3'%3E%3Crect width='5' height='3' fill='%23000'/%3E%3Crect y='1' width='5' height='1' fill='%23DD0000'/%3E%3Crect y='2' width='5' height='1' fill='%23FFCE00'/%3E%3C/svg%3E");
}

.flag--it {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect width='3' height='2' fill='%23fff'/%3E%3Crect width='1' height='2' fill='%23009246'/%3E%3Crect x='2' width='1' height='2' fill='%23CE2B37'/%3E%3C/svg%3E");
}

.flag--hr {
  background-image: url("_assets/media/flag-hr.svg");
}

.flag--en {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3CclipPath id='t'%3E%3Cpath d='M30,15 h30 v15 z v15 h-30 z h-30 v-15 z v-15 h30 z'/%3E%3C/clipPath%3E%3Crect width='60' height='30' fill='%23012169'/%3E%3Cpath d='M0,0 L60,30 M60,0 L0,30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0,0 L60,30 M60,0 L0,30' clip-path='url(%23t)' stroke='%23C8102E' stroke-width='4'/%3E%3Cpath d='M30,0 v30 M0,15 h60' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M30,0 v30 M0,15 h60' stroke='%23C8102E' stroke-width='6'/%3E%3C/svg%3E");
}

.lang__caret {
  font-size: 0.7rem;
  opacity: 0.8;
}

.lang__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 178px;
  background: rgba(9, 14, 24, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 6px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 90;
  box-shadow: none;
}

.lang.is-open .lang__menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.lang__menu a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 11px;
  border-radius: 8px;
  text-decoration: none;
  color: rgba(241, 245, 249, 0.92);
  font-size: 0.88rem;
}

.lang__menu a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.lang__menu a.is-active {
  background: rgba(96, 165, 250, 0.18);
  color: #fff;
}

/* ---- Hero-Logo (Landing) ---- */
.hero__logo {
  position: absolute;
  top: 70px;
  left: 15px;
  width: clamp(85px, 9vw, 130px);
  height: auto;
  z-index: 25;
  opacity: 0.92;
  filter: none;
  box-shadow: none;
}

/* ---- Premium-Bausteine fuer ausfuehrliche Unterseiten ---- */
.prose {
  max-width: 760px;
}

.prose p {
  font-size: 1.07rem;
  line-height: 1.85;
  color: rgba(238, 243, 248, 0.86);
  margin: 0 0 1.15em;
}

.prose p.dropcap::first-letter {
  float: left;
  font-family: "Times New Roman", Times, serif;
  font-size: 3.4rem;
  line-height: 0.82;
  padding: 6px 12px 0 0;
  color: #93c5fd;
}

.statement {
  margin: clamp(60px, 9vw, 120px) auto;
  max-width: 980px;
  text-align: center;
}

.statement p {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 3.3vw, 2.6rem);
  line-height: 1.32;
  margin: 0;
  color: var(--text);
}

.statement cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(26px, 4vw, 52px);
  margin: clamp(44px, 7vw, 84px) 0;
}

.pillar {
  border-top: 2px solid rgba(96, 165, 250, 0.45);
  padding-top: 20px;
}

.pillar__no {
  font-family: "Times New Roman", Times, serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: #60a5fa;
}

.pillar h3 {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  margin: 12px 0 10px;
  line-height: 1.2;
}

.pillar p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature--wide {
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 100%;
}

.feature--wide .feature__media {
  aspect-ratio: 16 / 10;
  max-width: 700px;
  height: auto;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #f8fafc;
  border-radius: 999px;
  padding: 8px 15px;
  font-weight: 600;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding: 64px 0 72px;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--muted);
}

h1 {
  margin: 14px 0;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1.05;
}

.hero__content p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.65;
}

.subhero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  border-bottom: 0;
  display: flex;
  flex-direction: column;
  --bg: none;
}

.subhero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: linear-gradient(180deg, rgba(5, 7, 10, 0.25), rgba(5, 7, 10, 0.88)), var(--bg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(238, 243, 248, 0.36);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
}

.section {
  padding: 56px 0;
}

.strip-list {
  margin: 0;
  border-top: 0;
}

.strip {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  border-bottom: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
}

.strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.25), rgba(5, 7, 10, 0.72));
}

.strip__content {
  position: relative;
  z-index: 1;
  padding: 56px 0;
  max-width: 100%;
}

.strip__content h2 {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.7rem, 3.1vw, 2.7rem);
  line-height: 1.1;
  max-width: 20ch;
}

.strip__lead {
  position: relative;
  margin: 16px 0 0;
  max-width: 52ch;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.6;
  color: rgba(238, 243, 248, 0.92);
}

.strip__content .btn {
  margin-top: 26px;
}

.strip--light .strip__lead {
  color: rgba(17, 17, 17, 0.84);
}

.strip--light {
  color: #111;
}

.strip--light .strip__overlay {
  background: linear-gradient(180deg, rgba(248, 246, 241, 0.22), rgba(248, 246, 241, 0.64));
}

.strip--light .btn {
  border-color: rgba(17, 17, 17, 0.36);
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 72vh;
  border-top: 0;
}

.contact-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-band__content {
  background: #0a0d13;
  color: #fff;
  padding: 64px 8vw 58px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-band__content h2 {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.1;
}

.contact-band__content .contact-lead {
  margin: 4px 0 8px;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(240, 240, 240, 0.85);
  max-width: 42ch;
}

.contact-band__details h3 {
  margin: 16px 0 6px;
  color: #9b9b9b;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-band__details p {
  margin: 0;
  color: #f0f0f0;
}

.section--dark {
  background: var(--panel);
  border-top: 0;
  border-bottom: 0;
}

.page-content {
  padding: 52px 0 72px;
}

.page-content h2 {
  margin: 24px 0 10px;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.2;
}

.page-content p,
.page-content li {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--muted);
}

.page-content ul,
.page-content ol {
  margin: 8px 0 18px 22px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0 0 10px;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 78ch;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 18px;
  margin: 26px 0;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 16px;
}

.panel h3 {
  margin: 0 0 8px;
  font-size: 1.04rem;
}

.panel p {
  margin: 0;
}

.panel ul {
  margin: 8px 0 0 18px;
}

.section-title {
  margin: 30px 0 10px;
  font-size: clamp(1.5rem, 2.7vw, 2.2rem);
}

.help-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 18px 0 26px;
}

.help-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.help-item h3 {
  margin: 0 0 8px;
  font-size: 1.03rem;
}

.help-item p {
  margin: 0;
}

.contact-compact {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.contact-compact p {
  margin: 8px 0;
}

.section__head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
}

.section__head p {
  margin: 0 0 22px;
  color: var(--muted);
  max-width: 72ch;
  line-height: 1.6;
}

.about-grid,
.service-grid,
.focus-grid {
  display: grid;
  gap: 14px;
}

.about-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-grid {
  margin-top: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.focus-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.service-card,
.focus {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.card h3,
.service-card h3,
.focus h3 {
  margin: 0 0 8px;
}

.card p,
.service-card p,
.focus p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.focus img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 10px;
}

.timeline {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.timeline span {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.timeline h3 {
  margin: 8px 0;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.footer {
  padding: 44px 0 36px;
}

.footer h2 {
  margin: 0 0 10px;
}

.footer p {
  margin: 0 0 10px;
  color: var(--muted);
}

.contact-form {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
}

.consent {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.consent input {
  width: auto;
}

.form-actions {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}

#formStatus {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.hp {
  position: absolute;
  left: -9999px;
}

.page-cta {
  margin-top: 18px;
}

.copy {
  margin-top: 20px;
  font-size: 0.82rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 8px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.03);
}

.stat strong {
  display: block;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.1;
  margin-bottom: 6px;
  color: var(--text);
}

.stat span {
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--muted);
}

.cta-band {
  margin: 42px 0 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.12), rgba(255, 255, 255, 0.02));
}

.cta-band h2 {
  margin: 0 0 10px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.cta-band p {
  margin: 0 0 20px;
  max-width: 72ch;
  line-height: 1.65;
  color: var(--muted);
}

.subhero--video::after,
.subhero--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 11, 16, 0.42), rgba(8, 11, 16, 0.84));
}

/* Foto-Hero als echtes <img> (robuste Pfadaufloesung in allen Sprachordnern) */
.subhero__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  animation: kenburns 26s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1.05); }
  to { transform: scale(1.16) translate(-1.5%, -1.5%); }
}

@media (prefers-reduced-motion: reduce) {
  .subhero__img { animation: none; transform: scale(1.05); }
}

.subhero--compact {
  min-height: 44vh;
}

.subhero .hero__content {
  margin-top: auto;
  padding-bottom: 7vh;
}

.legal {
  max-width: 860px;
}

.legal h2 {
  margin-top: 40px;
}

.legal h3 {
  margin: 26px 0 6px;
  font-size: 1.06rem;
}

.legal a {
  color: #93c5fd;
}

.positions {
  display: grid;
  gap: 20px;
  margin: clamp(36px, 6vw, 64px) 0;
}

.position {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  padding: clamp(22px, 3vw, 32px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.position:hover {
  border-color: rgba(96, 165, 250, 0.4);
  transform: translateY(-2px);
}

.position__head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}

.position__head h3 {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
}

.position__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(96, 165, 250, 0.1);
  color: rgba(238, 243, 248, 0.9);
}

.position p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 14px;
}

.position h4 {
  margin: 16px 0 8px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238, 243, 248, 0.6);
}

.position ul {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.position li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.5;
}

.position li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 11px;
  height: 2px;
  border-radius: 999px;
  background: #60a5fa;
}

.subhero .hero__content p {
  max-width: 56ch;
}

/* ---- Elegante, schlanke Unterseiten ---- */
.section-intro {
  max-width: 760px;
  margin: clamp(56px, 9vw, 104px) auto clamp(4px, 2vw, 14px);
  text-align: center;
}

.section-intro .eyebrow {
  margin-bottom: 14px;
}

.section-intro h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  line-height: 1.12;
  margin: 0 0 18px;
}

.section-intro .lead {
  margin: 0 auto;
  color: var(--muted);
}

.features {
  display: grid;
  justify-items: center;
  gap: clamp(32px, 5vw, 56px);
  margin: clamp(36px, 6vw, 72px) 0;
  padding-left: 60px;
}

.feature {
  display: grid;
  grid-template-columns: 700px 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  max-width: 1150px;
  justify-self: center;
}

.feature.feature--reverse {
  grid-template-columns: 1fr 700px;
}

.feature__media {
  justify-self: stretch;
  width: 100%;
}

.feature__body {
  max-width: 480px;
  text-align: left;
  padding-left: 20px;
}

.feature.feature--reverse {
  grid-template-columns: 1fr 700px;
}

.feature--reverse .feature__media {
  order: 2;
}

.feature--reverse .feature__body {
  order: 1;
}

.feature__media {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 16 / 10;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: none;
}

.feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s ease;
}

.feature:hover .feature__media img {
  transform: scale(1.05);
}

.feature__body .eyebrow {
  margin-bottom: 12px;
  text-align: left;
}

.feature__body h3 {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.45rem, 2.7vw, 2.1rem);
  line-height: 1.15;
  margin: 0 0 16px;
  text-align: left;
}

.feature__body p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 14px;
  text-align: left;
}

.feature__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 420px;
  text-align: left;
}

.feature__body li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.55;
}

.feature__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: #60a5fa;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: clamp(40px, 7vw, 84px) 0;
  padding: 38px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric strong {
  display: block;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.05;
  margin-bottom: 8px;
}

.metric span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.cta-band--center {
  text-align: center;
  margin: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  padding: clamp(36px, 6vw, 64px) clamp(24px, 5vw, 72px);
}

.cta-band--center p {
  margin-left: auto;
  margin-right: auto;
}

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--line);
  background: #080b10;
  padding: clamp(44px, 6vw, 64px) 0 36px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 14px;
}

.site-footer__brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
}

.site-footer p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 8px;
  font-size: 0.92rem;
}

.site-footer h4 {
  margin: 0 0 14px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(238, 243, 248, 0.6);
}

.site-footer a {
  color: rgba(238, 243, 248, 0.82);
  text-decoration: none;
  display: block;
  padding: 5px 0;
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__cta {
  margin-top: 12px;
}

.site-footer__bottom {
  margin-top: clamp(32px, 5vw, 52px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  justify-content: space-between;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.84rem;
}

.site-footer__legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer__legal a {
  display: inline;
  padding: 0;
  font-size: 0.84rem;
}

.process-grid {
  list-style: none;
  margin: 18px 0 8px;
  padding: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.02);
}

.process-step__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.16);
  border: 1px solid rgba(96, 165, 250, 0.4);
  font-family: "Times New Roman", Times, serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.process-step h3 {
  margin: 0 0 6px;
  font-size: 1.04rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

/* ---- Themengerechte CSS/SVG-Hintergruende (ohne externe Medien) ---- */
body[class*="theme-"] {
  background-image: var(--texture);
  background-attachment: fixed;
}

.theme-pelletizing {
  background-image:
    radial-gradient(62% 52% at 82% 72%, rgba(201, 142, 64, 0.16), transparent 70%),
    radial-gradient(48% 40% at 6% 108%, rgba(138, 90, 43, 0.12), transparent 72%),
    var(--texture);
}

.theme-torrefaction {
  background-image:
    radial-gradient(60% 50% at 80% 68%, rgba(199, 79, 38, 0.18), transparent 70%),
    radial-gradient(50% 42% at 8% 110%, rgba(86, 30, 18, 0.20), transparent 72%),
    var(--texture);
}

.theme-trade {
  background-image:
    radial-gradient(62% 52% at 82% 70%, rgba(56, 132, 168, 0.16), transparent 70%),
    radial-gradient(50% 40% at 6% 108%, rgba(26, 70, 92, 0.14), transparent 72%),
    var(--texture);
}

.theme-pelletbinder {
  background-image:
    radial-gradient(60% 50% at 80% 70%, rgba(126, 168, 92, 0.15), transparent 70%),
    radial-gradient(48% 40% at 8% 108%, rgba(94, 120, 64, 0.12), transparent 72%),
    var(--texture);
}

.theme-services {
  background-image:
    radial-gradient(60% 50% at 82% 70%, rgba(96, 132, 168, 0.15), transparent 70%),
    radial-gradient(50% 40% at 6% 108%, rgba(40, 56, 78, 0.16), transparent 72%),
    var(--texture);
}

/* Strip-Overlays thematisch getoent (Foto bleibt erhalten) */
.strip--pelletizing .strip__overlay {
  background: linear-gradient(180deg, rgba(70, 44, 14, 0.30), rgba(5, 7, 10, 0.78));
}

.strip--torrefaction .strip__overlay {
  background: linear-gradient(180deg, rgba(74, 26, 12, 0.34), rgba(5, 7, 10, 0.80));
}

.strip--trade .strip__overlay {
  background: linear-gradient(180deg, rgba(14, 48, 64, 0.32), rgba(5, 7, 10, 0.78));
}

.strip--services .strip__overlay {
  background: linear-gradient(180deg, rgba(22, 40, 60, 0.32), rgba(5, 7, 10, 0.78));
}

@media (max-width: 980px) {
  .nav {
    position: absolute;
    right: 3vw;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(9, 14, 24, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    padding: 12px;
    min-width: 252px;
    box-shadow: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav__dropdown {
    position: static;
    display: grid;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
    border: 0;
    padding: 6px 0 0;
    min-width: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav__dropdown--mega {
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .nav__promo {
    grid-template-rows: 110px auto;
  }

  .about-grid,
  .service-grid,
  .focus-grid,
  .timeline,
  .form-grid,
  .split,
  .help-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .feature--reverse .feature__media {
    order: 0;
  }

  .metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 18px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .subhero {
    min-height: 74vh;
  }

  .strip {
    min-height: 66vh;
  }

  .strip__content h2 {
    max-width: 94%;
  }

  .strip__lead {
    max-width: 94%;
    margin-top: 14px;
  }

  .strip__content .btn {
    margin-top: 20px;
  }

  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band {
    padding: 24px 20px;
  }

  .contact-band {
    grid-template-columns: 1fr;
  }

  .contact-band__content {
    padding: 38px 6vw 44px;
  }

  .page-content {
    padding: 38px 0 52px;
  }

  .page-content h2 {
    margin: 20px 0 8px;
  }
}
