:root {
  --blue: #214f90;
  --blue-dark: #123f70;
  --blue-deep: #0b2f55;
  --cyan: #78a9d2;
  --ink: #152332;
  --muted: #607184;
  --light: #f3f7fb;
  --line: #dce5ee;
  --white: #fff;
  --shadow: 0 24px 60px rgba(17, 54, 89, .11)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6
}

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

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

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

.section {
  padding: 100px 0
}

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

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

h2 {
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  letter-spacing: -.035em;
  margin-bottom: 24px
}

p {
  margin-top: 0
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220, 229, 238, .8)
}

.nav-wrap {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand img {
  width: 380px
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 700;
  font-size: 1.2rem
}

.main-nav a {
  transition: .2s
}

.main-nav a:hover {
  color: var(--blue)
}

.nav-cta {
  border: 1px solid var(--blue);
  padding: 11px 18px
}

.nav-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 8px
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 5px
}

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
  /* background: linear-gradient(115deg, #f8fbfe 0%, #eef5fa 58%, #e6f0f7 100%) */
}

.hero:after {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  right: -150px;
  top: 100px;
  /* background: linear-gradient(140deg, rgba(33, 79, 144, .08), rgba(120, 169, 210, .24));
  border: 1px solid rgba(33, 79, 144, .12) */
}

.hero-grid {
  position: absolute;
  inset: 0;
  /* background-image: linear-gradient(rgba(33, 79, 144, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(33, 79, 144, .045) 1px, transparent 1px);
  background-size: 70px 70px; */
  /* mask-image: linear-gradient(to right, #000, transparent 78%) */
}

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

.hero h1 {
  max-width: 980px;
  font-size: clamp(3.1rem, 6.4vw, 6.3rem);
  letter-spacing: -.055em;
  margin-bottom: 30px
}

.hero h1 span {
  color: var(--blue)
}

.hero-copy {
  /* max-width: 720px; */
  font-size: 1.28rem;
  color: var(--muted);
  margin-bottom: 38px
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .25s
}

.button-primary {
  background: var(--blue);
  color: #fff
}

.button-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px)
}

.button-secondary {
  border-color: var(--blue);
  color: var(--blue)
}

.button-secondary:hover {
  background: #fff
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  font-size: 1.7rem;
  color: var(--blue);
  animation: bounce 1.8s infinite
}

@keyframes bounce {
  50% {
    transform: translateY(7px)
  }
}

.section-heading {
  /* max-width: 760px; */
  margin-bottom: 55px
}

.section-heading>p:last-child {
  font-size: 1.12rem;
  color: var(--muted)
}

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

.service-card {
  position: relative;
  padding: 38px 34px 34px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 35px rgba(25, 55, 82, .05);
  transition: .3s
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow)
}

.service-card.featured {
  background: var(--blue-deep);
  color: #fff;
  transform: translateY(-16px)
}

.service-card.featured:hover {
  transform: translateY(-24px)
}

.icon-wrap {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: var(--light);
  margin-bottom: 30px
}

.featured .icon-wrap {
  background: rgba(255, 255, 255, .1)
}

.icon-wrap svg {
  width: 45px;
  height: 45px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round
}

.featured .icon-wrap svg {
  stroke: #fff
}

.service-number {
  position: absolute;
  right: 28px;
  top: 25px;
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(33, 79, 144, .1)
}

.span-number {
  
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(33, 79, 144, .1)
}

.featured .service-number {
  color: rgba(255, 255, 255, .12)
}


.service-card h3 {
  font-size: 1.7rem;
  margin-bottom: 15px
}

.service-card>p:not(.service-number) {
  color: var(--muted)
}

.featured>p:not(.service-number) {
  color: #c8d8e7
}

.service-card ul {
  padding: 0;
  margin: 25px 0 28px;
  list-style: none
}

.service-card li {
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid var(--line);
  position: relative
}

.featured li {
  border-color: rgba(255, 255, 255, .13)
}

.service-card li:before {
  content: "";
  position: absolute;
  left: 1px;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue)
}
.service-card-dark li:before {
  content: "";
  position: absolute;
  left: 1px;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white)
}

.service-card>a {
  font-weight: 700;
  color: var(--blue)
}

.featured>a {
  color: #fff
}

.service-card>a span {
  display: inline-block;
  margin-left: 8px;
  transition: .2s
}

.service-card>a:hover span {
  transform: translateX(5px)
}

.process {
  background: var(--light)
}

.process-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start
}

.process-copy {
  position: sticky;
  top: 130px
}

.process-copy>p:not(.eyebrow) {
  font-size: 1.12rem;
  color: var(--muted)
}

.text-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--blue);
  font-weight: 700
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0
}

.steps li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  padding: 29px 0;
  border-bottom: 1px solid #ccd9e5
}

.steps li:first-child {
  padding-top: 0
}

.steps span {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--blue)
}

.steps h3 {
  font-size: 1.4rem;
  margin-bottom: 6px
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center
}

.about-visual {
  min-height: 480px;
  background: var(--blue-deep);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative
}

.about-visual:before {
  content: "";
  position: absolute;
  inset: 35px;
  border: 1px solid rgba(255, 255, 255, .18)
}

.network {
  position: relative;
  width: 310px;
  height: 310px
}

.network strong {
  position: absolute;
  inset: 105px 45px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--blue);
  font-size: 2rem
}

.node {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cyan);
  z-index: 2
}

.n1 {
  left: 0;
  top: 10px
}

.n2 {
  right: 0;
  top: 35px
}

.n3 {
  left: 30px;
  bottom: 0
}

.n4 {
  right: 30px;
  bottom: 5px
}

.line {
  position: absolute;
  height: 3px;
  background: rgba(255, 255, 255, .65);
  transform-origin: left center
}

.l1 {
  width: 245px;
  left: 25px;
  top: 28px;
  transform: rotate(6deg)
}

.l2 {
  width: 250px;
  left: 28px;
  top: 38px;
  transform: rotate(65deg)
}

.l3 {
  width: 240px;
  left: 45px;
  bottom: 22px;
  transform: rotate(-3deg)
}

.about-copy>p:not(.eyebrow) {
  font-size: 1.12rem;
  color: var(--muted)
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px
}

.facts div {
  border-left: 3px solid var(--blue);
  padding-left: 15px
}

