@font-face {
  font-family: "Montserrat Local";
  src: url("fonts/montserrat-v25-latin-regular.woff2") format("woff2"),
       url("fonts/montserrat-v25-latin-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat Local";
  src: url("fonts/montserrat-v25-latin-700.woff2") format("woff2"),
       url("fonts/montserrat-v25-latin-700.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Local";
  src: url("fonts/roboto-v29-latin-regular.woff2") format("woff2"),
       url("fonts/roboto-v29-latin-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Local";
  src: url("fonts/roboto-v29-latin-500.woff2") format("woff2"),
       url("fonts/roboto-v29-latin-500.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Local";
  src: url("fonts/roboto-v29-latin-300.woff2") format("woff2"),
       url("fonts/roboto-v29-latin-300.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #151a1f;
  --navy: #243646;
  --navy-dark: #151b21;
  --blue: #2098ed;
  --cyan: #09bac4;
  --paper: #f4f4f4;
  --muted: #52606b;
  --line: #d9e1e6;
  --white: #fff;
  --green: #58c978;
  --radius: 8px;
  --shadow: 0 22px 55px rgba(13, 24, 34, 0.18);
  --font-heading: "Montserrat Local", "Segoe UI", Arial, sans-serif;
  --font-body: "Roboto Local", "Segoe UI", Arial, sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.58;
  font-family: var(--font-body);
  font-weight: 400;
}

.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.error-page main {
  flex: 1 0 auto;
  display: flex;
}

.error-page .hero {
  flex: 1;
  width: 100%;
}

.error-page .site-footer {
  flex-shrink: 0;
}

.has-loader:not(.page-loaded) body {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  place-items: center;
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 68% 28%, rgba(9, 186, 196, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(15, 21, 27, 0.98), rgba(36, 54, 70, 0.98));
  opacity: 1;
  visibility: visible;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.has-loader .page-loader {
  display: grid;
}

.page-loaded .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-panel {
  width: min(420px, 100%);
  text-align: center;
}

.loader-logo {
  width: 82px;
  height: 82px;
  margin: 0 auto 24px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.24));
  animation: loader-pulse 1700ms ease-in-out infinite;
}

.loader-title {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(1.18rem, 4vw, 1.55rem);
  font-weight: 700;
  line-height: 1.2;
}

.loader-copy {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.loader-track {
  position: relative;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.loader-track::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 24px rgba(9, 186, 196, 0.45);
  animation: loader-bar 1350ms cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(15, 21, 27, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  padding: 22px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
}

.nav-links .nav-button {
  padding: 10px 16px;
  border-radius: 5px;
  color: var(--white);
  background: var(--blue);
}

.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, #167fd0, #0db7c2);
  box-shadow: 0 12px 26px rgba(13, 97, 143, 0.26);
  cursor: pointer;
  font: inherit;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(13, 97, 143, 0.32);
}

.button:focus-visible {
  outline: 3px solid rgba(9, 186, 196, 0.32);
  outline-offset: 3px;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.72);
}

.button.light {
  color: #11202d;
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 22px rgba(13, 24, 34, 0.14);
}

.button.light:hover {
  background: #f4fbfd;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 13, 18, 0.98), rgba(13, 20, 27, 0.94) 54%, rgba(13, 20, 27, 0.72)),
    var(--hero-image, url("img/Schloss_mit_FirmenVerlauf.png")) center / cover no-repeat;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 36%, rgba(9, 186, 196, 0.16), transparent 28%),
              linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.36));
  pointer-events: none;
  z-index: 1;
}

.angled-top::before,
.angled-bottom::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  pointer-events: none;
}

.hero.home::before,
.hero.contact::before {
  display: none;
}

.hero.home .hero-inner::after,
.hero.contact .hero-inner::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -42px;
  width: min(43vw, 520px);
  aspect-ratio: 1;
  border: 28px solid rgba(36, 171, 221, 0.42);
  border-radius: 34px;
  transform: rotate(45deg);
  background: transparent;
  z-index: -1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 130px 0 128px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  align-items: center;
  gap: 72px;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: clamp(2.05rem, 3.35vw, 3.35rem);
  line-height: 1.12;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.hero h2 {
  margin: 0 0 28px;
  font-size: clamp(1.08rem, 1.45vw, 1.42rem);
  line-height: 1.28;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
}

