:root {
  --navy: #27384e;
  --navy-deep: #1f3044;
  --navy-soft: #334963;
  --cyan: #22ace9;
  --cyan-dark: #0677a8;
  --orange: #f7aa43;
  --surface: #f6f8fb;
  --surface-blue: #eaf7fc;
  --line: #d9e2ea;
  --text: #27384e;
  --muted: #607087;
  --white: #ffffff;
  --max-width: 1320px;
  --shadow: 0 18px 42px rgba(31, 48, 68, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

p,
li {
  hanging-punctuation: first last;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-180%);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[hidden] {
  display: none !important;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 54px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11, 25, 42, 0.18);
  filter: saturate(1.06);
}

.button--compact {
  min-height: 48px;
  padding-inline: 19px;
  font-size: 14px;
}

.button--secondary {
  border: 2px solid var(--navy);
  background: transparent;
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  color: var(--cyan);
  font-size: 21px;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Kopfzeile und Navigation */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 7px solid var(--cyan);
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 4px 18px rgba(31, 48, 68, 0.08);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  width: min(calc(100% - 40px), 1420px);
  min-height: 92px;
  margin: 0 auto;
  gap: clamp(18px, 2vw, 34px);
}

.brand-link {
  display: inline-flex;
  width: fit-content;
  text-decoration: none;
}

.brand-crop {
  position: relative;
  display: block;
  width: 185px;
  aspect-ratio: 210 / 86;
  overflow: hidden;
}

.brand-crop img {
  width: 100%;
  height: auto;
  pointer-events: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(15px, 1.6vw, 28px);
}

.desktop-nav > a,
.nav-dropdown__trigger {
  color: var(--navy);
  font-size: clamp(11px, 0.92vw, 13px);
  font-weight: 800;
  letter-spacing: 0.025em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav > a {
  padding: 18px 0;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.nav-dropdown__trigger svg {
  width: 10px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 160ms ease;
}

.nav-dropdown.is-open .nav-dropdown__trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown.is-current .nav-dropdown__trigger,
.nav-dropdown.is-open .nav-dropdown__trigger,
.desktop-nav > a[aria-current="page"],
.desktop-nav > a:hover,
.nav-dropdown__trigger:hover {
  color: var(--cyan-dark);
}

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 17px);
  left: 50%;
  display: none;
  width: 380px;
  padding: 12px;
  transform: translateX(-50%);
  border-top: 5px solid var(--cyan);
  border-radius: 0 0 12px 12px;
  background: var(--white);
  box-shadow: 0 22px 55px rgba(16, 32, 49, 0.22);
}

.nav-dropdown:last-of-type .nav-dropdown__panel {
  right: 0;
  left: auto;
  transform: none;
}

.nav-dropdown__panel--wide {
  width: 470px;
}

.nav-dropdown__panel--competencies {
  width: 470px;
}

.nav-dropdown.is-open .nav-dropdown__panel {
  display: grid;
}

.nav-dropdown__panel::before {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  content: "";
}

.desktop-nav .nav-dropdown__panel a {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 13px 15px;
  border-radius: 8px;
  color: var(--navy);
  text-decoration: none;
}

.desktop-nav .nav-dropdown__panel a span {
  font-size: 15px;
  font-weight: 800;
}

.desktop-nav .nav-dropdown__panel a small {
  grid-column: 1;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.desktop-nav .nav-dropdown__panel a:hover,
.desktop-nav .nav-dropdown__panel a:focus-visible,
.desktop-nav .nav-dropdown__panel a[aria-current="page"] {
  background: var(--surface-blue);
}

.desktop-nav > a[aria-current="page"],
.nav-dropdown.is-current .nav-dropdown__trigger {
  position: relative;
}

.desktop-nav > a[aria-current="page"]::after,
.nav-dropdown.is-current .nav-dropdown__trigger::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--cyan);
  content: "";
}

.mobile-nav-toggle,
.mobile-nav-panel {
  display: none;
}

/* Ergänzende Orientierung und langfristige Betreuung */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-actions__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 13px 19px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.hero-actions__secondary:hover {
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.08);
}

.hero-actions__secondary span {
  flex: 0 0 auto;
  color: var(--cyan);
  font-size: 22px;
}

.care-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 28px 48px;
  margin-top: 28px;
  padding: 32px;
  border-left: 5px solid var(--cyan);
  border-radius: 12px;
  background: var(--white);
}

.care-summary .section-eyebrow {
  margin-bottom: 12px;
}

