@charset "UTF-8";
@font-face {
  font-family: "Sailec";
  src: url("../assets/fonts/SailecRegular.woff") format("woff"), url("../assets/fonts/SailecRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sailec";
  src: url("../assets/fonts/SailecRegularItalic.woff") format("woff"), url("../assets/fonts/SailecRegularItalic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Sailec";
  src: url("../assets/fonts/SailecMedium.woff") format("woff"), url("../assets/fonts/SailecMedium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sailec";
  src: url("../assets/fonts/SailecMediumItalic.woff") format("woff"), url("../assets/fonts/SailecMediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --pad: 112px;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: #202020;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

:focus-visible {
  outline: 2px solid #fcec10;
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

figure {
  margin: 0;
}

.section {
  width: 100%;
  scroll-margin-top: 100px;
}

.container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: var(--pad);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 56px;
  padding: 12px 24px;
  border-radius: 40px;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}
.btn__icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}
.btn__label {
  display: inline-block;
  transform: translateY(2px);
}
.btn:hover .btn__icon, .btn:focus-visible .btn__icon {
  transform: translate(2px, -2px);
}

.btn--primary {
  background: #fcec10;
  color: #202020;
}
.btn--primary:hover {
  filter: brightness(0.94);
}
.btn--primary:active {
  transform: translateY(1px);
}

.btn--outline-light {
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}
.btn--outline-light:active {
  transform: translateY(1px);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.hero__headline-group {
  animation: gof-hero-intro 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes gof-hero-intro {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__headline-group {
    animation: none;
  }
}
.stat:nth-child(2) {
  --reveal-delay: 0.08s;
}

.stat:nth-child(3) {
  --reveal-delay: 0.16s;
}

.stat:nth-child(4) {
  --reveal-delay: 0.24s;
}

.symbole__grid .icon-card:nth-child(2) {
  --reveal-delay: 0.08s;
}

.symbole__grid .icon-card:nth-child(3) {
  --reveal-delay: 0.16s;
}

.symbole__grid .icon-card:nth-child(4) {
  --reveal-delay: 0.24s;
}

.agenturen__grid .agency-card:nth-child(3n+2) {
  --reveal-delay: 0.08s;
}

.agenturen__grid .agency-card:nth-child(3n+3) {
  --reveal-delay: 0.16s;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: 40px;
  background: transparent;
  transition: transform 0.35s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header .nav__logo img {
  opacity: 0;
}

.logo-blend {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 101;
  pointer-events: none;
  mix-blend-mode: normal;
  transition: transform 0.35s ease;
  will-change: transform;
}

.site-header--scrolled ~ .logo-blend,
.site-header--light ~ .logo-blend {
  mix-blend-mode: difference;
}

.logo-blend__img {
  display: block;
  width: 206.5px;
  height: 56px;
  object-fit: contain;
}

.site-header.is-hidden ~ .logo-blend {
  transform: translateY(calc(-100% - 40px));
}

.site-header--light .nav__link {
  color: #202020;
}
.site-header--light .nav__link:hover {
  background: rgba(0, 0, 0, 0.05);
}
.site-header--light .nav__link--active {
  background: rgba(0, 0, 0, 0.06);
}
.site-header--light .nav__menu::before {
  background: rgba(0, 0, 0, 0.04);
}
.site-header--light .nav__menu::after {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.site-header--light .nav__burger-box span {
  background: #202020;
}

.nav__logo img {
  transition: filter 0.3s ease;
}

.nav__link {
  transition: color 0.3s ease, background-color 0.2s ease;
}

.nav__burger-box span {
  transition: background-color 0.3s ease, transform 0.25s ease, opacity 0.2s ease;
}

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

.nav__logo {
  width: 206.5px;
  height: 56px;
}
.nav__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav__menu {
  position: relative;
  border-radius: 100px;
  isolation: isolate;
}
.nav__menu::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}
.nav__menu::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 3px 3px 0.5px -3.5px rgba(255, 255, 255, 0.5), inset 2px 2px 1px -2px #b3b3b3, inset -2px -2px 1px -2px #b3b3b3, inset 0 0 22px 0 rgba(242, 242, 242, 0.15);
  pointer-events: none;
}
.nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 56px;
  padding: 4px;
  overflow: hidden;
}

.nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding-inline: 24px;
  border-radius: 40px;
  color: #ffffff;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 0;
  transition: background-color 0.2s ease;
}
.nav__link:hover {
  background: rgba(255, 255, 255, 0.08);
}
.nav__link--active {
  background: rgba(255, 255, 255, 0.1);
}

.nav__link-label {
  display: inline-block;
  transform: translateY(2px);
}

.nav__burger {
  display: none;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
}

.nav__burger-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 28px;
}
.nav__burger-box span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
  margin-inline: -8px;
  padding: 32px;
  border-radius: 16px;
  position: relative;
  border-radius: 16px;
  isolation: isolate;
}
.nav__mobile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}
.nav__mobile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 3px 3px 0.5px -3.5px rgba(255, 255, 255, 0.5), inset 2px 2px 1px -2px #b3b3b3, inset -2px -2px 1px -2px #b3b3b3, inset 0 0 22px 0 rgba(242, 242, 242, 0.15);
  pointer-events: none;
}
.nav__mobile::before {
  background: rgba(0, 0, 0, 0.22);
}

