@charset "UTF-8";
/*
Theme Name: MediaShark Marketing
Theme URI: https://mediasharkmarketing.de/
Author: MediaShark Marketing
Author URI: https://mediasharkmarketing.de/
Description: Eigenes WordPress-Theme von MediaShark Marketing – Agentur für Strategie, Kreation und Social Media. Performance-optimiert, section-basiert, DSGVO-konform mit Cookie-Einwilligung. Ideal für Marketing- und Agentur-Websites.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mediashark-marketing
*/
/* --- Base (kritisch / Above-the-fold) --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  /* clip statt hidden: kein horizontales Scrollen, aber sticky bleibt funktionsfähig */
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  background: #1E3139;
  color: #ffffff;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  /* clip statt hidden: sticky-Carousel (Leistungen) bleibt stehen */
  overflow-x: clip;
  max-width: 100%;
  position: relative;
}

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

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

:focus-visible {
  outline: 2px solid #f25d6b;
  outline-offset: 3px;
}

/* Page-Wrapper: clip statt hidden, damit position:sticky im Carousel funktioniert */
.site {
  overflow-x: clip;
  max-width: 100%;
}

/* Markenzeichen: „i“-Tüpfelchen in Akzentfarbe – Position wie beim echten kleinen „i“ */
.i-accent {
  position: relative;
  display: inline; /* inline verhindert Zeilenumbrüche mitten im Wort (inline-block bricht sonst) */
}

.i-accent__stem {
  color: inherit;
}

.i-accent__tittle {
  position: absolute;
  left: 50%;
  /* Tüpfelchen deutlich auf dem Stamm (tiefer = größerer top-Wert) */
  top: 0.32em;
  transform: translateX(-50%) translateY(-100%);
  width: 0.2em;
  height: 0.2em;
  border-radius: 50%;
  background: #f25d6b;
  pointer-events: none;
}

/* Satzendepunkt (. ! ?) in Überschriften in Akzentfarbe (mit Markenzeichen aktiv) */
.headline-end-accent {
  color: #f25d6b;
}

h1, h2, h3 {
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 65ch;
}

.heading-hero {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.heading-2 {
  font-size: clamp(1.75rem, 2.2vw, 2.5rem);
  line-height: 1.15;
}

.text-lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 48rem) {
  .container {
    padding: 0 2rem;
  }
}
.container--narrow {
  max-width: 48rem;
}
.container--wide {
  max-width: 80rem;
}

@keyframes nav-sub-panel-in {
  from {
    opacity: 0;
    transform: translateX(1rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes nav-panel-open {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes nav-sheet-up {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
}
@media (min-width: 48rem) {
  .nav-bar {
    padding: 2rem 2rem 1.5rem;
  }
}

.nav-bar__branding {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.nav-bar__branding .custom-logo-link {
  display: block;
  line-height: 0;
  transition: opacity 0.2s ease;
}
.nav-bar__branding .custom-logo-link:hover {
  opacity: 0.9;
}
.nav-bar__branding .custom-logo {
  height: auto;
  max-height: 2.75rem;
}
@media (min-width: 48rem) {
  .nav-bar__branding .custom-logo {
    max-height: 3rem;
  }
}
.nav-bar__branding .custom-logo {
  width: auto;
  display: block;
}
.nav-bar__branding .site-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@media (min-width: 48rem) {
  .nav-bar__branding .site-title {
    font-size: 1.25rem;
  }
}
.nav-bar__branding .site-title a {
  text-decoration: none;
  color: inherit;
  letter-spacing: inherit;
}
.nav-bar__branding .site-description {
  display: none;
}
@media (min-width: 64rem) {
  .nav-bar__branding .site-description {
    display: block;
    margin: 0;
    font-size: 0.8125rem;
    opacity: 0.8;
    font-weight: 500;
  }
}

.menu-toggle {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  min-height: 44px;
  min-width: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: visible;
  transition: background 0.25s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.menu-toggle:hover {
  background: rgba(242, 93, 107, 0.9);
  border-color: #f25d6b;
  color: #fff;
  box-shadow: 0 4px 14px rgba(242, 93, 107, 0.35);
}
.menu-toggle .menu-toggle__icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 22px;
  height: 18px;
  position: relative;
  overflow: visible;
  flex-shrink: 0;
}
.menu-toggle .menu-toggle__icon span {
  display: block;
  width: 100%;
  height: 3px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle .menu-toggle__label {
  font-family: inherit;
}

.main-navigation.toggled .menu-toggle .menu-toggle__icon {
  width: 20px;
  height: 20px;
  gap: 0;
}
.main-navigation.toggled .menu-toggle .menu-toggle__icon span {
  opacity: 0;
  pointer-events: none;
}
.main-navigation.toggled .menu-toggle .menu-toggle__icon::before, .main-navigation.toggled .menu-toggle .menu-toggle__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  margin-left: -10px;
  margin-top: -1px;
  background: currentColor;
  border-radius: 1px;
  transform-origin: center center;
}
.main-navigation.toggled .menu-toggle .menu-toggle__icon::before {
  transform: rotate(45deg);
}
.main-navigation.toggled .menu-toggle .menu-toggle__icon::after {
  transform: rotate(-45deg);
}

.main-navigation.toggled .menu-toggle {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}
.main-navigation.toggled .menu-toggle:hover {
  background: rgba(242, 93, 107, 0.2) !important;
  border-color: rgba(242, 93, 107, 0.4) !important;
  color: #fff !important;
  box-shadow: 0 2px 12px rgba(242, 93, 107, 0.2) !important;
}

.main-navigation {
  position: relative;
}
.main-navigation .nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 64rem) {
  .main-navigation .nav-overlay {
    display: none;
  }
}
.main-navigation .nav-bar__nav {
  display: contents; /* Wrapper stört nicht, Kinder gehen in Flex des .main-navigation */
}
.main-navigation #primary-menu,
.main-navigation .nav-menu {
  display: none !important;
  list-style: none;
  margin: 0;
  padding: 0;
  width: min(22rem, 100vw - 2rem);
  min-width: 18rem;
  padding: 1.5rem 1.25rem;
  background: rgba(30, 49, 57, 0.94);
  backdrop-filter: blur(24px) saturate(1.1);
  -webkit-backdrop-filter: blur(24px) saturate(1.1);
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.06), inset 0 1px 0 0 rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 100;
  animation: nav-panel-open 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@media (min-width: 64rem) {
  .main-navigation #primary-menu,
  .main-navigation .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.75rem;
  }
}
.main-navigation #primary-menu li,
.main-navigation .nav-menu li {
  margin: 0;
  list-style: none;
}
.main-navigation #primary-menu > li,
.main-navigation .nav-menu > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.main-navigation #primary-menu > li:last-child,
.main-navigation .nav-menu > li:last-child {
  border-bottom: none;
}
.main-navigation #primary-menu > li > a,
.main-navigation .nav-menu > li > a {
  display: block;
  padding: 1rem 1rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-radius: 12px;
  transition: background 0.22s cubic-bezier(0.22, 1, 0.36, 1), color 0.22s ease;
}
.main-navigation #primary-menu > li > a:hover,
.main-navigation .nav-menu > li > a:hover {
  background: rgba(242, 93, 107, 0.12);
  color: #f25d6b;
}
@media (max-width: 63.99rem) {
  .main-navigation:not(.toggled) .main-navigation #primary-menu,
  .main-navigation:not(.toggled) .main-navigation .nav-menu {
    overflow-y: visible;
    overflow-x: hidden;
    position: relative;
    max-height: none;
    padding: 0 0 1.5rem;
    z-index: 99;
  }
  .main-navigation #primary-menu,
  .main-navigation .nav-menu {
    overflow-y: visible;
    overflow-x: hidden;
    max-height: none;
    padding: 0 0 1.5rem;
    z-index: 99;
  }
  .main-navigation #primary-menu > li,
  .main-navigation .nav-menu > li {
    border-bottom: none;
    padding: 0;
    margin-bottom: 0.5rem;
  }
  .main-navigation #primary-menu > li:last-child,
  .main-navigation .nav-menu > li:last-child {
    margin-bottom: 0;
  }
  .main-navigation #primary-menu > li > a,
  .main-navigation .nav-menu > li > a {
    padding: 1rem 1.25rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 16px;
    color: #fff;
    min-height: 3.25rem;
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .main-navigation #primary-menu > li > a:hover, .main-navigation #primary-menu > li > a:active,
  .main-navigation .nav-menu > li > a:hover,
  .main-navigation .nav-menu > li > a:active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }
  .main-navigation #primary-menu .menu-item-has-children,
  .main-navigation #primary-menu .page_item_has_children,
  .main-navigation .nav-menu .menu-item-has-children,
  .main-navigation .nav-menu .page_item_has_children {
    margin-bottom: 1rem;
  }
  .main-navigation #primary-menu .menu-item-has-children > a,
  .main-navigation #primary-menu .page_item_has_children > a,
  .main-navigation .nav-menu .menu-item-has-children > a,
  .main-navigation .nav-menu .page_item_has_children > a {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .main-navigation #primary-menu .sub-menu,
  .main-navigation .nav-menu .sub-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    border-left: none;
  }
  .main-navigation #primary-menu .sub-menu li,
  .main-navigation .nav-menu .sub-menu li {
    border-bottom: none;
  }
  .main-navigation #primary-menu .sub-menu a,
  .main-navigation .nav-menu .sub-menu a {
    display: flex;
    align-items: center;
    padding: 1rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.02em;
    border-radius: 14px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    position: relative;
    min-height: 3.5rem;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-tap-highlight-color: transparent;
  }
  .main-navigation #primary-menu .sub-menu a::before,
  .main-navigation .nav-menu .sub-menu a::before {
    display: none;
  }
  .main-navigation #primary-menu .sub-menu a:hover, .main-navigation #primary-menu .sub-menu a:active,
  .main-navigation .nav-menu .sub-menu a:hover,
  .main-navigation .nav-menu .sub-menu a:active {
    color: #f25d6b;
    background: rgba(242, 93, 107, 0.2);
    border-color: rgba(242, 93, 107, 0.35);
  }
  .main-navigation #primary-menu .menu-item-has-children > a,
  .main-navigation #primary-menu .page_item_has_children > a,
  .main-navigation .nav-menu .menu-item-has-children > a,
  .main-navigation .nav-menu .page_item_has_children > a {
    position: relative;
    padding-right: 1rem;
  }
  .main-navigation #primary-menu .menu-item-has-children,
  .main-navigation #primary-menu .page_item_has_children,
  .main-navigation .nav-menu .menu-item-has-children,
  .main-navigation .nav-menu .page_item_has_children {
    position: relative;
  }
}
@media (max-width: 63.99rem) {
  .main-navigation.toggled .nav-overlay {
    z-index: 99 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
  }
  .main-navigation.toggled .menu-toggle {
    position: relative;
    z-index: 100 !important;
  }
  .main-navigation .nav-bar:has(.main-navigation.toggled) .nav-bar__branding {
    position: relative;
    z-index: 100 !important;
  }
  .main-navigation.toggled #primary-menu, .main-navigation.toggled .nav-menu {
    position: fixed !important;
    bottom: 0 !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 28px 28px 0 0 !important;
    max-height: 90vh !important;
    min-height: 50vh !important;
    height: auto !important;
    z-index: 1001 !important;
    padding: 0 !important;
    padding-top: 0.75rem !important;
    padding-bottom: max(2rem, env(safe-area-inset-bottom)) !important;
    padding-left: max(1.25rem, env(safe-area-inset-left)) !important;
    padding-right: max(1.25rem, env(safe-area-inset-right)) !important;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.5), 0 -1px 0 rgba(255, 255, 255, 0.06) !important;
    animation: nav-sheet-up 0.35s cubic-bezier(0.32, 0.72, 0, 1) forwards !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
    background: rgba(28, 45, 53, 0.98) !important;
    backdrop-filter: blur(24px) saturate(1.2) !important;
    -webkit-backdrop-filter: blur(24px) saturate(1.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: none !important;
  }
  .main-navigation.toggled #primary-menu::before, .main-navigation.toggled .nav-menu::before {
    content: "";
    position: sticky !important;
    top: 0 !important;
    left: 50%;
    transform: translateX(-50%);
    display: block !important;
    width: 2.75rem;
    height: 5px;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
    z-index: 1;
  }
}
.main-navigation.toggled #primary-menu, .main-navigation.toggled .nav-menu {
  display: block !important;
}
@media (min-width: 64rem) {
  .site-header:not(.site-header--over-hero) .main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    min-width: 0;
  }
  .site-header:not(.site-header--over-hero) .main-navigation .menu-toggle {
    display: none !important;
  }
  .site-header:not(.site-header--over-hero) .main-navigation .nav-bar__nav {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    position: static;
    flex: 0 1 auto;
    min-width: 0;
  }
  .site-header:not(.site-header--over-hero) .main-navigation #primary-menu,
  .site-header:not(.site-header--over-hero) .main-navigation .nav-menu {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    position: static;
    margin: 0;
    padding: 0;
    min-width: auto;
    width: auto;
    background: none;
    backdrop-filter: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
  }
  .site-header:not(.site-header--over-hero) .main-navigation #primary-menu > li,
  .site-header:not(.site-header--over-hero) .main-navigation .nav-menu > li {
    position: relative;
    margin: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }
  .site-header:not(.site-header--over-hero) .main-navigation #primary-menu > li.menu-item-has-children,
  .site-header:not(.site-header--over-hero) .main-navigation #primary-menu > li.page_item_has_children,
  .site-header:not(.site-header--over-hero) .main-navigation .nav-menu > li.menu-item-has-children,
  .site-header:not(.site-header--over-hero) .main-navigation .nav-menu > li.page_item_has_children {
    padding-bottom: 0;
  }
  .site-header:not(.site-header--over-hero) .main-navigation #primary-menu > li > a,
  .site-header:not(.site-header--over-hero) .main-navigation .nav-menu > li > a {
    padding: 0.5rem 1rem;
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 999px;
    transition: background 0.22s cubic-bezier(0.22, 1, 0.36, 1), color 0.22s ease;
    display: inline-flex;
    align-items: center;
    line-height: 1.35;
    white-space: nowrap;
  }
  .site-header:not(.site-header--over-hero) .main-navigation #primary-menu > li > a::after,
  .site-header:not(.site-header--over-hero) .main-navigation .nav-menu > li > a::after {
    display: none;
  }
  .site-header:not(.site-header--over-hero) .main-navigation #primary-menu > li > a:hover,
  .site-header:not(.site-header--over-hero) .main-navigation .nav-menu > li > a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #f25d6b;
  }
  .site-header:not(.site-header--over-hero) .main-navigation #primary-menu > li.menu-item-has-children > .sub-menu,
  .site-header:not(.site-header--over-hero) .main-navigation #primary-menu > li.page_item_has_children > .sub-menu,
  .site-header:not(.site-header--over-hero) .main-navigation .nav-menu > li.menu-item-has-children > .sub-menu,
  .site-header:not(.site-header--over-hero) .main-navigation .nav-menu > li.page_item_has_children > .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    margin-top: 0;
    min-width: 20rem;
    max-height: min(70vh, 28rem);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 1rem;
    background: rgba(30, 49, 57, 0.94);
    backdrop-filter: blur(24px) saturate(1.1);
    -webkit-backdrop-filter: blur(24px) saturate(1.1);
    border-radius: 18px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.06), inset 0 1px 0 0 rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 200;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.22s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .site-header:not(.site-header--over-hero) .main-navigation #primary-menu > li.menu-item-has-children:hover > .sub-menu,
  .site-header:not(.site-header--over-hero) .main-navigation #primary-menu > li.menu-item-has-children.focus > .sub-menu,
  .site-header:not(.site-header--over-hero) .main-navigation #primary-menu > li.menu-item-has-children:focus-within > .sub-menu,
  .site-header:not(.site-header--over-hero) .main-navigation #primary-menu > li.page_item_has_children:hover > .sub-menu,
  .site-header:not(.site-header--over-hero) .main-navigation #primary-menu > li.page_item_has_children.focus > .sub-menu,
  .site-header:not(.site-header--over-hero) .main-navigation #primary-menu > li.page_item_has_children:focus-within > .sub-menu,
  .site-header:not(.site-header--over-hero) .main-navigation .nav-menu > li.menu-item-has-children:hover > .sub-menu,
  .site-header:not(.site-header--over-hero) .main-navigation .nav-menu > li.menu-item-has-children.focus > .sub-menu,
  .site-header:not(.site-header--over-hero) .main-navigation .nav-menu > li.menu-item-has-children:focus-within > .sub-menu,
  .site-header:not(.site-header--over-hero) .main-navigation .nav-menu > li.page_item_has_children:hover > .sub-menu,
  .site-header:not(.site-header--over-hero) .main-navigation .nav-menu > li.page_item_has_children.focus > .sub-menu,
  .site-header:not(.site-header--over-hero) .main-navigation .nav-menu > li.page_item_has_children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(4px);
  }
  .site-header:not(.site-header--over-hero) .main-navigation #primary-menu > li.menu-item-has-children > .sub-menu a,
  .site-header:not(.site-header--over-hero) .main-navigation #primary-menu > li.page_item_has_children > .sub-menu a,
  .site-header:not(.site-header--over-hero) .main-navigation .nav-menu > li.menu-item-has-children > .sub-menu a,
  .site-header:not(.site-header--over-hero) .main-navigation .nav-menu > li.page_item_has_children > .sub-menu a {
    padding: 1rem 1rem;
    line-height: 1.5;
    border-radius: 12px;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .site-header:not(.site-header--over-hero) .main-navigation #primary-menu > li.menu-item-has-children > .sub-menu a:hover,
  .site-header:not(.site-header--over-hero) .main-navigation #primary-menu > li.page_item_has_children > .sub-menu a:hover,
  .site-header:not(.site-header--over-hero) .main-navigation .nav-menu > li.menu-item-has-children > .sub-menu a:hover,
  .site-header:not(.site-header--over-hero) .main-navigation .nav-menu > li.page_item_has_children > .sub-menu a:hover {
    color: #f25d6b;
    background: rgba(242, 93, 107, 0.08);
  }
}
@media (min-width: 48rem) {
  .main-navigation #primary-menu,
  .main-navigation .nav-menu {
    right: 0;
    left: auto;
  }
  .main-navigation .menu-toggle {
    display: inline-flex;
  }
}