.hero p {
  max-width: 660px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  font-weight: 500;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.28);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-proof span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(8, 13, 18, 0.34);
  backdrop-filter: blur(10px);
}

.hero-badge {
  justify-self: center;
  max-width: 210px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.section {
  position: relative;
  padding: 104px 0;
}

.section.white {
  background: var(--paper);
}

.section.white + .section.white {
  border-top: 1px solid rgba(151, 168, 181, 0.26);
}

.section.dark {
  color: var(--white);
  background: var(--navy);
}

.section-title {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.hero.home .eyebrow {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

p {
  margin-top: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.48rem, 2.05vw, 2.05rem);
  line-height: 1.22;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.18rem;
  line-height: 1.24;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 500;
}

.highlight {
  color: var(--blue);
}

.conversion-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 42px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, #1f628f, #0db9c5);
  box-shadow: var(--shadow);
}

.conversion-panel h3 {
  margin-bottom: 8px;
  color: var(--white);
}

.conversion-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.proof-grid,
.outcome-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.outcome-grid.stack {
  grid-template-columns: 1fr;
}

.proof-card,
.outcome-card,
.process-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(13, 24, 34, 0.06);
}

.proof-card strong,
.outcome-card strong,
.process-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.proof-card p,
.outcome-card p,
.process-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-card {
  position: relative;
  padding-top: 58px;
}

.process-card::before {
  content: attr(data-step);
  position: absolute;
  top: 22px;
  left: 26px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.84rem;
  font-weight: 700;
}

.risk-box {
  padding: 28px;
  border-left: 5px solid var(--cyan);
  border-radius: var(--radius);
  background: #edf7fa;
}

.risk-box p:last-child {
  margin-bottom: 0;
}

.split-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 54px;
}

.split-cta > div {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.split-cta .primary {
  color: var(--white);
  background: linear-gradient(135deg, #243646, #1f628f);
  border: 0;
}

.split-cta .primary p {
  color: rgba(255, 255, 255, 0.82);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #3f4b55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(0.42em + 3px);
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: -58px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-item {
  min-height: 128px;
  padding: 28px;
  background: var(--white);
}

.trust-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.trust-item span,
.text-block p,
.legal p,
.legal li {
  color: #3f4b55;
}

.text-block .conversion-panel p,
.conversion-panel p {
  color: rgba(255, 255, 255, 0.94);
}

.text-block .conversion-panel h3 {
  color: var(--white);
}

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

.partner-logo {
  min-height: 138px;
  display: grid;
  place-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(13, 24, 34, 0.05);
}

.partner-logo img {
  max-width: 190px;
  max-height: 86px;
  width: auto;
  object-fit: contain;
}

.service-list {
  display: grid;
  gap: 78px;
}

.service {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(34px, 8vw, 100px);
}

.service:nth-child(even) {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.9fr);
}

.service:nth-child(even) .service-content {
  order: 2;
}

.media {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1.16 / 1;
  background: var(--navy);
  box-shadow: var(--shadow);
}

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

.services-section {
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f8fbfc 0%, #eef6f8 52%, #f4f4f4 100%);
  border-top: 1px solid rgba(151, 168, 181, 0.24);
  border-bottom: 1px solid rgba(151, 168, 181, 0.28);
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  pointer-events: none;
  z-index: 0;
}

.services-section > .container {
  position: relative;
  z-index: 1;
}

.services-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
}

.services-heading .lead {
  margin-bottom: 8px;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.services-heading h2 {
  max-width: 760px;
  font-size: clamp(1.62rem, 2.2vw, 2.18rem);
  line-height: 1.2;
}

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

.service-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  overflow: hidden;
  border: 1px solid rgba(164, 179, 190, 0.6);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(13, 24, 34, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(9, 186, 196, 0.52);
  box-shadow: 0 24px 58px rgba(13, 24, 34, 0.14);
}

.service-media {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 56%;
  background: linear-gradient(180deg, transparent, rgba(12, 20, 28, 0.42));
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.service-card:hover .service-media img {
  transform: scale(1.05);
}

.service-body {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 28px;
}

.service-kicker {
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #0d5f92;
  background: rgba(9, 186, 196, 0.12);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-body h3 {
  margin-bottom: 12px;
  font-size: clamp(1.18rem, 1.45vw, 1.38rem);
  line-height: 1.18;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.service-body p {
  color: #3f4b55;
}

.mini-checklist {
  display: grid;
  gap: 9px;
  margin: 8px 0 24px;
  padding: 0;
  list-style: none;
  color: #3f4b55;
  font-size: 0.96rem;
}

.mini-checklist li {
  position: relative;
  padding-left: 24px;
}

.mini-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 0 4px rgba(9, 186, 196, 0.1);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #0f6ea9;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
}

.text-link::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: width 180ms ease;
}

.text-link:hover::after {
  width: 36px;
}

.service-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 44px rgba(13, 24, 34, 0.08);
}

.service-process > div {
  padding: 26px 28px;
  background: linear-gradient(180deg, #ffffff, #f7fbfc);
}

.service-process span {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-process strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-size: 1.08rem;
}

.service-process p {
  margin-bottom: 0;
  color: var(--muted);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 72px;
  align-items: start;
}

.note {
  margin-top: 34px;
  padding: 24px 30px;
  border-radius: var(--radius);
  color: var(--white);
  background: #566474;
}

.note p {
  color: rgba(255, 255, 255, 0.9);
}

.note h3 {
  color: var(--white);
}

.certificate-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 390px));
  justify-content: center;
  gap: 24px;
}