.facts strong {
  display: block;
  font-size: 2rem;
  color: var(--blue);
  line-height: 1
}

.facts span {
  font-size: .86rem;
  color: var(--muted)
}

.contact {
  padding-top: 20px
}

.contact-box {
  background: var(--blue);
  color: #fff;
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px
}

.contact-box .eyebrow {
  color: #d2e4f3
}

.contact-box h2 {
  font-size: clamp(2rem, 3.7vw, 3.2rem);
  margin: 0;
  max-width: 740px
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  min-width: 240px
}

.button-light {
  background: #fff;
  color: var(--blue);
  width: 100%
}

.phone {
  font-weight: 700
}

.site-footer {
  background: #0c2238;
  color: #c9d4de;
  padding: 0px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr .8fr .8fr;
  gap: 50px
}

.footer-grid img {
    width: 250px;
    height: auto;
  filter: brightness(0) invert(1);
  opacity: .88;
  margin-bottom: 20px
}

.footer-grid strong {
  color: #fff;
  display: block;
  margin-bottom: 15px
}

.footer-grid a:hover {
  color: #fff
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  /* margin-top: 48px; */
  padding-top: 22px;
  font-size: .85rem
}

@media(max-width:900px) {
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 88px;
    background: #fff;
    padding: 24px 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--line)
  }

  .main-nav.open {
    display: flex
  }

  .nav-toggle {
    display: block
  }

  .hero {
    min-height: 700px
  }

  .service-grid, .about-grid {
    grid-template-columns: 1fr
  }

  .service-card.featured {
    transform: none
  }

  .service-card.featured:hover {
    transform: translateY(-8px)
  }

  .process-layout {
    grid-template-columns: 1fr;
    gap: 55px
  }

  .process-copy {
    position: static
  }

  .about-visual {
    min-height: 400px
  }

  .contact-box {
    align-items: flex-start;
    flex-direction: column
  }

  .contact-actions {
    align-items: flex-start
  }

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

@media(max-width:600px) {
  .container {
    width: min(100% - 28px, 1160px)
  }

  .section {
    padding: 50px 0
  }

  .nav-wrap {
    height: 76px
  }

  .brand img {
    width: 310px
  }

  .main-nav {
    top: 76px
  }

  .hero {
    padding-top: 130px;
    min-height: 680px
  }

  .hero h1 {
    font-size: 2rem
  }

  
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 15px
}
  .hero-copy {
    font-size: 1.08rem
  }

  .hero-actions .button {
    width: 100%
  }

  .service-card {
    padding: 30px 24px
  }

  .steps li {
    grid-template-columns: 48px 1fr
  }

  .about-visual {
    min-height: 340px
  }

  .network {
    transform: scale(.78)
  }

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

  .contact-box {
    padding: 38px 26px
  }

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

  .footer-grid {
    gap: 28px
  }
}

/* Landingpages */
.subpage-hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
  /* background: linear-gradient(115deg, #f8fbfe 0%, #eef5fa 58%, #e6f0f7 100%) */
}

.subpage-hero:after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -120px;
  top: 70px;
  /* background: linear-gradient(140deg, rgba(33, 79, 144, .08), rgba(120, 169, 210, .24));
  border: 1px solid rgba(33, 79, 144, .12) */
}

.subpage-hero .container {
  position: relative;
  z-index: 2
}

.breadcrumb {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 34px;
  font-size: .9rem;
  color: var(--muted)
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 700
}

.subpage-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  letter-spacing: -.055em;
  margin-bottom: 28px
}

.subpage-hero h1 span {
  color: var(--blue)
}

.subpage-lead {
  max-width: 750px;
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 36px
}

.trust-line {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 34px;
  font-size: .92rem;
  font-weight: 700
}

.trust-line span:before {
  content: "✓";
  color: var(--blue);
  margin-right: 8px
}

.detail-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start
}

.detail-intro {
  position: sticky;
  top: 125px
}

.detail-intro>p:not(.eyebrow) {
  font-size: 1.12rem;
  color: var(--muted)
}

.benefit-list {
  display: grid;
  gap: 18px
}

.benefit-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 32px rgba(25, 55, 82, .05)
}

.benefit-card .number {
  display: block;
  color: var(--blue);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0em;
  margin-bottom: 12px
}

.benefit-card h3 {
  font-size: 1.45rem;
  margin-bottom: 9px
}

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

.offer-section {
  background: var(--light)
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.offer-card {
  padding: 32px 28px;
  background: #fff;
  border-top: 4px solid var(--blue)
}

.offer-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px
}

.offer-card p {
  color: var(--muted)
}

.offer-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0
}

.offer-card li {
  position: relative;
  padding: 7px 0 7px 20px
}

.offer-card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue)
}

.case-band {
  background: var(--blue);
  color: #fff
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center
}

.case-grid p {
  color: #c8d8e7
}

.case-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.case-points div {
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 22px
}

.case-points strong {
  display: block;
  font-size: 1.7rem;
  margin-bottom: 4px
}

.faq-list {
  max-width: 900px;
  margin: auto
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0
}

.faq-item h3 {
  font-size: 1.18rem;
  margin-bottom: 8px
}

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

.service-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px
}

.service-nav a {
  font-weight: 700;
  color: var(--blue)
}

@media(max-width:900px) {
  .detail-grid, .case-grid {
    grid-template-columns: 1fr;
    gap: 50px
  }

  .detail-intro {
    position: static
  }

  .offer-grid {
    grid-template-columns: 1fr
  }

  .subpage-hero {
    padding-top: 150px
  }

  .case-points {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:600px) {
  .subpage-hero {
    padding: 125px 0 75px
  }

  .subpage-hero h1 {
    font-size: 2.65rem
  }

  .subpage-lead {
    font-size: 1.08rem
  }

  .case-points {
    grid-template-columns: 1fr
  }

  .trust-line {
    gap: 12px;
    flex-direction: column
  }
}

/* Rechtliche Seiten */
.legal-hero {
  position: relative;
  padding: 200px 0 80px;
  overflow: hidden;
  background: linear-gradient(115deg, #f8fbfe 0%, #eef5fa 58%, #e6f0f7 100%)
}

.legal-hero .container {
  position: relative;
  z-index: 2
}

.legal-hero h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  letter-spacing: 0em;
  margin: 0;
  color: var(--blue-deep)
}

.legal-section {
  padding-top: 85px
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 780px);
  gap: 80px;
  align-items: start
}