.nav__mobile-link {
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  letter-spacing: 0;
  color: #ffffff;
  transform: translateY(2px);
  transition: opacity 0.2s ease;
}
.nav__mobile-link:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .site-header {
    padding-top: 24px;
  }
  .nav__menu,
  .nav__cta {
    display: none;
  }
  .nav__burger {
    display: inline-flex;
  }
  .nav__logo {
    width: 177px;
    height: 48px;
  }
  .logo-blend {
    top: 24px;
  }
  .logo-blend__img {
    width: 177px;
    height: 48px;
  }
  .site-header.is-hidden ~ .logo-blend {
    transform: translateY(calc(-100% - 24px));
  }
  .is-menu-open .nav__mobile {
    display: flex;
  }
  html.is-menu-open {
    overflow: hidden;
  }
  .is-menu-open .nav__burger-box span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .is-menu-open .nav__burger-box span:nth-child(2) {
    opacity: 0;
  }
  .is-menu-open .nav__burger-box span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
.hero {
  position: relative;
}

.hero__pin {
  position: relative;
  min-height: 1086px;
  overflow: hidden;
  isolation: isolate;
}

.hero.is-pinned .hero__pin {
  position: sticky;
  min-height: 100vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero__gradient {
  position: absolute;
  pointer-events: none;
}

.hero__gradient--1 {
  z-index: 2;
  left: -1121px;
  top: -620px;
  width: 1632.982px;
  height: 1711.581px;
  transform: rotate(53.38deg) scaleY(-1);
}

.hero__gradient--2 {
  z-index: 1;
  left: -336px;
  top: 759px;
  width: 1724.625px;
  height: 947.152px;
  transform: rotate(-176.37deg);
}

.hero__inner {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1600px;
  min-height: inherit;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 160px;
  padding: 344px var(--pad) 80px;
}

.hero__headlines {
  width: 860px;
  max-width: 100%;
}

.hero__headline-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.hero__title {
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 60px;
  line-height: 64px;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 56px;
  line-height: 68px;
  color: #ffffff;
  margin: 0;
}

.hero__cta { /* nutzt .btn .btn--outline-light */ }

.hero__cards {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: auto;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hero__cards::-webkit-scrollbar {
  display: none;
}

.hero.is-pinned .hero__cards {
  overflow: hidden;
}

.hero__cards-track {
  display: flex;
  align-items: stretch;
  gap: 32px;
  width: max-content;
  padding-left: max(var(--pad), (100vw - 1600px) / 2 + var(--pad));
  padding-right: max(var(--pad), (100vw - 1600px) / 2 + var(--pad));
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.hero__progress {
  display: none;
  z-index: 4;
  position: relative;
  width: 187.5px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}
.hero__progress::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--progress-w, 33%);
  background: #ffffff;
  border-radius: 2px;
  transform: translateX(var(--progress-x, 0));
}

.hero-card {
  position: relative;
  border-radius: 24px;
  isolation: isolate;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 3px 3px 0.5px -3.5px rgba(255, 255, 255, 0.5), inset 2px 2px 1px -2px #b3b3b3, inset -2px -2px 1px -2px #b3b3b3, inset 0 0 22px 0 rgba(242, 242, 242, 0.15);
  pointer-events: none;
}
.hero-card {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
}

.hero-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  width: 326px;
  height: 100%;
}

.hero-card__logo {
  display: flex;
  align-items: center;
  width: fit-content;
  height: 61px;
}
.hero-card__logo img {
  width: auto;
  height: auto;
}

.hero-card__logo--friendventure img {
  height: 28px;
}

.hero-card__logo--adfriends img {
  height: 30px;
}

.hero-card__logo--webmatch img {
  height: 61px;
}

.hero-card__logo--inbound img {
  height: 28px;
}

.hero-card__logo--360vier img {
  height: 25px;
}

.hero-card__logo--halbstark img {
  height: 38px;
}

.hero-card__title {
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  letter-spacing: 0;
  color: #ffffff;
  width: 326px;
  margin: 0;
}

.spalten-text {
  background: #ffffff;
}

.spalten-text__inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding-block: 160px;
}