.pill {
  min-width: min(390px, 100%);
  padding: 18px 32px;
  border-radius: 999px;
  color: var(--white);
  text-align: center;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.certificate-link {
  display: inline-flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(7, 22, 34, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.certificate-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(7, 22, 34, 0.24);
}

.certificate-link:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.42);
  outline-offset: 4px;
}

.security-panel {
  display: grid;
  gap: 34px;
}

.security-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(13, 24, 34, 0.08);
}

.security-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.security-mark {
  display: grid;
  place-items: center;
  width: 140px;
  height: 140px;
  justify-self: center;
  border-radius: 50%;
  color: var(--cyan);
  background: linear-gradient(180deg, #f3fbfd, #e8f5f8);
}

.security-mark img {
  width: 78px;
  height: 78px;
}

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

.security-grid > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.security-grid strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.security-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.steps {
  margin: 28px 0 0;
  padding-left: 22px;
}

.steps li {
  margin-bottom: 14px;
  padding-left: 8px;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: 0.25em;
}

.feature-icon {
  width: 44px;
  height: 44px;
  color: var(--green);
}

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

.process-card.accent {
  background: linear-gradient(180deg, #ffffff, #f4fbfd);
}

.process-card.accent::before {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.ums-logo {
  max-width: 300px;
  margin: 20px auto 0;
}

.contact-band {
  color: var(--white);
  background:
    linear-gradient(rgba(36, 54, 70, 0.92), rgba(36, 54, 70, 0.96)),
    url("img/umweltmanagement.jpg") center / cover no-repeat;
}

.contact-box {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 46px);
  border-radius: 14px;
  text-align: center;
  display: block;
  background: linear-gradient(135deg, rgba(28, 93, 137, 0.96), rgba(22, 127, 178, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 46px rgba(10, 22, 32, 0.22);
}

.contact-box h2 {
  max-width: 560px;
  margin: 0 auto 12px;
  font-size: clamp(1.28rem, 1.75vw, 1.72rem);
  line-height: 1.22;
  letter-spacing: 0;
}

.contact-box p {
  max-width: 600px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  font-weight: 400;
}

.contact-box .button {
  min-width: 210px;
  white-space: nowrap;
}

.site-footer {
  padding: 78px 0 44px;
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(180deg, #253848, #151d25);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.5fr;
  gap: 56px;
  align-items: start;
}

.footer-logo {
  width: 118px;
  margin-bottom: 26px;
}

.footer-claim {
  color: var(--white);
  font-size: 1.28rem;
  letter-spacing: 0.1em;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: 30px;
}

.footer h3,
.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
}

.footer-nav {
  display: grid;
  gap: 18px;
  font-weight: 700;
}

.footer-nav a {
  padding: 12px 16px;
}

.footer-nav a.active {
  background: #21618f;
}

.social {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 5px;
  color: #1d2d3a;
  background: var(--white);
  font-size: 1.7rem;
  font-weight: 700;
}

.copyright {
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

@media (prefers-reduced-motion: no-preference) {
  .hero .eyebrow,
  .hero h1,
  .hero p,
  .hero .button,
  .trust-item,
  .partner-logo,
  .service-card,
  .service-process > div,
  .contact-box {
    animation: fade-slide-up 720ms ease both;
  }

  .hero h1 {
    animation-delay: 90ms;
  }

  .hero p {
    animation-delay: 170ms;
  }

  .hero .button {
    animation-delay: 250ms;
  }

  .trust-item:nth-child(2),
  .partner-logo:nth-child(2),
  .service-card:nth-child(2),
  .service-process > div:nth-child(2) {
    animation-delay: 120ms;
  }

  .trust-item:nth-child(3),
  .partner-logo:nth-child(3),
  .service-card:nth-child(3),
  .service-process > div:nth-child(3) {
    animation-delay: 220ms;
  }

  .partner-logo:nth-child(4) {
    animation-delay: 320ms;
  }

  .hero.home .hero-inner::after,
  .hero.contact .hero-inner::after {
    animation: quiet-float 8s ease-in-out infinite;
  }

  @keyframes fade-slide-up {
    from {
      opacity: 0;
      transform: translateY(22px);
    }

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

  @keyframes quiet-float {
    0%,
    100% {
      transform: rotate(45deg) translate3d(0, 0, 0);
    }

    50% {
      transform: rotate(45deg) translate3d(10px, -12px, 0);
    }
  }

  @keyframes loader-pulse {
    0%,
    100% {
      transform: translateY(0) scale(1);
      opacity: 0.92;
    }

    50% {
      transform: translateY(-4px) scale(1.04);
      opacity: 1;
    }
  }

  @keyframes loader-bar {
    0% {
      transform: translateX(-115%);
    }

    55% {
      transform: translateX(92%);
    }

    100% {
      transform: translateX(245%);
    }
  }
}

.legal {
  max-width: 1120px;
  padding-top: 128px;
  padding-bottom: 120px;
}

.legal::before {
  content: none;
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 96px;
  padding: 28px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(155deg, #1f628f, #243646);
  box-shadow: var(--shadow);
}

.legal-aside img {
  width: 72px;
  margin-bottom: 22px;
}

.legal-aside p {
  color: rgba(255, 255, 255, 0.8);
}

.legal-card {
  padding: clamp(28px, 5vw, 56px);
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(13, 24, 34, 0.08);
}

.legal-intro {
  padding-bottom: 26px;
  margin-bottom: 34px;
  border-bottom: 2px solid var(--cyan);
}

.legal h1 {
  margin-bottom: 26px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.12;
}

.legal h2 {
  margin-top: 34px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.22;
}

.legal h3 {
  margin-top: 26px;
}

.legal a {
  color: #005dff;
  text-decoration: underline;
}

.legal-text {
  white-space: pre-wrap;
  color: #3f4b55;
  font: inherit;
  margin: 0;
  overflow-wrap: anywhere;
}

.legal-text strong {
  color: var(--ink);
}

.contact-page {
  background: var(--navy);
}

.contact-section {
  margin-top: 0;
  padding: 112px 0 124px;
  background:
    linear-gradient(rgba(36, 54, 70, 0.94), rgba(36, 54, 70, 0.94)),
    url("img/Schloss_mit_FirmenVerlauf.png") center / cover no-repeat;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 58px);
  align-items: stretch;
}

.contact-info {
  padding: clamp(26px, 4vw, 38px);
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(155deg, #1d2c38, #21618f);
  box-shadow: var(--shadow);
}

.contact-info p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-info a {
  color: var(--white);
  font-weight: 700;
}

.contact-info-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-info-item {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-info-item strong {
  display: block;
  margin-bottom: 5px;
}

.contact-card {
  max-width: none;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card.compact {
  margin-top: 0;
}

.turnstile-field {
  min-height: 65px;
}

.thanks-section {
  min-height: 68vh;
  display: grid;
  align-items: center;
  padding-top: 160px;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(15, 21, 27, 0.96), rgba(36, 54, 70, 0.9)),
    url("img/Schloss_mit_FirmenVerlauf.png") center / cover no-repeat;
}

.thanks-card {
  max-width: 760px;
}

.thanks-card h1 {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.12;
}

.thanks-card .lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
}

.check-intro {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 34px;
  font-size: 1.24rem;
}

.check {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  color: var(--ink);
  background: #3aa9e8;
  font-size: 1.8rem;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 26px;
  margin-top: 34px;
}

.field.full {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: block;
  margin-bottom: 7px;
  color: #747474;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  border: 0;
  background: #ededed;
  min-height: 42px;
  padding: 11px 12px;
  font: inherit;
  border-radius: 6px;
  outline: 1px solid transparent;
  transition: outline-color 160ms ease, background-color 160ms ease;
}

input:focus,
textarea:focus {
  background: var(--white);
  outline-color: var(--cyan);
}

textarea {
  min-height: 126px;
  resize: vertical;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 5px;
}

.required {
  color: #d82f2f;
}

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

  .hero-grid,
  .trust-strip,
  .partner-grid,
  .service,
  .service:nth-child(even),
  .content-grid,
  .footer-grid,
  .footer-cols,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .outcome-grid,
  .process-grid,
  .process-grid.four,
  .certificate-list,
  .security-copy,
  .security-grid,
  .services-heading,
  .service-cards,
  .service-process,
  .conversion-panel,
  .split-cta,
  .contact-layout,
  .legal-shell {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }

  .service:nth-child(even) .service-content {
    order: initial;
  }

  .hero {
    min-height: 560px;
  }

  .hero h1 {
    max-width: 680px;
    font-size: 2.32rem;
    line-height: 1.14;
  }

  .hero h2 {
    font-size: 1.08rem;
    line-height: 1.28;
  }

  h2 {
    font-size: 1.72rem;
    line-height: 1.22;
  }

  h3 {
    font-size: 1.1rem;
  }

  .lead,
  .services-heading .lead {
    font-size: 1.04rem;
    line-height: 1.55;
  }

  .services-heading h2 {
    font-size: 1.78rem;
    line-height: 1.22;
  }

  .section-title {
    margin-bottom: 38px;
  }

  .hero-badge {
    justify-self: start;
  }

  .security-mark {
    justify-self: start;
  }

  .feature-list li {
    letter-spacing: 0.12em;
  }

  .service-card {
    grid-template-rows: 240px 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand span {
    display: none;
  }

  .hero-inner {
    padding: 108px 0 104px;
  }

  .hero {
    min-height: 520px;
  }

  .hero h1 {
    max-width: 15ch;
    font-size: 1.82rem;
    line-height: 1.16;
  }

  .hero h2 {
    font-size: 0.98rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.98rem;
    line-height: 1.54;
  }

  .eyebrow {
    font-size: 0.72rem;
    line-height: 1.28;
    letter-spacing: 0.07em;
  }

  .hero.home .eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.03em;
  }

  h2 {
    font-size: 1.38rem;
    line-height: 1.24;
  }

  h3 {
    font-size: 1.04rem;
    line-height: 1.22;
  }

  .section {
    padding: 72px 0;
  }

  .services-section::before {
    height: 6px;
  }

  .service-card {
    grid-template-rows: 190px 1fr;
  }

  .services-heading h2 {
    font-size: 1.45rem;
    line-height: 1.24;
  }

  .service-body h3 {
    font-size: 1.02rem;
  }

  .service-body,
  .service-process > div {
    padding: 22px;
  }

  .contact-section {
    padding: 72px 0 86px;
  }

  .button {
    width: 100%;
  }

  .feature-list li {
    letter-spacing: 0.04em;
  }
}