.legal-nav {
  position: sticky;
  top: 125px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--light)
}

.legal-nav strong {
  margin-bottom: 13px;
  color: var(--blue-deep)
}

.legal-nav a {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-weight: 700;
  color: var(--blue)
}

.legal-content h2 {
  font-size: 1.55rem;
  letter-spacing: -.02em;
  margin: 42px 0 12px
}

.legal-content h2:first-child {
  margin-top: 0
}

.legal-content p, .legal-content li {
  color: var(--muted)
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px
}

.legal-content ul {
  padding-left: 22px
}

.download-grid {
  display: grid;
  gap: 16px;
  margin: 34px 0
}

.download-card {
  display: grid;
  grid-template-columns: 58px 1fr 30px;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  text-decoration: none !important;
  transition: .2s
}

.download-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow)
}

.file-type {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: var(--blue);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em
}

.download-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem
}

.download-card small {
  display: block;
  color: var(--muted);
  margin-top: 4px
}

.download-arrow {
  font-size: 1.5rem;
  color: var(--blue)
}

.legal-note {
  margin-top: 35px;
  padding: 24px;
  border-left: 4px solid var(--blue);
  background: var(--light)
}

.legal-note p {
  margin: 6px 0 0
}

@media(max-width:900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 35px
  }

  .legal-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0
  }

  .legal-nav strong {
    grid-column: 1/-1
  }

  .legal-nav a {
    text-align: center
  }
}

@media(max-width:600px) {
  .legal-hero {
    padding: 125px 0 60px
  }

  .legal-section {
    padding-top: 60px
  }

  .legal-nav {
    grid-template-columns: 1fr
  }

  .legal-nav strong {
    grid-column: auto
  }

  .legal-nav a {
    text-align: left
  }

  .download-card {
    grid-template-columns: 52px 1fr
  }

  .download-arrow {
    display: none
  }

  .file-type {
    width: 52px;
    height: 52px
  }
}


/* Cookie consent */
#cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 900px;
  margin: auto;
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: 0 18px 60px rgba(12, 34, 56, .24);
  z-index: 9999
}

#cookie-banner.hidden {
  display: none
}

#cookie-banner h2 {
  font-size: 1.35rem;
  margin: 0 0 8px
}

#cookie-banner p {
  margin: 0;
  color: var(--muted)
}

#cookie-banner a {
  color: var(--blue);
  text-decoration: underline
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px
}

.cookie-actions button {
  font: inherit;
  font-weight: 700;
  padding: 11px 17px;
  border: 1px solid var(--blue);
  background: #fff;
  color: var(--blue);
  cursor: pointer
}

.cookie-actions .primary {
  background: var(--blue);
  color: #fff
}

.cookie-settings-link {
  cursor: pointer;
  text-decoration: underline
}

@media(max-width:600px) {
  #cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 20px
  }

  .cookie-actions button {
    width: 100%
  }
}


/* Referenzen */
.references-preview {
  background: #f7fafc
}

.references-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 42px
}

.references-heading h2 {
  margin-bottom: 0
}

.references-heading>p {
  color: var(--muted);
  margin: 0
}

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

.reference-card {
  position: relative;
  min-height: 190px;
  padding: 26px 24px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease
}

.reference-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 55%, rgba(18, 91, 145, .055));
  pointer-events: none
}

.reference-card:hover, .reference-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(18, 91, 145, .45);
  box-shadow: 0 16px 40px rgba(20, 54, 82, .11)
}

.reference-mark {
  position: absolute;
  top: 22px;
  left: 24px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  font-weight: 800;
  letter-spacing: .04em;
  font-size: .95rem
}

.reference-name {
  position: relative;
  font-weight: 800;
  color: var(--ink);
  font-size: 1.03rem;
  line-height: 1.25;
  padding-right: 25px
}

.reference-domain {
  position: relative;
  color: var(--muted);
  font-size: .78rem;
  margin-top: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.reference-arrow {
  position: absolute;
  right: 22px;
  bottom: 28px;
  color: var(--blue);
  font-size: 1.25rem;
  transition: transform .2s
}

.reference-card:hover .reference-arrow {
  transform: translate(3px, -3px)
}

.reference-card.compact {
  min-height: 164px
}

.references-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 32px
}

.references-more span {
  font-size: .88rem;
  color: var(--muted)
}

.references-hero:after {
 
}

.reference-tools {
  display: grid;
  grid-template-columns: auto minmax(240px, 520px) 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 30px;
  padding: 18px 20px;
  background: var(--light);
  border: 1px solid var(--line)
}

.reference-tools label {
  font-weight: 800
}

.reference-tools input {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  color: var(--ink)
}

.reference-tools input:focus {
  outline: 3px solid rgba(18, 91, 145, .14);
  border-color: var(--blue)
}

.reference-tools span {
  justify-self: end;
  color: var(--muted);
  font-size: .9rem
}

.reference-empty {
  text-align: center;
  padding: 50px;
  background: var(--light);
  color: var(--muted)
}

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

  .references-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start
  }
}

@media(max-width:760px) {
  .reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .reference-tools {
    grid-template-columns: 1fr
  }

  .reference-tools span {
    justify-self: start
  }

  .references-more {
    align-items: flex-start;
    flex-direction: column
  }
}

@media(max-width:480px) {
  .reference-grid {
    grid-template-columns: 1fr
  }

  .reference-card, .reference-card.compact {
    min-height: 150px
  }
}

/* ===== definitiv! 2025 Design System ===== */
:root {
  --blue: #0b3f68;
  --blue-deep: #071e35;
  --cyan: #21c7d9;
  --ink: #071827;
  --muted: #5d6b78;
  --light: #f3f7fa;
  --surface: #fff;
  --line: #dce5eb;
  --radius: 24px;
  --radius-sm: 14px;
  --shadow: 0 24px 70px rgba(4, 29, 52, .12);
  --container: 1200px
}

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

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
  color: var(--ink);
  line-height: 1.65
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99999;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E")
}

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

.section {
  /* padding: clamp(80px, 10vw, 140px) 0 */
}

.site-header {
  height: 88px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 229, 235, .75)
}

.nav-wrap {
  height: 88px
}

.brand img {
  width: 340px;
  height: auto
}

.main-nav {
  gap: 30px
}

.main-nav a {
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 680
}