#masthead.site-header {
  transition: background 0.5s cubic-bezier(0.28, 0.11, 0.32, 1), box-shadow 0.5s cubic-bezier(0.28, 0.11, 0.32, 1), border-radius 0.5s cubic-bezier(0.28, 0.11, 0.32, 1), padding 0.45s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.site-header .nav-bar {
  transition: padding 0.45s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.site-header--over-hero {
  z-index: 100;
}
@media (min-width: 48rem) {
  .site-header--over-hero {
    position: fixed !important;
    top: 1rem;
    left: 50%;
    transform: translate(-50%, 0);
    width: calc(100% - 2rem);
    max-width: 72rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.08);
  }
  .site-header--over-hero .nav-bar {
    padding: 2.5rem 2rem 2rem;
  }
  .site-header--over-hero .menu-toggle {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    box-shadow: none !important;
  }
  .site-header--over-hero .menu-toggle:hover {
    background: rgba(242, 93, 107, 0.9) !important;
    border-color: rgba(242, 93, 107, 0.95) !important;
    color: #fff !important;
    box-shadow: 0 4px 18px rgba(242, 93, 107, 0.35) !important;
  }
}
@media (max-width: 47.99rem) {
  .site-header--over-hero {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    padding-top: calc(env(safe-area-inset-top) + 1rem) !important;
    padding-left: env(safe-area-inset-left) !important;
    padding-right: env(safe-area-inset-right) !important;
    padding-bottom: 1rem !important;
    background: rgba(28, 45, 53, 0.96) !important;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07), 0 4px 20px rgba(0, 0, 0, 0.2) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }
  .site-header--over-hero .site-title a,
  .site-header--over-hero .site-description {
    color: #fff !important;
  }
  .site-header--over-hero .menu-toggle {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #fff !important;
  }
  .site-header--over-hero .menu-toggle:hover, .site-header--over-hero .menu-toggle:active {
    background: rgba(242, 93, 107, 0.92) !important;
    border-color: #f25d6b !important;
    color: #fff !important;
  }
}
.site-header--over-hero .main-navigation .nav-menu a,
.site-header--over-hero .main-navigation #primary-menu a {
  color: #ffffff;
  text-shadow: none;
}

@media (min-width: 48rem) {
  .site-header--over-hero.site-header--scrolled {
    position: fixed !important;
    top: 1rem;
    left: 50%;
    transform: translate(-50%, 0);
    width: calc(100% - 2rem);
    max-width: 72rem;
    border-radius: 9999px;
    background: rgba(30, 49, 57, 0.88);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.06);
    z-index: 1000;
  }
  .site-header--over-hero.site-header--scrolled .nav-bar {
    padding: 1rem 2rem;
  }
  .site-header--over-hero.site-header--scrolled .site-title a,
  .site-header--over-hero.site-header--scrolled .site-description {
    color: #fff;
    text-shadow: none;
  }
  .site-header--over-hero.site-header--scrolled .menu-toggle {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    color: #fff !important;
    box-shadow: none !important;
  }
  .site-header--over-hero.site-header--scrolled .menu-toggle:hover {
    background: rgba(242, 93, 107, 0.85) !important;
    border-color: rgba(242, 93, 107, 0.9) !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(242, 93, 107, 0.3) !important;
  }
  .site-header--over-hero.site-header--scrolled .main-navigation .nav-menu a,
  .site-header--over-hero.site-header--scrolled .main-navigation #primary-menu a {
    color: #ffffff;
  }
}
body:not(.home) main#primary {
  padding-top: 5rem;
}

.site-header:not(.site-header--over-hero) {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 100;
  background: #1E3139;
}
@media (max-width: 47.99rem) {
  .site-header:not(.site-header--over-hero) {
    padding-top: env(safe-area-inset-top);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}
.site-header:not(.site-header--over-hero) .site-title a,
.site-header:not(.site-header--over-hero) .main-navigation .nav-menu a,
.site-header:not(.site-header--over-hero) .main-navigation #primary-menu a {
  color: #ffffff;
}
.site-header:not(.site-header--over-hero) .menu-toggle {
  background: #1E3139;
  color: #fff;
  border-color: #1E3139;
}
.site-header:not(.site-header--over-hero) .menu-toggle:hover {
  background: #f25d6b;
  border-color: #f25d6b;
  color: #fff;
  box-shadow: 0 4px 14px rgba(242, 93, 107, 0.3);
}

.section {
  padding: 4rem 0;
}
@media (min-width: 64rem) {
  .section {
    padding: 6rem 0;
  }
}
.section--sm {
  padding: 2.5rem 0;
}
@media (min-width: 64rem) {
  .section--sm {
    padding: 4rem 0;
  }
}
.section__title {
  margin-bottom: 1rem;
}
.section__intro {
  margin-bottom: 2.5rem;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 36rem) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64rem) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 64rem) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.site-footer {
  position: relative;
  padding: 4rem 0 2.5rem;
  margin-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #f25d6b 20%, #f25d6b 80%, transparent 100%);
  opacity: 0.9;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

/* Logo im Footer (gleiches Logo wie in der Navbar – über Design → Startseiteneinstellung → Logo) */
.site-footer__logo {
  margin: 0;
  line-height: 0;
}
.site-footer__logo .custom-logo-link {
  display: inline-block;
  line-height: 0;
}
.site-footer__logo .custom-logo {
  display: block;
  height: auto;
  max-height: 2.75rem;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.site-footer__brand {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}
.site-footer__brand .site-footer__brand-accent {
  color: #f25d6b;
}

.site-footer__tagline {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 24rem;
  line-height: 1.5;
}

.site-footer__links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: #f25d6b;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Theme-Credit: „Theme: MediaShark Marketing“ mit optionalem Logo */
.site-footer__credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

.site-footer__credit:empty {
  display: none;
}

.site-footer__credit-logo {
  display: inline-flex;
  align-items: center;
}

.site-footer__credit-img {
  display: block;
  height: 24px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  opacity: 0.85;
}

.site-footer__credit-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer__credit-link:hover {
  color: #f25d6b;
}

.site-footer__credit .site-footer__credit-img {
  transition: opacity 0.2s ease;
}

.site-footer__credit .site-footer__credit-link:hover .site-footer__credit-img {
  opacity: 1;
}

@media (min-width: 48rem) {
  .site-footer__inner {
    gap: 2rem;
  }
  .site-footer__brand {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }
}
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 9999px;
  background: #f25d6b;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(242, 93, 107, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.92);
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s ease, background 0.2s ease;
}
.back-to-top:hover {
  background: rgb(243.5154285714, 111.8845714286, 124.2525714286);
  box-shadow: 0 6px 24px rgba(242, 93, 107, 0.5);
  transform: translateY(-2px) scale(1);
}
.back-to-top:focus-visible {
  outline: 2px solid #f25d6b;
  outline-offset: 3px;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top__icon {
  flex-shrink: 0;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition-duration: 0.15s;
  }
  .back-to-top.is-visible {
    transform: translateY(0);
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  background: #f25d6b;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.btn--primary:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  background: rgb(243.1365714286, 107.1634285714, 119.9394285714);
  transform: translateY(-2px) scale(1.02);
}
.btn--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  border-color: transparent;
  color: #ffffff;
}
.btn--accent {
  background: #f25d6b;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.btn--accent:hover {
  filter: brightness(1.05);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover,
  .btn--primary:hover {
    transform: none;
  }
}
.card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.card:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.18);
}
.card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: #f25d6b;
  transition: transform 0.3s ease;
}
.card__title {
  margin: 0 0 0.75rem;
  color: #ffffff;
}
.card__content {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.75);
}
.card__link {
  font-weight: 600;
  color: #f25d6b;
}
.card:hover .card__icon {
  transform: scale(1.08);
}