.spalten-text__body {
  flex: 0 0 auto;
  width: 800px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.spalten-text__text {
  width: 100%;
  margin: 0;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 28px;
  line-height: 38px;
  font-weight: 400;
  letter-spacing: 0;
  color: #858585;
}

.spalten-text__list {
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px 11px;
  border: 1px solid #000000;
  border-radius: 40px;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 0;
  color: #202020;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

a.chip:hover, button.chip:hover,
a.chip:focus-visible, button.chip:focus-visible {
  background: #000000;
  color: #ffffff;
}

.block-zahlen {
  background: #ffffff;
}

.block-zahlen__inner {
  padding-block: 0 160px;
}

.stats-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  color: #202020;
}

.stat {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-inline: 32px;
  border-left: 1px solid #000000;
}

.stat__value {
  margin: 0;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 38px;
  line-height: 46px;
  font-weight: 400;
  letter-spacing: 0;
}

.stat__label {
  margin: 0;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.symbole {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.symbole__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.symbole__glow {
  position: absolute;
  z-index: 1;
  left: 619px;
  top: 12px;
  width: 946.531px;
  height: 418.115px;
  transform: rotate(-5.44deg);
  pointer-events: none;
}

.symbole__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  padding-block: 160px;
}

.symbole__precontent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 800px;
  max-width: 100%;
}

.symbole__title {
  margin: 0;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 38px;
  line-height: 46px;
  font-weight: 400;
  letter-spacing: 0;
  color: #ffffff;
}

.symbole__lead {
  margin: 0;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0;
  color: #ffffff;
}

.symbole__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
}

.icon-card {
  position: relative;
  border-radius: 24px;
  isolation: isolate;
}
.icon-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}
.icon-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 3px 3px 0.5px -3.5px rgba(255, 255, 255, 0.5), inset 2px 2px 1px -2px #b3b3b3, inset -2px -2px 1px -2px #b3b3b3, inset 0 0 22px 0 rgba(242, 242, 242, 0.15);
  pointer-events: none;
}
.icon-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding: 32px;
  overflow: hidden;
}

.icon-badge {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fcec10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-badge svg {
  width: 18px;
  height: 18px;
  color: #000000;
}

.icon-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  color: #ffffff;
  width: 100%;
}

.icon-card__title {
  margin: 0;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  letter-spacing: 0;
}

.icon-card__text {
  margin: 0;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0;
}

.personen {
  background: #ffffff;
}

.personen__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  padding-block: 160px;
}

.precontent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 800px;
  max-width: 100%;
}

.precontent__title {
  margin: 0;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 38px;
  line-height: 46px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
}

.precontent__lead {
  margin: 0;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0;
  color: #202020;
}

.personen__slider {
  position: relative;
  width: 100%;
}

.personen__track {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-inline: max(var(--pad), (100vw - 1600px) / 2 + var(--pad));
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.personen__track::-webkit-scrollbar {
  display: none;
}
.personen__track > .person-card {
  flex: 0 0 384px;
}

.personen__track-inner {
  display: contents;
}

@media (hover: hover) and (pointer: fine) {
  .personen__slider {
    cursor: none;
  }
  .personen__slider a {
    cursor: pointer;
  }
  .personen__track {
    overflow-x: hidden;
  }
}
.person-card {
  position: relative;
  flex: 0 0 384px;
  width: 384px;
  height: 425px;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
}
.person-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-card__info {
  position: relative;
  border-radius: 16px;
  isolation: isolate;
}
.person-card__info::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}
.person-card__info::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 3px 3px 0.5px -3.5px rgba(255, 255, 255, 0.5), inset 2px 2px 1px -2px #b3b3b3, inset -2px -2px 1px -2px #b3b3b3, inset 0 0 22px 0 rgba(242, 242, 242, 0.15);
  pointer-events: none;
}
.person-card__info {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  color: #ffffff;
  transform: translateY(calc(100% + 16px));
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
}
.person-card__info::before {
  background: rgba(0, 0, 0, 0.32);
}

.person-card:hover .person-card__info,
.person-card:focus-within .person-card__info {
  transform: translateY(0);
  pointer-events: auto;
}

.person-card__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.person-card__name {
  margin: 0;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  letter-spacing: 0;
}

.person-card__role {
  margin: 0;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.person-card__contact {
  display: flex;
  align-items: center;
  gap: 25px;
}

.person-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 0;
  color: #ffffff;
  transition: opacity 0.2s ease;
}
.person-card__link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}
.person-card__link:hover {
  opacity: 0.75;
}
.person-card__link:hover svg {
  transform: translate(2px, -2px);
}

.personen__cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  pointer-events: none;
}