.main-nav a:not(.nav-cta):after {
  height: 2px
}

.nav-cta {
  border-radius: 999px;
  padding: 12px 20px;
  background: var(--ink);
  color: #fff !important
}

.nav-cta:hover {
  background: var(--blue)
}

.hero {
  min-height: 820px;
  padding: 150px 0 85px;
  /* background: radial-gradient(circle at 82% 22%, rgba(33, 199, 217, .16), transparent 27%), radial-gradient(circle at 70% 70%, rgba(8, 120, 201, .12), transparent 28%), linear-gradient(135deg, #f9fcfe 0%, #edf5fa 100%);*/
  overflow: hidden
}

.hero-grid {
  opacity: .35;
  background-size: 56px 56px
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: 60px;
  align-items: center
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(8, 120, 201, .2);
  background: rgba(255, 255, 255, .72);
  font-size: .82rem;
  font-weight: 750;
  color: var(--blue-deep);
  margin-bottom: 28px
}

.hero-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(33, 199, 217, .15)
}

.hero h1 {
  font-size: clamp(4rem, 7.2vw, 7.5rem);
  line-height: .91;
  letter-spacing: -.075em;
  max-width: 800px;
  margin: 0 0 34px;
  color: var(--blue-deep)
}

.hero h1 em {
  font-style: normal;
  color: var(--blue)
}

.hero-claim {
  font-size: clamp(1.12rem, 1.5vw, 1.35rem);
  /* max-width: 900px; */
  color: var(--muted);
  /* margin-bottom: 34px */
}

.hero-claim strong {
  color: var(--ink)
}

.button {
  border-radius: 999px;
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px
}

.button-primary {
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(8, 120, 201, .24)
}

.button-primary:hover {
  background: #0669b1;
  transform: translateY(-2px)
}

.button-ghost {
  border: 1px solid rgba(7, 30, 53, .2);
  background: rgba(255, 255, 255, .55)
}

.hero-proof {
  display: flex;
  gap: 34px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(7, 30, 53, .12)
}

.hero-proof div {
  display: grid
}

.hero-proof strong {
  font-size: 1.45rem;
  color: var(--blue-deep)
}

.hero-proof span {
  font-size: .78rem;
  color: var(--muted)
}

.hero-orbit {
  position: relative;
  aspect-ratio: 1;
  max-width: 540px;
  margin: auto
}

.orbit-core {
  position: absolute;
  inset: 33%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-deep);
  color: #fff;
  font-weight: 850;
  font-size: 1.4rem;
  box-shadow: 0 34px 80px rgba(7, 30, 53, .28);
  z-index: 3
}

.orbit-core span {
  color: var(--cyan)
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(8, 120, 201, .25);
  border-radius: 50%
}

.orbit-ring.r1 {
  inset: 17%;
  animation: spin 18s linear infinite
}

.orbit-ring.r2 {
  inset: 2%;
  border-style: dashed;
  animation: spin 28s linear infinite reverse
}

.orbit-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 9px rgba(33, 199, 217, .15)
}

.d1 {
  top: 17%;
  left: 27%
}

.d2 {
  right: 8%;
  top: 49%;
  background: var(--blue)
}

.d3 {
  bottom: 9%;
  left: 35%;
  background: #6fd6ad
}

.orbit-label {
  position: absolute;
  padding: 11px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 35px rgba(7, 30, 53, .1);
  font-size: .82rem;
  font-weight: 750
}

.l-software {
  top: 9%;
  right: 14%
}

.l-systems {
  bottom: 18%;
  right: 2%
}

.l-consulting {
  bottom: 10%;
  left: 3%
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.section-heading {
  /* max-width: 800px */
}

.section-heading h2, .references-heading h2, .process-copy h2, .about-copy h2 {
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0em
}

.eyebrow {
  font-size: .78rem;
  letter-spacing: .15em;
  color: var(--blue);
  font-weight: 850
}

.section-kicker {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted)
}

.service-grid {
  gap: 18px
}

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  background: #fff;
  box-shadow: none;
  transition: .3s cubic-bezier(.2, .8, .2, 1)
}

.service-card.featured {
  background: var(--blue-deep);
  color: #fff;
  transform: none
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(8, 120, 201, .35)
}

.service-card h3 {
  font-size: 1.8rem;
  letter-spacing: -.03em
}

.service-card ul {
  font-size: .9rem
}

.icon-wrap {
  border-radius: 16px
}

.process {
  background: var(--blue-deep);
  color: #fff
}

.process-copy p {
  color: #bbcad5
}

.steps li {
  border-color: rgba(255, 255, 255, .13);
  padding: 26px 0
}

.steps li span {
  color: var(--cyan)
}

.about-visual {
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--blue-deep), #123f63);
  overflow: hidden
}

.facts div {
  border-radius: 16px
}

.references-preview {
  background: #f4f8fb;
  overflow: hidden
}

.references-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 42px
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  margin: 18px 0 52px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent)
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: marquee 42s linear infinite
}

.logo-marquee:hover .marquee-track {
  animation-play-state: paused
}

.marquee-logo {
  width: 220px;
  height: 116px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 22px
}

.marquee-logo img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain
}

@keyframes marquee {
  to {
    transform: translateX(-50%)
  }
}

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

.logo-card {
  position: relative;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: .25s ease;
  overflow: hidden
}

.logo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(8, 120, 201, .4);
  box-shadow: 0 18px 50px rgba(7, 30, 53, .1)
}

.logo-media {
  height: 128px;
  display: grid;
  place-items: center;
  padding: 12px
}

.logo-media img {
  max-width: 100%;
  max-height: 105px;
  object-fit: contain;
  filter: saturate(.9);
  transition: .25s
}

.logo-card:hover .logo-media img {
  filter: saturate(1.08);
  transform: scale(1.02)
}

.logo-meta {
  display: grid;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line)
}

.logo-meta strong {
  font-size: .96rem
}

.logo-meta small {
  color: var(--muted)
}

.logo-link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: var(--blue)
}

.logo-card.compact {
  min-height: 190px
}

.logo-card.compact .logo-media {
  height: 100px
}

.preview-grid {
  grid-template-columns: repeat(4, 1fr)
}

.references-more {
  margin-top: 32px
}

.reference-toolbar {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 45px;
  align-items: end;
  margin-bottom: 30px
}