.hero--mediashark {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}
.hero--mediashark .hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero--mediashark .hero__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.hero--mediashark .hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.65) 100%);
}
.hero--mediashark .hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 60ch;
  text-align: center;
  padding: 2rem 1.25rem;
}
.hero--mediashark .hero__title {
  margin: 0 0 2rem;
  line-height: 0.95;
}
.hero--mediashark .hero__title.hero__title--small .hero__line {
  font-size: clamp(2.25rem, 9vw, 5.5rem);
}
.hero--mediashark .hero__title.hero__title--large .hero__line {
  font-size: clamp(3.75rem, 14vw, 9rem);
}
.hero--mediashark .hero__title .hero__line {
  display: block;
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.12em);
  animation: heroLineReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero--mediashark .hero__title.hero__title--normal-case .hero__line {
  text-transform: none;
}
.hero--mediashark .hero__title .hero__line--accent {
  display: inline-block;
  animation-delay: 0.25s;
}
.hero--mediashark .hero__title .hero__line--accent .hero__rotating-inner {
  display: inline-block;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero--mediashark .hero__title .hero__line--accent .hero__rotating-inner--out {
  opacity: 0;
  transform: translateY(-0.08em);
}
.hero--mediashark .hero__title .hero__line--accent .hero__rotating-inner--in {
  opacity: 0;
  transform: translateY(0.08em);
}
.hero--mediashark .hero__title .hero__line--accent .i-accent {
  position: relative;
  display: inline;
}
.hero--mediashark .hero__title .hero__line--accent .i-accent__stem {
  color: #fff;
}
.hero--mediashark .hero__title .hero__line--accent .i-accent__tittle {
  position: absolute;
  left: 50%;
  top: 0.32em;
  transform: translateX(-50%) translateY(-100%);
  width: 0.24em;
  height: 0.24em;
  border-radius: 50%;
  background: #f25d6b;
  pointer-events: none;
}
.hero--mediashark .hero__title.hero__title--small .hero__line--accent .i-accent__tittle {
  top: 0.26em;
  width: 0.2em;
  height: 0.2em;
}
.hero--mediashark .hero__title.hero__title--large .hero__line--accent .i-accent__tittle {
  top: 0.38em;
  width: 0.3em;
  height: 0.3em;
}
@keyframes heroLineReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero--mediashark .hero__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(16px);
  animation: heroLineReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}
.hero--mediashark .hero__text.hero__text--small {
  font-size: clamp(0.875rem, 1.25vw, 1rem);
}
.hero--mediashark .hero__text.hero__text--large {
  font-size: clamp(1.125rem, 1.75vw, 1.4rem);
}
.hero--mediashark .hero__tagline {
  margin: 1.5rem 0 0;
  min-height: 1.5em;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f25d6b;
  opacity: 0;
  animation: heroLineReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}
.hero--mediashark .hero__tagline-inner {
  display: inline-block;
  transition: opacity 0.4s ease;
}
.hero--mediashark .hero__tagline-inner.is-changing {
  opacity: 0;
}