.care-summary h3 {
  margin: 0;
  font-size: clamp(25px, 2.4vw, 31px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.care-summary p:not(.section-eyebrow) {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.care-list {
  margin: 0 0 24px;
  padding-left: 21px;
}

.care-list li + li {
  margin-top: 20px;
}

.care-list li::marker {
  color: var(--cyan-dark);
}

.care-list strong {
  color: var(--navy);
}

.content-section--blue,
.solution-care {
  background: var(--surface-blue);
}

.recommendation-request {
  margin-top: 28px;
}

/* Startseiten-Hero */
.hero {
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  grid-template-areas:
    "copy promise"
    "checks promise";
  align-items: center;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 730px;
  margin: 0 auto;
  gap: 28px clamp(38px, 5vw, 78px);
  padding: 58px 0 66px;
}

.hero-copy {
  grid-area: copy;
  align-self: end;
}

.eyebrow,
.section-eyebrow,
.card-kicker,
.footer-kicker {
  margin: 0 0 22px;
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.105em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.field-hero .eyebrow,
.detail-hero .eyebrow,
.contact-band .section-eyebrow,
.recommendation .card-kicker,
.site-footer .footer-kicker {
  color: var(--cyan);
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 4.25vw, 68px);
  font-weight: 800;
  hyphens: manual;
  letter-spacing: -0.043em;
  line-height: 1.035;
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 28px;
  color: #dbe3eb;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.55;
}

.hero-checks {
  grid-area: checks;
  align-self: start;
  display: grid;
  gap: 14px;
  margin: 2px 0 0;
  padding: 0;
  color: #e7edf3;
  font-size: 15px;
  line-height: 1.4;
  list-style: none;
}

.hero-checks li {
  position: relative;
  padding-left: 37px;
}

.hero-checks li::before {
  position: absolute;
  top: -2px;
  left: 0;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--navy);
  content: "✓";
  font-size: 16px;
  font-weight: 900;
}

.hero-promise {
  grid-area: promise;
  align-self: center;
}

.hero-visual {
  display: flex;
  min-width: 0;
  min-height: 560px;
  padding: 28px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top: 5px solid var(--cyan);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-visual__title {
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.hero-visual__messages p {
  margin: 0;
  color: var(--white);
  font-size: clamp(19px, 1.65vw, 24px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.accent-line {
  display: block;
  width: 48px;
  height: 4px;
  margin-bottom: 12px;
  border-radius: 4px;
  background: var(--cyan);
}

.accent-line--orange {
  background: var(--orange);
}

.hero-visual > img {
  width: 100%;
  max-height: 410px;
  height: auto;
  margin: auto 0 10px;
  object-fit: contain;
  pointer-events: none;
}

.promise-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(34, 172, 233, 0.12);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.promise-link span {
  color: var(--cyan);
  font-size: 21px;
}

/* Gemeinsame Abschnitte */
.section,
.content-section,
.legal-content {
  padding: 84px 0 96px;
}

.section-inner,
.content-inner,
.legal-inner,
.footer-inner,
.footer-bottom {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}

.section--surface,
.content-section--tinted {
  background: var(--surface);
}

.section--blue {
  background: var(--surface-blue);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.7fr);
  align-items: end;
  gap: clamp(40px, 8vw, 120px);
}

.section-heading--single {
  grid-template-columns: minmax(0, 850px);
}

.section h2,
.content-section h2,
.cta-section h2,
.site-footer h2,
.legal-content h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 3.2vw, 50px);
  font-weight: 800;
  letter-spacing: -0.034em;
  line-height: 1.1;
}

.section-heading > p,
.section-lead,
.prose {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.65;
}

.section-lead {
  margin-top: 26px;
}

.section-more {
  margin: 38px 0 0;
}

.section-more--center {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 54px;
}

.field-grid--four,
.field-grid--five {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-card {
  display: flex;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  flex-direction: column;
  border-top: 7px solid var(--cyan);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.field-card--featured {
  border-top-color: var(--orange);
}

.field-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.field-card__visual {
  width: 100%;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--navy-deep);
}

.field-card--featured .field-card__visual {
  min-height: 410px;
  aspect-ratio: auto;
}

.field-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.field-card__content {
  display: flex;
  min-width: 0;
  padding: 32px;
  flex: 1;
  flex-direction: column;
}

.field-card--featured .field-card__content {
  padding: clamp(34px, 4vw, 52px);
}

.field-number {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.field-card:first-child .field-number {
  background: var(--orange);
  color: var(--navy);
}

.field-card h3 {
  margin: 25px 0 18px;
  color: var(--navy);
  font-size: clamp(25px, 2vw, 31px);
  letter-spacing: -0.025em;
  line-height: 1.14;
}

.field-card__content > h3:first-child {
  margin-top: 0;
}

.field-problem {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.field-card__content > p:not(.field-problem) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.field-card__content .text-link {
  margin-top: auto;
  padding-top: 28px;
}

.lead-usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 54px;
}

.lead-usecase {
  display: flex;
  min-height: 520px;
  padding: 31px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(31, 48, 68, 0.08);
}

.lead-usecase__field {
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.lead-usecase h3 {
  margin: 18px 0;
  color: var(--navy);
  font-size: clamp(26px, 2.1vw, 32px);
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.lead-usecase__problem {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.lead-usecase > p:not(.lead-usecase__problem) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.usecase-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 7px;
  margin: 26px 0;
}

.usecase-flow span {
  position: relative;
  display: grid;
  min-height: 58px;
  padding: 9px;
  place-items: center;
  border-radius: 8px;
  background: var(--surface-blue);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.usecase-flow span:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  left: calc(100% + 1px);
  color: var(--cyan-dark);
  content: "›";
  font-size: 20px;
}

.lead-usecase .text-link {
  margin-top: auto;
}

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

.competency-card {
  display: flex;
  gap: 18px;
  padding: 28px;
  flex-direction: column;
  border-left: 5px solid var(--cyan);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(31, 48, 68, 0.08);
}

.competency-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.18;
}

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

.competency-card .text-link {
  margin-top: auto;
  padding-top: 4px;
}

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

.project-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.project-type-card {
  display: flex;
  min-height: 300px;
  padding: 34px;
  flex-direction: column;
  border-top: 7px solid var(--cyan);
  border-radius: 13px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(31, 48, 68, 0.09);
}

.project-type-card:first-child {
  border-top-color: var(--orange);
}

.project-type-card > span {
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.project-type-card h3 {
  margin: 17px 0 16px;
  color: var(--navy);
  font-size: clamp(27px, 2.4vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.project-type-card > h3:first-child {
  margin-top: 0;
}

.project-type-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.project-type-card .text-link {
  margin-top: auto;
  padding-top: 28px;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
  margin: 72px 0 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  z-index: 0;
  top: 37px;
  right: 16.667%;
  left: 16.667%;
  height: 4px;
  background: #b2c5d2;
  content: "";
}

.process-list li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.process-number {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
}

.process-list li:first-child .process-number {
  background: var(--orange);
  color: var(--navy);
}

.process-list h3 {
  max-width: 320px;
  margin: 27px 0 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.25;
}

.process-list p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(42px, 7vw, 100px);
}

.trust-facts {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  margin-top: 38px;
}

.experience-badge {
  display: grid;
  align-content: center;
  min-height: 150px;
  padding: 24px;
  border-top: 7px solid var(--orange);
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
}

.experience-badge strong {
  color: var(--orange);
  font-size: 54px;
  line-height: 1;
}

.experience-badge span {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.trust-facts ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  line-height: 1.45;
  list-style: none;
}

.trust-facts li {
  position: relative;
  padding-left: 24px;
}

.trust-facts li::before {
  position: absolute;
  left: 0;
  color: var(--cyan-dark);
  content: "✓";
  font-weight: 900;
}

.recommendation {
  position: relative;
  padding: 46px clamp(30px, 5vw, 60px);
  border-top: 7px solid var(--cyan);
  border-radius: 15px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.recommendation::before {
  position: absolute;
  top: 18px;
  right: 34px;
  color: rgba(34, 172, 233, 0.28);
  content: "“";
  font-family: Georgia, serif;
  font-size: 110px;
  line-height: 1;
}

.recommendation blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.48;
}

.recommendation footer {
  margin-top: 24px;
  color: #cbd7e1;
  font-size: 14px;
  font-weight: 700;
}

.recommendation .text-link {
  margin-top: 25px;
  color: var(--white);
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-block: 28px;
}

.trust-strip p,
.trust-strip a {
  min-width: 0;
  margin: 0;
  padding-left: 16px;
  border-left: 3px solid var(--cyan);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
}

.trust-strip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}

.trust-strip span {
  color: var(--muted);
}

.trust-strip a {
  border-color: var(--orange);
}

.trust-strip a:hover strong {
  color: var(--cyan-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  margin-top: 28px;
}

.contact-actions__phone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 48px;
  line-height: 1.5;
  text-decoration: none;
}

.contact-actions__phone span {
  font-size: 14px;
}

.contact-actions__phone strong {
  font-size: 19px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-actions__phone:hover strong {
  color: var(--orange);
}

.contact-band {
  border-top: 7px solid var(--cyan);
  background: var(--navy);
  color: var(--white);
}

.contact-band .section-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 62px 0;
}

.contact-band h2 {
  max-width: 850px;
  color: var(--white);
}

.contact-band p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #d5dfe8;
  font-size: 18px;
  line-height: 1.55;
}

/* Inhaltsseiten und Heros */
.page-hero,
.field-hero,
.detail-hero {
  border-bottom: 7px solid var(--cyan);
  background: var(--navy);
  color: var(--white);
}

.page-hero--orange,
.field-hero--orange {
  border-bottom-color: var(--orange);
}

.page-hero__inner,
.field-hero__inner,
.detail-hero__inner {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 42px 0 78px;
}

.page-hero__inner {
  display: grid;
  align-content: center;
  min-height: 470px;
}

.page-hero--compact .page-hero__inner {
  min-height: 390px;
}

.page-hero--legal .page-hero__inner {
  min-height: 260px;
  padding-block: 52px;
}

.breadcrumbs {
  margin: 0 0 38px;
  color: #becbd7;
  font-size: 13px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: var(--cyan);
  content: "›";
}

.breadcrumbs a {
  color: inherit;
  text-underline-offset: 3px;
}

.breadcrumbs span {
  color: var(--white);
  font-weight: 700;
}

.page-hero h1,
.field-hero h1,
.detail-hero h1,
.error-page h1 {
  max-width: 960px;
  margin: 0;
  color: var(--white);
  font-size: clamp(45px, 5vw, 70px);
  font-weight: 800;
  hyphens: manual;
  letter-spacing: -0.043em;
  line-height: 1.035;
}

.page-hero p:not(.eyebrow),
.field-hero__copy > p:not(.eyebrow),
.detail-hero__copy > p:not(.eyebrow) {
  max-width: 780px;
  margin: 28px 0 0;
  color: #d8e1e9;
  font-size: clamp(18px, 1.65vw, 23px);
  line-height: 1.55;
}

.page-hero .button,
.field-hero .button,
.detail-hero .button {
  margin-top: 32px;
}

.field-hero__grid,
.detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
}

.page-hero__copy {
  min-width: 0;
}

.page-hero__visual {
  display: grid;
  min-width: 0;
  min-height: 320px;
  margin: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 5px solid var(--cyan);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.page-hero--orange .page-hero__visual {
  border-top-color: var(--orange);
}

.page-hero__visual img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: contain;
}

.solution-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.78fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
}

.solution-hero__visual {
  display: grid;
  min-width: 0;
  min-height: 390px;
  margin: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 5px solid var(--cyan);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.field-hero--orange .solution-hero__visual {
  border-top-color: var(--orange);
}

.solution-hero__visual img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
}

.solution-fit {
  margin-top: 42px;
  padding: 25px 30px 28px;
  border-left: 5px solid var(--orange);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
}

.solution-fit > h2 {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
}

.solution-fit ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 40px;
  margin: 0;
  padding-left: 19px;
  color: #e1e8ee;
  font-size: 16px;
  line-height: 1.55;
}

.solution-fit li {
  padding-left: 3px;
}

.solution-fit li::marker {
  color: var(--cyan);
}

.solution-fit strong {
  color: var(--white);
  font-weight: 700;
}

.field-hero__copy--wide > p:not(.eyebrow) {
  max-width: 930px;
}

.anchor-nav--hero {
  max-width: 1100px;
  margin-top: 42px;
}

.hero-usecase-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 6px solid var(--orange);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
}

.hero-usecase-card--cyan {
  border-top-color: var(--cyan);
}

.hero-usecase-card > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-usecase-card--cyan > span {
  color: var(--cyan);
}

.hero-usecase-card h2 {
  margin: 14px 0 22px;
  color: var(--white);
  font-size: clamp(27px, 2.5vw, 38px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-usecase-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.hero-usecase-card dt {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-usecase-card dd {
  margin: 4px 0 0;
  color: #e0e7ee;
  font-size: 15px;
  line-height: 1.5;
}

.hero-usecase-card .text-link {
  margin-top: 24px;
  color: var(--white);
}

.intro-grid,
.split-section,
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(46px, 8vw, 115px);
}

.prose p {
  margin: 0 0 22px;
}

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

.prose--large {
  font-size: 21px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.problem-card {
  padding: 27px;
  border-left: 5px solid var(--cyan);
  border-radius: 9px;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(31, 48, 68, 0.08);
}

.problem-card h3 {
  margin: 0 0 13px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.25;
}

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

.case-stack {
  display: grid;
  gap: 28px;
  margin-top: 52px;
}

.case-block {
  display: grid;
  grid-template-columns: minmax(230px, 0.62fr) minmax(0, 1.38fr);
  gap: 38px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 13px 30px rgba(31, 48, 68, 0.07);
}

.case-block__title span {
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.case-block h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(26px, 2.2vw, 34px);
  letter-spacing: -0.025em;
  line-height: 1.12;
}

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

.case-fact {
  padding: 20px;
  border-radius: 9px;
  background: var(--surface);
}

.case-fact strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.case-fact p,
.case-fact ul {
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.case-fact ul {
  display: grid;
  gap: 4px;
  padding-left: 17px;
}

.case-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px 20px;
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  background: #fff7ea;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.55;
}

.comparison-table-wrap {
  margin-top: 48px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 13px 30px rgba(31, 48, 68, 0.07);
}

.comparison-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.5;
}

.comparison-table th {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comparison-table td:first-child {
  width: 36%;
  color: var(--navy);
  font-weight: 800;
}

.comparison-table td:last-child {
  color: var(--muted);
}

.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.field-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-top: 46px;
}

.field-nav a {
  display: grid;
  min-height: 110px;
  padding: 22px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
}

.field-nav a[aria-current="page"] {
  border-color: var(--cyan);
  background: var(--surface-blue);
}

.field-nav small {
  color: var(--cyan-dark);
  font-weight: 900;
}

.field-nav strong {
  margin-top: 7px;
  line-height: 1.3;
}

.field-nav a span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.field-nav--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-nav--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.related-solutions .field-nav {
  margin-top: 18px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list a,
.tag-list span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-blue);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

/* Anwendungsfallübersicht */
.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 36px 0 0;
}

.anchor-nav a {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.anchor-nav a:hover {
  border-color: var(--cyan);
  background: rgba(34, 172, 233, 0.12);
}

.usecase-group + .usecase-group {
  border-top: 1px solid var(--line);
}

.usecase-group__header {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  align-items: start;
}

.usecase-group__number {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.usecase-group__header h2 {
  font-size: clamp(32px, 3vw, 46px);
}

.usecase-group__header p {
  max-width: 760px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.case-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.case-index-card {
  display: flex;
  min-height: 470px;
  padding: 29px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-top: 6px solid var(--cyan);
  border-radius: 12px;
  background: var(--white);
}

.case-index-card--lead {
  border-top-color: var(--orange);
  box-shadow: var(--shadow);
}

.case-index-card > span {
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.case-index-card h3 {
  margin: 15px 0 19px;
  color: var(--navy);
  font-size: 25px;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.case-index-card dl {
  display: grid;
  gap: 17px;
  margin: 0;
}

.case-index-card dt {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.case-index-card dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.case-index-card .text-link {
  margin-top: auto;
  padding-top: 22px;
}

/* Detailseiten */
.detail-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.65fr);
}

.detail-summary {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.detail-summary strong {
  display: block;
  margin-bottom: 17px;
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-summary ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: #e1e8ee;
  line-height: 1.45;
  list-style: none;
}

.detail-summary li {
  position: relative;
  padding-left: 25px;
}

.detail-summary li::before {
  position: absolute;
  left: 0;
  color: var(--cyan);
  content: "✓";
  font-weight: 900;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.step-card {
  padding: 25px;
  border-radius: 10px;
  background: var(--surface);
}

.step-card span {
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 900;
}

.step-card h3 {
  margin: 13px 0 10px;
  color: var(--navy);
  font-size: 20px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

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

.check-list li {
  position: relative;
  padding: 17px 19px 17px 57px;
  border-radius: 9px;
  background: var(--surface-blue);
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.check-list li::before {
  position: absolute;
  top: 15px;
  left: 18px;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--navy);
  content: "✓";
  font-weight: 900;
}

.note-box {
  margin-top: 36px;
  padding: 24px 28px;
  border-left: 6px solid var(--orange);
  background: #fff7ea;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.55;
}

/* Kompetenzen und Vorgehen */
.competency-section {
  scroll-margin-top: 110px;
}

.project-section {
  scroll-margin-top: 110px;
}

.competency-row {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: start;
}

.competency-row h2 {
  font-size: clamp(30px, 3vw, 44px);
}

.competency-row__intro {
  min-width: 0;
}

.competency-visual {
  width: 100%;
  margin: 30px 0 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--line);
  border-top: 5px solid var(--cyan);
  border-radius: 13px;
  background: var(--navy-deep);
  box-shadow: 0 12px 28px rgba(31, 48, 68, 0.1);
}

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

.competency-visual--contain img {
  padding: 10px;
  object-fit: contain;
}

.competency-row__body {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.competency-row__body p {
  margin: 0 0 18px;
}

.competency-row__body ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.competency-row__body p:last-child {
  margin-top: 20px;
  margin-bottom: 0;
  color: var(--navy);
  font-weight: 700;
}

.phase-stack {
  display: grid;
  gap: 24px;
  margin-top: 50px;
}

.phase {
  display: grid;
  grid-template-columns: 90px minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.phase__number {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
}

.phase:first-child .phase__number {
  background: var(--orange);
  color: var(--navy);
}

.phase-stack--orange .phase__number {
  background: var(--orange);
  color: var(--navy);
}

.phase-stack--orange .phase:first-child .phase__number {
  background: var(--navy);
  color: var(--white);
}

.phase h3 {
  margin: 0;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.2;
}

.phase p,
.phase ul {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.phase ul {
  display: grid;
  gap: 6px;
  padding-left: 18px;
}

/* Über und Kontakt */
.about-badge {
  display: grid;
  align-self: start;
  padding: 42px;
  border-top: 8px solid var(--orange);
  border-radius: 13px;
  background: var(--navy);
  color: var(--white);
}

.about-badge strong {
  color: var(--orange);
  font-size: clamp(72px, 8vw, 110px);
  line-height: 1;
}

.about-badge span {
  max-width: 300px;
  margin-top: 15px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
}

.recommendation-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(46px, 7vw, 100px);
}

.recommendation--large {
  margin: 0;
}

.recommendation figcaption {
  margin-top: 24px;
  color: #cbd7e1;
  font-size: 14px;
  font-weight: 700;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 54px;
}

.reference-card {
  display: flex;
  min-height: 390px;
  padding: 31px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-top: 6px solid var(--cyan);
  border-radius: 13px;
  background: var(--white);
  box-shadow: 0 12px 29px rgba(31, 48, 68, 0.075);
}

.reference-card__meta {
  margin: 0 0 14px;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1.45;
  text-transform: uppercase;
}

.reference-card h3 {
  margin: 0 0 17px;
  color: var(--navy);
  font-size: clamp(23px, 2vw, 29px);
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.reference-card > p:not(.reference-card__meta) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.reference-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 28px 0 0;
  list-style: none;
}

.reference-tags li {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--surface-blue);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

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

.value-grid article {
  padding: 29px;
  border-top: 5px solid var(--cyan);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(31, 48, 68, 0.08);
}

.value-grid h3 {
  margin: 0 0 13px;
  color: var(--navy);
  font-size: 23px;
}

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

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

.contact-card {
  display: grid;
  gap: 11px;
  min-height: 250px;
  padding: 34px;
  border-top: 7px solid var(--cyan);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.contact-card:nth-child(2) {
  border-top-color: var(--orange);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(39, 56, 78, 0.18);
}

.contact-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-blue);
  color: var(--cyan-dark);
  font-size: 23px;
  font-weight: 900;
}

.contact-card small {
  margin-top: 15px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(22px, 2.4vw, 32px);
}

.contact-card > span:last-child {
  margin-top: auto;
  color: var(--cyan-dark);
  font-weight: 800;
}

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

.number-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 19px;
}

.number-list li > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy);
  font-weight: 900;
}

.number-list strong {
  color: var(--navy);
  font-size: 19px;
}

.number-list p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.contact-prompt-list {
  display: grid;
  gap: 14px;
}

.contact-prompt-list article {
  padding: 21px 23px;
  border-left: 5px solid var(--cyan);
  border-radius: 9px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(31, 48, 68, 0.06);
}

.contact-prompt-list article:first-child {
  border-left-color: var(--orange);
}

.contact-prompt-list strong {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.4;
}

.contact-prompt-list p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

/* Rechtliches, Fehlerseite und Footer */
.legal-inner {
  max-width: 870px;
}

.legal-content h2 {
  margin: 44px 0 15px;
  font-size: 25px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal-content a {
  color: var(--navy);
  font-weight: 700;
}

.legal-intro {
  padding: 23px 27px;
  border-left: 6px solid var(--cyan);
  background: var(--surface-blue);
  color: var(--navy) !important;
  font-size: 18px !important;
}

.error-page {
  min-height: 620px;
  padding: 110px 0;
  background: var(--navy);
  color: var(--white);
}

.error-page p:not(.section-eyebrow) {
  margin: 27px 0 35px;
  color: #d6dde5;
  font-size: 20px;
}

.site-footer {
  background: var(--navy-deep);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 240px minmax(320px, 1fr) minmax(280px, 0.9fr);
  gap: clamp(40px, 6vw, 82px);
  align-items: start;
  padding: 64px 0 54px;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.brand-crop--footer {
  width: 210px;
  border-radius: 10px;
  background: var(--white);
}

.footer-brand p,
.footer-contact p {
  margin: 0;
  color: #cbd6df;
  font-size: 15px;
  line-height: 1.55;
}

.site-footer h2 {
  color: var(--white);
  font-size: clamp(27px, 2.35vw, 37px);
}

.footer-contact > p:not(.footer-kicker) {
  margin: 21px 0;
}

.footer-contact a:not(.button) {
  color: inherit;
  text-underline-offset: 3px;
}

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

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav strong {
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-nav a {
  color: #d6e0e8;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #aebdca;
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 22px;
}

.footer-bottom a {
  color: inherit;
  text-underline-offset: 3px;
}

@media (max-width: 1180px) {
  html {
    scroll-padding-top: 92px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 82px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-nav-toggle {
    display: grid;
    width: 50px;
    height: 50px;
    padding: 0;
    cursor: pointer;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 50%;
    background: var(--navy);
  }

  .mobile-nav-toggle > span:not(.sr-only) {
    display: block;
    width: 23px;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .mobile-nav-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-nav-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
  }

  .mobile-nav-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav-panel {
    position: absolute;
    top: calc(100% + 7px);
    right: 0;
    display: grid;
    width: min(430px, calc(100vw - 28px));
    max-height: calc(100vh - 102px);
    gap: 3px;
    padding: 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-top: 5px solid var(--cyan);
    border-radius: 0 0 12px 12px;
    background: var(--white);
    box-shadow: 0 20px 45px rgba(16, 32, 49, 0.25);
  }

  .mobile-nav-panel > a:not(.button),
  .mobile-subnav-toggle,
  .mobile-subnav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 9px 11px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: var(--navy);
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    text-align: left;
    text-decoration: none;
  }

  .mobile-nav-panel > a[aria-current="page"] {
    background: var(--surface-blue);
    color: var(--cyan-dark);
  }

  .mobile-subnav-toggle {
    width: 100%;
    cursor: pointer;
  }

  .mobile-subnav-toggle.is-current,
  .mobile-subnav a[aria-current="page"] {
    background: var(--surface-blue);
    color: var(--cyan-dark);
  }

  .mobile-subnav-toggle span {
    color: var(--cyan-dark);
    font-size: 23px;
  }

  .mobile-subnav {
    display: grid;
    margin: 0 0 5px 10px;
    padding: 4px 0 4px 11px;
    border-left: 3px solid var(--cyan);
  }

  .mobile-subnav a {
    min-height: 39px;
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-nav-panel .button {
    width: 100%;
    margin-top: 10px;
  }

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

  .footer-nav {
    grid-column: 2;
  }
}

@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "promise"
      "checks";
    min-height: auto;
    padding-block: 58px 66px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-promise {
    width: min(100%, 780px);
    margin-top: 12px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-checks {
    width: min(100%, 780px);
    margin-top: 4px;
  }

  .field-grid,
  .lead-usecase-grid,
  .case-index-grid {
    grid-template-columns: 1fr;
  }

  .field-grid.field-grid--four,
  .field-grid.field-grid--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-card,
  .lead-usecase,
  .case-index-card {
    min-height: 0;
  }

  .lead-usecase {
    display: grid;
    grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr);
    gap: 10px 32px;
  }

  .lead-usecase__field,
  .lead-usecase h3,
  .lead-usecase__problem,
  .lead-usecase > p {
    grid-column: 1;
  }

  .lead-usecase .usecase-flow {
    grid-column: 2;
    grid-row: 1 / span 4;
    align-self: center;
  }

  .lead-usecase .text-link {
    grid-column: 1;
  }

  .field-hero__grid,
  .page-hero-grid,
  .solution-hero-grid,
  .detail-hero__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .page-hero__visual,
  .solution-hero__visual {
    width: min(100%, 760px);
    min-height: 0;
  }

  .hero-usecase-card,
  .detail-summary {
    max-width: 760px;
  }

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

  .competency-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .competency-visual {
    width: min(100%, 620px);
  }

  .competency-row__body {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  .section-heading,
  .intro-grid,
  .split-section,
  .about-grid,
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .competency-grid,
  .project-type-grid,
  .problem-grid,
  .field-nav,
  .contact-grid,
  .reference-grid,
  .recommendation-feature {
    grid-template-columns: 1fr;
  }

  .field-grid.field-grid--four,
  .field-grid.field-grid--five {
    grid-template-columns: 1fr;
  }

  .field-card--featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .field-card--featured .field-card__visual {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .competency-card--wide {
    grid-column: auto;
  }

  .case-block {
    grid-template-columns: 1fr;
  }

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

  .footer-nav {
    grid-column: 1;
  }

  .footer-brand {
    max-width: 330px;
  }

  .contact-band .section-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .phase {
    grid-template-columns: 70px 1fr;
  }

  .phase > :last-child {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .trust-strip__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding-block: 24px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions .button {
    width: 100%;
  }

  .contact-actions__phone {
    align-items: center;
  }

  .header-inner,
  .hero-inner,
  .section-inner,
  .content-inner,
  .legal-inner,
  .page-hero__inner,
  .field-hero__inner,
  .detail-hero__inner,
  .footer-inner,
  .footer-bottom {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .site-header {
    border-bottom-width: 6px;
  }

  .brand-crop {
    width: 160px;
  }

  .hero-inner {
    gap: 22px;
    padding: 45px 0 54px;
  }

  .eyebrow,
  .section-eyebrow,
  .card-kicker,
  .footer-kicker {
    margin-bottom: 17px;
    font-size: 11px;
  }

  .hero h1,
  .page-hero h1,
  .field-hero h1,
  .detail-hero h1,
  .error-page h1 {
    font-size: clamp(34px, 9.7vw, 47px);
    letter-spacing: -0.038em;
    line-height: 1.04;
  }

  .hero-lead {
    margin: 25px 0 24px;
    font-size: 17px;
  }

  .hero-copy .button {
    width: 100%;
  }

  .hero-promise {
    margin-top: 0;
  }

  .hero-visual {
    min-height: 0;
    padding: 18px;
  }

  .hero-visual__title {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .hero-visual__messages {
    gap: 17px;
  }

  .hero-visual__messages p {
    font-size: 17px;
  }

  .hero-visual > img {
    max-height: none;
    margin: 12px 0 9px;
  }

  .promise-link {
    min-height: 48px;
    padding: 10px 13px;
    font-size: 13px;
  }

  .hero-checks {
    gap: 13px;
    font-size: 14px;
  }

  .section,
  .content-section,
  .legal-content {
    padding: 62px 0 70px;
  }

  .section h2,
  .content-section h2,
  .cta-section h2,
  .site-footer h2 {
    font-size: 32px;
  }

  .section-heading > p,
  .section-lead,
  .prose {
    font-size: 17px;
  }

  .field-grid,
  .lead-usecase-grid,
  .competency-grid {
    margin-top: 37px;
  }

  .project-type-card {
    min-height: 0;
    padding: 27px;
  }

  .lead-usecase {
    padding: 26px;
  }

  .field-card__content,
  .field-card--featured .field-card__content {
    padding: 26px;
  }

  .lead-usecase {
    display: flex;
  }

  .usecase-flow {
    width: 100%;
  }

  .competency-card {
    padding: 24px;
  }

  .competency-card h3 {
    font-size: 20px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 44px;
  }

  .process-list::before {
    top: 38px;
    bottom: 38px;
    left: 37px;
    width: 3px;
    height: auto;
  }

  .process-list li {
    grid-template-columns: 76px 1fr;
    grid-template-rows: auto auto;
    justify-items: start;
    column-gap: 21px;
    text-align: left;
  }

  .process-number {
    grid-row: 1 / span 2;
    width: 76px;
    height: 76px;
  }

  .process-list h3 {
    align-self: end;
    margin: 0 0 5px;
  }

  .trust-facts {
    grid-template-columns: 1fr;
  }

  .experience-badge {
    min-height: 125px;
  }

  .recommendation {
    padding: 37px 25px 31px;
  }

  .recommendation blockquote {
    font-size: 20px;
  }

  .reference-card {
    min-height: 0;
    padding: 26px;
  }

  .page-hero__inner,
  .field-hero__inner,
  .detail-hero__inner {
    padding: 28px 0 58px;
  }

  .page-hero__inner {
    min-height: 390px;
  }

  .page-hero--compact .page-hero__inner {
    min-height: 340px;
  }

  .page-hero--legal .page-hero__inner {
    min-height: 220px;
    padding-block: 42px;
  }

  .breadcrumbs {
    margin-bottom: 28px;
    font-size: 11px;
  }

  .page-hero p:not(.eyebrow),
  .field-hero__copy > p:not(.eyebrow),
  .detail-hero__copy > p:not(.eyebrow) {
    margin-top: 23px;
    font-size: 17px;
  }

  .field-hero .button,
  .detail-hero .button {
    width: 100%;
  }

  .solution-fit {
    margin-top: 28px;
    padding: 22px 20px;
  }

  .solution-fit ul {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .solution-hero__visual {
    border-radius: 12px;
  }

  .page-hero-grid {
    gap: 24px;
  }

  .page-hero__visual {
    width: 100%;
    border-radius: 12px;
  }

  .solution-hero-grid {
    gap: 19px;
  }

  .solution-hero-grid .field-hero__copy {
    display: contents;
  }

  .solution-hero-grid .field-hero__copy > .eyebrow {
    order: 1;
    margin: 0;
  }

  .solution-hero-grid .field-hero__copy > h1 {
    order: 2;
  }

  .solution-hero-grid .field-hero__copy > p:not(.eyebrow) {
    order: 3;
    margin: 0;
  }

  .solution-hero-grid .solution-hero__visual {
    order: 4;
  }

  .solution-hero-grid .field-hero__copy > .button {
    order: 6;
    margin-top: 0;
  }

  .hero-usecase-card {
    padding: 25px;
  }

  .case-block {
    padding: 25px;
    gap: 25px;
  }

  .case-block__body {
    grid-template-columns: 1fr;
  }

  .case-fact {
    padding: 18px;
  }

  .usecase-group__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .usecase-group__number {
    width: 62px;
    height: 62px;
  }

  .case-index-card {
    padding: 25px;
  }

  .steps-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .competency-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .competency-row__body {
    grid-column: 1;
  }

  .competency-visual {
    width: 100%;
    margin-top: 23px;
  }

  .phase {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .phase > :last-child {
    grid-column: 1;
  }

  .about-badge {
    padding: 34px;
  }

  .contact-card {
    min-height: 220px;
    padding: 29px;
  }

  .footer-inner {
    gap: 42px;
    padding: 50px 0 42px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    padding: 20px 0;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 680px) {
  .hero-inner {
    padding-top: 36px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 10px;
  }

  .hero-actions .button,
  .hero-actions__secondary {
    width: 100%;
    height: 100%;
    padding: 12px;
    font-size: 14px;
  }

  .hero-actions__secondary {
    gap: 6px;
  }

  .care-summary {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px;
  }

  .care-summary p:not(.section-eyebrow) {
    font-size: 17px;
  }
}

@media (max-width: 410px) {
  .hero-visual {
    padding: 17px;
  }

  .hero-visual__messages {
    gap: 12px;
  }

  .hero-visual__messages p {
    font-size: 15px;
  }

  .accent-line {
    width: 36px;
    margin-bottom: 9px;
  }

  .usecase-flow span {
    min-height: 54px;
    padding-inline: 5px;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .text-link span,
  .mobile-nav-toggle > span:not(.sr-only) {
    transition: none;
  }
}