.reference-toolbar h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  letter-spacing: -.05em;
  margin: 0
}

.search-field {
  display: grid;
  gap: 8px;
  font-weight: 750;
  font-size: .82rem
}

.search-field input {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 20px;
  font: inherit
}

.filter-row {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 0 0 32px
}

.filter-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 10px 15px;
  font: inherit;
  font-size: .8rem;
  font-weight: 720;
  cursor: pointer
}

.filter-button.active, .filter-button:hover {
  background: var(--blue-deep);
  color: #fff;
  border-color: var(--blue-deep)
}

.text-references-section {
  background: var(--light)
}

.text-reference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px
}

.text-reference {
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 700
}

.text-reference:hover {
  border-color: var(--blue);
  color: var(--blue)
}

.subpage-hero {
  padding: 175px 0 105px;
  /* background: radial-gradient(circle at 78% 25%, rgba(33, 199, 217, .18), transparent 23%), linear-gradient(135deg, #f9fcfe, #eaf3f8) */
}

.subpage-hero h1 {
  font-size: clamp(3.6rem, 6vw, 5rem);
  line-height: 1.1;
  letter-spacing: -.07em
}

.benefit-card, .offer-card {
  border-radius: 20px
}

.contact-box {
  border-radius: 28px;
  background: var(--blue);
  
}

.site-footer {
  background:var(--blue);
}

.footer-grid {
  padding-top: 30px
}

.site-footer a:hover {
  color: var(--cyan)
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}

@media(max-width:1000px) {
  .hero-layout {
    grid-template-columns: 1fr
  }

  .hero-orbit {
    max-width: 430px
  }

  .logo-grid, .preview-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .references-heading {
    grid-template-columns: 1fr;
    gap: 22px
  }

  .text-reference-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:760px) {
  .container {
    width: min(100% - 30px, var(--container))
  }

  .site-header, .nav-wrap {
    height: 72px
  }

  .main-nav {
    top: 72px
  }

  .hero {
    padding-top: 120px;
    min-height: auto
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 5rem)
  }

  .hero-layout {
    gap: 45px
  }

  .hero-proof {
    gap: 20px;
    flex-wrap: wrap
  }

  .hero-orbit {
    max-width: 340px
  }

  .logo-grid, .preview-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .reference-toolbar {
    grid-template-columns: 1fr
  }

  .text-reference-grid {
    grid-template-columns: 1fr
  }

  .section {
    padding: 78px 0
  }

  .marquee-logo {
    width: 175px;
    height: 95px
  }

  .section-kicker {
    display: none
  }
}

@media(max-width:480px) {
  .logo-grid, .preview-grid {
    grid-template-columns: 1fr
  }

  .logo-card.compact {
    min-height: 175px
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px
  }

  .hero-proof strong {
    font-size: 1.2rem
  }

  .hero-proof span {
    font-size: .68rem
  }

  .hero-actions {
    display: grid
  }

  .button {
    width: 100%
  }

  .orbit-label {
    font-size: .7rem;
    padding: 8px 10px
  }
}

/* News 2025 */
.nav-links a.active {
  color: var(--blue-700, #0b3f68)
}

.news-hero .hero-orbit span:nth-child(2) {
  background: rgba(255, 255, 255, .96);
  color: #0b3f68
}

.home-news {
  background: linear-gradient(180deg, #fff 0%, #f5f8fb 100%)
}

.news-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  overflow: hidden;
  border: 1px solid rgba(11, 63, 104, .12);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(20, 46, 68, .09)
}

.news-teaser-image {
  display: block;
  min-height: 320px;
  background: #eef3f8
}

.news-teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.news-teaser-copy {
  padding: clamp(28px, 4vw, 54px);
  align-self: center
}

.news-teaser-copy h3 {
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.08;
  margin: .8rem 0 1rem
}

.news-teaser-copy h3 a {
  color: inherit;
  text-decoration: none
}

.news-meta {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
  color: #527084;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .02em
}

.news-meta span {
  padding: .35rem .62rem;
  border-radius: 999px;
  background: #edf4f8;
  color: #0b5a86
}

.section-actions {
  margin-top: 28px;
  display: flex;
  justify-content: flex-end
}

.news-section {
  background: #f7f9fb
}

.news-feature {
  overflow: hidden;
  border: 1px solid rgba(11, 63, 104, .12);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(20, 46, 68, .08)
}

.news-image {
  background: #fff;
  border-bottom: 1px solid rgba(11, 63, 104, .1)
}

.news-image img {
  display: block;
  width: 100%;
  height: auto
}

.news-content {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(30px, 6vw, 76px)
}

.news-content h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  margin: 1rem 0 1.4rem
}

.news-content h3 {
  font-size: 1.35rem;
  margin: 2rem 0 .65rem
}

.news-content p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #385164
}

.news-content .news-intro {
  font-size: 1.2rem;
  color: #153b55
}

.news-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding: 26px;
  border-radius: 20px;
  background: #edf5fa;
  border: 1px solid rgba(11, 63, 104, .12)
}

.news-callout p {
  margin: .35rem 0 0;
  font-size: .98rem
}

@media(max-width:820px) {
  .news-teaser {
    grid-template-columns: 1fr
  }

  .news-teaser-image {
    min-height: auto
  }

  .news-callout {
    align-items: flex-start;
    flex-direction: column
  }

  .section-actions {
    justify-content: flex-start
  }
}


/* Typografie- und Header-Feinschliff */
html {
  scroll-padding-top: 116px
}

body {
  letter-spacing: 0
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0em
}

.hero h1 {
  letter-spacing: -.038em
}

.subpage-hero h1 {
  letter-spacing: 0em
}

.section-heading h2, .references-heading h2, .process-copy h2, .about-copy h2, .reference-toolbar h2 {
  letter-spacing: 0em
}

.service-card h3 {
  letter-spacing: -.015em
}

.eyebrow {
  letter-spacing: .065em
}

.section-kicker {
  letter-spacing: .045em
}

.main-nav a, .button, .nav-cta, .news-meta {
  letter-spacing: 0
}

.site-header, .nav-wrap {
  height: 190px
}

.brand img {
  width: 416px
}

.main-nav {
  gap: 34px
}

.main-nav a {
  font-size: 1rem
}

.nav-cta {
  padding: 14px 24px
}

.hero {
  padding-top: 176px
}