.services__head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.services__head .section__intro {
  margin-left: auto;
  margin-right: auto;
}
.leistung {
  background: #1E3139;
  color: #fff;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (min-width: 64rem) {
  .leistung {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
}
.leistung__headline {
  margin: 0 0 2.5rem;
  font-size: clamp(2.5rem, 10vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15em;
}
.leistung__word {
  display: inline-block;
}
.leistung__word--2 {
  color: rgba(255, 255, 255, 0.85);
}
.leistung__intro {
  margin: 0;
  max-width: 38rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.content-marketing {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (min-width: 64rem) {
  .content-marketing {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.content-marketing--after-leistung {
  padding-top: 4rem;
}
@media (min-width: 64rem) {
  .content-marketing--after-leistung {
    padding-top: 5rem;
  }
}
.content-marketing__headline {
  margin: 0 0 1.5rem;
  padding-bottom: 0.35em;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
  max-width: 20ch;
}
.content-marketing--no-scroll-animation .reveal-line::after {
  width: 100%;
}
.content-marketing__intro {
  margin: 0 0 3rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 42rem;
}
.content-marketing__grid {
  margin-bottom: 3rem;
}
.content-marketing__card .card__icon {
  color: #f25d6b;
}
.content-marketing__visual {
  margin-bottom: 3rem;
}
.content-marketing__img-wrap {
  width: 100%;
  aspect-ratio: 21/9;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.content-marketing__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.content-marketing__placeholder {
  aspect-ratio: 21/9;
  background: linear-gradient(135deg, rgba(242, 93, 107, 0.08) 0%, rgba(242, 93, 107, 0.02) 100%);
  border-radius: 16px;
  border: 1px dashed rgba(242, 93, 107, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
}
.content-marketing__cta {
  margin: 0;
}

.split-section__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 64rem) {
  .split-section__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
@media (min-width: 64rem) {
  .split-section--text-right .split-section__grid {
    direction: rtl;
  }
  .split-section--text-right .split-section__grid > * {
    direction: ltr;
  }
}
.split-section__headline {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
}
.split-section__text {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
}
.split-section__visual {
  min-height: 200px;
  border-radius: 16px;
  overflow: hidden;
}
.split-section__img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.split-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-section__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-section__placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 16px;
}
.split-section__placeholder--reels {
  background: linear-gradient(135deg, rgba(242, 93, 107, 0.06) 0%, transparent 50%);
}
.split-section__placeholder--creator {
  background: linear-gradient(315deg, rgba(242, 93, 107, 0.06) 0%, transparent 50%);
}

.zoom-on-scroll {
  transform: scale(calc(0.92 + 0.08 * var(--scroll-progress, 0)));
  transition: none;
}

.letter-reveal__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 64rem) {
  .letter-reveal__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
  }
}
.letter-reveal__content {
  max-width: 28rem;
}
.letter-reveal__headline {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  white-space: normal;
}
.letter-reveal__char, .letter-reveal__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
  transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: calc(0.02s * var(--i, 0));
}
.letter-reveal__word {
  transition-delay: calc(0.06s * var(--i, 0));
}
.letter-reveal__char.revealed, .letter-reveal__word.revealed {
  opacity: 1;
  transform: translateY(0);
}
.letter-reveal__headline-wrap {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
  max-width: 20ch;
}
.letter-reveal__subline {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 32rem;
}
.letter-reveal__visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.letter-reveal__img-wrap {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.letter-reveal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-section {
  padding-top: 6rem;
  padding-bottom: 8rem;
}
@media (min-width: 64rem) {
  .cta-section {
    padding-top: 9rem;
    padding-bottom: 10rem;
  }
}
.cta-section__inner {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.cta-section__headline {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
}
.cta-section__text {
  margin: 0 0 2.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}
.cta-section__btn-wrap {
  margin: 0;
}
.cta-section__closing {
  margin: 2.5rem auto 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 36rem;
  font-weight: 500;
}

.contact-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 64rem) {
  .contact-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.contact-section__inner {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.contact-section__headline {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
}
.contact-section__intro {
  margin: 0 0 2.5rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}
.contact-section__social {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-section__social-label {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #f25d6b;
  letter-spacing: 0.02em;
}
.contact-section__social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.contact-section__social-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  text-decoration: none;
}
.contact-section__social-link:hover {
  color: #f25d6b;
  border-color: #f25d6b;
  background: rgba(242, 93, 107, 0.08);
}
.contact-section__message {
  margin: 0 0 2rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
}
.contact-section__message p {
  margin: 0;
}
.contact-section__message--success {
  background: rgba(242, 93, 107, 0.12);
  color: #ffffff;
  border: 1px solid rgba(242, 93, 107, 0.3);
}
.contact-section__message--error {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-form {
  text-align: left;
  max-width: 28rem;
  margin: 0 auto;
}
.contact-form__row {
  margin-bottom: 1.5rem;
}
.contact-form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #f25d6b;
  letter-spacing: 0.02em;
}
.contact-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.contact-form__input:focus {
  outline: none;
  border-color: #f25d6b;
  box-shadow: 0 0 0 3px rgba(242, 93, 107, 0.2);
}
.contact-form__textarea {
  resize: vertical;
  min-height: 6rem;
}
.contact-form__submit-wrap {
  margin: 2rem 0 0;
}

.page-leistungen__hero {
  padding-top: 5rem;
  padding-bottom: 4rem;
}
@media (min-width: 64rem) {
  .page-leistungen__hero {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 64rem) {
  .page-leistungen__hero-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
  }
}
.page-leistungen__hero-content {
  flex: 0 1 auto;
}
@media (min-width: 64rem) {
  .page-leistungen__hero-content {
    max-width: 28rem;
  }
}
.page-leistungen__hero-video-wrap {
  display: none;
}
@media (min-width: 64rem) {
  .page-leistungen__hero-video-wrap {
    display: block;
    flex-shrink: 0;
    width: 280px;
    max-width: 32%;
  }
}
.page-leistungen__hero-video-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: rotate(4deg);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  will-change: transform;
}
.page-leistungen__hero-video-wrap:hover .page-leistungen__hero-video-inner {
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.45), 0 0 24px -4px rgba(242, 93, 107, 0.2);
}
.page-leistungen__hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (prefers-reduced-motion: reduce) {
  .page-leistungen__hero-video-inner {
    transform: rotate(4deg);
    transition: none;
  }
}
.page-leistungen__title {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #ffffff;
  max-width: 16ch;
}
.page-leistungen__intro {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 40rem;
}
.page-leistungen__services {
  padding-top: 3rem;
  padding-bottom: 4rem;
}
@media (min-width: 64rem) {
  .page-leistungen__services {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 64rem) {
  .page-leistungen__carousel-section[data-scroll-carousel] {
    min-height: 300vh;
    padding-bottom: 0;
  }
  .page-leistungen__carousel-section[data-scroll-carousel].carousel-disabled {
    min-height: auto;
    padding-bottom: 5rem;
  }
  .page-leistungen__carousel-section[data-scroll-carousel]:not(.carousel-disabled) .page-leistungen__carousel-viewport {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .page-leistungen__carousel-section[data-scroll-carousel]:not(.carousel-disabled) .page-leistungen__carousel-container {
    width: 100%;
    max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .page-leistungen__carousel-section[data-scroll-carousel]:not(.carousel-disabled) .page-leistungen__carousel-track {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 2rem;
    width: max-content;
    will-change: transform;
  }
  .page-leistungen__carousel-section[data-scroll-carousel]:not(.carousel-disabled) .page-leistungen__card {
    flex: 0 0 380px;
    width: 380px;
    min-height: 420px;
  }
}
.page-leistungen__between {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 64rem) {
  .page-leistungen__between {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media (min-width: 64rem) {
  .page-leistungen__between.is-between-sticky {
    min-height: 165vh;
    padding-bottom: 0;
  }
}
@media (min-width: 64rem) {
  .page-leistungen__between-inner {
    position: sticky;
    top: 10vh;
    padding-bottom: 6rem;
  }
}
@media (min-width: 64rem) {
  .page-leistungen__between-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-direction: row;
  }
}
.page-leistungen__between-content {
  margin-bottom: 2.5rem;
}
@media (min-width: 64rem) {
  .page-leistungen__between-content {
    flex: 0 1 42%;
    margin-bottom: 0;
  }
}
.page-leistungen__between-headline {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff;
  max-width: 14ch;
}
.page-leistungen__between-text {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 28rem;
}
.page-leistungen__between-visual {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  aspect-ratio: 16/10;
}
@media (min-width: 64rem) {
  .page-leistungen__between-visual {
    flex: 0 1 54%;
    min-width: 0;
    aspect-ratio: 16/11;
    max-height: 75vh;
    height: min(75vh, 42rem);
  }
}
.page-leistungen__between-visual-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  transform-origin: center center;
  transform: scale(calc(1 + 0.22 * var(--between-progress, 0)));
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page-leistungen__between-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}
@media (prefers-reduced-motion: reduce) {
  .page-leistungen__between-visual-inner {
    transform: none;
  }
}
.page-leistungen__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 48rem) {
  .page-leistungen__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 64rem) {
  .page-leistungen__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.page-leistungen__card {
  display: block;
  position: relative;
  padding: 2rem 1.5rem;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, background 0.4s ease;
}
.page-leistungen__card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(16px + 2px);
  background: conic-gradient(from 0deg, transparent 0%, rgba(242, 93, 107, 0.5) 20%, rgba(242, 93, 107, 0.15) 40%, transparent 50%, rgba(242, 93, 107, 0.2) 60%, rgba(242, 93, 107, 0.45) 80%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}
.page-leistungen__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.06) 40%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.06) 60%, transparent 100%);
  transition: left 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1;
}
.page-leistungen__card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 48px -8px rgba(242, 93, 107, 0.25);
  border-color: rgba(242, 93, 107, 0.35);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(242, 93, 107, 0.04) 100%);
}
.page-leistungen__card:hover::before {
  opacity: 1;
  animation: cardBorderSpin 4s linear infinite;
}
.page-leistungen__card:hover::after {
  left: 100%;
}
.page-leistungen__card:hover .page-leistungen__card-icon {
  transform: scale(1.15) rotate(-5deg);
  color: #f25d6b;
  filter: drop-shadow(0 0 12px rgba(242, 93, 107, 0.4));
}
.page-leistungen__card:hover .page-leistungen__card-more {
  background: rgba(242, 93, 107, 0.18);
  border-color: rgba(242, 93, 107, 0.45);
  color: #fff;
  gap: 0.75rem;
}
.page-leistungen__card:hover .page-leistungen__card-more-arrow {
  transform: translateX(4px);
}
.page-leistungen__card:hover .page-leistungen__card-title {
  color: #fff;
}
.page-leistungen__card:focus-visible {
  outline: 2px solid #f25d6b;
  outline-offset: 2px;
}
@keyframes cardBorderSpin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-leistungen__card:hover {
    transform: none;
  }
  .page-leistungen__card:hover::before {
    animation: none;
  }
  .page-leistungen__card:hover::after {
    transition: none;
  }
  .page-leistungen__card-icon {
    transition-duration: 0.15s;
  }
}
.page-leistungen__card-icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
  color: #f25d6b;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.35s ease, filter 0.35s ease;
}
.page-leistungen__card-icon svg {
  width: 100%;
  height: 100%;
}
.page-leistungen__card-title {
  position: relative;
  z-index: 2;
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #ffffff;
  transition: color 0.35s ease;
}
.page-leistungen__card-text {
  position: relative;
  z-index: 2;
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}
.page-leistungen__card-more {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #f25d6b;
  background: rgba(242, 93, 107, 0.1);
  border: 1px solid rgba(242, 93, 107, 0.25);
  border-radius: 999px;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, gap 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-leistungen__card:hover .page-leistungen__card-more {
  background: rgba(242, 93, 107, 0.18);
  border-color: rgba(242, 93, 107, 0.45);
  color: #fff;
  gap: 0.75rem;
}
.page-leistungen__card-more-arrow {
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-leistungen__card:hover .page-leistungen__card-more-arrow {
  transform: translateX(4px);
}
@media (prefers-reduced-motion: reduce) {
  .page-leistungen__card-more-arrow {
    transition: none;
  }
}
.page-leistungen__cta {
  padding-top: 5rem;
  padding-bottom: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 64rem) {
  .page-leistungen__cta {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
}
.page-leistungen__cta-inner {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.page-leistungen__cta-headline {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
}
.page-leistungen__cta-text {
  margin: 0 0 2.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}
.page-leistungen__cta-wrap {
  margin: 0;
}
.page-leistungen__process {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 64rem) {
  .page-leistungen__process {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media (min-width: 64rem) {
  .page-leistungen__process.is-process-carousel {
    min-height: 280vh;
    padding-bottom: 0;
  }
}
@media (min-width: 64rem) {
  .page-leistungen__process-sticky {
    position: sticky;
    top: 12vh;
    padding-bottom: 6rem;
  }
}
.page-leistungen__process-headline {
  margin: 0 0 3rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
  max-width: 18ch;
}
.page-leistungen__word-reveal .page-leistungen__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: calc(0.07s * var(--i, 0));
}
.page-leistungen__word-reveal.is-visible .page-leistungen__word {
  opacity: 1;
  transform: translateY(0);
}
.page-leistungen__letter-reveal .page-leistungen__letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: calc(0.035s * var(--i, 0));
}
.page-leistungen__letter-reveal.is-visible .page-leistungen__letter {
  opacity: 1;
  transform: translateY(0);
}
.page-leistungen__process-step.is-visible .page-leistungen__word-reveal .page-leistungen__word, .page-leistungen__usp-card.is-visible .page-leistungen__word-reveal .page-leistungen__word, .page-leistungen__usp-item.is-visible .page-leistungen__word-reveal .page-leistungen__word {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .page-leistungen__word-reveal .page-leistungen__word {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .page-leistungen__letter-reveal .page-leistungen__letter {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.page-leistungen__process-track {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 48rem) {
  .page-leistungen__process-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (min-width: 64rem) {
  .page-leistungen__process-track {
    display: flex;
    align-items: stretch;
    gap: 0;
    grid-template-columns: unset;
    margin-top: 4rem;
  }
}
.page-leistungen__process-line {
  display: none;
}
@media (min-width: 64rem) {
  .page-leistungen__process-line {
    display: block;
    position: absolute;
    top: 3.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(242, 93, 107, 0.2) 15%, rgba(242, 93, 107, 0.6) 50%, rgba(242, 93, 107, 0.2) 85%, transparent 100%);
    pointer-events: none;
  }
}
.page-leistungen__process-step {
  position: relative;
  padding: 1.5rem 1.25rem 1.5rem 2rem;
  background: transparent;
  border-radius: 16px;
  border: none;
  border-left: 3px solid rgba(242, 93, 107, 0.35);
  transition: border-color 0.35s ease;
  z-index: 1;
  opacity: 0;
  transform: translateY(48px) scale(0.88);
  transition: none;
  will-change: transform;
}
@media (min-width: 64rem) {
  .page-leistungen__process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem 1.5rem;
    border-left: none;
    border-radius: 0;
  }
}
.page-leistungen__process-step:hover {
  border-left-color: rgba(242, 93, 107, 0.7);
}
@media (min-width: 64rem) {
  .page-leistungen__process-step:hover {
    transform: translateY(-4px);
    background: linear-gradient(180deg, rgba(242, 93, 107, 0.06) 0%, transparent 60%);
    border-radius: 16px;
  }
  .page-leistungen__process-step:hover .page-leistungen__process-num {
    box-shadow: 0 0 32px rgba(242, 93, 107, 0.4), 0 0 0 1px rgba(242, 93, 107, 0.3);
    transform: scale(1.05);
  }
}
.page-leistungen__process-track[data-process-steps] .page-leistungen__process-step {
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-leistungen__process-track[data-process-steps] .page-leistungen__process-step:nth-child(2) {
  opacity: var(--step-1-progress, 0);
  transform: translateY(calc(56px * (1 - var(--step-1-progress, 0)))) scale(calc(0.82 + 0.22 * var(--step-1-progress, 0)));
}
.page-leistungen__process-track[data-process-steps] .page-leistungen__process-step:nth-child(3) {
  opacity: var(--step-2-progress, 0);
  transform: translateY(calc(48px * (1 - var(--step-2-progress, 0)))) scale(calc(0.88 + 0.14 * var(--step-2-progress, 0)));
}
.page-leistungen__process-track[data-process-steps] .page-leistungen__process-step:nth-child(4) {
  opacity: var(--step-3-progress, 0);
  transform: translateY(calc(48px * (1 - var(--step-3-progress, 0)))) scale(calc(0.88 + 0.14 * var(--step-3-progress, 0)));
}
.page-leistungen__process-track[data-process-steps] .page-leistungen__process-step:nth-child(5) {
  opacity: var(--step-4-progress, 0);
  transform: translateY(calc(48px * (1 - var(--step-4-progress, 0)))) scale(calc(0.88 + 0.14 * var(--step-4-progress, 0)));
}
@media (min-width: 64rem) {
  .page-leistungen__process-track[data-process-steps] .page-leistungen__process-step:hover {
    transform: translateY(-4px) scale(1);
  }
}
.page-leistungen__process-track[data-process-steps] .page-leistungen__process-step .page-leistungen__word-reveal .page-leistungen__word {
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page-leistungen__process-track[data-process-steps] .page-leistungen__process-step:nth-child(2) .page-leistungen__word-reveal .page-leistungen__word {
  opacity: var(--step-1-progress, 0);
  transform: translateY(calc(0.35em * (1 - var(--step-1-progress, 0))));
}
.page-leistungen__process-track[data-process-steps] .page-leistungen__process-step:nth-child(3) .page-leistungen__word-reveal .page-leistungen__word {
  opacity: var(--step-2-progress, 0);
  transform: translateY(calc(0.35em * (1 - var(--step-2-progress, 0))));
}
.page-leistungen__process-track[data-process-steps] .page-leistungen__process-step:nth-child(4) .page-leistungen__word-reveal .page-leistungen__word {
  opacity: var(--step-3-progress, 0);
  transform: translateY(calc(0.35em * (1 - var(--step-3-progress, 0))));
}
.page-leistungen__process-track[data-process-steps] .page-leistungen__process-step:nth-child(5) .page-leistungen__word-reveal .page-leistungen__word {
  opacity: var(--step-4-progress, 0);
  transform: translateY(calc(0.35em * (1 - var(--step-4-progress, 0))));
}
.page-leistungen__process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, #f25d6b 0%, rgb(238.9691428571, 55.2308571429, 72.4948571429) 100%);
  border-radius: 50%;
  border: none;
  box-shadow: 0 0 24px rgba(242, 93, 107, 0.35), 0 0 0 1px rgba(242, 93, 107, 0.25);
  transition: transform 0.35s cubic-bezier(0.22, 1.2, 0.36, 1), box-shadow 0.35s ease;
}
@media (min-width: 64rem) {
  .page-leistungen__process-num {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
  }
}
.page-leistungen__process-track[data-process-steps] .page-leistungen__process-step .page-leistungen__process-num {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}
.page-leistungen__process-track[data-process-steps] .page-leistungen__process-step:nth-child(2) .page-leistungen__process-num {
  transform: scale(calc(0.6 + 0.45 * var(--step-1-progress, 0)));
}
.page-leistungen__process-track[data-process-steps] .page-leistungen__process-step:nth-child(3) .page-leistungen__process-num {
  transform: scale(calc(0.65 + 0.4 * var(--step-2-progress, 0)));
}
.page-leistungen__process-track[data-process-steps] .page-leistungen__process-step:nth-child(4) .page-leistungen__process-num {
  transform: scale(calc(0.65 + 0.4 * var(--step-3-progress, 0)));
}
.page-leistungen__process-track[data-process-steps] .page-leistungen__process-step:nth-child(5) .page-leistungen__process-num {
  transform: scale(calc(0.65 + 0.4 * var(--step-4-progress, 0)));
}
@keyframes processNumPop {
  0% {
    transform: scale(0.5);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.12);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.page-leistungen__process-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.25;
}
@media (min-width: 64rem) {
  .page-leistungen__process-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
}
.page-leistungen__process-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}
@media (min-width: 64rem) {
  .page-leistungen__process-text {
    font-size: 0.875rem;
    line-height: 1.55;
    max-width: 14rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-leistungen__process-step.is-visible .page-leistungen__process-num {
    animation: none;
    transform: scale(1);
    opacity: 1;
  }
  .page-leistungen__process-track .page-leistungen__process-step {
    opacity: 1;
    transform: none;
  }
  .page-leistungen__process-track[data-process-steps] .page-leistungen__process-step .page-leistungen__word-reveal .page-leistungen__word, .page-leistungen__process-track[data-process-steps] .page-leistungen__process-step .page-leistungen__process-num {
    opacity: 1;
    transform: none;
  }
  .page-leistungen__process-line {
    transition: none;
  }
}
.page-leistungen__usps {
  padding-top: 5rem;
  padding-bottom: 6rem;
}
@media (min-width: 64rem) {
  .page-leistungen__usps {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
}
.page-leistungen__usps-container {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}
.page-leistungen__usps-headline {
  margin: 0 0 4rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
  max-width: 18ch;
}
@media (min-width: 64rem) {
  .page-leistungen__usps-headline {
    margin-bottom: 5rem;
  }
}
.page-leistungen__usps-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 64rem) {
  .page-leistungen__usps-list {
    gap: 5rem;
  }
}
.page-leistungen__usp-item {
  position: relative;
  padding: 0;
  border: none;
  outline: none;
}
.page-leistungen__usp-title {
  position: relative;
  display: inline-block;
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: #ffffff;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-leistungen__usp-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #f25d6b, rgba(242, 93, 107, 0.6));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-leistungen__usp-item.is-visible .page-leistungen__usp-title::after {
  transform: scaleX(1);
}
.page-leistungen__usp-item:hover .page-leistungen__usp-title {
  color: #fff;
  transform: translateX(4px);
}
.page-leistungen__usp-item:hover .page-leistungen__usp-title::after {
  background: linear-gradient(90deg, #f25d6b, rgba(242, 93, 107, 0.85));
}
.page-leistungen__usp-text {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 40rem;
  transition: color 0.35s ease;
}
.page-leistungen__usp-item:hover .page-leistungen__usp-text {
  color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 64rem) {
  .page-leistungen__usp-item:nth-child(odd) {
    text-align: left;
  }
  .page-leistungen__usp-item:nth-child(even) {
    text-align: right;
  }
  .page-leistungen__usp-item:nth-child(even) .page-leistungen__usp-title::after {
    transform-origin: right;
    left: auto;
    right: 0;
  }
  .page-leistungen__usp-item:nth-child(even).is-visible .page-leistungen__usp-title::after {
    transform: scaleX(1);
  }
  .page-leistungen__usp-item:nth-child(even):hover .page-leistungen__usp-title {
    transform: translateX(-4px);
  }
  .page-leistungen__usp-item:nth-child(even) .page-leistungen__usp-text {
    margin-left: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-leistungen__process-step:hover {
    transform: none;
  }
  .page-leistungen__usp-item:hover .page-leistungen__usp-title {
    color: inherit;
    transform: none;
  }
  .page-leistungen__usp-item:hover .page-leistungen__usp-text {
    color: inherit;
  }
  .page-leistungen__usp-title::after {
    transform: scaleX(1);
    transition: none;
  }
}

.leistung-detail__hero {
  padding-top: 5rem;
  padding-bottom: 4rem;
}
@media (min-width: 64rem) {
  .leistung-detail__hero {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 64rem) {
  .leistung-detail__hero-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
  }
}
@media (min-width: 64rem) {
  .leistung-detail__hero-content {
    max-width: 32rem;
  }
}
.leistung-detail__hero-media {
  display: none;
}
@media (min-width: 64rem) {
  .leistung-detail__hero-media {
    display: block;
    flex-shrink: 0;
    width: 280px;
    max-width: 36%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  }
}
.leistung-detail__hero-video, .leistung-detail__hero-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
.leistung-detail__hero-video {
  aspect-ratio: 16/9;
  object-fit: cover;
}
.leistung-detail__hero-img {
  aspect-ratio: 16/10;
  object-fit: cover;
}
.leistung-detail__title {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #ffffff;
  max-width: 18ch;
}
.leistung-detail__intro {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 42rem;
}
.leistung-detail__features {
  padding-top: 5rem;
  padding-bottom: 6rem;
}
@media (min-width: 64rem) {
  .leistung-detail__features {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
}
.leistung-detail__features-container {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}
.leistung-detail__features-headline {
  margin: 0 0 4rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
  max-width: 18ch;
}
.leistung-detail__features-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 64rem) {
  .leistung-detail__features-list {
    gap: 5rem;
  }
}
.leistung-detail__feature-item {
  position: relative;
  padding: 0;
}
.leistung-detail__feature-title {
  position: relative;
  display: inline-block;
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: #ffffff;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.leistung-detail__feature-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #f25d6b, rgba(242, 93, 107, 0.6));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.leistung-detail__feature-item.is-visible .leistung-detail__feature-title::after {
  transform: scaleX(1);
}
.leistung-detail__feature-item.is-visible .page-leistungen__word-reveal .page-leistungen__word {
  opacity: 1;
  transform: translateY(0);
}
.leistung-detail__feature-text {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 40rem;
}
.leistung-detail__cta {
  padding-top: 5rem;
  padding-bottom: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 64rem) {
  .leistung-detail__cta {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
}
.leistung-detail__cta-inner {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.leistung-detail__cta-headline {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
}
.leistung-detail__cta-text {
  margin: 0 0 2.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}
.leistung-detail__cta-wrap {
  margin: 0;
}
.leistung-detail__cta-link {
  display: inline-block;
}
@media (prefers-reduced-motion: reduce) {
  .leistung-detail__feature-title::after {
    transform: scaleX(1);
    transition: none;
  }
}

.leistung-detail--hero-code .leistung-detail__hero-visual {
  display: block;
  width: 100%;
  max-width: 20rem;
  margin: 2.5rem auto 0;
}
@media (min-width: 64rem) {
  .leistung-detail--hero-code .leistung-detail__hero-visual {
    display: block;
    margin: 0;
    flex-shrink: 0;
    width: 320px;
    max-width: 38%;
  }
}
.leistung-detail--hero-code .leistung-detail__browser-mockup {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.leistung-detail--hero-code .leistung-detail__browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.leistung-detail--hero-code .leistung-detail__browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.leistung-detail--hero-code .leistung-detail__browser-dot:nth-child(1) {
  background: rgba(242, 93, 107, 0.9);
}
.leistung-detail--hero-code .leistung-detail__browser-dot:nth-child(2) {
  background: rgba(255, 255, 255, 0.35);
}
.leistung-detail--hero-code .leistung-detail__browser-dot:nth-child(3) {
  background: rgba(255, 255, 255, 0.2);
}
.leistung-detail--hero-code .leistung-detail__code-preview {
  padding: 1.25rem 1.5rem;
  font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Code", monospace;
  font-size: 0.8125rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
}
.leistung-detail--hero-code .leistung-detail__code-preview .code-tag {
  color: #f25d6b;
}
.leistung-detail--hero-code .leistung-detail__code-preview .code-attr {
  color: rgba(255, 255, 255, 0.9);
}
.leistung-detail--hero-code .leistung-detail__code-preview .code-string {
  color: rgba(180, 220, 180, 0.95);
}
.leistung-detail--hero-code .leistung-detail__code-preview .leistung-detail__preview-text {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.75);
}
.leistung-detail--hero-code .leistung-detail__code-preview .leistung-detail__preview-line {
  margin: 0 0 0.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.leistung-detail--hero-code .leistung-detail__code-preview .leistung-detail__preview-line:last-child {
  margin-bottom: 0;
  font-weight: 500;
  color: #f25d6b;
}

.leistung-detail--website .leistung-detail__feature-item {
  padding-left: 1.5rem;
  border-left: 3px solid transparent;
  border-radius: 0 2px 2px 0;
  transition: border-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.leistung-detail--website .leistung-detail__feature-item.is-visible {
  border-left-color: rgba(242, 93, 107, 0.6);
}
.leistung-detail--website .leistung-detail__feature-item:hover {
  background: rgba(255, 255, 255, 0.03);
}
.leistung-detail--website .leistung-detail__features-headline {
  position: relative;
  padding-left: 1.5rem;
}
.leistung-detail--website .leistung-detail__features-headline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 4px;
  height: 1em;
  background: linear-gradient(180deg, #f25d6b, rgba(242, 93, 107, 0.5));
  border-radius: 2px;
}
.leistung-detail--website .split-section__img-wrap {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 20px 40px rgba(0, 0, 0, 0.3);
}
.leistung-detail--website .leistung-detail__cta-headline {
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.ueber-uns__hero {
  padding-top: 5rem;
  padding-bottom: 4rem;
}
@media (min-width: 64rem) {
  .ueber-uns__hero {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 64rem) {
  .ueber-uns__hero-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
  }
}
@media (min-width: 64rem) {
  .ueber-uns__hero-content {
    max-width: 32rem;
  }
}
.ueber-uns__hero-media {
  display: none;
}
@media (min-width: 64rem) {
  .ueber-uns__hero-media {
    display: block;
    flex-shrink: 0;
    width: 280px;
    max-width: 36%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  }
}
.ueber-uns__hero-video, .ueber-uns__hero-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
.ueber-uns__hero-video {
  aspect-ratio: 16/9;
  object-fit: cover;
}
.ueber-uns__hero-img {
  aspect-ratio: 16/10;
  object-fit: cover;
}
.ueber-uns__title {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #ffffff;
  max-width: 18ch;
}
.ueber-uns__intro {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 42rem;
}
.ueber-uns__inhaber {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 64rem) {
  .ueber-uns__inhaber {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.ueber-uns__inhaber-container {
  max-width: 72rem;
}
.ueber-uns__inhaber-headline {
  margin: 0 0 3rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
  max-width: 18ch;
}
@media (min-width: 64rem) {
  .ueber-uns__inhaber-headline {
    margin-bottom: 4rem;
  }
}
.ueber-uns__inhaber-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 64rem) {
  .ueber-uns__inhaber-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}
.ueber-uns__inhaber-content {
  order: 2;
}
@media (min-width: 64rem) {
  .ueber-uns__inhaber-content {
    order: 1;
    padding-right: 2rem;
  }
}
.ueber-uns__inhaber-name {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff;
}
.ueber-uns__inhaber-title {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #f25d6b;
  letter-spacing: 0.02em;
}
.ueber-uns__inhaber-text {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  max-width: 38rem;
}
.ueber-uns__inhaber-visual {
  order: 1;
  overflow: hidden;
}
.ueber-uns__inhaber-visual.scroll-progress.visual-reveal {
  filter: none;
}
@media (min-width: 64rem) {
  .ueber-uns__inhaber-visual {
    order: 2;
  }
}
.ueber-uns__inhaber-img-wrap {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.06);
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 320px;
}
@media (min-width: 64rem) {
  .ueber-uns__inhaber-img-wrap {
    max-width: 380px;
    margin-left: auto;
  }
}
.ueber-uns__inhaber-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}
.ueber-uns__values {
  padding-top: 5rem;
  padding-bottom: 6rem;
}
@media (min-width: 64rem) {
  .ueber-uns__values {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
}
.ueber-uns__values-container {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}
.ueber-uns__values-headline {
  margin: 0 0 4rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
  max-width: 18ch;
}
.ueber-uns__values-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 64rem) {
  .ueber-uns__values-list {
    gap: 5rem;
  }
}
.ueber-uns__value-item {
  position: relative;
  padding: 0;
}
.ueber-uns__value-title {
  position: relative;
  display: inline-block;
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: #ffffff;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.ueber-uns__value-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #f25d6b, rgba(242, 93, 107, 0.6));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.ueber-uns__value-item.is-visible .ueber-uns__value-title::after {
  transform: scaleX(1);
}
.ueber-uns__value-item.is-visible .page-leistungen__word-reveal .page-leistungen__word {
  opacity: 1;
  transform: translateY(0);
}
.ueber-uns__value-text {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 40rem;
}
.ueber-uns__cta {
  padding-top: 5rem;
  padding-bottom: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 64rem) {
  .ueber-uns__cta {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
}
.ueber-uns__cta-inner {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.ueber-uns__cta-headline {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
}
.ueber-uns__cta-text {
  margin: 0 0 2.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}
.ueber-uns__cta-wrap {
  margin: 0;
}
.ueber-uns__cta-link {
  display: inline-block;
}
@media (prefers-reduced-motion: reduce) {
  .ueber-uns__value-title::after {
    transform: scaleX(1);
    transition: none;
  }
}

.page-kontakt__hero {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
@media (min-width: 64rem) {
  .page-kontakt__hero {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}
.page-kontakt__hero--glow .page-kontakt__hero-glow {
  opacity: 1;
}
.page-kontakt__hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(90vw, 42rem);
  height: min(80vw, 36rem);
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(242, 93, 107, 0.12) 0%, rgba(242, 93, 107, 0.05) 40%, transparent 70%);
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 0.6s ease;
}
.page-kontakt__hero-inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.page-kontakt__title {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #ffffff;
  max-width: 18ch;
}
.page-kontakt__intro {
  margin: 0 0 2.5rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 42rem;
}
.page-kontakt__details {
  padding-top: 3rem;
  padding-bottom: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 64rem) {
  .page-kontakt__details {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}
.page-kontakt__details-inner {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.page-kontakt__details-lead {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #f25d6b;
  letter-spacing: 0.02em;
}
.page-kontakt__details-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 48rem) {
  .page-kontakt__details-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
  }
}
.page-kontakt__detail-block {
  position: relative;
  padding: 1.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.35s ease;
}
@media (hover: hover) {
  .page-kontakt__detail-block:hover {
    transform: translateY(-4px);
    border-color: rgba(242, 93, 107, 0.35);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-kontakt__detail-block {
    transition: none;
  }
  .page-kontakt__detail-block:hover {
    transform: none;
  }
}
.page-kontakt__detail-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1rem;
}
.page-kontakt__detail-icon {
  color: #f25d6b;
  flex-shrink: 0;
}
.page-kontakt__detail-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #f25d6b;
  letter-spacing: 0.03em;
}
.page-kontakt__detail-value {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #ffffff;
}
.page-kontakt__detail-value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 93, 107, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.page-kontakt__detail-value a:hover {
  color: #f25d6b;
  border-color: #f25d6b;
}
.page-kontakt__link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 93, 107, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.page-kontakt__link:hover {
  color: #f25d6b;
  border-color: #f25d6b;
}
.page-kontakt__trust {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 64rem) {
  .page-kontakt__trust {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.page-kontakt__trust-inner {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}
.page-kontakt__trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 48rem) {
  .page-kontakt__trust-list {
    gap: 3rem 4rem;
  }
}
.page-kontakt__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.25s ease;
}
.page-kontakt__trust-icon {
  flex-shrink: 0;
  color: #f25d6b;
  opacity: 0.95;
}
.page-kontakt__trust-text {
  max-width: 18ch;
}
@media (min-width: 48rem) {
  .page-kontakt__trust-text {
    max-width: 22ch;
  }
}
.page-kontakt__form-section {
  padding-top: 5rem;
  padding-bottom: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 64rem) {
  .page-kontakt__form-section {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
}
.page-kontakt__form-inner {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.page-kontakt__form-headline {
  margin: 0 0 2.5rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
}
.page-kontakt__form-intro {
  margin: 0 0 2.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.0625rem;
  line-height: 1.6;
}
.page-kontakt__form .contact-form__row {
  margin-bottom: 1.5rem;
}
.page-kontakt__submit-btn {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}
@media (hover: hover) {
  .page-kontakt__submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(242, 93, 107, 0.35);
  }
  .page-kontakt__submit-btn:active {
    transform: scale(0.98);
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-kontakt__submit-btn {
    transition: none;
  }
  .page-kontakt__submit-btn:hover, .page-kontakt__submit-btn:active {
    transform: none;
  }
}
.page-kontakt__social {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-impressum__hero {
  padding-top: 5rem;
  padding-bottom: 4rem;
}
@media (min-width: 64rem) {
  .page-impressum__hero {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}
.page-impressum__hero-inner {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.page-impressum__title {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #ffffff;
  max-width: 18ch;
}
.page-impressum__intro {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 42rem;
}
.page-impressum__content {
  padding-top: 4rem;
  padding-bottom: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 64rem) {
  .page-impressum__content {
    padding-top: 5rem;
    padding-bottom: 8rem;
  }
}
.page-impressum__content-inner {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.page-impressum__body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
}
.page-impressum__body p {
  margin: 0 0 1.5rem;
}
.page-impressum__body p:last-child {
  margin-bottom: 0;
}
.page-impressum__body strong {
  color: #ffffff;
  font-weight: 700;
}
.page-impressum__body a {
  color: #f25d6b;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 93, 107, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.page-impressum__body a:hover {
  border-color: #f25d6b;
}
.page-impressum__body ul, .page-impressum__body ol {
  margin: 0 0 1.5rem;
  padding-left: 2rem;
}
.page-impressum__body ul:last-child, .page-impressum__body ol:last-child {
  margin-bottom: 0;
}
.page-impressum__body li {
  margin-bottom: 0.5rem;
}
.page-impressum__body h2, .page-impressum__body h3 {
  margin: 3rem 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}
.page-impressum__body h2:first-child, .page-impressum__body h3:first-child {
  margin-top: 0;
}

.page-datenschutz__hero {
  padding-top: 5rem;
  padding-bottom: 4rem;
}
@media (min-width: 64rem) {
  .page-datenschutz__hero {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}
.page-datenschutz__hero-inner {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.page-datenschutz__title {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #ffffff;
  max-width: 18ch;
}
.page-datenschutz__intro {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 42rem;
}
.page-datenschutz__content {
  padding-top: 4rem;
  padding-bottom: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 64rem) {
  .page-datenschutz__content {
    padding-top: 5rem;
    padding-bottom: 8rem;
  }
}
.page-datenschutz__content-inner {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.page-datenschutz__body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
}
.page-datenschutz__body p {
  margin: 0 0 1.5rem;
}
.page-datenschutz__body p:last-child {
  margin-bottom: 0;
}
.page-datenschutz__body strong {
  color: #ffffff;
  font-weight: 700;
}
.page-datenschutz__body a {
  color: #f25d6b;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 93, 107, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.page-datenschutz__body a:hover {
  border-color: #f25d6b;
}
.page-datenschutz__body ul, .page-datenschutz__body ol {
  margin: 0 0 1.5rem;
  padding-left: 2rem;
}
.page-datenschutz__body ul:last-child, .page-datenschutz__body ol:last-child {
  margin-bottom: 0;
}
.page-datenschutz__body li {
  margin-bottom: 0.5rem;
}
.page-datenschutz__body h2, .page-datenschutz__body h3 {
  margin: 3rem 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}
.page-datenschutz__body h2:first-child, .page-datenschutz__body h3:first-child {
  margin-top: 0;
}

.page-agb__hero {
  padding-top: 5rem;
  padding-bottom: 4rem;
}
@media (min-width: 64rem) {
  .page-agb__hero {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}
.page-agb__hero-inner {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.page-agb__title {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #ffffff;
  max-width: 18ch;
}
.page-agb__intro {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 42rem;
}
.page-agb__content {
  padding-top: 4rem;
  padding-bottom: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 64rem) {
  .page-agb__content {
    padding-top: 5rem;
    padding-bottom: 8rem;
  }
}
.page-agb__content-inner {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.page-agb__body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
}
.page-agb__body p {
  margin: 0 0 1.5rem;
}
.page-agb__body p:last-child {
  margin-bottom: 0;
}
.page-agb__body strong {
  color: #ffffff;
  font-weight: 700;
}
.page-agb__body a {
  color: #f25d6b;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 93, 107, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.page-agb__body a:hover {
  border-color: #f25d6b;
}
.page-agb__body ul, .page-agb__body ol {
  margin: 0 0 1.5rem;
  padding-left: 2rem;
}
.page-agb__body ul:last-child, .page-agb__body ol:last-child {
  margin-bottom: 0;
}
.page-agb__body li {
  margin-bottom: 0.5rem;
}
.page-agb__body h2, .page-agb__body h3 {
  margin: 3rem 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}
.page-agb__body h2:first-child, .page-agb__body h3:first-child {
  margin-top: 0;
}
.page-agb__body em {
  color: rgba(255, 255, 255, 0.75);
}

.page-blog .blog-hero {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
@media (min-width: 64rem) {
  .page-blog .blog-hero {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
}
.page-blog .blog-hero__bg {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 60%;
  max-width: 480px;
  height: 80%;
  max-height: 400px;
  background: radial-gradient(ellipse at center, rgba(242, 93, 107, 0.18) 0%, rgba(242, 93, 107, 0.06) 45%, transparent 70%);
  pointer-events: none;
}
.page-blog .blog-hero__container {
  position: relative;
  max-width: 44rem;
}
.page-blog .blog-hero__label {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f25d6b;
}
.page-blog .blog-hero__title {
  margin: 0 0 1.5rem;
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #ffffff;
  max-width: 16ch;
}
.page-blog .blog-hero__intro {
  margin: 0 0 2rem;
  font-size: 1.25rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 40rem;
}
.page-blog .blog-hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.page-blog .blog-hero__count {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}
.page-blog .blog-hero__line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #f25d6b 20%, #f25d6b 80%, transparent 100%);
  opacity: 0.6;
}
.page-blog .blog-featured-wrap {
  padding-top: 2rem;
  padding-bottom: 0;
}
@media (min-width: 64rem) {
  .page-blog .blog-featured-wrap {
    padding-top: 3rem;
  }
}
.page-blog .blog-featured {
  margin-bottom: 0;
}
.page-blog .blog-featured__link {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.page-blog .blog-featured__link:hover {
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}
.page-blog .blog-featured__media {
  position: relative;
  aspect-ratio: 21/9;
  overflow: hidden;
}
@media (min-width: 48rem) {
  .page-blog .blog-featured__media {
    aspect-ratio: 32/10;
  }
}
.page-blog .blog-featured__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(242, 93, 107, 0.25) 0%, rgba(242, 93, 107, 0.08) 100%);
}
.page-blog .blog-featured__placeholder-letter {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
}
.page-blog .blog-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-blog .blog-featured__link:hover .blog-featured__img {
  transform: scale(1.05);
}
.page-blog .blog-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  pointer-events: none;
}
.page-blog .blog-featured__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.page-blog .blog-featured__category {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: #f25d6b;
  border-radius: 999px;
}
.page-blog .blog-featured__date {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}
.page-blog .blog-featured__content {
  padding: 2.5rem 2rem 3rem;
}
@media (min-width: 48rem) {
  .page-blog .blog-featured__content {
    padding: 3rem 2.5rem 4rem;
  }
}
.page-blog .blog-featured__label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f25d6b;
}
.page-blog .blog-featured__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
  transition: color 0.25s ease;
}
.page-blog .blog-featured__link:hover .blog-featured__title {
  color: #f25d6b;
}
.page-blog .blog-featured__excerpt {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 52ch;
}
.page-blog .blog-featured__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #f25d6b;
}
.page-blog .blog-featured__arrow {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.page-blog .blog-featured__link:hover .blog-featured__arrow {
  transform: translateX(4px);
}
.page-blog .blog-list {
  padding-top: 5rem;
  padding-bottom: 6rem;
}
@media (min-width: 64rem) {
  .page-blog .blog-list {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
}
.page-blog .blog-list__header {
  margin-bottom: 3rem;
}
@media (min-width: 64rem) {
  .page-blog .blog-list__header {
    margin-bottom: 4rem;
  }
}
.page-blog .blog-list__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
}
.page-blog .blog-list__intro {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 48rem;
}
.page-blog .blog-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 48rem) {
  .page-blog .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64rem) {
  .page-blog .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}
.page-blog .blog-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.page-blog .blog-card:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.18);
}
.page-blog .blog-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.page-blog .blog-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}
.page-blog .blog-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(242, 93, 107, 0.2) 0%, rgba(242, 93, 107, 0.06) 100%);
}
.page-blog .blog-card__placeholder-letter {
  font-size: clamp(3rem, 12vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
}
.page-blog .blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover .page-blog .blog-card__img {
  transform: scale(1.08);
}
.page-blog .blog-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
  pointer-events: none;
}
.page-blog .blog-card__pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: #f25d6b;
  border-radius: 999px;
}
.page-blog .blog-card__content {
  padding: 1.5rem 1.5rem 2rem;
}
.page-blog .blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
}
.page-blog .blog-card__date {
  font-variant-numeric: tabular-nums;
}
.page-blog .blog-card__read::before {
  content: "·";
  margin-right: 0.75rem;
  font-weight: 700;
}
.page-blog .blog-card__title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #ffffff;
  transition: color 0.25s ease;
}
.blog-card__link:hover .page-blog .blog-card__title {
  color: #f25d6b;
}
.page-blog .blog-card__excerpt {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-blog .blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #f25d6b;
}
.page-blog .blog-card__arrow {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.blog-card__link:hover .page-blog .blog-card__arrow {
  transform: translateX(3px);
}
.page-blog .blog-cta {
  padding-top: 5rem;
  padding-bottom: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 64rem) {
  .page-blog .blog-cta {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
}
.page-blog .blog-cta__inner {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.page-blog .blog-cta__headline {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
}
.page-blog .blog-cta__text {
  margin: 0 0 2.5rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}
.page-blog .blog-cta__btn-wrap {
  margin: 0;
}
.page-blog .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.page-blog .nav-links a,
.page-blog .nav-links .current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.page-blog .nav-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #f25d6b;
}
.page-blog .nav-links .current {
  background: #f25d6b;
  border-color: #f25d6b;
  color: #fff;
}
.page-blog .no-results {
  padding: 5rem 0;
  text-align: center;
}
.page-blog .no-results .page-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #ffffff;
}
.page-blog .no-results .page-content {
  color: rgba(255, 255, 255, 0.75);
  max-width: 36rem;
  margin: 0 auto;
}
.page-blog .no-results .page-content a {
  color: #f25d6b;
  text-decoration: underline;
}

.single-post {
  padding-bottom: 6rem;
}
@media (min-width: 64rem) {
  .single-post {
    padding-bottom: 8rem;
  }
}
.single-post__article {
  padding-bottom: 0;
}
.single-post__hero {
  position: relative;
  padding-top: 0;
  padding-bottom: 4rem;
}
@media (min-width: 64rem) {
  .single-post__hero {
    padding-bottom: 5rem;
  }
}
.single-post__hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}
@media (min-width: 48rem) {
  .single-post__hero-media {
    aspect-ratio: 32/10;
  }
}
.single-post__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-post__hero-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(242, 93, 107, 0.22) 0%, rgba(242, 93, 107, 0.08) 100%);
}
.single-post__hero-placeholder-letter {
  font-size: clamp(4rem, 18vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
}
.single-post__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #1E3139 0%, transparent 40%, transparent 100%);
  pointer-events: none;
}
.single-post__hero-container {
  position: relative;
  margin-top: -4rem;
  padding-top: 0;
}
@media (min-width: 64rem) {
  .single-post__hero-container {
    margin-top: -5rem;
  }
}
.single-post__categories {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.single-post__categories a {
  color: #f25d6b;
  text-decoration: none;
}
.single-post__categories a:hover {
  text-decoration: underline;
}
.single-post__categories a + a::before {
  content: ", ";
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}
.single-post__title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff;
  max-width: 28ch;
}
.single-post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}
.single-post__date {
  font-variant-numeric: tabular-nums;
}
.single-post__author::before, .single-post__read::before {
  content: "·";
  margin-right: 0.75rem;
  font-weight: 700;
}
.single-post__body {
  padding-top: 3rem;
  padding-bottom: 4rem;
}
@media (min-width: 64rem) {
  .single-post__body {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}
.single-post__content-wrap {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.single-post__entry-content {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #ffffff;
}
.single-post__entry-content p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.75);
}
.single-post__entry-content h2 {
  margin: 3rem 0 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.single-post__entry-content h3 {
  margin: 2.5rem 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}
.single-post__entry-content ul,
.single-post__entry-content ol {
  margin: 0 0 1.5rem;
  padding-left: 2rem;
  color: rgba(255, 255, 255, 0.75);
}
.single-post__entry-content li {
  margin-bottom: 0.5rem;
}
.single-post__entry-content a {
  color: #f25d6b;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.single-post__entry-content a:hover {
  text-decoration: none;
}
.single-post__entry-content blockquote {
  margin: 2.5rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid #f25d6b;
  font-size: 1.125rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}
.single-post__entry-content img {
  border-radius: 12px;
  margin: 2rem 0;
}
.single-post__entry-content .page-links {
  margin-top: 2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}
.single-post__footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}
.single-post__terms {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.single-post__term-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}
.single-post__term-label {
  flex: 0 0 auto;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-right: 0.5rem;
}
.single-post__pill {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #fff;
  background: rgba(242, 93, 107, 0.9);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.single-post__pill:hover {
  background: #f25d6b;
  color: #fff;
  transform: translateY(-1px);
}
.single-post__pill--tag {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}
.single-post__pill--tag:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.single-post__edit {
  margin: 0 0 1.5rem;
  font-size: 0.8125rem;
}
.single-post__edit a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.single-post__edit a:hover {
  color: #f25d6b;
  text-decoration: underline;
}
.single-post__back {
  margin: 2.5rem 0 0;
}
.single-post__back-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
}
.single-post__back-link.btn {
  padding: 0.75rem 1.5rem;
}
.single-post .post-navigation {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.single-post .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.single-post .nav-previous a,
.single-post .nav-next a {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.single-post .nav-previous a:hover,
.single-post .nav-next a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #f25d6b;
}
.single-post .nav-next {
  text-align: right;
}
.single-post .single-post-nav__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.25rem;
}
.single-post .single-post-nav__title {
  font-weight: 600;
}
.single-post .comment-reply-title,
.single-post .comments-title {
  margin: 0 0 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}
.single-post .comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.single-post .comment-body {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
}
.single-post .comment-author {
  font-weight: 600;
  color: #ffffff;
}
.single-post .comment-meta {
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
}

.karriere__hero {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
@media (min-width: 64rem) {
  .karriere__hero {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
}
.karriere__hero-bg {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 55%;
  max-width: 420px;
  height: 70%;
  max-height: 360px;
  background: radial-gradient(ellipse at center, rgba(242, 93, 107, 0.2) 0%, rgba(242, 93, 107, 0.07) 50%, transparent 75%);
  pointer-events: none;
}
.karriere__hero-container {
  position: relative;
}
@media (min-width: 64rem) {
  .karriere__hero-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
  }
}
@media (min-width: 64rem) {
  .karriere__hero-content {
    max-width: 36rem;
  }
}
.karriere__hero-label {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f25d6b;
}
.karriere__title {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #ffffff;
  max-width: 14ch;
}
.karriere__intro {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 42rem;
}
.karriere__hero-media {
  display: none;
}
@media (min-width: 64rem) {
  .karriere__hero-media {
    display: block;
    flex-shrink: 0;
    width: 320px;
    max-width: 38%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
  }
}
.karriere__hero-video, .karriere__hero-img {
  width: 100%;
  height: auto;
  display: block;
}
.karriere__hero-video {
  aspect-ratio: 16/9;
  object-fit: cover;
}
.karriere__hero-img {
  aspect-ratio: 16/10;
  object-fit: cover;
}
.karriere__hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  color: #1E3139;
  pointer-events: none;
}
.karriere__hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}
.karriere__benefits {
  padding-top: 5rem;
  padding-bottom: 6rem;
}
@media (min-width: 64rem) {
  .karriere__benefits {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
}
.karriere__benefits-headline {
  margin: 0 0 3rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
  max-width: 20ch;
}
.karriere__benefits-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 48rem) {
  .karriere__benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 64rem) {
  .karriere__benefits-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.karriere__benefit-card {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  background: transparent;
  border: none;
  border-radius: 0;
  border-left: 2px solid rgba(242, 93, 107, 0.5);
  transition: border-color 0.25s ease, padding-left 0.25s ease;
}
.karriere__benefit-card:hover {
  border-left-color: #f25d6b;
  padding-left: 2.5rem;
}
.karriere__benefit-title {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #ffffff;
}
.karriere__benefit-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}
.karriere__jobs {
  padding-top: 4rem;
  padding-bottom: 6rem;
}
@media (min-width: 64rem) {
  .karriere__jobs {
    padding-top: 5rem;
    padding-bottom: 8rem;
  }
}
.karriere__jobs-headline {
  margin: 0 0 3rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
  max-width: 16ch;
}
.karriere__jobs-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.karriere__job-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2rem 2rem 2.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.karriere__job-card:hover {
  transform: translateX(8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(242, 93, 107, 0.4);
}
.karriere__job-content {
  flex: 1;
  min-width: 0;
}
.karriere__job-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.karriere__job-desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
}
.karriere__job-link {
  flex-shrink: 0;
}
.karriere__jobs-empty {
  margin: 0;
  padding: 2.5rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}
.karriere__culture {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.karriere__culture-inner {
  position: relative;
  min-height: 420px;
}
@media (min-width: 64rem) {
  .karriere__culture-inner {
    min-height: 520px;
  }
}
.karriere__culture-media {
  position: absolute;
  inset: 0;
}
.karriere__culture-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.karriere__culture-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #1E3139 0%, rgba(30, 49, 57, 0.92) 35%, rgba(30, 49, 57, 0.5) 70%, transparent 100%);
}
@media (min-width: 48rem) {
  .karriere__culture-overlay {
    background: linear-gradient(90deg, #1E3139 0%, rgba(30, 49, 57, 0.85) 45%, transparent 70%);
  }
}
.karriere__culture-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  padding: 5rem 1.5rem 5rem;
  max-width: 28rem;
}
@media (min-width: 64rem) {
  .karriere__culture-content {
    min-height: 520px;
    padding: 6rem 2.5rem 6rem 10%;
    max-width: 36rem;
  }
}
.karriere__culture-headline {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
  max-width: 14ch;
}
.karriere__culture-text {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}
.karriere__cta {
  padding-top: 5rem;
  padding-bottom: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 64rem) {
  .karriere__cta {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
}
.karriere__cta-inner {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.karriere__cta-headline {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
}
.karriere__cta-text {
  margin: 0 0 2.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}
.karriere__cta-wrap {
  margin: 0;
}

.preise__hero {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
@media (min-width: 64rem) {
  .preise__hero {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
}
.preise__hero-bg {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 55%;
  max-width: 420px;
  height: 70%;
  max-height: 360px;
  background: radial-gradient(ellipse at center, rgba(242, 93, 107, 0.2) 0%, rgba(242, 93, 107, 0.07) 50%, transparent 75%);
  pointer-events: none;
}
.preise__hero-container {
  position: relative;
}
@media (min-width: 64rem) {
  .preise__hero-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
  }
}
@media (min-width: 64rem) {
  .preise__hero-content {
    max-width: 36rem;
  }
}
.preise__hero-label {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f25d6b;
}
.preise__title {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #ffffff;
  max-width: 14ch;
}
.preise__intro {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 42rem;
}
.preise__hero-media {
  display: none;
}
@media (min-width: 64rem) {
  .preise__hero-media {
    display: block;
    flex-shrink: 0;
    width: 320px;
    max-width: 38%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
  }
}
.preise__hero-video, .preise__hero-img {
  width: 100%;
  height: auto;
  display: block;
}
.preise__hero-video {
  aspect-ratio: 16/9;
  object-fit: cover;
}
.preise__hero-img {
  aspect-ratio: 16/10;
  object-fit: cover;
}
.preise__hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  color: #1E3139;
  pointer-events: none;
}
.preise__hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}
.preise__pakete {
  padding-top: 5rem;
  padding-bottom: 6rem;
}
@media (min-width: 64rem) {
  .preise__pakete {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
}
.preise__pakete-headline {
  margin: 0 0 3rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
  max-width: 20ch;
}
.preise__pakete-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 48rem) {
  .preise__pakete-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64rem) {
  .preise__pakete-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
.preise__card {
  position: relative;
  padding: 2rem 1.5rem 2rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  border-left: 3px solid rgba(242, 93, 107, 0.5);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.preise__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
  border-left-color: #f25d6b;
  border-color: rgba(255, 255, 255, 0.18);
}
.preise__card--highlight {
  border-left-color: #f25d6b;
  border-color: rgba(242, 93, 107, 0.25);
  background: rgba(242, 93, 107, 0.06);
}
.preise__card--highlight:hover {
  border-color: rgba(242, 93, 107, 0.4);
  box-shadow: 0 24px 56px rgba(242, 93, 107, 0.15);
}
.preise__card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.preise__card-name {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
}
.preise__card-price {
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25em;
}
.preise__card-price-value {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f25d6b;
}
.preise__card-period {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}
.preise__card-desc {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  flex: 1;
}
.preise__card-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.preise__card-feature {
  font-size: 0.9375rem;
  line-height: 1.45;
  color: #ffffff;
  padding-left: 1.25em;
  position: relative;
}
.preise__card-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f25d6b;
}
.preise__card-cta {
  margin: 0;
  margin-top: auto;
}
.preise__cta {
  padding-top: 5rem;
  padding-bottom: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 64rem) {
  .preise__cta {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
}
.preise__cta-inner {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.preise__cta-headline {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
}
.preise__cta-text {
  margin: 0 0 2.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}
.preise__cta-wrap {
  margin: 0;
}

.stats-block {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 64rem) {
  .stats-block {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.stats-block__headline {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.stats-block__subline {
  margin: 0 0 3rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}
.stats-block__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 48rem) {
  .stats-block__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}
.stats-block__item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  border-top: 3px solid #f25d6b;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
}
.stats-block__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
  border-top-color: #f25d6b;
  border-color: rgba(242, 93, 107, 0.2);
}
.stats-block__number {
  margin: 0 0 0.5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.05em;
}
.stats-block__num-value {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #f25d6b;
  display: inline-block;
}
.stats-block__num-prefix {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #f25d6b;
  opacity: 0.9;
}
.stats-block__num-suffix {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #f25d6b;
  opacity: 0.95;
}
.stats-block__label {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.referenzen-block {
  padding-top: 5rem;
  padding-bottom: 6rem;
}
@media (min-width: 64rem) {
  .referenzen-block {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
}
.referenzen-block__header {
  margin-bottom: 2.5rem;
}
@media (min-width: 64rem) {
  .referenzen-block__header {
    margin-bottom: 3rem;
  }
}
.referenzen-block__headline {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
}
.referenzen-block__subline {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 64rem) {
  .referenzen-block.referenzen-block--carousel-section.is-referenzen-carousel {
    min-height: calc(var(--referenzen-section-height, 170) * 1vh);
    padding-bottom: 0;
  }
  .referenzen-block.referenzen-block--carousel-section.is-referenzen-carousel .referenzen-block__carousel-viewport {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .referenzen-block.referenzen-block--carousel-section.is-referenzen-carousel .referenzen-block__carousel-container {
    width: 100%;
    max-width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    display: flex;
    justify-content: center;
  }
  .referenzen-block.referenzen-block--carousel-section.is-referenzen-carousel .referenzen-block__carousel-track {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 3rem;
    width: max-content;
    will-change: transform;
    transform-origin: center center;
  }
  .referenzen-block.referenzen-block--carousel-section.is-referenzen-carousel .referenzen-block__card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .referenzen-block.referenzen-block--carousel-section.is-referenzen-carousel .referenzen-block__card:first-child {
    --referenzen-slide: clamp(0, (var(--referenzen-progress, 0) - var(--referenzen-slide-start, 0.5)) / (1 - var(--referenzen-slide-start, 0.5)), 1);
    transform: translateX(calc(var(--referenzen-slide) * -75vw));
  }
  .referenzen-block.referenzen-block--carousel-section.is-referenzen-carousel .referenzen-block__card:nth-child(2) {
    transform: scale(var(--referenzen-center-zoom, 1));
  }
  .referenzen-block.referenzen-block--carousel-section.is-referenzen-carousel .referenzen-block__card:last-child {
    --referenzen-slide: clamp(0, (var(--referenzen-progress, 0) - var(--referenzen-slide-start, 0.5)) / (1 - var(--referenzen-slide-start, 0.5)), 1);
    transform: translateX(calc(var(--referenzen-slide) * 75vw));
  }
  .referenzen-block.referenzen-block--carousel-section.is-referenzen-carousel .referenzen-block__card {
    flex: 0 0 320px;
    width: 320px;
    max-width: 320px;
  }
  .referenzen-block.referenzen-block--carousel-section.is-referenzen-carousel .referenzen-block__phone {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.referenzen-block__carousel-viewport {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 48rem) {
  .referenzen-block__carousel-viewport {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (min-width: 64rem) {
  .referenzen-block__carousel-viewport {
    padding-left: 0;
    padding-right: 0;
  }
}
.referenzen-block__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 48rem) {
  .referenzen-block__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64rem) {
  .referenzen-block__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}
.referenzen-block__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 1rem;
}
.referenzen-block__phone {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto 2.5rem;
  padding: 12px;
  background: linear-gradient(145deg, #2a2a2e 0%, #1a1a1e 100%);
  border-radius: 36px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45), 0 0 0 2px rgba(255, 255, 255, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 63.9375rem) {
  .referenzen-block__phone {
    max-width: min(260px, 72vw);
    padding: 10px;
    margin-bottom: 2rem;
    border-radius: 28px;
    transform: scale(calc(0.88 + 0.14 * var(--depth-progress, 0)));
    will-change: transform;
  }
}
@media (max-width: 63.9375rem) {
  .referenzen-block .referenzen-block__card.is-visible .referenzen-block__phone {
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 40px -8px rgba(242, 93, 107, 0.25);
  }
}
.referenzen-block__phone-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 9/19.5;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
}
@media (max-width: 63.9375rem) {
  .referenzen-block__phone-inner {
    border-radius: 20px;
  }
}
.referenzen-block__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.referenzen-block__media--video {
  object-fit: cover;
}
.referenzen-block__media--custom {
  object-fit: contain;
}
.referenzen-block__phone--custom-mockup .referenzen-block__phone-inner {
  background: transparent;
}
.referenzen-block__meta {
  max-width: 20rem;
  padding: 0.5rem 0.5rem 0.25rem;
  padding-top: 0.75rem;
  margin-left: auto;
  margin-right: auto;
}
.referenzen-block__title {
  margin: 0 0 0.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.referenzen-block__tagline {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.marquee-section {
  padding: 2rem 0;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 50%, rgba(255, 255, 255, 0.02) 100%);
}
.marquee-section::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(242, 93, 107, 0.25) 50%, transparent 100%);
  pointer-events: none;
}
.marquee-section__mask {
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #fff 8%, #fff 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #fff 8%, #fff 92%, transparent 100%);
}
.marquee-section__track {
  display: flex;
  width: max-content;
  animation: marquee-run 50s linear infinite;
  will-change: transform;
}
.marquee-section__row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  padding-right: 1rem;
}
.marquee-section__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  font-size: clamp(0.8125rem, 1.2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(242, 93, 107, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 0 0 rgba(242, 93, 107, 0);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.marquee-section__chip:hover {
  color: #fff;
  background: rgba(242, 93, 107, 0.12);
  border-color: rgba(242, 93, 107, 0.35);
  box-shadow: 0 0 24px rgba(242, 93, 107, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .marquee-section__track {
    animation: none;
  }
}
@keyframes marquee-run {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.process-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 64rem) {
  .process-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.process-section__headline {
  margin: 0 0 3rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
}
.process-section__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 48rem) {
  .process-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64rem) {
  .process-section__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}
.process-section__card {
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  border-top: 3px solid #f25d6b;
  transition: transform 0.3s ease, border-color 0.25s ease;
}
.process-section__card:hover {
  border-color: rgba(242, 93, 107, 0.3);
  transform: translateY(-4px);
}
.process-section__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #f25d6b;
  background: rgba(242, 93, 107, 0.15);
  border-radius: 50%;
}
.process-section__title {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.process-section__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.video-loop-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 64rem) {
  .video-loop-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.video-loop-section__headline {
  margin: 0 0 2.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
}
.video-loop-section__wrap {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}
.video-loop-section__frame {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
  transform-origin: center center;
  transform: scale(calc(0.88 + 0.2 * var(--depth-progress, 0)));
}
@media (max-width: 63.9375rem) {
  .video-loop-section__frame {
    transform: scale(calc(0.82 + 0.22 * var(--depth-progress, 0)));
  }
}
.video-loop-section__frame {
  will-change: transform;
}
.video-loop-section__video, .video-loop-section__image {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
.video-loop-section__placeholder-hint {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .video-loop-section__frame {
    transform: scale(1);
  }
}
.faq-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 64rem) {
  .faq-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.faq-section__inner {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.faq-section__headline {
  margin: 0 0 2.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
}
.faq-section__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-section__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.faq-section__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.faq-section__question {
  padding: 1.25rem 1rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.faq-section__question::-webkit-details-marker {
  display: none;
}
.faq-section__question::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin-left: 0.5em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  vertical-align: 0.2em;
}
.faq-section__item[open] .faq-section__question::after {
  transform: rotate(-135deg);
  vertical-align: 0.1em;
}
.faq-section__question:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #f25d6b;
}
.faq-section__answer {
  padding: 0 1rem 1.25rem;
}
.faq-section__answer p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(30, 49, 57, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.cookie-banner--dismissed {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cookie-banner__text {
  flex: 1 1 20rem;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.cookie-banner__link {
  color: #f25d6b;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__link:hover {
  color: #ffffff;
}
.cookie-banner__btn {
  white-space: nowrap;
}
@media (max-width: 48rem) {
  .cookie-banner {
    padding: 0.75rem 0;
  }
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-banner__actions {
    justify-content: center;
  }
}

/* --- Utilities (Scroll-Animationen etc.) --- */
.edit-page-bar {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9998;
}

.edit-page-bar__link {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background: #f25d6b;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.edit-page-bar__link:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 110;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.scroll-progress-bar__fill {
  display: block;
  height: 100%;
  width: calc(var(--scroll-percent, 0) * 1%);
  background: linear-gradient(90deg, #f25d6b, rgba(242, 93, 107, 0.85));
  border-radius: 0 2px 2px 0;
  transition: width 0.12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.depth-section {
  --depth-progress: 0;
  transform: scale(calc(0.98 + 0.02 * var(--depth-progress)));
  transition: none;
  will-change: transform;
}

.animate-in {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1.15s cubic-bezier(0.16, 1, 0.3, 1), transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-in--delay-1 {
  transition-delay: 0.1s;
}

.animate-in--delay-2 {
  transition-delay: 0.2s;
}

.animate-in--delay-3 {
  transition-delay: 0.3s;
}

.animate-in--delay-4 {
  transition-delay: 0.4s;
}

.animate-in--delay-5 {
  transition-delay: 0.5s;
}

.animate-in--delay-6 {
  transition-delay: 0.6s;
}

.animate-in--delay-7 {
  transition-delay: 0.7s;
}

.animate-in--delay-8 {
  transition-delay: 0.8s;
}

.animate-in--lift {
  opacity: 0;
  transform: translateY(64px);
  transition: opacity 1.5s cubic-bezier(0.33, 1, 0.68, 1), transform 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.animate-in--lift.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-in--image {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 1.25s cubic-bezier(0.33, 1, 0.68, 1), transform 1.25s cubic-bezier(0.33, 1, 0.68, 1);
}
.animate-in--image.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.animate-in--blur {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(20px);
  transition: opacity 1.5s cubic-bezier(0.33, 1, 0.68, 1), filter 1.5s cubic-bezier(0.33, 1, 0.68, 1), transform 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.animate-in--blur.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.depth-section.animate-in--blur {
  transform: scale(calc(0.98 + 0.02 * var(--depth-progress))) translateY(20px);
}
.depth-section.animate-in--blur.is-visible {
  transform: scale(calc(0.98 + 0.02 * var(--depth-progress))) translateY(0);
}

.depth-section.animate-in--blur[data-animate-once].is-visible {
  transform: scale(1) translateY(0);
}

.animate-in--scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 1.4s cubic-bezier(0.33, 1, 0.68, 1), transform 1.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.animate-in--scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.animate-in--from-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-in--from-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-in--from-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-in--from-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-in--pop {
  opacity: 0;
  transform: scale(0.88) translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1.2, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1.2, 0.36, 1);
}
.animate-in--pop.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.animate-in--skew {
  opacity: 0;
  transform: translateY(32px) skewX(-6deg);
  transition: opacity 0.75s cubic-bezier(0.22, 1.2, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1.2, 0.36, 1);
}
.animate-in--skew.is-visible {
  opacity: 1;
  transform: translateY(0) skewX(0);
}

.animate-in--diagonal {
  opacity: 0;
  transform: translate(36px, 36px);
  transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.animate-in--diagonal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.animate-in--flip {
  opacity: 0;
  transform: perspective(800px) rotateX(12deg) translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1.2, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1.2, 0.36, 1);
}
.animate-in--flip.is-visible {
  opacity: 1;
  transform: perspective(800px) rotateX(0) translateY(0);
}

.tilt-on-scroll {
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.animate-in--headline {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.15s cubic-bezier(0.16, 1, 0.3, 1), transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-in--headline.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-line {
  position: relative;
  display: inline-block;
}
.reveal-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2em;
  width: 0;
  height: 3px;
  background: #f25d6b;
  border-radius: 2px;
  transition: width 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.reveal-line.is-visible::after {
  width: 100%;
}

.animate-in--clip {
  opacity: 1;
  clip-path: inset(0 100% 0 0);
  transform: translateY(0);
  transition: clip-path 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-in--clip.is-visible {
  clip-path: inset(0 0 0 0);
}

.parallax {
  will-change: transform;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-progress {
  --scroll-progress: 0;
  opacity: var(--scroll-progress);
  transform: translateY(calc(36px * (1 - var(--scroll-progress)))) scale(calc(0.94 + 0.06 * var(--scroll-progress)));
  transition: none;
}

.scroll-progress--blur {
  filter: blur(calc(12px * (1 - var(--scroll-progress))));
}

.scroll-progress--headline {
  transform: translateY(calc(28px * (1 - var(--scroll-progress))));
  opacity: var(--scroll-progress);
}

.visual-reveal.scroll-progress {
  opacity: var(--scroll-progress);
  transform: translateY(calc(48px * (1 - var(--scroll-progress)))) scale(calc(0.82 + 0.2 * var(--scroll-progress)));
  filter: blur(calc(14px * (1 - var(--scroll-progress))));
  transition: none;
  transform-origin: center center;
}

.visual-reveal {
  overflow: visible;
  padding: 2%;
}

.visual-reveal .letter-reveal__img-wrap,
.visual-reveal .split-section__img-wrap,
.visual-reveal .content-marketing__img-wrap {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .animate-in,
  .animate-in--lift,
  .animate-in--image,
  .animate-in--blur,
  .animate-in--scale,
  .animate-in--from-right,
  .animate-in--from-left {
    transition-duration: 0.01s;
  }
  .animate-in--pop,
  .animate-in--skew,
  .animate-in--diagonal,
  .animate-in--flip {
    transition-duration: 0.01s;
    transform: none;
  }
  .tilt-on-scroll {
    transform: none;
  }
  .depth-section {
    transform: none;
    filter: none;
  }
  .depth-section.animate-in--blur {
    transform: none;
  }
  .scroll-progress,
  .scroll-progress--blur,
  .scroll-progress--headline {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .visual-reveal.scroll-progress {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .scroll-progress-bar__fill {
    transition: none;
  }
}
.error-404 {
  min-height: 50vh;
  display: flex;
  align-items: center;
}
.error-404__inner {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.error-404__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1rem;
  color: #ffffff;
}
.error-404__text {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
}
.error-404__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.error-404__actions .search-form {
  width: 100%;
  max-width: 20rem;
  display: flex;
  gap: 0.5rem;
}
.error-404__actions .search-form input[type=search],
.error-404__actions .search-form .search-field {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}
.error-404__actions .search-form input[type=search]::placeholder,
.error-404__actions .search-form .search-field::placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.error-404__home {
  margin: 0;
}

/* ----- Use-Case-Showcase (passwortgeschützt, Referenzen ohne Kunden-URLs) ----- */
.page-usecase--gate .page-usecase__gate-inner {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}
.page-usecase__gate-box {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.page-usecase__gate-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
  color: #ffffff;
}
.page-usecase__gate-intro {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}
.page-usecase__gate-error {
  color: var(--mediashark-accent, #f25d6b);
  margin-bottom: 1rem;
  font-weight: 600;
}
.page-usecase__gate-form .contact-form__label {
  display: block;
  text-align: left;
  margin-bottom: 0.5rem;
}
.page-usecase__gate-form .contact-form__input {
  width: 100%;
  margin-bottom: 1rem;
}
.page-usecase__submit-wrap {
  margin: 1rem 0 0;
}
.page-usecase__gate-hint {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}
.page-usecase__hero--glow .page-usecase__hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(var(--mediashark-accent-rgb, 242, 93, 107), 0.08), transparent);
}
.page-usecase__hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0;
}
.page-usecase__hero-inner {
  position: relative;
}
.page-usecase__title {
  margin-bottom: 0.5rem;
}
.page-usecase__intro {
  max-width: 52ch;
  margin-bottom: 0;
}
.page-usecase__grid {
  display: grid;
  gap: 2rem;
  padding: 2rem 0;
}
@media (min-width: 48rem) {
  .page-usecase__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (min-width: 64rem) {
  .page-usecase__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 2.5rem;
  }
}
.page-usecase__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.page-usecase__card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.page-usecase__card-media {
  position: relative;
  aspect-ratio: 16/10;
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.page-usecase__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-usecase__card-badge {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--mediashark-accent, #f25d6b);
  color: #fff;
  border-radius: 6px;
}
.page-usecase__card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
}
.page-usecase__card-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.page-usecase__card-meta {
  font-size: 0.875rem;
  margin: 0.25rem 0;
  color: rgba(255, 255, 255, 0.7);
}
.page-usecase__card-branch::before {
  content: "Branche: ";
  color: rgba(255, 255, 255, 0.5);
}
.page-usecase__card-service::before {
  content: "Leistung: ";
  color: rgba(255, 255, 255, 0.5);
}
.page-usecase__card-desc {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.75rem;
}
.page-usecase__card-gallery {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.page-usecase__card-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.page-usecase__empty {
  padding: 3rem 0;
  text-align: center;
}
.page-usecase__empty-text {
  color: rgba(255, 255, 255, 0.7);
  max-width: 36ch;
  margin: 0 auto;
}

/*# sourceMappingURL=style.css.map */