.personen__cursor-circle {
  position: relative;
  border-radius: 50%;
  isolation: isolate;
}
.personen__cursor-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}
.personen__cursor-circle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 3px 3px 0.5px -3.5px rgba(255, 255, 255, 0.5), inset 2px 2px 1px -2px #b3b3b3, inset -2px -2px 1px -2px #b3b3b3, inset 0 0 22px 0 rgba(242, 242, 242, 0.15);
  pointer-events: none;
}
.personen__cursor-circle {
  width: 70px;
  height: 70px;
  margin: -35px 0 0 -35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.18s ease, transform 0.18s cubic-bezier(0.65, 0, 0.35, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.personen__cursor-circle::before {
  background: rgba(0, 0, 0, 0.22);
}
.personen__cursor-circle svg {
  width: 22px;
  height: 22px;
  transform: rotate(45deg);
  transition: transform 0.2s cubic-bezier(0.65, 0, 0.35, 1);
}

.personen__cursor.is-active .personen__cursor-circle {
  opacity: 1;
  transform: scale(1);
}

.personen__cursor.is-grabbing .personen__cursor-circle {
  transform: scale(0.88);
}

.personen__cursor.is-active.is-disabled .personen__cursor-circle {
  opacity: 0.35;
}

.personen__cursor.is-left .personen__cursor-circle svg {
  transform: rotate(225deg);
}

.personen__progress {
  position: relative;
  width: 187.5px;
  height: 3px;
  border-radius: 2px;
  background: #d8d8d8;
  overflow: hidden;
}
.personen__progress::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--progress-w, 25%);
  background: #000000;
  border-radius: 2px;
  transform: translateX(var(--progress-x, 0));
}

.agenturen {
  background: #ffffff;
}

.agenturen__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  padding-block: 0 160px;
}

.agenturen__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
}

.agenturen__grid-inner {
  display: contents;
}

.js .agenturen__grid[data-reveal] {
  opacity: 1;
  transform: none;
}

.agenturen__progress {
  display: none;
  position: relative;
  width: 187.5px;
  height: 3px;
  border-radius: 2px;
  background: #d8d8d8;
  overflow: hidden;
}
.agenturen__progress::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--progress-w, 33%);
  background: #000000;
  border-radius: 2px;
  transform: translateX(var(--progress-x, 0));
}

.agency-card {
  position: relative;
  display: flex;
  min-width: 320px;
  aspect-ratio: 16/15;
  height: auto;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1), border-color 0.4s cubic-bezier(0.65, 0, 0.35, 1), box-shadow 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.agency-card:hover {
  transform: translateY(-4px);
  border-color: #000000;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.js .agency-card[data-reveal] {
  transition: opacity 0.6s ease, transform 0.4s cubic-bezier(0.65, 0, 0.35, 1), border-color 0.4s cubic-bezier(0.65, 0, 0.35, 1), box-shadow 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.agency-card__cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
}

.agency-card__arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fcec10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.45s cubic-bezier(0.65, 0, 0.35, 1), transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
}
.agency-card__arrow svg {
  width: 18px;
  height: 18px;
  color: #000000;
}

@media (hover: hover) and (pointer: fine) {
  .agency-card:hover .agency-card__arrow {
    opacity: 1;
    transform: scale(1);
  }
}
.agency-card__tags-extra {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(6px);
  transition: max-height 0.45s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.4s cubic-bezier(0.65, 0, 0.35, 1), transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.agency-card:hover .agency-card__tags-extra {
  max-height: 48px;
  opacity: 1;
  transform: translateY(0);
}

.agency-card__inner {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.agency-card__logo {
  display: flex;
  align-items: center;
  width: fit-content;
  height: 76px;
}
.agency-card__logo img {
  width: auto;
  display: block;
}

.agency-logo--friendventure img {
  height: 31px;
}

.agency-logo--adfriends img {
  height: 37.142px;
}

.agency-logo--inbound img {
  height: 34px;
}

.agency-logo--webmatch img {
  height: 76px;
}

.agency-logo--360vier img {
  height: 29px;
}

.agency-logo--halbstark img {
  height: 44px;
}

.agency-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.agency-card__title {
  margin: 0;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  letter-spacing: 0;
  color: #202020;
}

.agency-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.agency-card__cta {
  display: none;
  align-items: center;
  gap: 16px;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 0;
  color: #202020;
}
.agency-card__cta svg {
  flex: 0 0 auto;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  padding: 11px;
  border-radius: 50%;
  background: #fcec10;
  color: #000000;
}

.chip--sm {
  padding: 9px 16px 7px;
  font-size: 16px;
  line-height: 24px;
}

.agency-card {
  isolation: isolate;
}

.agency-card__inner {
  position: relative;
  z-index: 1;
}

.agency-card__arrow {
  z-index: 2;
}

.agency-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(var(--size-a, 60% 45%) at var(--pos-a, 14% 111%), var(--glow-a, transparent), transparent 70%), radial-gradient(var(--size-b, 64% 48%) at var(--pos-b, 90% 109%), var(--glow-b, transparent), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 0;
}

@media (hover: hover) and (pointer: fine) {
  .agency-card:hover::before {
    opacity: 0.85;
  }
}
.agency-card:has(.agency-logo--friendventure) {
  --glow-a: #fcec10;
  --pos-a: 14% 112%;
  --size-a: 60% 44%;
  --glow-b: #1a12fd;
  --pos-b: 90% 108%;
  --size-b: 66% 50%;
}

.agency-card:has(.agency-logo--adfriends) {
  --glow-a: #fcec10;
  --pos-a: 12% 110%;
  --size-a: 52% 42%;
  --glow-b: #ff357f;
  --pos-b: 90% 110%;
  --size-b: 66% 50%;
}

.agency-card:has(.agency-logo--inbound) {
  --glow-a: #d9f06f;
  --pos-a: 16% 112%;
  --size-a: 62% 46%;
  --glow-b: #7ec7b5;
  --pos-b: 88% 108%;
  --size-b: 60% 48%;
}

.agency-card:has(.agency-logo--webmatch) {
  --glow-a: #8029cd;
  --pos-a: 8% 111%;
  --size-a: 50% 46%;
  --glow-b: #ffd900;
  --pos-b: 88% 111%;
  --size-b: 66% 48%;
}

.agency-card:has(.agency-logo--360vier) {
  --glow-a: #81ba49;
  --pos-a: 36% 115%;
  --size-a: 58% 44%;
  --glow-b: #81ba49;
  --pos-b: 72% 109%;
  --size-b: 60% 50%;
}

.agency-card:has(.agency-logo--halbstark) {
  --glow-a: #fb263b;
  --pos-a: 38% 115%;
  --size-a: 56% 44%;
  --glow-b: #fb263b;
  --pos-b: 72% 109%;
  --size-b: 58% 50%;
}

.block-bild {
  background: #ffffff;
}

.block-bild__inner {
  padding-block: 0 160px;
}

.block-bild__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1138/680;
  border-radius: 24px;
  overflow: hidden;
}
.block-bild__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}
.block-bild__media > img:not(.block-bild__glow) {
  will-change: transform;
}