.subpage-hero {
  padding-top: 205px
}

.process-copy, .detail-intro {
  scroll-margin-top: 125px
}

@media(max-width:980px) {
  .site-header, .nav-wrap {
    height: 216px
  }

  .brand img {
    width: 190px
  }

  .main-nav {
    top: 94px
  }

  .hero {
    padding-top: 150px
  }

  .subpage-hero {
    padding-top: 175px
  }
}

@media(max-width:760px) {
  html {
    scroll-padding-top: 84px
  }

  .site-header, .nav-wrap {
    height: 80px
  }

  .brand img {
    width: 170px
  }

  .main-nav {
    top: 80px
  }

  .hero {
    padding-top: 128px
  }

  .subpage-hero {
    padding-top: 138px
  }

  .hero h1 {
    letter-spacing: -.03em
  }

  .eyebrow {
    letter-spacing: .05em
  }
}

/* Definitiv Redesign 2025 – Startseite */
.hero-redesign {
  min-height: 780px;
  padding: 240px 0 105px;
  display: flex;
  align-items: center;
  /* background: radial-gradient(circle at 82% 30%, rgba(24, 193, 217, .17), transparent 27%), linear-gradient(145deg, #f9fcfe 0%, #edf5f9 58%, #e7f1f6 100%); */
  overflow: hidden
}

.hero-layout-redesign {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr);
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 2
}

.hero-redesign .hero-copy-wrap {
  max-width: 770px
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-deep)
}

.hero-eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--cyan)
}

.hero-redesign h1 {
  font-size: clamp(3.6rem, 6vw, 5rem);
  line-height: 1.1;
  margin: 18px 0 30px;
  letter-spacing: 0em
}

.hero-redesign h1 em {
  font-style: normal;
  color: var(--blue)
}

.hero-redesign .hero-claim {
  font-size: clamp(1.15rem, 1.6vw, 1.38rem);
  line-height: 1.62;
  /* max-width: 730px; */
  color: #38556a
}

.hero-redesign .hero-proof {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(11, 63, 104, .13)
}

.hero-system {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center
}

.system-window {
  width: min(100%, 560px);
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(11, 63, 104, .12);
  box-shadow: 0 35px 95px rgba(14, 67, 103, .18);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-7deg) rotateX(2deg)
}

.window-bar {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  border-bottom: 1px solid #e4edf2;
  background: #f8fbfd
}

.window-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b7c9d3
}

.window-bar i:first-child {
  background: #20c7d9
}

.window-bar span {
  margin-left: 10px;
  font-size: .74rem;
  font-weight: 760;
  color: #597286
}

.window-content {
  display: grid;
  grid-template-columns: 62px 1fr;
  min-height: 350px
}

.system-sidebar {
  background: #0a3557;
  padding: 28px 17px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.system-sidebar span {
  display: block;
  height: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .2)
}

.system-sidebar span.active {
  height: 34px;
  background: #20c7d9
}

.system-dashboard {
  padding: 30px
}

.dashboard-top {
  display: flex;
  justify-content: space-between
}

.dashboard-top span {
  height: 13px;
  border-radius: 10px;
  background: #e5eef3;
  width: 42%
}

.dashboard-top span:last-child {
  width: 20%
}

.dashboard-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0
}

.dashboard-cards div {
  padding: 22px;
  border-radius: 16px;
  background: #eef6fa
}

.dashboard-cards b, .dashboard-cards small {
  display: block
}

.dashboard-cards b {
  font-size: 1.05rem;
  color: #0b3f68
}

.dashboard-cards small {
  margin-top: 7px;
  color: #6b8291
}

.dashboard-chart {
  height: 120px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 20px;
  border-radius: 16px;
  background: #f7fafc
}

.dashboard-chart span {
  flex: 1;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(#20c7d9, #0b78bd)
}

.dashboard-chart span:nth-child(1) {
  height: 38%
}

.dashboard-chart span:nth-child(2) {
  height: 62%
}

.dashboard-chart span:nth-child(3) {
  height: 48%
}

.dashboard-chart span:nth-child(4) {
  height: 83%
}

.dashboard-chart span:nth-child(5) {
  height: 70%
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-size: .78rem;
  font-weight: 700;
  color: #4b6b7d
}

.dashboard-status i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #42be82;
  box-shadow: 0 0 0 5px rgba(66, 190, 130, .12)
}

.floating-chip {
  position: absolute;
  padding: 11px 15px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(11, 63, 104, .1);
  box-shadow: 0 14px 35px rgba(17, 68, 101, .13);
  font-size: .74rem;
  font-weight: 750;
  color: #0b3f68
}

.chip-one {
  top: 40px;
  right: -8px
}

.chip-two {
  bottom: 70px;
  left: -10px
}

.chip-three {
  bottom: 12px;
  right: 40px
}

.trust-strip {
  padding: 30px 0 20px;
  background: #fff;
  border-bottom: 1px solid var(--line)
}

.trust-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 12px
}

.trust-head p {
  font-size: .82rem;
  font-weight: 760;
  color: #5e7483
}

.trust-head a {
  font-size: .82rem;
  font-weight: 760;
  color: var(--blue)
}

.logo-marquee-clean {
  border: 0;
  background: transparent
}

.logo-marquee-clean .marquee-logo {
  height: 86px;
  width: 190px;
  border: 0;
  background: transparent
}

.logo-marquee-clean .marquee-logo img {
  max-height: 48px;
  filter: grayscale(1);
  opacity: .62;
  transition: .25s
}

.logo-marquee-clean .marquee-logo:hover img {
  filter: none;
  opacity: 1
}

.split-heading {
  display: grid;
  grid-template-columns: 1.05fr .75fr;
  align-items: end;
  gap: 70px
}

.split-heading>p {
  max-width: 520px;
  margin: 0 0 6px
}

.split-heading h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.1;
  margin: .4rem 0 0
}

.news-redesign {
  background: #f6f9fb
}

.news-teaser-redesign {
  grid-template-columns: minmax(0, 1.05fr);
  box-shadow: none;
  border-color: rgba(11, 63, 104, .1);
  border-left: 5px solid #0a3d62;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.news-teaser-redesign .news-teaser-image {
  min-height: 420px
}

.news-teaser-redesign .news-teaser-copy {
  /* padding: clamp(34px, 5vw, 68px) */
}

.services-redesign {
  background: #fff
}

