:root {
  --petrol: #083f4c;
  --petrol-deep: #052f39;
  --petrol-mid: #0e5665;
  --orange: #f7941d;
  --red: #d94435;
  --ink: #102f38;
  --muted: #617177;
  --paper: #fff;
  --soft: #f3f6f5;
  --petrol-soft: #eef5f4;
  --line: #d7dfdf;
  --max: 1240px;
  --font: "Manrope", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.65;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.container {
  width: min(calc(100% - 64px), var(--max));
  margin-inline: auto;
}
.container > *,
.form-grid > *,
.about-grid > *,
.enset-grid > *,
.leistung-detail-grid > *,
.team-hero-grid > *,
.team-close-grid > *,
.legal-grid > * {
  min-width: 0;
}
h1,
h2,
h3,
p,
a,
dt,
dd,
li,
label {
  overflow-wrap: break-word;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  background: #fff;
  padding: 12px 18px;
  z-index: 100;
}
.skip-link:focus {
  top: 20px;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  color: #fff;
  transition: 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 63, 76, 0.97);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 30px rgba(4, 43, 53, 0.08);
}
.team-page .site-header {
  background: rgba(8, 63, 76, 0.97);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 30px rgba(4, 43, 53, 0.08);
}
.header-inner {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  color: inherit;
}
.brand-logo {
  display: block;
  height: auto;
  width: 176px;
}
.primary-navigation {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
}
.primary-navigation > a {
  position: relative;
}
.primary-navigation > a:not(.nav-cta):after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--orange);
  transition: 0.25s;
}
.primary-navigation > a:hover:after {
  right: 0;
}
.primary-navigation > a.is-active:after,
.primary-navigation li > a.is-active:after {
  right: 0;
}
.nav-cta,
.btn {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  transition: 0.25s;
}
.nav-cta {
  padding: 14px 18px;
  background: var(--orange);
  color: #fff;
}
.nav-cta:hover,
.btn-orange:hover {
  background: #e7800a;
}
.mobile-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  padding: 10px;
}
.mobile-toggle span {
  display: block;
  height: 1px;
  background: currentColor;
  margin: 8px 0;
}
.hero {
  position: relative;
  min-height: 830px;
  height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  background: linear-gradient(
    90deg,
    rgba(3, 42, 52, 0.94) 0%,
    rgba(4, 49, 59, 0.83) 32%,
    rgba(4, 46, 56, 0.25) 68%,
    rgba(3, 35, 43, 0.2) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 150px;
}
.hero-frame {
  position: relative;
  max-width: 690px;
  padding: 62px 48px 55px 52px;
}
.hero-frame:before,
.hero-frame:after {
  content: "";
  position: absolute;
  border-color: var(--orange);
  opacity: 0.9;
}
.hero-frame:before {
  inset: 0 42% 35% 0;
  border-left: 1px solid;
  border-top: 1px solid;
}
.hero-frame:after {
  inset: 48% 74% 0 0;
  border-left: 1px solid;
  border-bottom: 1px solid;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  margin: 0 0 20px;
}
.eyebrow-light {
  color: #fff;
  opacity: 0.78;
}
.hero h1,
.section h2,
.enset h2,
.contact-cta h2 {
  margin: 0;
  letter-spacing: -0.045em;
  font-weight: 500;
  line-height: 1.08;
}
.hero h1 {
  font-size: clamp(48px, 5vw, 76px);
}
h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-copy {
  max-width: 615px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
  margin: 28px 0 0;
}
.actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}
.btn {
  min-height: 50px;
  padding: 0 22px;
}
.btn-orange {
  background: var(--orange);
  color: #fff;
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 44px;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.scroll-cue span {
  display: block;
  width: 1px;
  height: 46px;
  background: var(--orange);
}
.vertical-cta {
  position: fixed;
  right: 32px;
  top: 24vh;
  z-index: 25;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.66);
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    opacity 0.25s ease;
  pointer-events: auto;
  background: transparent;
  padding: 12px 0;
}
.vertical-cta span {
  display: block;
  width: 1px;
  height: 46px;
  background: currentColor;
}
.vertical-cta:hover,
.vertical-cta:focus-visible {
  opacity: 0.92;
}
.vertical-cta:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 6px;
}
.vertical-cta.is-on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.vertical-cta.is-on-light {
  color: var(--ink);
  border-color: var(--ink);
}
@media (max-width: 1024px) {
  .vertical-cta {
    display: none;
  }
}
.hero .hero-principles {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;

    width: 100%;
    margin-top: 0;
    padding: 28px 0;

    background: rgba(8, 63, 76, 0.78);
    backdrop-filter: blur(8px);
}
.hero .hero-principles .principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero .hero-principles .principle-grid article {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.hero .hero-principles .principle-grid article:first-child {
  padding-left: 0;
}
.hero .hero-principles .principle-grid article:last-child {
  border-right: 0;
}
.hero .hero-principles .principle-grid article div {
  display: grid;
  gap: 6px;
}
.hero .hero-principles .principle-grid strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}
.hero .hero-principles .principle-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}
.principles {
  background: var(--petrol);
  color: #fff;
  padding: 34px 0;
}
.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.principle-grid article {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.principle-grid article:first-child {
  padding-left: 0;
}
.principle-grid article:last-child {
  border: 0;
}
.principle-grid strong {
  font-size: 12px;
}
.principle-grid p {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.64);
  margin: 3px 0 0;
}
.line-icon {
  align-items: center;
  display: flex;
  flex: 0 0 38px;
  height: 38px;
  justify-content: center;
  width: 38px;
  font-size: 34px;
  color: var(--orange);
  font-weight: 300;
}
.line-icon img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
  filter: brightness(0) saturate(100%) invert(68%) sepia(87%) saturate(1807%) hue-rotate(344deg) brightness(101%) contrast(94%);
}
.section {
  padding: 130px 0;
}
.section h2 {
  font-size: clamp(38px, 4vw, 60px);
}
.section h2 span,
.contact-cta h2 span {
  color: var(--petrol-mid);
}
.section-copy {
  max-width: 570px;
}
.section-copy .lead {
  font-size: 20px;
  color: var(--ink);
  margin-top: 32px;
}
.section-copy > p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}
.text-link,
.services-grid a {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: var(--petrol);
  font-size: 12px;
  font-weight: 700;
  margin-top: 24px;
}
.text-link span,
.services-grid a span {
  color: var(--orange);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
}
.about-visual {
  position: relative;
  padding: 24px 0 48px 48px;
}
.technical-panel {
  height: 450px;
  background: var(--petrol);
  position: relative;
  color: #fff;
  overflow: hidden;
}
.technical-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      transparent 49.8%,
      rgba(255, 255, 255, 0.12) 50%,
      transparent 50.2%
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 69px,
      rgba(255, 255, 255, 0.06) 70px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 69px,
      rgba(255, 255, 255, 0.06) 70px
    );
}
.panel-index {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--orange);
}
.drawing {
  position: absolute;
  inset: 70px;
}
.axis {
  position: absolute;
  background: rgba(247, 148, 29, 0.7);
}
.axis-x {
  height: 1px;
  left: -25px;
  right: -25px;
  top: 50%;
}
.axis-y {
  width: 1px;
  top: -25px;
  bottom: -25px;
  left: 50%;
}
.drawing-copy {
  position: absolute;
  left: -20px;
  bottom: 22px;
}
.drawing-copy small,
.drawing-copy b {
  display: block;
  font-size: 9px;
  letter-spacing: 0.13em;
  font-weight: 500;
}
.drawing-copy strong {
  display: block;
  font-size: 35px;
  line-height: 1.1;
  margin: 8px 0 18px;
}
.visual-note {
  position: absolute;
  right: -22px;
  bottom: 0;
  background: var(--orange);
  color: #fff !important;
  margin: 0;
  padding: 22px 28px;
  font-size: 12px;
  font-weight: 700;
}
.process {
  background: var(--petrol-soft);
}
.section-heading {
  margin-bottom: 70px;
}
.section-heading.compact {
  max-width: 760px;
}
.section-heading.compact > p:last-child {
  color: var(--muted);
  max-width: 620px;
}
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.process-grid:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 31px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(8, 63, 76, 0.18),
    rgba(8, 63, 76, 0.42),
    rgba(8, 63, 76, 0.18)
  );
}
.process-grid article {
  position: relative;
  padding: 0 34px 0 0;
}
.process-grid article:before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(247, 148, 29, 0.12);
}
.process-grid article > span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 0 46px;
  padding-right: 12px;
  background: var(--petrol-soft);
  font-size: clamp(36px, 3vw, 44px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.03em;
  color: rgba(8, 63, 76, 0.34);
  font-variant-numeric: tabular-nums;
}
.process-grid h3 {
  font-size: 16px;
  margin: 0 0 8px;
}
.process-grid p {
  font-size: 12px;
  color: var(--muted);
  max-width: 210px;
}
.audience {
  background: var(--soft);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.audience-grid article {
  min-height: 245px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: 0.25s;
  background: rgba(255, 255, 255, 0.42);
}
.audience-grid article:hover {
  background: var(--petrol);
  color: #fff;
}
.audience-grid article > b,
.services-grid article > b {
  position: absolute;
  right: 22px;
  top: 18px;
  font-size: 9px;
  color: #9aa8aa;
}
.audience-grid article > span {
  align-items: center;
  display: flex;
  height: 40px;
  justify-content: center;
  width: 40px;
  font-size: 32px;
  color: var(--orange);
}
.audience-grid article > span img {
  display: block;
  height: 40px;
  object-fit: contain;
  width: 40px;
  filter: brightness(0) saturate(100%) invert(68%) sepia(87%) saturate(1807%) hue-rotate(344deg) brightness(101%) contrast(94%);
}
.audience-grid h3 {
  font-size: 17px;
  margin: 28px 0 9px;
}
.audience-grid p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.audience-grid article:hover p {
  color: rgba(255, 255, 255, 0.65);
}
.services {
  background: #fff;
}
.services-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 100px;
  align-items: end;
}
.services-heading > p {
  color: var(--muted);
  font-size: 13px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e4ebea;
}
.services-grid article {
  background: #fff;
  padding: 38px 34px;
  min-height: 330px;
  position: relative;
  transition: 0.25s;
}
.services-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(5, 50, 60, 0.08);
  z-index: 1;
}
.service-icon {
  font-size: 37px;
  color: var(--petrol);
}
.services-grid h3 {
  font-size: 18px;
  line-height: 1.35;
  margin: 28px 0 12px;
}
.services-grid p {
  font-size: 12px;
  color: var(--muted);
}
.services-grid a {
  position: absolute;
  bottom: 30px;
}
.enset {
  background: var(--petrol-deep);
  color: #fff;
  padding: 115px 0;
  overflow: hidden;
}
.enset-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 50px;
}
.enset h2 {
  font-size: clamp(38px, 4vw, 58px);
}
.enset h3 {
  font-size: 21px;
  color: var(--orange);
  font-weight: 500;
  margin: 24px 0 14px;
}
.enset-copy > p:not(.eyebrow) {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  max-width: 560px;
}
.eyebrow-red {
  color: #ef6a59;
}
.enset-media {
  position: relative;
}
.enset-media:before {
  content: "";
  position: absolute;
  inset: -20px 12% 12% -20px;
  border: 1px solid rgba(247, 148, 29, 0.55);
}
.enset-media img {
  position: relative;
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 91% 100%, 0 100%);
}
.contact-cta {
  background: linear-gradient(135deg, var(--petrol) 0%, var(--petrol-mid) 100%);
  color: #fff;
  padding: 90px 0;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: end;
}
.contact-cta h2 {
  font-size: clamp(36px, 4vw, 54px);
}
.contact-cta h2 span {
  color: var(--orange);
}
.cta-grid > div:last-child p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 25px;
}
.site-footer {
  background: #041f26;
  color: #fff;
  padding: 75px 0 25px;
  border-top: 12px solid var(--petrol);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 80px;
}
.brand-footer {
  display: inline-block;
  margin-bottom: 26px;
}
.brand-footer .brand-logo {
  width: 158px;
}
.footer-grid h3 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin: 0 0 19px;
}
.footer-grid p,
.footer-grid a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.68);
}
.footer-grid > div:nth-child(2),
.footer-grid > div:nth-child(3) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
.social {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  margin-top: 55px;
  font-size: 8px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.page-hero {
  padding: 180px 0 90px;
  background: var(--petrol);
  color: #fff;
}
.page-hero h1 {
  max-width: 900px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.section-form {
  padding: 100px 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
  border-top: 1px solid var(--petrol);
  padding-top: 36px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.full-width,
.checkbox-row,
.form-actions,
.form-status {
  grid-column: 1/-1;
}
.form-row label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 12px 0;
  color: var(--ink);
  outline: 0;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--orange);
}
.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}
.checkbox-row input {
  width: auto;
}
.checkbox-row label {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.error-message {
  font-size: 10px;
  color: #b62424;
}
.helper-text,
.note {
  font-size: 11px;
  color: var(--muted);
}
.note {
  border-left: 2px solid var(--orange);
  padding-left: 16px;
}
.form-status {
  font-size: 12px;
  color: var(--petrol);
}
.form-status.is-error {
  color: #b62424;
}
.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.leistungen-hero {
  position: relative;
  overflow: hidden;
  padding: 185px 0 115px;
  background: var(--petrol);
  color: #fff;
}
.leistungen-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      transparent 49.8%,
      rgba(255, 255, 255, 0.08) 50%,
      transparent 50.2%
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 79px,
      rgba(255, 255, 255, 0.045) 80px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 79px,
      rgba(255, 255, 255, 0.045) 80px
    );
}
.leistungen-hero:after {
  content: "";
  position: absolute;
  left: 8vw;
  right: 18vw;
  bottom: 74px;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--orange),
    rgba(255, 255, 255, 0.28),
    transparent
  );
}
.leistungen-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}
.leistungen-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -0.045em;
}
.leistungen-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}
.leistungen-nav {
  position: sticky;
  top: 92px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-block: 1px solid var(--line);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.leistungen-nav:before,
.leistungen-nav:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 72px;
  pointer-events: none;
}
.leistungen-nav:before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}
.leistungen-nav:after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}
.leistungen-nav-track {
  display: flex;
  width: max-content;
  animation: leistungen-marquee 100s linear infinite;
  will-change: transform;
}
.leistungen-nav:hover .leistungen-nav-track,
.leistungen-nav:focus-within .leistungen-nav-track {
  animation-play-state: paused;
}
.leistungen-nav-group {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
  padding: 14px 5px;
}
.leistungen-nav a {
  flex: 0 0 auto;
  padding: 10px 12px;
  border: 1px solid rgba(8, 63, 76, 0.12);
  color: var(--petrol);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #fff;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}
.leistungen-nav a:hover,
.leistungen-nav a:focus-visible {
  border-color: var(--orange);
  color: var(--ink);
}
.leistungen-nav a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
@keyframes leistungen-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.leistung-detail {
  position: relative;
  padding: 105px 0;
  background: #fff;
  overflow: hidden;
  scroll-margin-top: 150px;
}
.leistung-detail.is-muted,
.leistungen-phases {
  background: var(--petrol-soft);
}
.leistung-detail:after {
  content: "";
  position: absolute;
  right: 7vw;
  top: 74px;
  width: 150px;
  height: 150px;
  border-top: 1px solid rgba(8, 63, 76, 0.16);
  border-right: 1px solid rgba(8, 63, 76, 0.16);
  pointer-events: none;
}
.leistung-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 90px;
  align-items: start;
}
.leistung-index {
  display: inline-block;
  margin-bottom: 22px;
  color: rgba(8, 63, 76, 0.32);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.leistung-detail h2 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.leistung-detail p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 14px;
}
.leistung-list {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.leistung-list li {
  position: relative;
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
}
.leistung-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(247, 148, 29, 0.1);
}
.leistungen-phases {
  border-top: 1px solid var(--line);
}
.team-hero {
  position: relative;
  overflow: hidden;
  padding: 178px 0 112px;
  background: #fff;
}
.team-hero:before {
  content: "";
  position: absolute;
  inset: 92px 0 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 79px,
      rgba(8, 63, 76, 0.035) 80px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 79px,
      rgba(8, 63, 76, 0.035) 80px
    );
  pointer-events: none;
}
.team-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.6fr);
  gap: 90px;
  align-items: center;
}
.team-title-wrap {
  position: relative;
  padding-left: 48px;
}
.team-bracket {
  position: absolute;
  left: 0;
  top: 10px;
  width: 24px;
  height: 156px;
  border-left: 2px solid var(--orange);
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
}
.team-hero h1,
.team-close h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(50px, 7vw, 98px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.055em;
}
.team-logo-word {
  color: var(--ink);
  letter-spacing: -0.08em;
}
.team-logo-word span {
  color: var(--orange);
}
.team-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 34px 0 0 48px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.team-badge {
  justify-self: end;
  display: grid;
  place-items: center;
  width: min(360px, 100%);
  aspect-ratio: 0.9;
  padding: 46px;
  background: var(--petrol);
  color: #fff;
  border-radius: 56% 44% 58% 42% / 44% 58% 42% 56%;
  box-shadow: 0 26px 70px rgba(5, 47, 57, 0.18);
}
.team-badge p {
  margin: 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.team-badge span {
  color: var(--orange);
}
.team-section {
  background: var(--petrol-soft);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.team-card {
  position: relative;
  min-height: 350px;
  padding: 28px 22px 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(8, 63, 76, 0.1);
  border-radius: 8px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.team-card:before {
  content: "";
  position: absolute;
  left: 22px;
  top: 216px;
  width: 12px;
  height: 34px;
  border-left: 2px solid rgba(247, 148, 29, 0.65);
  border-top: 2px solid rgba(247, 148, 29, 0.65);
  border-bottom: 2px solid rgba(247, 148, 29, 0.65);
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 148, 29, 0.34);
  box-shadow: 0 18px 38px rgba(5, 50, 60, 0.1);
}
.team-card:hover:before {
  border-color: var(--orange);
  transform: translateX(2px);
}
.team-card:before,
.team-card:hover:before {
  display: none;
}
.team-card img {
  width: 158px;
  height: 158px;
  margin: 0 auto 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(8, 63, 76, 0.14);
}
.team-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}
.team-role {
  position: relative;
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--petrol);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.team-role:before {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  width: 10px;
  height: 24px;
  border-left: 2px solid rgba(247, 148, 29, 0.65);
  border-top: 2px solid rgba(247, 148, 29, 0.65);
  border-bottom: 2px solid rgba(247, 148, 29, 0.65);
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}
.team-card:hover .team-role:before {
  border-color: var(--orange);
  transform: translateX(2px);
}
.team-card a {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.team-card a:hover,
.team-card a:focus-visible {
  color: var(--petrol);
}
.team-card a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.team-close {
  padding: 92px 0 110px;
  background: #fff;
}
.team-close-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 80px;
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
.team-close h2 {
  max-width: 760px;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.06;
}
.team-close h2 span {
  color: var(--petrol-mid);
}
.team-close p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
}
.legal-hero {
  position: relative;
  overflow: hidden;
}
.legal-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      transparent 49.8%,
      rgba(255, 255, 255, 0.08) 50%,
      transparent 50.2%
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 79px,
      rgba(255, 255, 255, 0.045) 80px
    );
}
.legal-hero .container {
  position: relative;
  z-index: 1;
}
.legal-section {
  background: #fff;
}
.legal-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: 90px;
  align-items: start;
}
.legal-aside {
  position: sticky;
  top: 126px;
  padding: 30px 0 0 28px;
  border-left: 2px solid var(--orange);
}
.legal-aside p:not(.eyebrow),
.legal-aside a {
  display: block;
  color: var(--muted);
  font-size: 13px;
}
.legal-aside a:hover,
.legal-aside a:focus-visible,
.legal-content a:hover,
.legal-content a:focus-visible {
  color: var(--petrol);
}
.legal-aside a:focus-visible,
.legal-content a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.legal-content {
  display: grid;
  gap: 54px;
}
.legal-content article {
  position: relative;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.legal-content article:after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 72px;
  height: 1px;
  background: var(--orange);
}
.legal-content h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.035em;
}
.legal-content p {
  margin: 0;
  color: var(--muted);
}
.legal-list {
  display: grid;
  gap: 0;
  margin: 0;
}
.legal-list div {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 0.62fr);
  gap: 30px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.legal-list dt {
  color: var(--petrol);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.legal-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
}
@media (max-width: 1024px) {
  .container {
    width: min(calc(100% - 36px), var(--max));
  }

  .header-inner {
    height: 72px;
  }

  .mobile-toggle {
    display: block;
  }

  .primary-navigation {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: #fff;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: 0.2s;
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .primary-navigation.open {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .primary-navigation a {
    padding: 13px;
  }

  .primary-navigation > a:not(.nav-cta):after,
  .primary-navigation li > a:not(.nav-cta):after {
    display: none;
  }

  .hero {
    display: block;
    min-height: 0;
    height: auto;
    padding-top: 72px;
  }

  .hero-inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero .hero-principles {
    position: relative;
    margin-top: 40px;
  }

  .hero .hero-principles .principle-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .hero-frame {
    padding: 42px 22px;
  }

  .principle-grid article:nth-child(2) {
    border: 0;
  }

  .about-grid,
  .enset-grid,
  .cta-grid,
  .services-heading,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .visual-note {
    right: 0;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .audience-grid,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 90px 0;
  }

  .services-heading {
    margin-bottom: 50px;
  }

  .enset {
    padding: 90px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 43px;
  }
  .hero-copy {
    font-size: 14px;
  }
  .actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .principle-grid,
  .process-grid,
  .audience-grid,
  .services-grid,
  .footer-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }
  .principle-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding: 0 0 18px;
  }
  .principle-grid article:last-child {
    border-bottom: 0;
  }
  .about-visual {
    padding-left: 0;
  }
  .technical-panel {
    height: 360px;
  }
  .visual-note {
    right: 0;
  }
  .process-grid article:not(:last-child):after {
    display: none;
  }
  .process-grid article {
    border-bottom: 1px solid var(--line);
    padding-bottom: 25px;
  }
  .audience-grid {
    border-left: 0;
  }
  .audience-grid article {
    border-left: 1px solid var(--line);
  }
  .services-grid {
    background: transparent;
    gap: 12px;
  }
  .services-grid article {
    border: 1px solid var(--line);
  }
  .cta-grid {
    gap: 40px;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .footer-bottom {
    gap: 20px;
    flex-direction: column;
  }
  .full-width,
  .checkbox-row,
  .form-actions,
  .form-status {
    grid-column: auto;
  }
  .page-hero {
    padding-top: 130px;
  }
}
@media (max-width: 1024px) {
  .leistungen-hero {
    padding: 140px 0 90px;
  }
  .leistungen-nav {
    top: 72px;
  }
  .leistung-detail {
    padding: 82px 0;
    scroll-margin-top: 128px;
  }
  .leistung-detail-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .leistung-detail:after {
    width: 90px;
    height: 90px;
    right: 24px;
  }
  .team-hero {
    padding: 136px 0 86px;
  }
  .team-hero-grid,
  .team-close-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .team-badge {
    justify-self: start;
    max-width: 320px;
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }
  .legal-aside {
    position: static;
  }
}
@media (max-width: 600px) {
  .leistungen-hero {
    padding: 122px 0 76px;
  }
  .leistungen-hero h1 {
    font-size: 40px;
  }
  .leistungen-hero p:not(.eyebrow) {
    font-size: 14px;
  }
  .leistung-detail {
    padding: 68px 0;
  }
  .leistung-index {
    font-size: 30px;
  }
  .leistung-list li {
    padding-right: 6px;
  }
  .team-hero {
    padding: 120px 0 72px;
  }
  .team-title-wrap {
    padding-left: 28px;
  }
  .team-bracket {
    width: 16px;
    height: 112px;
  }
  .team-hero h1 {
    font-size: 48px;
  }
  .team-hero-copy > p:not(.eyebrow) {
    margin-left: 28px;
    font-size: 14px;
  }
  .team-badge {
    width: min(260px, 82vw);
    padding: 34px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-card {
    min-height: auto;
  }
  .team-close {
    padding: 72px 0 84px;
  }
  .team-close-grid {
    gap: 36px;
  }
  .legal-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
@media (max-width: 600px) {
  .process-grid:before {
    display: none;
  }
  .process-grid article:before {
    top: 17px;
  }
  .process-grid article > span {
    margin-bottom: 26px;
    font-size: 36px;
  }
  .process-grid article:last-child {
    border-bottom: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  .reveal,
  .vertical-cta,
  .leistungen-nav-track {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}
.primary-navigation ul {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-navigation li > a {
  position: relative;
}
.primary-navigation li > a:not(.nav-cta):after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--orange);
  transition: 0.25s;
}
.primary-navigation li > a:hover:after {
  right: 0;
}
@media (max-width: 1024px) {
  .primary-navigation ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .primary-navigation li a {
    display: block;
    padding: 13px;
  }
}
@media (max-width: 768px) {
  .section,
  .enset,
  .section-form {
    padding-block: 72px;
  }
  .hero-bg {
    object-position: 62% center;
  }
  .hero-frame {
    max-width: 100%;
    padding: 38px 22px;
  }
  .hero .hero-principles {
    margin-top: 0;
  }
  .hero .hero-principles .principle-grid {
    gap: 20px 0;
  }
  .hero .hero-principles .principle-grid article {
    padding-inline: 18px;
  }
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .form-row input,
  .form-row select,
  .form-row textarea {
    min-height: 46px;
    font-size: 16px;
  }
  .form-row textarea {
    min-height: 150px;
  }
  .btn,
  .nav-cta,
  .primary-navigation a,
  .primary-navigation li a {
    min-height: 48px;
  }
}
@media (max-width: 600px) {
  .hero-inner {
    padding-block: 48px;
  }
  .hero .hero-principles .principle-grid {
    grid-template-columns: 1fr;
  }
  .hero .hero-principles .principle-grid article,
  .hero .hero-principles .principle-grid article:first-child {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .hero .hero-principles .principle-grid article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .hero .hero-principles .principle-grid strong {
    font-size: 16px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .services-grid article,
  .audience-grid article {
    min-height: auto;
  }
  .services-grid article {
    padding-bottom: 78px;
  }
}
@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }
  .brand-logo {
    width: 148px;
  }
  .header-inner {
    height: 64px;
  }
  .primary-navigation {
    top: 64px;
    max-height: calc(100dvh - 64px);
    padding: 14px;
  }
  .hero {
    padding-top: 64px;
  }
  .hero h1 {
    font-size: clamp(34px, 11vw, 43px);
  }
  .hero-copy {
    line-height: 1.6;
  }
  .actions {
    align-items: stretch;
    width: 100%;
  }
  .actions .btn,
  .form-actions .btn {
    width: 100%;
  }
  .section,
  .enset,
  .section-form {
    padding-block: 58px;
  }
  .section h2,
  .enset h2,
  .contact-cta h2,
  .page-hero h1 {
    font-size: clamp(32px, 10vw, 40px);
  }
  .technical-panel {
    height: 300px;
  }
  .audience-grid article,
  .services-grid article,
  .team-card {
    padding-inline: 22px;
  }
  .page-hero {
    padding: 112px 0 64px;
  }
  .leistungen-hero {
    padding: 108px 0 64px;
  }
  .leistungen-hero h1 {
    font-size: clamp(34px, 10vw, 40px);
  }
  .team-hero h1 {
    font-size: clamp(40px, 13vw, 48px);
  }
  .team-title-wrap,
  .team-hero-copy > p:not(.eyebrow) {
    margin-left: 0;
  }
  .team-title-wrap {
    padding-left: 24px;
  }
  .team-badge {
    width: 100%;
    max-width: 280px;
  }
  .footer-grid {
    gap: 42px;
  }
}

@media (max-width: 600px), (max-width: 932px) and (max-height: 520px) {
  .header-inner {
    height: 36px;
  }

  .brand-logo {
    width: 88px;
  }

  .mobile-toggle {
    width: 32px;
    height: 32px;
    padding: 7px;
  }

  .mobile-toggle span {
    margin: 5px 0;
  }

  .primary-navigation {
    top: 36px;
    max-height: calc(100dvh - 36px);
    padding: 12px;
  }

  .hero {
    padding-top: 36px;
  }

  .page-hero {
    padding-top: 74px;
  }

  .leistungen-hero {
    padding-top: 78px;
  }

  .team-hero {
    padding-top: 74px;
  }

  .leistungen-nav {
    top: 36px;
  }

  .leistungen-nav:before,
  .leistungen-nav:after {
    width: 36px;
  }

  .leistungen-nav-group {
    gap: 6px;
    padding: 6px 3px;
  }

  .leistungen-nav a {
    padding: 4px 7px;
    font-size: 9px;
    line-height: 1.15;
    letter-spacing: 0.05em;
  }

  .leistung-detail {
    scroll-margin-top: 66px;
  }

  .site-header {
    background: rgba(8, 63, 76, 1);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 6px 30px rgba(4, 43, 53, 0.08);
  }

  .site-header.scrolled,
  .team-page .site-header.scrolled {
    background: rgba(8, 63, 76, 0.16);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 24px rgba(4, 43, 53, 0.04);
    backdrop-filter: blur(12px);
  }
}