.block-bild__glow {
  position: absolute;
  left: 72px;
  top: 363px;
  width: 893.356px;
  height: 338.879px;
  transform: rotate(-174.56deg) scaleY(-1);
  pointer-events: none;
  z-index: 1;
}

.logos {
  background: #ffffff;
}

.logos__inner {
  max-width: 1600px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-block: 0 160px;
}

.logos__head {
  padding-inline: var(--pad);
}
.logos__head .precontent {
  width: 800px;
  max-width: 100%;
}

.logos__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.logos__row {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  will-change: transform;
  animation: gof-marquee 50s linear infinite;
}

.logos__row--2 {
  animation-duration: 62s;
  animation-direction: reverse;
}

@keyframes gof-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--marquee-x, -50%));
  }
}
.logo-tile {
  flex: 0 0 213.333px;
  width: 213.333px;
  height: 149px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
}
.logo-tile img {
  width: auto;
  display: block;
}

.logo-tile--xl {
  border-radius: 24px;
}

.logo-tile--l {
  border-radius: 16px;
}

.logo--marke img {
  height: 50.001px;
}

.logo--convista img {
  height: 20.32px;
}

.logo--ewr img {
  height: 60px;
}

.logo--lekkerland img {
  height: 45px;
}

.logo--rewe img {
  height: 60px;
}

.logo--adac img {
  height: 60px;
}

.logo--tamron img {
  height: 34px;
}

.logo--conet img {
  height: 24.36px;
}

.logo--hsf img {
  height: 42px;
}

.logo--gruene img {
  height: 60px;
}

.logo--lernstudio img {
  height: 33.191px;
}

.logo--abg img {
  height: 43.959px;
}

.logo--aida img {
  height: 36px;
}

.logo--toyota img {
  height: 26px;
}

.logo--katjes img {
  height: 36px;
}

.logo--vonovia img {
  height: 26px;
}

.logo--sparkasse img {
  height: 50px;
}

.logo-tile--tech {
  flex-basis: 227.667px;
  width: 227.667px;
  border-radius: 16px;
  overflow: hidden;
}

.logo--typo3 img {
  width: 146.334px;
  height: 40.648px;
}

.logo--storyblok img {
  width: 185px;
  height: 38.193px;
}

.logo--wordpress img {
  width: 187.667px;
  height: 42.58px;
}

.logo--webflow img {
  width: 188.333px;
  height: 31.495px;
}

.logo--shopware img {
  width: 181.224px;
  height: 38.998px;
}

.logo--meta img {
  width: 144px;
  height: 29px;
}

.logo--hubspot img {
  width: 131px;
  height: 37px;
}

.logo--shopify img {
  width: 157px;
  height: 45px;
}

.logo--google img {
  width: 121.333px;
  height: 40px;
}

.logo--craft img {
  width: 162.963px;
  height: 40px;
}

.logo--commercetools img {
  width: 145.161px;
  height: 40px;
}

.cta {
  background: #ffffff;
}

.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 0 160px;
}

.cta__box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 80px;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
}

.cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.cta__glow {
  position: absolute;
  z-index: 1;
  left: 539px;
  top: 216.39px;
  width: 896.536px;
  height: 419.145px;
  transform: rotate(-5.44deg);
  pointer-events: none;
}

.cta__text {
  position: relative;
  z-index: 2;
  width: 408px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  color: #ffffff;
}