.service-grid-redesign {
  align-items: stretch
}

.service-card-redesign {
  position: relative;
  min-height: 560px;
  padding: 38px;
  border: 1px solid rgba(11, 63, 104, .1);
  box-shadow: none;
  background: #fff;
  overflow: hidden
}

.service-card-redesign.featured {
  background: #0b3f68;
  color: #fff;
  /* transform: translateY(-18px) */
}

.service-card-redesign.featured p, .service-card-redesign.featured li {
  color: rgba(255, 255, 255, .76)
}

.service-card-redesign.featured a {
  color: #fff
}

.service-card-redesign.featured .icon-wrap {
  background: rgba(255, 255, 255, .1);
  color: #20c7d9
}

.service-card-redesign:before {
  content: "";
  position: absolute;
  inset: auto -30% -45% 30%;
  height: 220px;
  background: radial-gradient(circle, rgba(32, 199, 217, .11), transparent 70%)
}

.service-card-redesign .service-number {
  font-size: 3rem;
  font-weight: 800;
  color: #8297a4
}

.service-card-redesign h3 {
  font-size: 2rem;
  margin-top: 28px
}

.service-card-redesign>p:not(.service-number) {
  min-height: 82px
}

.service-card-redesign ul {
  margin-top: 26px
}

.service-card-redesign>a {
  margin-top: auto;
  position: absolute;
  left: 38px;
  bottom: 38px
}

.why-redesign {
  background: #0b3f68;
  color: #fff
}

.why-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 100px;
  align-items: start
}

.why-intro {
  position: sticky;
  top: 150px
}

.why-intro h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  margin: 12px 0 28px
}

.why-intro>p:not(.eyebrow) {
  color: #b9c8d2;
  font-size: 1.08rem;
  line-height: 1.75
}

.why-intro .text-link {
  color: #fff
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-left: 1px solid rgba(255, 255, 255, .14)
}

.value-grid article {
  padding: 42px;
  border-right: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  min-height: 250px
}

.value-grid span {
  font-size: 3rem;
        color: rgba(255, 255, 255, .76);
  font-weight: 800
}

.value-grid h3 {
  font-size: 1.42rem;
  margin: 48px 0 14px
}

.value-grid p {
  color: #aebfca;
  line-height: 1.65
}

.process-redesign {
  background: #f6f9fb
}

.process-line {
  list-style: none;
  margin: 55px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #cddbe3
}

.process-line li {
  position: relative;
  padding: 36px 26px 0 0
}

.process-line li:before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 7px #f6f9fb
}

.process-line span {
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue);
}

.process-line h3 {
  font-size: 1.35rem;
  margin: 22px 0 10px
}

.process-line p {
  color: #607787;
  line-height: 1.6
}

.references-redesign {
  background: #fff
}

.reference-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 46px
}

.reference-showcase a {
  min-height: 210px;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(11, 63, 104, .1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  transition: .25s
}

.reference-showcase a:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(11, 63, 104, .1);
  border-color: rgba(11, 120, 189, .28)
}

.reference-showcase img {
  width: 100%;
  height: 105px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .75;
  transition: .25s
}

.reference-showcase a:hover img {
  filter: none;
  opacity: 1
}

.reference-showcase span {
  font-size: .78rem;
  font-weight: 760;
  color: #597286
}

.references-more {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end
}

.faq-redesign {
  background: #f6f9fb
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px
}

.faq-layout h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.5rem);
  line-height: 1;
  margin: 12px 0 20px
}

.faq-layout>div:first-child>p:last-child {
  color: #607787
}

.faq-list {
  border-top: 1px solid #cbd9e1
}

.faq-list details {
  border-bottom: 1px solid #cbd9e1
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 25px 48px 25px 0;
  font-weight: 760;
  font-size: 1.05rem;
  position: relative
}

.faq-list summary::-webkit-details-marker {
  display: none
}

.faq-list summary:after {
  content: "+";
  position: absolute;
  right: 5px;
  top: 20px;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--blue);
}

.faq-list details[open] summary:after {
  content: "–"
}

.faq-list details p {
  padding: 0 55px 25px 0;
  color: #557080;
  line-height: 1.7
}

.contact-redesign {
  background: #fff
}

.contact-box-redesign {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  padding: clamp(42px, 6vw, 78px);
  background: #0b3f68;
  overflow: hidden;
  position: relative
}

.contact-box-redesign:after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  
  right: -110px;
  top: -150px
}

.contact-box-redesign h2 {
  font-size: clamp(2.7rem, 4.6vw, 4.8rem);
  line-height: .98;
  margin: 14px 0 20px;
  max-width: 800px
}

.contact-box-redesign p:not(.eyebrow) {
  color: rgba(255, 255, 255, .74);
  max-width: 650px
}

.contact-box-redesign .contact-actions {
  position: relative;
  z-index: 2;
  align-items: flex-start
}