.cta__title {
  margin: 0;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 38px;
  line-height: 46px;
  font-weight: 400;
  letter-spacing: 0;
}

.cta__lead {
  margin: 0;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0;
}

.cta__form {
  position: relative;
  z-index: 2;
  width: 512px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cta__form .btn {
  align-self: flex-start;
}

.cta__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.cta__row {
  display: flex;
  gap: 16px;
  width: 100%;
}

.cta__row > .cta-field {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
}

.cta-field {
  position: relative;
  border-radius: 16px;
  isolation: isolate;
}
.cta-field::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}
.cta-field::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 3px 3px 0.5px -3.5px rgba(255, 255, 255, 0.5), inset 2px 2px 1px -2px #b3b3b3, inset -2px -2px 1px -2px #b3b3b3, inset 0 0 22px 0 rgba(242, 242, 242, 0.15);
  pointer-events: none;
}
.cta-field {
  width: 100%;
  display: flex;
  align-items: center;
  height: 60px;
  padding: 16px 24px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.cta-field--area {
  height: 127px;
  align-items: flex-start;
}
.cta-field:focus-within::after {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), inset 3px 3px 0.5px -3.5px rgba(255, 255, 255, 0.5), inset 2px 2px 1px -2px #b3b3b3, inset -2px -2px 1px -2px #b3b3b3, inset 0 0 22px 0 rgba(242, 242, 242, 0.15);
}

.cta-input,
.cta-textarea {
  width: 100%;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 28px;
  resize: none;
}
.cta-input::placeholder,
.cta-textarea::placeholder {
  color: #ffffff;
  opacity: 1;
}
.cta-input:focus,
.cta-textarea:focus {
  outline: none;
}

.cta-textarea {
  height: 100%;
}

.cta__consent {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta__checkbox {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: #f0f0f0;
  flex: 0 0 auto;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.cta__checkbox:checked {
  background-color: #fcec10;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.2 3.2L11 1' fill='none' stroke='%23202020' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
.cta__checkbox:focus-visible {
  outline: 2px solid #fcec10;
  outline-offset: 2px;
}

.cta__consent-label {
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0;
  color: #ffffff;
}
.cta__consent-label a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cta__status {
  margin: 8px 0 0;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}
.cta__status.is-ok {
  color: #d9f06f;
}
.cta__status.is-error {
  color: #ff8a8a;
}

.cta__form .btn:disabled {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}

.footer {
  position: relative;
  background: #000000;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}

.footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  pointer-events: none;
}

.footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 160px var(--pad) 80px;
}

.footer__main {
  display: flex;
  align-items: flex-start;
  gap: 120px;
  width: 100%;
}

.footer__brand {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__brand > .btn {
  align-self: flex-start;
}

.footer__brand-top {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer__logo img {
  height: 43.361px;
  width: auto;
}

.footer__claim {
  margin: 0;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 38px;
  line-height: 46px;
  font-weight: 400;
  letter-spacing: 0;
  color: #ffffff;
}

.footer__contact {
  flex: 0 0 auto;
  width: 696px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__locations {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__kicker {
  margin: 0;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
}

.footer__location-links {
  display: flex;
  gap: 32px;
}

.footer__loc {
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  letter-spacing: 0;
  color: #ffffff;
  padding: 0;
  opacity: 0.4;
  transition: opacity 0.2s ease;
  cursor: pointer;
}
.footer__loc:hover {
  opacity: 0.7;
}
.footer__loc.is-active {
  opacity: 1;
  cursor: default;
}

.footer__address-group {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0;
  transition: opacity 0.25s ease;
}
.footer__email svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}
.footer__email:hover {
  opacity: 0.7;
}
.footer__email:hover svg {
  transform: translate(2px, -2px);
}

.footer__address {
  transition: opacity 0.25s ease;
}

.footer__address {
  margin: 0;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0;
  color: #ffffff;
}

.footer__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  border: 0;
  margin: 0;
}

.footer__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 32px;
  width: 100%;
}

.footer__copyright {
  flex: 1 1 auto;
  margin: 0;
  white-space: nowrap;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 16px;
  line-height: 26px;
}

.footer__credit {
  opacity: 0.7;
}
.footer__credit::before {
  content: "·";
  margin-inline: 8px;
}
.footer__credit a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer__credit a:hover {
  opacity: 0.7;
}

.footer__legal {
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  gap: 32px;
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0;
}
.footer__legal a, .footer__legal p {
  margin: 0;
  transition: opacity 0.2s ease;
}
.footer__legal a:hover {
  opacity: 0.7;
}

@media (min-width: 1440px) {
  .footer__location-links {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 16px;
  }
  .footer__legal {
    justify-content: flex-end;
  }
}
.legal {
  padding-top: 200px;
  padding-bottom: 160px;
  background: #ffffff;
}

.legal__inner {
  max-width: 820px;
}

.legal__title {
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 60px;
  line-height: 64px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  margin-bottom: 16px;
}

.legal__updated {
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0;
  color: #858585;
  margin-bottom: 48px;
}

.legal h2 {
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 38px;
  line-height: 46px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  margin-top: 64px;
  margin-bottom: 16px;
}

.legal h3 {
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  margin-top: 32px;
  margin-bottom: 8px;
}

.legal p,
.legal ul {
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0;
  color: #202020;
  margin-bottom: 16px;
}

.legal ul {
  list-style: disc;
  padding-left: 24px;
}

.legal li {
  margin-bottom: 8px;
}

.legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal a:hover {
  color: #000000;
}

.legal strong {
  font-weight: 500;
}

.legal address {
  font-style: normal;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .legal {
    padding-top: 132px;
    padding-bottom: 88px;
  }
  .legal__title {
    font-size: 36px;
    line-height: 46px;
  }
  .legal h2 {
    font-size: 28px;
    line-height: 34px;
  }
  .legal h3 {
    font-size: 22px;
    line-height: 30px;
  }
  .legal p, .legal ul {
    font-size: 16px;
    line-height: 24px;
  }
}
.notfound {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 200px var(--pad) 160px;
  background: #ffffff;
}

.notfound__code {
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 160px;
  line-height: 1;
  color: #000000;
  margin-bottom: 32px;
}

.notfound__title {
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 38px;
  line-height: 46px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  margin-bottom: 16px;
}

.notfound__text {
  font-family: "Sailec", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0;
  color: #858585;
  max-width: 520px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .notfound {
    padding-top: 132px;
    padding-bottom: 88px;
  }
  .notfound__code {
    font-size: 96px;
  }
  .notfound__title {
    font-size: 28px;
    line-height: 34px;
  }
  .notfound__text {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-inline: 16px;
  }
  .hero {
    min-height: 0;
  }
  .hero__pin {
    min-height: 900px;
  }
  .hero__inner {
    gap: 40px;
    padding: 200px 16px 88px;
  }
  .hero__headlines {
    width: 100%;
    min-width: 0;
  }
  .hero__title {
    font-size: 36px;
    line-height: 46px;
    overflow-wrap: anywhere;
  }
  .hero__cards {
    overflow: hidden;
    margin-top: 48px;
  }
  .hero__cards-track {
    gap: 0;
    padding-inline: 0;
  }
  .hero-card {
    flex: 0 0 300px;
    width: 300px;
    padding: 24px;
    border-radius: 16px;
  }
  .hero-card__content {
    width: 100%;
  }
  .hero-card__title {
    font-size: 22px;
    line-height: 30px;
    width: 100%;
  }
  .hero__progress {
    display: block;
  }
  .spalten-text__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 88px;
  }
  .spalten-text__text {
    width: 100%;
    font-size: 26px;
    line-height: 36px;
  }
  .spalten-text__list {
    width: 100%;
    margin-left: 0;
  }
  .spalten-text__list .chip {
    white-space: normal;
    max-width: 100%;
  }
  .block-zahlen__inner {
    padding-block: 0 88px;
  }
  .stats-row {
    flex-direction: column;
    gap: 24px;
  }
  .stat {
    padding-inline: 24px;
    gap: 8px;
  }
  .stat__value {
    font-size: 32px;
    line-height: 40px;
  }
  .stat__label {
    font-size: 18px;
    line-height: 28px;
  }
  .precontent {
    width: 100%;
    gap: 16px;
  }
  .precontent__title {
    font-size: 28px;
    line-height: 34px;
  }
  .precontent__lead {
    font-size: 18px;
    line-height: 28px;
  }
  .symbole__inner {
    gap: 40px;
    padding-block: 88px;
  }
  .symbole__precontent {
    width: 100%;
    gap: 16px;
  }
  .symbole__title {
    font-size: 28px;
    line-height: 34px;
  }
  .symbole__lead {
    font-size: 18px;
    line-height: 28px;
  }
  .symbole__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .symbole__glow {
    display: none;
  }
  .icon-card {
    padding: 24px;
    border-radius: 16px;
    gap: 24px;
  }
  .icon-card__content {
    gap: 8px;
  }
  .icon-card__title {
    font-size: 22px;
    line-height: 30px;
  }
  .icon-card__text {
    font-size: 16px;
    line-height: 24px;
  }
  .personen__inner {
    gap: 40px;
    padding-block: 88px;
  }
  .personen__track {
    display: block;
    padding-inline: 0;
    overflow: hidden;
  }
  .personen__track-inner {
    display: flex;
  }
  .js .personen__slider[data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .personen__track-inner > .person-card {
    flex: 0 0 300px;
    width: 300px;
    height: auto;
    overflow: visible;
  }
  .person-card img {
    aspect-ratio: 384/425;
    height: auto;
    border-radius: 16px;
  }
  .person-card__info {
    position: relative;
    inset: auto;
    margin: -80px 0 0;
    padding: 24px;
    transform: none;
    pointer-events: auto;
  }
  .person-card__info::before {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.28);
  }
  .hero-card::before {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  .person-card__name {
    font-size: 22px;
    line-height: 30px;
  }
  .person-card__contact {
    gap: 16px;
  }
  .agenturen__inner {
    gap: 40px;
    padding-block: 0 88px;
  }
  .agenturen__grid {
    display: block;
    grid-template-columns: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-inline: 0;
    overflow: hidden;
  }
  .agenturen__grid-inner {
    display: flex;
  }
  .agenturen__progress {
    display: block;
  }
  .js .agenturen__grid .agency-card[data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .js .agenturen__grid[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .js .agenturen__grid[data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
  .agency-card {
    flex: 0 0 300px;
    min-width: 300px;
    width: 300px;
    aspect-ratio: auto;
    min-height: 520px;
    padding: 24px;
    border-radius: 16px;
  }
  .agency-card:hover {
    transform: none;
    border-color: #d8d8d8;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0);
  }
  .agency-card__tags-extra,
  .agency-card:hover .agency-card__tags-extra {
    max-height: none;
    opacity: 1;
    overflow: visible;
    transform: none;
  }
  .agency-card__arrow {
    display: none;
  }
  .agency-card__cta {
    display: inline-flex;
    margin-top: 16px;
  }
  .agency-card__title {
    font-size: 22px;
    line-height: 30px;
  }
  .chip--sm {
    padding: 5px 8px 3px;
  }
  .agency-card__tags .chip {
    white-space: normal;
  }
  .block-bild__inner {
    padding-block: 0 88px;
  }
  .block-bild__media {
    border-radius: 16px;
  }
  .block-bild__glow {
    display: none;
  }
  .logos__inner {
    gap: 40px;
    padding-block: 0 88px;
  }
  .logos__head {
    padding-inline: 16px;
  }
  .logos__container {
    gap: 16px;
  }
  .logos__row {
    gap: 16px;
  }
  .logo-tile {
    flex: 0 0 234px;
    width: 234px;
    background: #f0f0f0;
  }
  .logo-tile--xl {
    border-radius: 16px;
  }
  .cta__inner {
    padding-block: 0 88px;
  }
  .cta__box {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 32px;
    border-radius: 16px;
  }
  .cta__glow {
    display: none;
  }
  .cta__text {
    width: 100%;
    gap: 16px;
  }
  .cta__title {
    font-size: 28px;
    line-height: 34px;
  }
  .cta__lead {
    font-size: 18px;
    line-height: 28px;
    white-space: normal;
  }
  .cta__form {
    width: 100%;
  }
  .cta__row {
    flex-direction: column;
    gap: 16px;
  }
  .cta__row > .cta-field {
    flex: none;
    width: 100%;
  }
  .footer__inner {
    gap: 64px;
    padding: 88px 16px 32px;
  }
  .footer__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
  }
  .footer__brand {
    width: 100%;
  }
  .footer__brand-top {
    gap: 40px;
  }
  .footer__claim {
    font-size: 28px;
    line-height: 34px;
  }
  .footer__contact {
    width: 100%;
  }
  .footer__location-links {
    flex-wrap: wrap;
    gap: 16px;
    font-size: 22px;
    line-height: 30px;
  }
  .footer__address, .footer__email {
    font-size: 16px;
    line-height: 24px;
  }
  .footer__meta {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 64px;
  }
  .footer__copyright {
    flex: none;
    white-space: normal;
  }
  .footer__legal {
    flex: none;
    margin-left: 0;
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }
  .personen__progress::before,
  .hero__progress::before,
  .agenturen__progress::before {
    display: none;
  }
  .personen__progress .swiper-scrollbar-drag,
  .hero__progress .swiper-scrollbar-drag,
  .agenturen__progress .swiper-scrollbar-drag {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 2px;
    background: #000000;
  }
  .hero__progress .swiper-scrollbar-drag {
    background: #ffffff;
  }
}
@media (min-width: 769px) and (max-width: 1439px) {
  :root {
    --pad: 64px;
  }
  .spalten-text__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .spalten-text__text {
    width: 100%;
  }
  .spalten-text__list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
  .agenturen__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .agency-card {
    min-width: 0;
    max-width: none;
    aspect-ratio: auto;
    min-height: 380px;
  }
  .symbole__glow,
  .cta__glow {
    display: none;
  }
  .cta__box {
    padding: 48px;
  }
  .footer__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
  }
  .footer__brand,
  .footer__contact {
    width: 100%;
  }
  .footer__location-links {
    flex-wrap: wrap;
  }
  .footer__legal {
    flex-wrap: wrap;
  }
}
@media (min-width: 769px) and (max-width: 960px) {
  .footer__copyright {
    white-space: normal;
  }
}
@media (min-width: 769px) and (max-width: 980px) {
  .cta__box {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .cta__text,
  .cta__form {
    width: 100%;
  }
}