@media(max-width:1050px) {
  .hero-layout-redesign, .why-layout, .faq-layout {
    grid-template-columns: 1fr
  }

  .hero-system {
    max-width: 620px;
    margin: 0 auto;
    width: 100%
  }

  .why-intro {
    position: static
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .process-line {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px
  }

  .reference-showcase {
    grid-template-columns: repeat(2, 1fr)
  }

  .contact-box-redesign {
    grid-template-columns: 1fr;
    gap: 35px
  }
}

@media(max-width:760px) {
  .hero-redesign {
    padding: 185px 0 80px
  }

  .hero-layout-redesign {
    gap: 55px
  }

  .hero-system {
    min-height: 390px
  }

  .system-window {
    transform: none
  }

  .floating-chip {
    display: none
  }

  .window-content {
    min-height: 285px
  }

  .dashboard-cards {
    grid-template-columns: 1fr
  }

  .dashboard-cards div:last-child {
    display: none
  }

  .service-card-redesign.featured {
    transform: none
  }

  .why-layout, .faq-layout {
    gap: 50px
  }

  .value-grid {
    grid-template-columns: 1fr
  }

  .process-line {
    grid-template-columns: 1fr;
    border-top: 0
  }

  .process-line li {
    border-top: 1px solid #cddbe3
  }

  .reference-showcase {
    grid-template-columns: 1fr
  }

  .contact-box-redesign {
    padding: 38px 26px
  }

  .trust-head {
    align-items: flex-start;
    flex-direction: column
  }

  .hero-redesign h1 {
    font-size: clamp(3.4rem, 15vw, 5rem)
  }
}

/* Hero – Referenzen statt Dashboard */
.hero-reference-cloud {
  position: relative;
  min-height: 540px;
  isolation: isolate;
}

.hero-reference-cloud::before {
  content: "";
  position: absolute;
  inset: 8% 5% 4% 8%;
  border-radius: 48% 52% 44% 56% / 54% 42% 58% 46%;
  background: radial-gradient(circle at 50% 46%, rgba(255, 255, 255, .98), rgba(255, 255, 255, .58) 52%, rgba(255, 255, 255, 0) 73%);
  border: 1px solid rgba(11, 63, 104, .08);
  z-index: -1;
}

.hero-reference-label {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 150px;
  margin: 0;
  text-align: center;
  color: #587283;
  font-size: .76rem;
  font-weight: 780;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.hero-logo-card {
  position: absolute;
  display: grid;
  place-items: center;
  width: 180px;
  height: 112px;
  padding: 20px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(11, 63, 104, .1);
  box-shadow: 0 18px 52px rgba(14, 67, 103, .12);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.hero-logo-card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 26px 65px rgba(14, 67, 103, .18);
  border-color: rgba(11, 120, 189, .28);
}

.hero-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .72;
  transition: filter .25s ease, opacity .25s ease;
}

.hero-logo-card:hover img {
  filter: none;
  opacity: 1
}

.logo-card-agravis {
  left: 2%;
  top: 8%;
  width: 196px
}

.logo-card-loreal {
  right: 3%;
  top: 4%;
  width: 164px;
  height: 104px
}

.logo-card-caritas {
  left: 20%;
  top: 31%;
  width: 176px
}

.logo-card-asb {
  right: 18%;
  top: 30%;
  width: 156px;
  height: 104px
}

.logo-card-burk {
  left: 0;
  bottom: 15%;
  width: 158px;
  height: 104px
}

.logo-card-isn {
  right: 0;
  bottom: 17%;
  width: 154px;
  height: 104px
}

.logo-card-expomobilia {
  left: 29%;
  bottom: 0;
  width: 166px;
  height: 100px
}

.logo-card-grewe {
  right: 27%;
  bottom: -2%;
  width: 160px;
  height: 100px
}

.hero-reference-link {
  position: absolute;
  left: 50%;
  bottom: 28%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 780;
}

.hero-reference-link:hover {
  color: var(--blue-deep)
}

@media(max-width:1050px) {
  .hero-reference-cloud {
    max-width: 720px;
    width: 100%;
    min-height: 510px;
    margin: 0 auto
  }
}

@media(max-width:760px) {
  .hero-reference-cloud {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 44px
  }

  .hero-reference-cloud::before {
    inset: 0;
    border-radius: 28px
  }

  .hero-reference-label {
    position: absolute;
    left: 18px;
    top: 0;
    transform: none;
    width: auto;
    text-align: left
  }

  .hero-logo-card {
    position: relative;
    inset: auto !important;
    width: 100% !important;
    height: 96px !important;
    padding: 17px 20px;
    border-radius: 14px
  }

  .hero-reference-link {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    grid-column: 1/-1;
    justify-content: center;
    padding-top: 8px
  }
}

@media(max-width:440px) {
  .hero-reference-cloud {
    grid-template-columns: 1fr
  }

  .hero-reference-link {
    grid-column: auto
  }
}

/* PR */

.news-image-right {
    float: right;
    width: 340px;
    max-width: 45%;
    margin: 0 0 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.news-content::after {
    content: "";
    display: block;
    clear: both;
}



    /* Dropdown-Navigation: Leistungen */
    .nav-dropdown {
      position: relative;
      display: flex;
      align-items: center;
    }

    .nav-dropdown-main {
      display: inline-flex;
      align-items: center;
    }

    .nav-dropdown-link {
      display: inline-flex;
      align-items: center;
    }

    .nav-dropdown-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 2rem;
      min-height: 2rem;
      margin-left: .15rem;
      padding: 0;
      border: 0;
      border-radius: .3rem;
      background: transparent;
      color: inherit;
      font: inherit;
      cursor: pointer;
    }

    .nav-dropdown-toggle:hover,
    .nav-dropdown-toggle:focus-visible {
      background: rgba(11, 63, 104, .08);
      outline: none;
    }

    .nav-dropdown-icon {
      font-size: .75em;
      transition: transform .2s ease;
    }

    .nav-dropdown-toggle[aria-expanded="true"] .nav-dropdown-icon {
      transform: rotate(180deg);
    }

    .nav-dropdown-menu {
      position: absolute;
      z-index: 1000;
      top: calc(100% + .75rem);
      left: 0;
      min-width: 15rem;
      padding: .5rem;
      border: 1px solid rgba(11, 63, 104, .14);
      border-radius: .5rem;
      background: #fff;
      box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .14);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-.4rem);
      transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    }

    .nav-dropdown-menu a {
      display: block;
      padding: .7rem .85rem;
      border-radius: .35rem;
      white-space: nowrap;
      color: #0b3f68;
      text-decoration: none;
    }

    .nav-dropdown-menu a:hover,
    .nav-dropdown-menu a:focus-visible {
      background: rgba(11, 63, 104, .08);
      outline: none;
    }

    .nav-dropdown.is-open .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    @media (hover: hover) and (pointer: fine) {
      .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
    }

    @media (max-width: 900px) {
      .nav-dropdown {
        display: block;
        width: 100%;
      }

      .nav-dropdown-main {
        display: flex;
        width: 100%;
        align-items: center;
      }

      .nav-dropdown-link {
        flex: 1;
      }

      .nav-dropdown-toggle {
        display: inline-flex;
        flex: 0 0 2.75rem;
        width: 2.75rem;
        min-height: 2.75rem;
        margin-left: .25rem;
      }

      .nav-dropdown-menu {
        position: static;
        display: none;
        min-width: 0;
        margin-top: .45rem;
        padding: .25rem 0 .25rem .75rem;
        border: 0;
        border-left: 2px solid rgba(11, 63, 104, .2);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
      }

      .nav-dropdown.is-open .nav-dropdown-menu {
        display: block;
      }

      .nav-dropdown-menu a {
        padding: .6rem .75rem;
        white-space: normal;
      }
    }
  