:root {
  --bg: #ececec;
  --text: #ffffff;
  --dark: #111111;
  --muted: rgba(255, 255, 255, 0.78);
  --line: rgba(255, 255, 255, 0.7);
  --overlay: rgba(22, 26, 31, 0.5);
  --panel: rgba(20, 24, 30, 0.55);
  --content-max-width: 1750px;
  --page-gutter: max(22px, calc((100vw - var(--content-max-width)) / 2));
  --navigation-max-width: 1400px;
  --navigation-gutter: max(22px, calc((100vw - var(--navigation-max-width)) / 2));
  --body-bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #fafafa;
  --surface-strong: #121212;
  --copy: #343434;
  --copy-strong: #111111;
  --copy-inverse: rgba(255, 255, 255, 0.82);
  --border-soft: rgba(17, 17, 17, 0.08);
  --contact-panel: rgba(255, 255, 255, 0.06);
  --menu-bg: #ffffff;
  --menu-text: #111111;
  --theme-button-bg: rgba(255, 255, 255, 0.12);
  --theme-button-border: rgba(255, 255, 255, 0.2);
  --npb-bg: #0f1412;
  --npb-ticker-line: rgba(255, 255, 255, 0.12);
  --bubble-bg:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.32), transparent 34%),
    linear-gradient(135deg, rgba(189, 163, 255, 0.34) 0%, rgba(141, 84, 231, 0.28) 48%, rgba(109, 36, 199, 0.24) 100%);
  --speech-bubble-fill: rgba(142, 83, 230, 0.78);
  --speech-bubble-stroke: rgba(255, 255, 255, 0.56);
  --header-bar-bg: rgba(255, 255, 255, 0.96);
  --header-bar-fg: #111111;
  --header-bar-line: rgba(17, 17, 17, 0.12);
  --header-bar-field: rgba(17, 17, 17, 0.04);
  --desktop-nav-panel: rgba(5, 5, 5, 0.66);
  --desktop-nav-card-hover: color-mix(in srgb, var(--theme-accent) 22%, rgba(5, 5, 5, 0.68));
  --desktop-nav-pill: rgba(5, 5, 5, 0.52);
  --desktop-nav-pill-hover: linear-gradient(135deg, color-mix(in srgb, var(--theme-accent) 88%, #fff) 0%, var(--theme-accent) 100%);
  --desktop-nav-line: rgba(255, 255, 255, 0.28);
  --desktop-nav-copy: rgba(255, 255, 255, 0.78);
  /* One shared radius keeps every rounded component visually consistent. */
  --ci-radius: 30px;
  --media-radius: var(--ci-radius);
  --hero-min-height: clamp(520px, 72vh, 760px);
  --hero-copy-max-width: 980px;
  --hero-title-size: clamp(3.2rem, 5.4vw, 5.4rem);
  --section-title-size: clamp(2rem, 4vw, 4rem);
  --section-title-line-height: 0.98;
  --section-title-copy-gap: clamp(18px, 1.6vw, 26px);
  --section-spacing-y: clamp(56px, 8vw, 118px);
  --section-gap-y: clamp(160px, 18vw, 320px);
  --hero-followup-gap-y: var(--section-spacing-y);
  --hero-title-line-height: 0.96;
  --hero-kicker-size: 0.95rem;
  --hero-body-size: 1.08rem;
  --body-letter-spacing: 0.01em;
  --heading-letter-spacing: 0.01em;
  --hero-padding-top: 168px;
  --hero-padding-bottom: 72px;
  --hero-overlay: linear-gradient(90deg, rgba(6, 8, 14, 0.84) 0%, rgba(6, 8, 14, 0.62) 46%, rgba(6, 8, 14, 0.26) 100%);
  --accent-index: #50148F;
  --accent-brand: #AC8412;
  --accent-digital: #466493;
  --accent-journal: #ff00cc;
  --accent-aktuell: #47745d;
  --accent-kontakt: #F85112;
  --accent-led: #2f8d58;
  --accent-advertising: #00AFBC;
  --accent-leistungen: #0117D8;
  --accent-media: #8EC7A7;
  --accent-rechtliches: #526f8f;
  --accent-team: #AC8412;
  --accent-referenzen: #BF3A1F;
  --theme-accent: var(--accent-brand);
  --theme-accent-soft: color-mix(in srgb, var(--theme-accent) 14%, transparent);
  --theme-accent-muted: color-mix(in srgb, var(--theme-accent) 42%, transparent);
  --theme-accent-strong: color-mix(in srgb, var(--theme-accent) 72%, #000);
}


@media (min-width: 1180px) {
  :root {
    --page-gutter: max(clamp(64px, 8vw, 120px), calc((100vw - var(--content-max-width)) / 2));
    --navigation-gutter: max(clamp(64px, 8vw, 120px), calc((100vw - var(--navigation-max-width)) / 2));
  }
}

body.theme-dark {
  --body-bg: #101114;
  --surface: #101114;
  --surface-soft: #1d2025;
  --surface-strong: #08090c;
  --copy: rgba(255, 255, 255, 0.78);
  --copy-strong: #ffffff;
  --copy-inverse: rgba(255, 255, 255, 0.82);
  --border-soft: rgba(255, 255, 255, 0.08);
  --contact-panel: #101114;
  --menu-bg: #111317;
  --menu-text: #ffffff;
  --theme-button-bg: rgba(255, 255, 255, 0.08);
  --theme-button-border: rgba(255, 255, 255, 0.14);
  --npb-bg: #07090c;
  --npb-ticker-line: rgba(255, 255, 255, 0.08);
  --bubble-bg:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(189, 163, 255, 0.28) 0%, rgba(141, 84, 231, 0.24) 48%, rgba(109, 36, 199, 0.22) 100%);
  --speech-bubble-fill: rgba(92, 49, 154, 0.8);
  --speech-bubble-stroke: rgba(255, 255, 255, 0.28);
  --header-bar-bg: rgba(17, 19, 23, 0.96);
  --header-bar-fg: #ffffff;
  --header-bar-line: rgba(255, 255, 255, 0.1);
  --header-bar-field: rgba(255, 255, 255, 0.06);
  --desktop-nav-panel: rgba(5, 5, 5, 0.66);
  --desktop-nav-card: rgba(5, 5, 5, 0.52);
  --desktop-nav-card-hover: color-mix(in srgb, var(--theme-accent) 22%, rgba(5, 5, 5, 0.68));
  --desktop-nav-pill: rgba(5, 5, 5, 0.52);
  --desktop-nav-pill-hover: linear-gradient(135deg, color-mix(in srgb, var(--theme-accent) 88%, #fff) 0%, var(--theme-accent) 100%);
  --desktop-nav-line: rgba(255, 255, 255, 0.24);
  --desktop-nav-copy: rgba(255, 255, 255, 0.78);
  --media-radius: var(--ci-radius);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
 * Keep the visual language borderless: surfaces are defined by their full
 * background fill and existing radius. Contact forms remain the sole
 * exception so their fields keep the affordance users need when entering
 * information.
 */
body :not(.contact-form, .contact-form *, .global-cta-form, .global-cta-form *),
body :not(.contact-form, .contact-form *, .global-cta-form, .global-cta-form *)::before,
body :not(.contact-form, .contact-form *, .global-cta-form, .global-cta-form *)::after {
  border: none !important;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: var(--body-bg);
  color: var(--copy-strong);
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  letter-spacing: var(--body-letter-spacing);
  transition:
    background-color 0.35s ease,
    color 0.35s ease;
}

/* Give display type extra room as well, including headings with local tracking. */
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  letter-spacing: var(--heading-letter-spacing) !important;
}

body.menu-page {
  min-height: 100vh;
  background: var(--menu-bg);
  color: var(--menu-text);
}


body.home-page,
.theme-index {
  --theme-accent: var(--accent-index);
  --theme-accent-soft: color-mix(in srgb, var(--theme-accent) 14%, transparent);
  --theme-accent-muted: color-mix(in srgb, var(--theme-accent) 42%, transparent);
  --theme-accent-strong: color-mix(in srgb, var(--theme-accent) 72%, #000);
}

body.about-page {
  --theme-accent: var(--accent-brand);
  --theme-accent-soft: color-mix(in srgb, var(--theme-accent) 14%, transparent);
  --theme-accent-muted: color-mix(in srgb, var(--theme-accent) 42%, transparent);
  --theme-accent-strong: color-mix(in srgb, var(--theme-accent) 72%, #000);
}

body.team-page {
  --theme-accent: var(--accent-team);
  --theme-accent-soft: color-mix(in srgb, var(--theme-accent) 14%, transparent);
  --theme-accent-muted: color-mix(in srgb, var(--theme-accent) 42%, transparent);
  --theme-accent-strong: color-mix(in srgb, var(--theme-accent) 72%, #000);
}

button,
input {
  font: inherit;
}

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

a:hover,
a:focus-visible {
  text-decoration: none;
}

.site-frame {
  min-height: 100vh;
  padding: 0;
}

.hero-page {
  position: relative;
  min-height: 100vh;
  border-radius: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(93, 16, 171, 0.46), transparent 26%),
    radial-gradient(circle at 26% 64%, rgba(45, 24, 196, 0.28), transparent 24%),
    linear-gradient(rgba(8, 6, 18, 0.82), rgba(8, 6, 18, 0.9)),
    url("../../images/hero/Brand.jpg") center center / cover no-repeat;
  transition: background-image 0.25s ease;
}

.hero-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 36%, transparent 72%, rgba(0, 0, 0, 0.22));
  opacity: 1;
}

.site-header {
  --desktop-subnav-top: calc(28px + clamp(74px, 8.6vw, 104px) + 10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px var(--navigation-gutter) 0;
  transition:
    padding 0.4s ease,
    color 0.35s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  opacity: 0;
  transform: translateY(-100%);
  transition:
    transform 0.4s ease,
    opacity 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

body.is-scrolled .site-header {
  --desktop-subnav-top: calc(14px + 52px + 14px + 10px);
  padding: 14px var(--page-gutter);
}

body.is-scrolled .site-header::before {
  opacity: 1;
  transform: translateY(0);
  background: var(--header-bar-bg);
  border-bottom-color: var(--header-bar-line);
}

.brand-lockup {
  display: flex;
  align-items: center;
  color: var(--text);
  width: clamp(260px, 26vw, 430px);
  height: clamp(74px, 8.6vw, 104px);
  flex: 0 0 auto;
  transition:
    width 0.42s ease,
    height 0.42s ease,
    transform 0.42s ease,
    color 0.35s ease;
}

.desktop-nav {
  position: absolute;
  left: var(--navigation-gutter);
  right: var(--navigation-gutter);
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  width: max-content;
  margin-inline: auto;
  padding-top: 8px;
  color: var(--text);
  transition:
    left 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    right 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.35s ease,
    transform 0.35s ease;
}

body:not(.is-scrolled) .brand-lockup {
  transform: translateY(-10px);
}

body.is-scrolled .desktop-nav {
  color: var(--header-bar-fg);
}

body.is-scrolled .desktop-subnav-panel {
  width: min(var(--content-max-width), calc(100vw - (var(--page-gutter) * 2)));
}

.desktop-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
}

/* Keep the compact header unchanged, while giving the full-size logo and
   primary navigation their own, uncluttered areas before the page is scrolled. */
body:not(.is-scrolled) .desktop-nav {
  left: calc(var(--navigation-gutter) + clamp(110px, 10vw, 200px));
}

.desktop-nav-item-home {
  max-width: 110px;
  overflow: hidden;
  opacity: 1;
  transform: translateX(0);
  transition:
    max-width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    margin-right 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

body:not(.is-scrolled) .desktop-nav-item-home {
  max-width: 0;
  margin-right: -14px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-18px);
}

.desktop-nav-item {
  position: relative;
}

.desktop-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: var(--ci-radius);
  font: inherit;
  font-size: clamp(1.05rem, 0.9vw, 1.18rem);
  font-weight: 800;
  line-height: 1;
  color: inherit;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.desktop-nav-link:hover,
.desktop-nav-link:focus-visible {
  text-decoration: none;
}

.desktop-nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  border-radius: var(--ci-radius);
  background: currentColor;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.desktop-nav-item-has-children > .desktop-nav-link {
  border: 1px solid transparent;
  background: transparent;
}

.desktop-nav-item:hover > .desktop-nav-link {
  border-color: transparent;
  background: transparent;
  transform: translateY(-3px);
}

.desktop-nav-item:hover > .desktop-nav-link::after,
.desktop-nav-link[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.desktop-subnav-panel {
  position: fixed;
  top: var(--desktop-subnav-top);
  left: 50vw;
  width: min(var(--navigation-max-width), calc(100vw - (var(--navigation-gutter) * 2)));
  padding: 12px 20px 20px;
  border-radius: var(--media-radius);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--desktop-nav-panel);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.desktop-nav-item-has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 96px;
}

.desktop-subnav-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -88px;
  height: 88px;
  pointer-events: none;
}

.desktop-nav-item:hover .desktop-subnav-panel,
.desktop-nav-item:focus-within .desktop-subnav-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

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

.desktop-subnav-grid.columns-1 {
  grid-template-columns: minmax(320px, 440px);
  justify-content: start;
}

.desktop-subnav-grid.columns-2 {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.desktop-subnav-group {
  min-height: 100%;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--media-radius);
  background: rgba(5, 5, 5, 0.46);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}


.desktop-subnav-group-featured {
  transform: scale(1.02);
}

.desktop-subnav-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: var(--ci-radius);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  transition:
    background 0.25s ease,
    color 0.25s ease;
  font-size: clamp(1rem, 0.9vw, 1.15rem);
  font-weight: 800;
}

.desktop-subnav-pill:hover,
.desktop-subnav-pill:focus-visible {
  background: linear-gradient(135deg, color-mix(in srgb, var(--desktop-subnav-group-accent, var(--theme-accent)) 88%, #fff) 0%, var(--desktop-subnav-group-accent, var(--theme-accent)) 100%);
}

.desktop-subnav-pill:hover,
.desktop-subnav-pill:focus-visible {
  text-decoration: none;
}

.desktop-subnav-pill-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.send-arrow {
  width: 1.45em;
  height: 1.45em;
  display: inline-block;
  flex: 0 0 auto;
  color: #ffffff !important;
  background-color: currentColor;
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2062%2057'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M3%2026.5L58.5%203L43%2053.5L29.5%2035.5L3%2026.5Z'%20fill='none'%20stroke='white'%20stroke-width='4.5'%20stroke-linejoin='round'/%3E%3Cpath%20d='M29.5%2035.5L58.5%203'%20fill='none'%20stroke='white'%20stroke-width='4.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask:
    url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2062%2057'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M3%2026.5L58.5%203L43%2053.5L29.5%2035.5L3%2026.5Z'%20fill='none'%20stroke='white'%20stroke-width='4.5'%20stroke-linejoin='round'/%3E%3Cpath%20d='M29.5%2035.5L58.5%203'%20fill='none'%20stroke='white'%20stroke-width='4.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
  /* Keep the icon optically centred until the link is hovered. */
  transform: translate(0, 2px);
  transition: transform 0.25s ease;
}

a:hover .send-arrow,
a:focus-visible .send-arrow,
button:hover .send-arrow,
button:focus-visible .send-arrow,
.project-card:hover .send-arrow,
.project-card:focus-within .send-arrow {
  transform: translate(4px, -2px);
}


.nav-cta-arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  color: #ffffff !important;
  font-size: 0.82em;
  line-height: 1;
  opacity: 1;
  transform: translateY(-0.03em);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

a:hover .nav-cta-arrow,
a:focus-visible .nav-cta-arrow,
button:hover .nav-cta-arrow,
button:focus-visible .nav-cta-arrow {
  opacity: 1;
  transform: translate(6px, -0.03em);
}

.hero-cta-primary .send-arrow {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 0;
  font-size: 1rem;
}

.desktop-subnav-links {
  display: grid;
  margin-top: 18px;
}

.desktop-subnav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 0;
  border: 0;
  color: var(--desktop-nav-copy);
  font-size: clamp(1.12rem, 1vw, 1.25rem);
  font-weight: 700;
  transition: color 0.25s ease, transform 0.25s ease;
}

.desktop-subnav-link + .desktop-subnav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 1px;
  background: var(--desktop-nav-line);
  pointer-events: none;
}

.desktop-subnav-link:not(.is-disabled):hover,
.desktop-subnav-link[aria-current="page"] {
  color: #ffffff;
  text-decoration: none;
  transform: translateX(6px);
}

.desktop-subnav-link.is-disabled,
.menu-link.is-disabled {
  cursor: default;
  pointer-events: none;
  user-select: none;
}

.desktop-subnav-link.is-disabled {
  opacity: 0.52;
  transform: none;
}

.menu-link.is-disabled {
  opacity: 0.42;
}

.desktop-subnav-group:hover,
.desktop-subnav-group:focus-within {
  background: color-mix(in srgb, var(--desktop-subnav-group-accent, var(--theme-accent)) 24%, rgba(5, 5, 5, 0.72));
  border-color: color-mix(in srgb, var(--desktop-subnav-group-accent, var(--theme-accent)) 58%, rgba(255, 255, 255, 0.16));
}

.desktop-subnav-group:hover .desktop-subnav-pill,
.desktop-subnav-group:focus-within .desktop-subnav-pill {
  background: linear-gradient(135deg, var(--desktop-subnav-group-accent, var(--theme-accent)) 0%, color-mix(in srgb, var(--desktop-subnav-group-accent, var(--theme-accent)) 72%, #000) 100%);
}

.desktop-nav-item-theme-leistungen:has(.desktop-subnav-group-theme-media:hover, .desktop-subnav-group-theme-media:focus-within) > .desktop-nav-link {
  color: var(--accent-media);
}

.desktop-nav-item-theme-leistungen:has(.desktop-subnav-group-theme-digital:hover, .desktop-subnav-group-theme-digital:focus-within) > .desktop-nav-link {
  color: var(--accent-digital);
}

.desktop-nav-item-theme-leistungen:has(.desktop-subnav-group-theme-advertising:hover, .desktop-subnav-group-theme-advertising:focus-within) > .desktop-nav-link {
  color: var(--accent-advertising);
}

.desktop-nav-item-theme-referenzen:has(.desktop-subnav-group-theme-referenzen:hover, .desktop-subnav-group-theme-referenzen:focus-within) > .desktop-nav-link {
  color: var(--accent-referenzen);
}

.desktop-nav-item-theme-referenzen:has(.desktop-subnav-group-theme-journal:hover, .desktop-subnav-group-theme-journal:focus-within) > .desktop-nav-link {
  color: var(--accent-journal);
}

.desktop-subnav-group-theme-media {
  --desktop-subnav-group-accent: var(--accent-media);
}

.desktop-subnav-group-theme-digital {
  --desktop-subnav-group-accent: var(--accent-digital);
}

.desktop-subnav-group-theme-kontakt {
  --desktop-subnav-group-accent: var(--accent-kontakt);
}

.desktop-subnav-group-theme-advertising {
  --desktop-subnav-group-accent: var(--accent-advertising);
}

.desktop-subnav-group-theme-referenzen {
  --desktop-subnav-group-accent: var(--accent-referenzen);
}

.desktop-subnav-group-theme-journal {
  --desktop-subnav-group-accent: var(--accent-journal);
}

.desktop-nav-item-theme-leistungen:hover > .desktop-nav-link,
.desktop-nav-item-theme-leistungen:focus-within > .desktop-nav-link {
  border-color: transparent;
  background: transparent;
}

.desktop-subnav-panel-theme-leistungen {
  --desktop-nav-panel: rgba(5, 5, 5, 0.66);
  --desktop-nav-card-hover: rgba(88, 158, 255, 0.18);
  --desktop-nav-pill: rgba(88, 158, 255, 0.16);
  --desktop-nav-pill-hover: linear-gradient(135deg, #4da3ff 0%, #1258ca 100%);
  --desktop-nav-line: rgba(133, 187, 255, 0.34);
  --desktop-nav-copy: rgba(214, 232, 255, 0.82);
}

.desktop-subnav-panel-theme-leistungen .desktop-subnav-group,
.desktop-subnav-panel-theme-referenzen .desktop-subnav-group {
  background: rgba(5, 5, 5, 0.46);
  border-color: rgba(255, 255, 255, 0.12);
}

.desktop-subnav-panel-theme-leistungen .desktop-subnav-group:hover,
.desktop-subnav-panel-theme-leistungen .desktop-subnav-group:focus-within,
.desktop-subnav-panel-theme-referenzen .desktop-subnav-group:hover,
.desktop-subnav-panel-theme-referenzen .desktop-subnav-group:focus-within {
  background: color-mix(in srgb, var(--desktop-subnav-group-accent, var(--theme-accent)) 24%, rgba(5, 5, 5, 0.72));
  border-color: color-mix(in srgb, var(--desktop-subnav-group-accent, var(--theme-accent)) 52%, rgba(255, 255, 255, 0.2));
}

.desktop-nav-item-theme-referenzen:hover > .desktop-nav-link,
.desktop-nav-item-theme-referenzen:focus-within > .desktop-nav-link {
  border-color: transparent;
  background: transparent;
}

.desktop-subnav-panel-theme-referenzen {
  --desktop-nav-panel: rgba(5, 5, 5, 0.66);
  --desktop-nav-card-hover: color-mix(in srgb, var(--accent-referenzen) 24%, rgba(255, 255, 255, 0.08));
  --desktop-nav-pill: color-mix(in srgb, var(--accent-referenzen) 18%, rgba(255, 255, 255, 0.08));
  --desktop-nav-pill-hover: linear-gradient(135deg, var(--accent-referenzen) 0%, color-mix(in srgb, var(--accent-referenzen) 72%, #000) 100%);
  --desktop-nav-line: rgba(255, 255, 255, 0.28);
  --desktop-nav-copy: rgba(255, 255, 255, 0.82);
}

.desktop-nav-item-theme-crowdsuit > .desktop-nav-link {
  border-color: transparent;
  background: transparent;
}

.desktop-nav-item-theme-crowdsuit:hover > .desktop-nav-link,
.desktop-nav-item-theme-crowdsuit:focus-within > .desktop-nav-link {
  border-color: transparent;
  background: transparent;
}

.desktop-subnav-panel-theme-crowdsuit {
  background: rgba(26, 29, 0, 0.62);
}

.desktop-subnav-panel-theme-crowdsuit .desktop-subnav-group {
  background: rgba(239, 255, 105, 0.1);
}

.desktop-subnav-panel-theme-crowdsuit .desktop-subnav-group:hover,
.desktop-subnav-panel-theme-crowdsuit .desktop-subnav-group:focus-within {
  background: rgba(239, 255, 105, 0.16);
}

.desktop-subnav-panel-theme-crowdsuit .desktop-subnav-group-featured {
  background: rgba(239, 255, 105, 0.08);
}

.desktop-subnav-panel-theme-crowdsuit .desktop-subnav-group-featured:hover,
.desktop-subnav-panel-theme-crowdsuit .desktop-subnav-group-featured:focus-within {
  background: rgba(202, 215, 67, 0.74);
}

.desktop-subnav-panel-theme-crowdsuit .desktop-subnav-pill {
  background: rgba(239, 255, 105, 0.12);
  color: #efff69;
}

.desktop-subnav-panel-theme-crowdsuit .desktop-subnav-pill:hover,
.desktop-subnav-panel-theme-crowdsuit .desktop-subnav-pill:focus-visible {
  background: #efff69;
  color: #050505;
}

.desktop-subnav-panel-theme-crowdsuit .desktop-subnav-pill-icon {
  color: #ffffff;
}

.desktop-subnav-panel-theme-crowdsuit .desktop-subnav-pill:hover .desktop-subnav-pill-icon,
.desktop-subnav-panel-theme-crowdsuit .desktop-subnav-pill:focus-visible .desktop-subnav-pill-icon {
  color: #ffffff;
}

.desktop-subnav-panel-theme-crowdsuit .desktop-subnav-link {
  border-bottom-color: rgba(208, 219, 84, 0.34);
  color: rgba(239, 255, 105, 0.62);
}

.desktop-subnav-panel-theme-crowdsuit .desktop-subnav-group-featured .desktop-subnav-link {
  border-bottom-color: rgba(208, 219, 84, 0.34);
  color: rgba(239, 255, 105, 0.62);
}

.desktop-subnav-panel-theme-crowdsuit .desktop-subnav-group-featured:hover .desktop-subnav-link,
.desktop-subnav-panel-theme-crowdsuit .desktop-subnav-group-featured:focus-within .desktop-subnav-link {
  border-bottom-color: rgba(5, 5, 5, 0.28);
  color: rgba(5, 5, 5, 0.62);
}

.desktop-subnav-panel-theme-crowdsuit .desktop-subnav-link:not(.is-disabled):hover,
.desktop-subnav-panel-theme-crowdsuit .desktop-subnav-link[aria-current="page"] {
  color: #efff69;
}

.desktop-subnav-panel-theme-crowdsuit .desktop-subnav-group-featured .desktop-subnav-link:not(.is-disabled):hover,
.desktop-subnav-panel-theme-crowdsuit .desktop-subnav-group-featured .desktop-subnav-link[aria-current="page"] {
  color: #050505;
}

body.is-scrolled .brand-lockup {
  width: clamp(160px, 13vw, 210px);
  height: 52px;
  color: var(--header-bar-fg);
}

.brand-logo-stack {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.brand-logo {
  position: absolute;
  inset: 0 auto auto 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transform-origin: left center;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    filter 0.35s ease;
}

.brand-logo-primary {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.brand-logo-alt {
  width: 84px;
  opacity: 0;
  transform: translateY(12px) scale(0.68) rotate(-8deg);
}

body.is-scrolled .brand-logo-primary {
  opacity: 0;
  transform: translateY(-18px) scale(0.74);
}

body.is-scrolled .brand-logo-alt {
  width: 100%;
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
  filter: invert(1);
}

body.theme-dark.is-scrolled .brand-logo-alt {
  filter: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  transition: color 0.35s ease;
}

body.is-scrolled .header-actions {
  color: var(--header-bar-fg);
}

.search-shell {
  width: 128px;
  height: 26px;
  display: flex;
  align-items: center;
  padding: 0 9px;
  border: 1.5px solid var(--line);
  border-radius: var(--ci-radius);
  background: rgba(16, 18, 22, 0.16);
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
}

.search-shell input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 0.78rem;
}

.search-shell input::placeholder {
  color: var(--muted);
}

body.is-scrolled .search-shell {
  border-color: var(--header-bar-line);
  background: var(--header-bar-field);
}

body.is-scrolled .search-shell input {
  color: var(--header-bar-fg);
}

body.is-scrolled .search-shell input::placeholder {
  color: color-mix(in srgb, var(--header-bar-fg) 54%, transparent);
}

.search-jump-highlight {
  display: inline;
  border-radius: var(--ci-radius);
  padding: 0.04em 0.18em;
  background: linear-gradient(120deg, #ffde59, #ff7a59);
  color: #121212;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.search-no-match {
  animation: search-no-match-shake 0.28s ease-in-out;
}

@keyframes search-no-match-shake {
  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-4px);
  }

  75% {
    transform: translateX(4px);
  }
}

.icon-button {
  width: 26px;
  height: 26px;
  border: 1px solid transparent;
  border-radius: var(--ci-radius);
  display: grid;
  place-items: center;
  background: var(--theme-button-bg);
  color: var(--text);
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.icon-button:hover {
  border-color: var(--theme-button-border);
}

body.is-scrolled .icon-button {
  color: var(--header-bar-fg);
  background: var(--header-bar-field);
}

body.is-scrolled .icon-button:hover {
  border-color: var(--header-bar-line);
}

.theme-toggle {
  position: relative;
  overflow: hidden;
}

.theme-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.theme-icon-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-icon-moon {
  opacity: 0;
  transform: rotate(90deg) scale(0.25);
}

body.theme-dark .theme-icon-sun {
  opacity: 0;
  transform: rotate(-90deg) scale(0.25);
}

body.theme-dark .theme-icon-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.menu-button {
  position: relative;
}

.menu-button span {
  position: absolute;
  width: 10px;
  height: 1.5px;
  background: currentColor;
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  padding: 170px var(--page-gutter) 42px;
}

.hero-content {
  max-width: 1140px;
  color: var(--text);
  margin: auto 0 clamp(70px, 10vh, 130px);
}

.hero h1 {
    font-size: clamp(5rem, 8vw, 9rem);
    line-height: 0.88;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    font-weight: 800;
}

.hero h1 > span {
    display: block;
}

.hero .hero-slogan-heading {
  margin: 0;
  max-width: min(100%, 960px);
}

.hero-slogan-image {
  display: block;
  width: min(100%, 960px);
  height: auto;
}

@media (max-width: 1180px) {
  .hero .hero-slogan-heading,
  .hero-slogan-image {
    width: min(76vw, 720px);
  }
}


.hero-outline {
  position: relative;
  display: inline-block;
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
  z-index: 1;
}

.hero-outline::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 7px #fff;
  text-stroke: 7px #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: clamp(34px, 5vw, 70px);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 68px;
  padding: 0 26px;
  border-radius: var(--ci-radius);
  font-size: 1.05rem;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
}

.hero-cta-primary {
  background: linear-gradient(135deg, var(--theme-accent) 0%, var(--theme-accent-strong) 100%);
  color: #ffffff;
}

.hero-cta-primary span {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--ci-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}

.hero-cta-secondary {
  border: 2px solid rgba(255, 255, 255, 0.88);
  color: #ffffff;
  background: transparent;
}

/* Glassmorphism hero CTAs on the homepage */
.home-page .hero-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
  color: #ffffff;
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);
}

.home-page .hero-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.32), transparent 38%, rgba(255, 255, 255, 0.1));
  opacity: 0.82;
}

.home-page .hero-cta > * {
  position: relative;
  z-index: 1;
}

.home-page .hero-cta-primary {
  background: var(--theme-accent);
  border-color: rgba(210, 184, 255, 0.48);
}

.home-page .hero-cta-secondary {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.42);
}

.home-page .hero-cta:hover {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.62);
}

.home-page .hero-cta-primary:hover {
  background: var(--theme-accent);
}

.hero-footer-nav {
  width: min(960px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
  text-align: center;
}

.hero-footer-nav a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 32px;
  padding: 4px 8px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}

.hero-footer-nav a:hover,
.hero-footer-nav a:focus-visible {
  color: #d2b8ff;
}

.hero-footer-nav a span {
  color: inherit;
  margin-inline: 0.28em;
  transition: color 0.25s ease;
}

.hero-footer-nav a:hover span,
.hero-footer-nav a:focus-visible span {
  color: #d2b8ff;
}

.hero-footer-nav a:not(:last-child)::after {
  content: none;
}

.about-hero {
  position: relative;
  min-height: var(--hero-min-height);
  display: flex;
  align-items: flex-end;
  padding: var(--hero-padding-top) 0 var(--hero-padding-bottom);
  background:
    var(--hero-overlay),
    url("../../images/hero/team.jpg") center center / cover no-repeat;
  color: #ffffff;
}

.about-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
}

.about-hero-shell {
  position: relative;
  z-index: 1;
  width: min(var(--hero-copy-max-width), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 var(--page-gutter);
  display: grid;
  align-content: start;
  justify-items: start;
}

.about-hero-kicker,
.about-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: #0117D8;
  font-size: var(--hero-kicker-size);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.about-hero-kicker {
  color: #ffffff;
}

.about-hero-shell h1 {
  margin: 0;
  max-width: 11ch;
  font-size: var(--hero-title-size);
  line-height: var(--hero-title-line-height);
  text-transform: uppercase;
}

.about-page .about-hero {
  min-height: var(--hero-min-height);
  padding: var(--hero-padding-top) 0 var(--hero-padding-bottom);
}

.about-page .about-hero-shell h1 {
  max-width: 11ch;
  font-size: var(--hero-title-size);
}

.team-page .about-hero {
  min-height: var(--hero-min-height);
  padding: var(--hero-padding-top) 0 var(--hero-padding-bottom);
}

.team-page .about-hero-shell h1 {
  max-width: 11ch;
}

.about-intro {
  padding-top: 50px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.98fr);
  gap: 44px;
  align-items: center;
}

.about-story-copy h2,
.about-section-head h2 {
  margin: 0 0 22px;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line-height);
}

.about-story-copy p,
.about-process-step p,
.about-strength-card p {
  margin: 0 0 18px;
  color: var(--copy);
  line-height: 1.65;
}

.about-story-media img {
  width: 100%;
  display: block;
  border-radius: var(--media-radius);
  object-fit: cover;
}

.about-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-metric {
  min-width: 118px;
  padding: 16px 14px;
  border: 2px solid #0117D8;
  border-radius: var(--media-radius);
}

.about-metric strong {
  display: block;
  margin-bottom: 6px;
  color: #0117D8;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.about-metric span {
  display: block;
  color: var(--copy);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.about-section-head {
  margin-bottom: 28px;
}

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

.about-strength-card {
  padding: 28px 26px;
  border-radius: var(--media-radius);
  background: #030303;
  color: #ffffff;
}

.about-strength-card i {
  display: inline-flex;
  margin-bottom: 18px;
  color: #0117D8;
  font-size: 1.55rem;
}

.about-strength-card h3 {
  margin: 0 0 16px;
  font-size: 1.45rem;
}

.about-strength-card p {
  color: rgba(255, 255, 255, 0.74);
}

.about-process {
  --about-process-gap: 32px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--about-process-gap);
  padding-top: 54px;
}

.about-process-line {
  position: absolute;
  top: 24px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(17, 17, 17, 0.32);
}

.about-process-step {
  position: relative;
  text-align: center;
}

.about-process-number {
  position: absolute;
  top: -54px;
  left: 50%;
  width: 34px;
  height: 34px;
  margin-left: -17px;
  border-radius: var(--ci-radius);
  display: grid;
  place-items: center;
  background: #050505;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.about-process-step i {
  display: inline-flex;
  margin-bottom: 18px;
  color: #0117D8;
  font-size: 2rem;
}

.about-process-step h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
}

.about-team-teaser {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 32px;
  align-items: center;
  padding: 36px;
  border-radius: var(--media-radius);
  background: linear-gradient(180deg, #fff8e7 0%, #fff5da 100%);
}

.about-team-teaser h2 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: var(--section-title-line-height);
}

.about-team-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  margin-top: 8px;
  padding: 0 20px;
  border-radius: var(--ci-radius);
  background: var(--theme-accent);
  color: #ffffff;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.25s ease,
    background-color 0.35s ease;
}

.about-team-link:hover,
.about-team-link:focus-visible {
  transform: translateY(-1px);
  background: var(--theme-accent-strong);
  color: #ffffff;
  text-decoration: none;
}

.about-team-link .send-arrow {
  font-size: 1.15rem;
}

.about-team-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  gap: 12px;
  align-self: center;
}

.about-team-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 180px;
  display: block;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--media-radius);
}

.about-team-gallery img:nth-child(-n + 2) {
  grid-column: span 3;
}

.about-team-gallery img:nth-child(n + 3) {
  grid-column: span 2;
}

.content-section {
  padding: var(--section-spacing-y) 0;
}

.content-shell {
  width: auto;
  margin: 0 var(--page-gutter);
  border-radius: var(--media-radius);
  background: var(--surface);
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.dark-shell {
  width: auto;
  margin: 0 var(--page-gutter);
  padding: 30px;
  border-radius: var(--media-radius);
  background: var(--surface-strong);
  color: #ffffff;
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.black-shell {
  width: auto;
  margin: 0 var(--page-gutter);
  padding: 30px;
  border-radius: var(--media-radius);
  background: #08090c;
  color: #ffffff;
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

body.theme-dark .black-shell {
  background: #ffffff;
  color: #111111;
}

.home-page .content-shell {
  padding-left: 0;
  padding-right: 0;
}

.two-col,
.planet-grid,
.footer-grid,
.cta-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.section-label,
.section-head span,
.section-copy span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--theme-accent);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-copy h2,
.section-head h2 {
  margin: 0 0 var(--section-title-copy-gap);
  font-size: var(--section-title-size);
  line-height: var(--section-title-line-height);
}

.section-copy p,
.cta-shell p,
.service-card-body p,
.testimonial-card p,
.insight-card-body p,
.pricing-card li,
.contact-block p {
  margin: 0 0 14px;
  color: var(--copy);
  line-height: 1.6;
}

.services-grid,
.testimonial-grid,
.insights-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.insight-card,
.pricing-card {
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--media-radius);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface-soft) 74%, transparent), rgba(255, 255, 255, 0.16)),
    color-mix(in srgb, var(--surface-soft) 72%, transparent);
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease;
}

.service-card img,
.insight-card img,
.planet-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-card-body,
.insight-card-body,
.testimonial-card,
.pricing-card,
.contact-block {
  padding: 22px;
}

.service-card-body h3,
.insight-card-body h3,
.pricing-card h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  line-height: 1.08;
}

.dark-shell p,
.dark-shell .contact-block p,
.black-shell p,
.black-shell .contact-block p {
  color: var(--copy-inverse);
}

body.theme-dark .black-shell p,
body.theme-dark .black-shell .contact-block p {
  color: #343434;
}

.legal-shell {
  display: grid;
  gap: 28px;
}

.legal-card {
  padding: 32px;
  border-radius: var(--media-radius);
  background: var(--surface-strong);
  color: #ffffff;
}

.legal-card p {
  margin: 0 0 12px;
  color: var(--copy-inverse);
}

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

.legal-card a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

.legal-article code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 0.92em;
}

.legal-table-wrap {
  margin: 18px 0 26px;
  overflow-x: auto;
  border: 1px solid var(--border-soft);
  border-radius: var(--media-radius);
  background: var(--surface-soft);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.legal-table th,
.legal-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border-soft);
  color: var(--copy);
  line-height: 1.6;
}

.legal-table th {
  color: var(--copy-strong);
  font-size: 0.92rem;
  font-weight: 800;
  background: color-mix(in srgb, var(--surface) 75%, transparent);
}

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

body.theme-dark .subpage-panel,
body.theme-dark .npb-info-card,
body.theme-dark .legal-card {
  padding: 32px;
}

body.theme-dark .subpage-panel,
body.theme-dark .npb-info-card {
  min-height: 100%;
}

body.theme-dark .npb-video-card,
body.theme-dark .legal-card {
  border-radius: var(--media-radius);
}

.cta-shell {
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
}

.testimonial-stage {
  position: relative;
  min-height: clamp(1800px, 270vh, 2600px);
  overflow: visible;
  background: transparent;
}

.testimonial-sticky {
  position: sticky;
  top: 18vh;
  min-height: 64vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  pointer-events: none;
}

.testimonial-kicker {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--theme-accent);
}

.testimonial-sticky h2 {
  margin: 0;
  max-width: none;
  font-size: var(--section-title-size);
  line-height: 0.92;
}

.testimonial-flow {
  position: absolute;
  inset: 0;
}

.speech-bubble {
  position: absolute;
  z-index: 2;
  width: min(380px, 32vw);
  min-height: 210px;
  padding: clamp(24px, 2.6vw, 36px) clamp(24px, 3vw, 42px) clamp(46px, 4vw, 60px);
  isolation: isolate;
  overflow: visible;
}

.speech-bubble::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.01);
  -webkit-backdrop-filter: blur(22px) saturate(165%);
  backdrop-filter: blur(22px) saturate(165%);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20399%20299'%20preserveAspectRatio='none'%3E%3Cpath%20fill='white'%20d='M365.797%200.292H33.177C15.177%200.292%200.578%2014.89%200.578%2032.885v222.172c0%2018.005%2014.6%2032.594%2032.6%2032.594h306.161c13.333%200%2024.994%200.776%2026.046%201.724%201.303%202.974%208.865%207.161%2016.896%209.349%201.891%20-0.172%202.672%20-1.307%201.735%20-2.531%20-3.37%20-4.438%20-5.61%20-9.401%201.062%20-14.86%200.339%20-0.277%200.674%20-0.536%201.005%20-0.776%200.089%20-0.067%200.089%20-0.067%200.402%20-0.036%201.187%20-0.132%200.7%20-0.494%200.014%20-0.01%200.694%20-0.49%201.729%20-1.222%202.891%20-2.041%203.833%20-2.714%208.468%20-12.573%208.468%20-22.787V32.885C398.391%2014.89%20383.792%200.292%20365.797%200.292Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20399%20299'%20preserveAspectRatio='none'%3E%3Cpath%20fill='white'%20d='M365.797%200.292H33.177C15.177%200.292%200.578%2014.89%200.578%2032.885v222.172c0%2018.005%2014.6%2032.594%2032.6%2032.594h306.161c13.333%200%2024.994%200.776%2026.046%201.724%201.303%202.974%208.865%207.161%2016.896%209.349%201.891%20-0.172%202.672%20-1.307%201.735%20-2.531%20-3.37%20-4.438%20-5.61%20-9.401%201.062%20-14.86%200.339%20-0.277%200.674%20-0.536%201.005%20-0.776%200.089%20-0.067%200.089%20-0.067%200.402%20-0.036%201.187%20-0.132%200.7%20-0.494%200.014%20-0.01%200.694%20-0.49%201.729%20-1.222%202.891%20-2.041%203.833%20-2.714%208.468%20-12.573%208.468%20-22.787V32.885C398.391%2014.89%20383.792%200.292%20365.797%200.292Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.speech-bubble-shape {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.bubble-fill {
  fill: var(--speech-bubble-fill);
  stroke: none;
}

.bubble-stroke {
  fill: transparent;
  stroke: var(--speech-bubble-stroke);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.speech-bubble > :not(.speech-bubble-shape) {
  position: relative;
  z-index: 2;
}

.speech-bubble p {
  margin: 0 0 18px;
  padding-bottom: 20px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.42rem);
  font-weight: 800;
  line-height: 1.36;
}

.speech-bubble strong,
.speech-bubble span {
  display: block;
  color: #ffffff;
}

.speech-bubble strong {
  font-size: clamp(0.92rem, 1.05vw, 1.08rem);
}

.speech-bubble span {
  font-size: clamp(0.84rem, 0.96vw, 1rem);
}

.bubble-left {
  top: 12%;
  left: 4%;
}

.bubble-right {
  top: 34%;
  right: 7%;
}

.bubble-right .speech-bubble-shape,
.bubble-far-right .speech-bubble-shape,
.bubble-right::before,
.bubble-far-right::before {
  transform: scaleX(-1);
}

.bubble-center {
  top: 58%;
  left: 34%;
}

.bubble-placeholder {
  top: 82%;
  left: 9%;
}

.bubble-far-right {
  top: 86%;
  right: 3%;
}

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

.pricing-card {
  padding: 24px;
  background: var(--surface);
}

.pricing-card.featured {
  background: var(--surface-strong);
  color: #fff;
}

.pricing-card.featured li,
.pricing-card.featured .price span {
  color: rgba(255, 255, 255, 0.8);
}

.price {
  margin: 0 0 16px;
  font-size: 2rem;
  font-weight: 800;
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--copy);
}

.pricing-card ul {
  margin: 0;
  padding-left: 20px;
}

.planet-grid img {
  height: 420px;
  border-radius: var(--media-radius);
}

.contact-block {
  border-radius: var(--media-radius);
  background: var(--contact-panel);
  transition: background-color 0.35s ease;
}

.icon-link-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1.5px solid var(--line);
  border-radius: var(--ci-radius);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
}

.npb-hero {
  background:
    linear-gradient(rgba(10, 14, 20, 0.54), rgba(10, 14, 20, 0.72)),
    url("../../images/Gross-Modern-Abstract-Background-with-3D-Holographic-Neon-Fluid-Waves-2.jpeg") center center / cover no-repeat,
    var(--npb-bg);
  color: #fff;
  transition: background-color 0.35s ease;
}

.npb-ticker {
  display: flex;
  gap: 28px;
  overflow: hidden;
  padding: 18px 24px;
  border: 1px solid var(--border-soft);
  border-radius: var(--media-radius);
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--copy-strong);
  background: var(--surface-soft);
}

.npb-hero-inner {
  width: auto;
  margin: 0 var(--page-gutter);
  padding: 120px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: center;
}

.npb-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #efff69;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.npb-hero-copy h1 {
  margin: 0 0 18px;
  font-size: var(--hero-title-size);
  line-height: 0.96;
}

.npb-lead {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
  line-height: 1.6;
}

.npb-hero-visual img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--media-radius);
}

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

.npb-info-card {
  padding: 24px;
  border: 1px solid var(--border-soft);
  border-radius: var(--media-radius);
  background: var(--surface-soft);
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease;
}

.npb-info-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
}

.npb-info-card h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.npb-info-card p,
.npb-text-block p {
  margin: 0 0 14px;
  line-height: 1.65;
}

.npb-longform .section-head h2,
.npb-grow-grid .section-copy h2 {
  max-width: 12ch;
}

.npb-text-block {
  max-width: 860px;
}

.npb-grow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.npb-video-card {
  overflow: hidden;
  border-radius: var(--media-radius);
  background: var(--surface-strong);
}

.npb-video-card iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.npb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--ci-radius);
  background: var(--surface-strong);
  color: #fff;
  font-weight: 700;
  transition: background-color 0.35s ease;
}

.page-hero {
  --hero-image: none;
  --hero-tint: linear-gradient(rgba(120, 150, 190, 0.08), rgba(22, 42, 70, 0.14));
  position: relative;
  min-height: var(--hero-min-height);
  display: flex;
  align-items: flex-end;
  padding: var(--hero-padding-top) var(--page-gutter) var(--hero-padding-bottom);
  color: #fff;
  background-image:
    var(--hero-overlay),
    var(--hero-tint),
    var(--hero-image);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.theme-brand {
  --theme-accent: var(--accent-brand);
  --theme-accent-soft: color-mix(in srgb, var(--theme-accent) 14%, transparent);
  --theme-accent-muted: color-mix(in srgb, var(--theme-accent) 42%, transparent);
  --theme-accent-strong: color-mix(in srgb, var(--theme-accent) 72%, #000);
  --hero-tint: linear-gradient(rgba(152, 184, 224, 0.14), rgba(34, 70, 118, 0.16));
  --hero-image: url("../../images/hero/Brand.jpg");
}

.theme-digital {
  --theme-accent: var(--accent-digital);
  --theme-accent-soft: color-mix(in srgb, var(--theme-accent) 14%, transparent);
  --theme-accent-muted: color-mix(in srgb, var(--theme-accent) 42%, transparent);
  --theme-accent-strong: color-mix(in srgb, var(--theme-accent) 72%, #000);
  --hero-tint: linear-gradient(rgba(194, 152, 92, 0.14), rgba(74, 108, 156, 0.12));
}

.theme-digital .page-hero {
  --hero-image: url("../../images/hero/digital.jpg");
}

.theme-journal {
  --theme-accent: var(--accent-journal);
  --theme-accent-soft: color-mix(in srgb, var(--theme-accent) 14%, transparent);
  --theme-accent-muted: color-mix(in srgb, var(--theme-accent) 42%, transparent);
  --theme-accent-strong: color-mix(in srgb, var(--theme-accent) 72%, #000);
  --hero-tint: linear-gradient(rgba(195, 71, 189, 0.12), rgba(107, 42, 132, 0.14));
  --hero-image: url("../../images/hero/journal.jpg");
}

.theme-aktuell {
  --theme-accent: var(--accent-aktuell);
  --theme-accent-soft: color-mix(in srgb, var(--theme-accent) 14%, transparent);
  --theme-accent-muted: color-mix(in srgb, var(--theme-accent) 42%, transparent);
  --theme-accent-strong: color-mix(in srgb, var(--theme-accent) 72%, #000);
  --hero-tint: linear-gradient(rgba(170, 196, 158, 0.12), rgba(54, 92, 98, 0.14));
  --hero-image: url("../../images/hero/journal.jpg");
}

.theme-kontakt {
  --theme-accent: var(--accent-kontakt);
  --theme-accent-soft: color-mix(in srgb, var(--theme-accent) 14%, transparent);
  --theme-accent-muted: color-mix(in srgb, var(--theme-accent) 42%, transparent);
  --theme-accent-strong: color-mix(in srgb, var(--theme-accent) 72%, #000);
  --hero-tint: linear-gradient(rgba(204, 126, 102, 0.14), rgba(88, 72, 136, 0.14));
  --hero-image: url("../../images/hero/kontakt.jpg");
}

.theme-led {
  --theme-accent: var(--accent-led);
  --theme-accent-soft: color-mix(in srgb, var(--theme-accent) 14%, transparent);
  --theme-accent-muted: color-mix(in srgb, var(--theme-accent) 42%, transparent);
  --theme-accent-strong: color-mix(in srgb, var(--theme-accent) 72%, #000);
  --hero-tint: linear-gradient(rgba(132, 192, 148, 0.16), rgba(48, 96, 78, 0.16));
  --hero-image: url("../../images/hero/advertising.jpg");
}

.theme-advertising {
  --theme-accent: var(--accent-advertising);
  --theme-accent-soft: color-mix(in srgb, var(--theme-accent) 14%, transparent);
  --theme-accent-muted: color-mix(in srgb, var(--theme-accent) 42%, transparent);
  --theme-accent-strong: color-mix(in srgb, var(--theme-accent) 72%, #000);
  --hero-tint: linear-gradient(rgba(0, 175, 188, 0.18), rgba(32, 92, 104, 0.18));
}

.theme-advertising .page-hero {
  --hero-image: url("../../images/hero/advertising.jpg");
}

.theme-leistungen {
  --theme-accent: var(--accent-leistungen);
  --theme-accent-soft: color-mix(in srgb, var(--theme-accent) 14%, transparent);
  --theme-accent-muted: color-mix(in srgb, var(--theme-accent) 42%, transparent);
  --theme-accent-strong: color-mix(in srgb, var(--theme-accent) 72%, #000);
  --hero-tint: linear-gradient(rgba(160, 142, 102, 0.14), rgba(54, 92, 98, 0.16));
  --hero-image: url("../../images/hero/leistungen.jpg");
}

.theme-media {
  --theme-accent: var(--accent-media);
  --theme-accent-soft: color-mix(in srgb, var(--theme-accent) 14%, transparent);
  --theme-accent-muted: color-mix(in srgb, var(--theme-accent) 42%, transparent);
  --theme-accent-strong: color-mix(in srgb, var(--theme-accent) 72%, #000);
  --hero-tint: linear-gradient(rgba(114, 148, 194, 0.14), rgba(56, 68, 122, 0.16));
}

.theme-media .page-hero {
  --hero-image: url("../../images/hero/media.jpg");
}

.theme-rechtliches {
  --theme-accent: var(--accent-rechtliches);
  --theme-accent-soft: color-mix(in srgb, var(--theme-accent) 14%, transparent);
  --theme-accent-muted: color-mix(in srgb, var(--theme-accent) 42%, transparent);
  --theme-accent-strong: color-mix(in srgb, var(--theme-accent) 72%, #000);
  --hero-tint: linear-gradient(rgba(126, 152, 172, 0.12), rgba(52, 72, 98, 0.16));
  --hero-image: url("../../images/hero/rechtliches.jpg");
}

.theme-team {
  --theme-accent: var(--accent-team);
  --theme-accent-soft: color-mix(in srgb, var(--theme-accent) 14%, transparent);
  --theme-accent-muted: color-mix(in srgb, var(--theme-accent) 42%, transparent);
  --theme-accent-strong: color-mix(in srgb, var(--theme-accent) 72%, #000);
  --hero-tint: linear-gradient(rgba(184, 156, 112, 0.14), rgba(72, 98, 128, 0.14));
  --hero-image: url("../../images/hero/team.jpg");
}

.theme-referenzen {
  --theme-accent: var(--accent-referenzen);
  --theme-accent-soft: color-mix(in srgb, var(--theme-accent) 14%, transparent);
  --theme-accent-muted: color-mix(in srgb, var(--theme-accent) 42%, transparent);
  --theme-accent-strong: color-mix(in srgb, var(--theme-accent) 72%, #000);
  --hero-tint: linear-gradient(rgba(146, 176, 170, 0.14), rgba(56, 88, 104, 0.14));
  --hero-image: url("../../images/hero/referenzen.jpg");
}

.hero-copy {
  width: min(var(--hero-copy-max-width), 100%);
  max-width: var(--hero-copy-max-width);
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: var(--hero-title-size);
  line-height: var(--hero-title-line-height);
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 54ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--hero-body-size);
  line-height: 1.65;
}

.subpage-grid,
.subpage-card-grid {
  display: grid;
  gap: 18px;
}

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

.subpage-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.subpage-panel h3,
.status-panel h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.subpage-panel p,
.status-panel p,
.status-panel li {
  margin: 0 0 12px;
  color: var(--copy);
  line-height: 1.65;
}

.subpage-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--border-soft);
  border-radius: var(--ci-radius);
  background: var(--surface-strong);
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.25s ease,
    background-color 0.35s ease,
    border-color 0.35s ease;
}

.subpage-cta-link:hover {
  transform: translateY(-1px);
}

.subpage-panel ul,
.status-panel ul {
  margin: 0;
}

.media-block {
  overflow: hidden;
  border-radius: var(--media-radius);
  min-height: 320px;
}

.media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-links p {
  margin: 0;
}

.contact-links a {
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--copy-strong);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-soft);
  border-radius: var(--media-radius);
  background: var(--surface);
  color: var(--copy-strong);
  outline: none;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--copy);
}

/* Keep browser-suggested contact details aligned with the contact theme. */
.contact-form input:autofill {
  background-color: #fff0e8;
  color: #2b160e;
  caret-color: #2b160e;
  border-color: rgba(248, 81, 18, 0.42);
}

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: #2b160e;
  caret-color: #2b160e;
  border-color: rgba(248, 81, 18, 0.42);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--ci-radius);
  background: rgba(39, 133, 89, 0.12);
  color: #2e7d57;
  font-size: 0.9rem;
  font-weight: 700;
}

body.theme-dark .status-badge {
  background: rgba(77, 187, 138, 0.16);
  color: #7fe0b2;
}


.team-page .team-stage {
  padding-block: clamp(72px, 8vw, 128px);
}

.team-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(72px, 7vw, 128px) clamp(40px, 4vw, 72px);
}

.team-list > .team-card {
  grid-column: 1;
}

.team-list > .team-card:nth-child(even) {
  grid-column: 2;
}

.team-list > .team-card:nth-child(1) {
  grid-row: 1;
}

.team-list > .team-card:nth-child(2) {
  grid-row: 2;
}

.team-list > .team-card:nth-child(3) {
  grid-row: 3;
}

.team-list > .team-card:nth-child(4) {
  grid-row: 4;
}

.team-list > .team-card:nth-child(5) {
  grid-row: 5;
}

.team-list > .team-card + .team-card {
  margin-top: 0;
}

.team-card {
  position: relative;
  min-height: clamp(560px, 72vh, 760px);
  display: flex;
  align-items: center;
  overflow: visible;
  color: var(--copy-strong);
  border-radius: var(--media-radius);
  background: transparent;
  transition:
    transform 0.35s ease;
}

body.theme-dark .team-card {
  color: #f6f1df;
}

.team-card.is-active {
  transform: translateY(-4px);
}

.team-card-media {
  position: relative;
  overflow: hidden;
  z-index: 2;
  flex: 0 0 auto;
  height: clamp(560px, 72vh, 760px);
  aspect-ratio: 6 / 9;
  border-radius: var(--media-radius);
}

.team-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}

.team-card:hover .team-card-media img,
.team-card.is-active .team-card-media img {
  transform: scale(1.03);
}

.team-card-content {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-height: 0;
  margin-left: -56px;
  padding: 20px 20px 20px 52px;
  border-radius: var(--ci-radius);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 241, 201, 0.34)),
    rgba(255, 241, 201, 0.68);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: visible;
  width: 236px;
  max-width: 236px;
  transition:
    max-width 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    min-height 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

body.theme-dark .team-card-content {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(172, 132, 18, 0.12)),
    rgba(8, 11, 31, 0.64);
}

.team-card:hover .team-card-content,
.team-card.is-active .team-card-content {
  margin-left: -96px;
  width: clamp(420px, 42vw, 640px);
  max-width: clamp(420px, 42vw, 640px);
  padding-top: 20px;
  padding-right: clamp(24px, 3vw, 34px);
  padding-bottom: 20px;
}

.team-list > .team-card:not(.team-card-single):nth-child(even) {
  flex-direction: row-reverse;
}

.team-list > .team-card:not(.team-card-single):nth-child(even) .team-card-content {
  margin-left: 0;
  margin-right: -56px;
  padding: 20px 52px 20px 20px;
  border-radius: var(--ci-radius);
}

.team-list > .team-card:not(.team-card-single):nth-child(even):hover .team-card-content,
.team-list > .team-card:not(.team-card-single):nth-child(even).is-active .team-card-content {
  margin-right: -96px;
  width: clamp(420px, 42vw, 640px);
  max-width: clamp(420px, 42vw, 640px);
  padding-left: clamp(24px, 3vw, 34px);
}

.team-list > .team-card:not(.team-card-single):nth-child(even):hover .team-card-collapsed,
.team-list > .team-card:not(.team-card-single):nth-child(even).is-active .team-card-collapsed {
  left: 34px;
}

.team-card-role {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--theme-accent);
}

.team-card-content h3 {
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 2.7vw, 3.15rem);
  line-height: 0.94;
  color: var(--copy-strong);
}

.team-card-content p {
  margin: 0 0 16px;
  color: var(--copy);
  font-size: clamp(0.96rem, 0.9vw, 1.05rem);
  line-height: 1.52;
}

.team-card-collapsed,
.team-card-expanded {
  transition:
    opacity 0.28s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card-collapsed {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  align-self: center;
  width: fit-content;
  margin-right: auto;
  margin-left: 18px;
  padding: 18px 0 22px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: translateX(18px) translateY(0);
  opacity: 1;
}

.team-list > .team-card:not(.team-card-single):nth-child(even) .team-card-collapsed {
  margin-right: 0;
  margin-left: auto;
  transform: translateX(18px) translateY(0);
}

.team-card-collapsed-name {
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 800;
  line-height: 0.9;
}

.team-card-collapsed-role {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--theme-accent);
}

.team-card-expanded {
  position: relative;
  inset: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-height: 0;
  margin-top: 0;
  overflow: visible;
  opacity: 0;
  transform: translateX(-18px) translateY(26px);
  pointer-events: none;
  transition:
    max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    margin-top 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-list > .team-card:not(.team-card-single):nth-child(even) .team-card-expanded {
  transform: translateX(-60px) translateY(26px);
}

.team-card:hover .team-card-collapsed,
.team-card.is-active .team-card-collapsed {
  opacity: 0;
  transform: translateX(18px) translateY(-28px);
}

.team-card:hover .team-card-expanded,
.team-card.is-active .team-card-expanded {
  max-height: 1200px;
  margin-top: 10px;
  opacity: 1;
  transform: translateX(-18px) translateY(0);
  pointer-events: auto;
}

.team-list > .team-card:not(.team-card-single):nth-child(even):hover .team-card-expanded,
.team-list > .team-card:not(.team-card-single):nth-child(even).is-active .team-card-expanded {
  transform: translateX(-60px) translateY(0);
}

.team-card-single {
  grid-column: 1;
  max-width: none;
}

@media (max-width: 1440px) and (min-width: 981px) {
  .team-page .team-stage {
    padding-block: clamp(96px, 10vw, 152px);
  }

  .team-list {
    gap: clamp(112px, 12vw, 168px) clamp(64px, 8vw, 112px);
    padding-block: clamp(56px, 7vw, 96px);
  }

  .team-list > .team-card + .team-card {
    margin-top: clamp(72px, 9vw, 120px);
  }

  .team-card {
    min-height: clamp(560px, 66vh, 680px);
  }

  .team-card-media {
    height: clamp(560px, 66vh, 680px);
  }

  .team-card:hover .team-card-content,
  .team-card.is-active .team-card-content,
  .team-list > .team-card:not(.team-card-single):nth-child(even):hover .team-card-content,
  .team-list > .team-card:not(.team-card-single):nth-child(even).is-active .team-card-content {
    width: clamp(380px, 40vw, 560px);
    max-width: clamp(380px, 40vw, 560px);
  }
}

.news-ticker {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--surface);
}

.news-ticker-track {
  display: flex;
  gap: 18px;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--copy-strong);
}

.blog-grid {
  display: grid;
  gap: 18px;
}

.blog-card {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--media-radius);
  background: var(--surface-soft);
  transition:
    transform 0.25s ease,
    background-color 0.35s ease,
    border-color 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card-media {
  min-height: 280px;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-card-body {
  padding: 28px;
}

.blog-card-tags,
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.blog-card-tags span,
.article-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid var(--border-soft);
  border-radius: var(--ci-radius);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--copy);
}

.blog-card h2,
.article-shell h1 {
  margin: 0 0 14px;
  color: var(--copy-strong);
  line-height: 1.04;
}

.blog-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.blog-card p,
.article-body p {
  margin: 0 0 14px;
  color: var(--copy);
  line-height: 1.7;
}

.blog-card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
  color: var(--copy);
  font-size: 0.92rem;
  font-weight: 600;
}

.blog-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: var(--ci-radius);
  font-weight: 700;
}

.blog-pagination a {
  border: 1px solid var(--border-soft);
  background: var(--surface-soft);
}

.blog-pagination a.is-active {
  background: var(--surface-strong);
  color: #fff;
}


.article-cover {
  overflow: hidden;
  border-radius: var(--media-radius);
  margin-bottom: 28px;
}

.article-cover img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.article-body h2 {
  margin: 28px 0 14px;
  color: var(--copy-strong);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.1;
}

.showcase-page .site-header {
  padding-top: 14px;
}

.showcase-page .site-header::before {
  opacity: 1;
  transform: translateY(0);
  background: #ffffff;
  border-bottom-color: rgba(17, 17, 17, 0.1);
}

.showcase-page .brand-lockup {
  width: clamp(160px, 13vw, 210px);
  height: 52px;
  color: #111111;
}

.showcase-page .brand-logo-primary {
  opacity: 0;
  transform: translateY(-18px) scale(0.74);
}

.showcase-page .brand-logo-alt {
  width: 100%;
  opacity: 1;
  transform: translateY(4px) scale(1) rotate(0deg);
  filter: invert(1);
}

.showcase-page .header-actions {
  color: #111111;
}

.showcase-page .search-shell,
.showcase-page .icon-button {
  border-color: rgba(17, 17, 17, 0.1);
  background: rgba(17, 17, 17, 0.04);
  color: #111111;
}

.showcase-page .search-shell input,
.showcase-page .search-shell input::placeholder {
  color: rgba(17, 17, 17, 0.72);
}


.web-quicknav-shell {
  padding-top: 18px;
  padding-bottom: 18px;
}

.web-quicknav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.web-quicknav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--border-soft);
  border-radius: var(--ci-radius);
  background: var(--surface-soft);
  color: var(--copy-strong);
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    background-color 0.35s ease,
    border-color 0.35s ease;
}

.web-quicknav a:hover {
  transform: translateY(-2px);
}

.web-accordion-list,
.web-process-list {
  display: grid;
  gap: 14px;
}

.web-accordion,
.web-process-step {
  border: 1px solid var(--border-soft);
  border-radius: var(--media-radius);
  background: var(--surface-soft);
  overflow: hidden;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease;
}

.web-accordion summary,
.web-process-step summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
}

.web-accordion summary::-webkit-details-marker,
.web-process-step summary::-webkit-details-marker {
  display: none;
}

.web-accordion summary span,
.web-accordion summary strong,
.web-process-step summary strong {
  display: block;
}

.web-accordion summary span {
  margin-bottom: 4px;
  color: var(--copy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.web-accordion summary strong,
.web-process-step summary strong {
  color: var(--copy-strong);
  font-size: 1.1rem;
  line-height: 1.2;
}

.web-accordion summary::after,
.web-process-step summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: var(--ci-radius);
  display: grid;
  place-items: center;
  background: var(--surface);
  color: var(--copy-strong);
  font-size: 1.2rem;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    background-color 0.35s ease,
    color 0.35s ease;
}

.web-accordion[open] summary::after,
.web-process-step[open] summary::after {
  transform: rotate(45deg);
}

.web-accordion-body {
  padding: 0 24px 24px;
}

.web-accordion-body p,
.web-accordion-body li {
  color: var(--copy);
  line-height: 1.7;
}

.web-accordion-body ul {
  margin: 0;
  padding-left: 20px;
}

.web-process-step summary {
  justify-content: flex-start;
}

.web-process-step summary span {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: var(--media-radius);
  display: grid;
  place-items: center;
  background: var(--surface);
  color: var(--copy-strong);
  font-weight: 800;
}

.web-process-step summary strong {
  flex: 1 1 auto;
}

.web-process-step summary::after {
  margin-left: auto;
}

.showcase-shell {
  background: transparent;
  padding: 0;
  margin-top: 108px;
}

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

.showcase-card {
  position: relative;
  display: block;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--media-radius);
  background: #d7d7d7;
}

.showcase-card-featured {
  grid-column: 1 / -1;
  min-height: 680px;
}

.showcase-card .blog-card-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.showcase-card .blog-card-media img {
  width: 100%;
  height: 100%;
  transform: scale(1.16);
  object-position: center 68%;
  transition: transform 0.35s ease;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.08) 0%, rgba(18, 18, 18, 0.06) 36%, rgba(18, 18, 18, 0.7) 100%);
}

.showcase-card:hover .blog-card-media img {
  transform: scale(1.2);
}

.showcase-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 40px 44px;
  color: #ffffff;
}

.showcase-card-head {
  max-width: 32rem;
}

.showcase-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--theme-accent);
}

.showcase-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 2.8vw, 3.2rem);
  line-height: 1.05;
}

.showcase-card-subtitle,
.showcase-card-description {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.94);
  text-wrap: balance;
}

.showcase-card-subtitle {
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 800;
  line-height: 1.25;
}

.showcase-card-description {
  margin: 12px 0 0;
  font-size: clamp(0.94rem, 1vw, 1.08rem);
  font-weight: 600;
  line-height: 1.5;
}

.showcase-card-featured h2 {
  font-size: clamp(2.2rem, 3.4vw, 4rem);
}

.showcase-card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.showcase-card-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--ci-radius);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  font-weight: 800;
  backdrop-filter: blur(8px);
}

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

.blog-card-compact {
  display: block;
}

.blog-card-compact:hover {
  text-decoration: none;
}

.blog-card-compact .blog-card-media {
  overflow: hidden;
  height: 320px;
  border-radius: var(--media-radius);
  background: var(--surface-soft);
}

.blog-card-compact .blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  display: block;
  transition: transform 0.3s ease;
}

.blog-card-compact:hover .blog-card-media img {
  transform: scale(1.04);
}

.blog-card-compact-body {
  padding: 14px 0 0;
}

.blog-card-topic {
  display: block;
  margin-bottom: 10px;
  color: var(--copy-strong);
  font-size: 0.95rem;
  font-weight: 700;
}

.blog-card-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.blog-time-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(17, 17, 17, 0.24);
  border-radius: var(--ci-radius);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--copy-strong);
}

body.theme-dark .blog-time-pill {
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.blog-card-compact h2 {
  margin: 12px 0 8px;
  color: var(--copy-strong);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.2;
  transition: color 0.25s ease;
}

.blog-card-compact:hover h2,
.blog-card-compact:focus-visible h2 {
  color: var(--theme-accent);
  text-decoration: none;
}

.blog-card-compact p {
  margin: 0;
  color: var(--copy);
  font-size: 0.98rem;
  font-weight: 500;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  overflow-y: auto;
  background: var(--menu-bg);
  color: var(--menu-text);
  transition:
    background-color 0.35s ease,
    color 0.35s ease;
}

.menu-overlay[hidden] {
  display: none;
}

.menu-page-main {
  min-height: 100vh;
  padding: 36px var(--page-gutter) 48px;
  background: var(--menu-bg);
  color: var(--menu-text);
}

.menu-page .menu-shell {
  margin: 0;
}

.menu-shell {
  width: auto;
  margin: 36px var(--page-gutter) 0;
}

.menu-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 54px;
}

.menu-logo {
  display: block;
  width: clamp(180px, 18vw, 260px);
  height: auto;
  filter: invert(1);
}

body.theme-dark .menu-logo {
  filter: none;
}

.menu-close {
  width: 26px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: var(--ci-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: inherit;
  font-size: 1.5rem;
  line-height: 0.8;
  cursor: pointer;
  padding: 0 0 6px;
}

.menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 90px;
  align-items: start;
}

.menu-primary {
  display: grid;
  gap: 24px;
  padding-left: 130px;
}

.menu-sitemap {
  gap: 18px;
}

.menu-dropdown {
  display: block;
}

.menu-summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  min-width: min(100%, 720px);
  cursor: pointer;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.menu-summary::-webkit-details-marker {
  display: none;
}

.menu-summary::after {
  content: "›";
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  color: currentColor;
  font-size: 0.82em;
  line-height: 1;
  opacity: 0;
  transform: translateY(-0.03em) rotate(90deg);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.menu-summary:hover,
.menu-summary:focus-visible {
  opacity: 0.68;
  transform: translateX(10px);
}

.menu-summary:hover::after,
.menu-summary:focus-visible::after,
.menu-dropdown[open] > .menu-summary::after {
  opacity: 1;
}

.menu-dropdown-body {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding-left: 32px;
}

.menu-dropdown-level-1 > .menu-dropdown-body {
  padding-left: 24px;
}

.menu-dropdown-theme-advertising > .menu-summary {
  color: var(--accent-advertising);
}

.menu-dropdown-theme-advertising > .menu-summary::after {
  border-color: color-mix(in srgb, var(--accent-advertising) 34%, transparent);
  color: var(--accent-advertising);
}

.menu-dropdown-theme-advertising > .menu-summary:hover::after,
.menu-dropdown-theme-advertising[open] > .menu-summary::after {
  background: color-mix(in srgb, var(--accent-advertising) 12%, transparent);
}

.menu-dropdown-theme-advertising > .menu-dropdown-body .menu-link-overview {
  color: var(--accent-advertising);
}

.menu-summary-label {
  display: inline-flex;
  align-items: center;
}

.menu-summary-level-0 .menu-summary-label {
  font-size: clamp(2.25rem, 3.25vw, 3.35rem);
  font-weight: 800;
  line-height: 1;
}

.menu-summary-level-1 .menu-summary-label {
  font-size: clamp(1.5rem, 2.15vw, 2.2rem);
  font-weight: 600;
  line-height: 1.12;
  opacity: 0.78;
}

.menu-dropdown-crowdsuit > .menu-summary::after {
  border-color: color-mix(in srgb, #efff6c 34%, transparent);
  color: #efff6c;
}

.menu-dropdown-crowdsuit > .menu-summary:hover::after {
  background: color-mix(in srgb, #efff6c 12%, transparent);
}

.menu-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.menu-link[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.menu-link-home {
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.menu-link-level-0 {
  font-size: clamp(2.25rem, 3.25vw, 3.35rem);
  font-weight: 800;
  line-height: 1;
}

.menu-link-level-1 {
  font-size: clamp(1.5rem, 2.15vw, 2.2rem);
  font-weight: 600;
  line-height: 1.12;
  opacity: 0.78;
}

.menu-link-level-2 {
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  font-weight: 500;
  line-height: 1.18;
  opacity: 0.7;
}

.menu-link-overview {
  opacity: 1;
  font-weight: 700;
}

.menu-soon {
  margin-left: 0.35em;
  color: color-mix(in srgb, var(--menu-text) 42%, transparent);
  font-size: 0.48em;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.desktop-subnav-link .menu-soon,
.desktop-subnav-pill .menu-soon {
  color: color-mix(in srgb, currentColor 48%, transparent);
  font-size: 0.78em;
}

.menu-primary a {
  transition:
    color 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

.menu-primary a:hover {
  transform: translateX(10px);
  opacity: 0.68;
}

.menu-secondary {
  display: grid;
  gap: 52px;
}

.menu-section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: color-mix(in srgb, var(--menu-text) 56%, transparent);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.menu-section-label::before,
.menu-section-label::after {
  content: "";
  height: 1px;
  flex: 1;
  background: color-mix(in srgb, var(--menu-text) 24%, transparent);
}

.menu-secondary h2 {
  margin: 0 0 12px;
  font-size: clamp(2.25rem, 3.25vw, 3.35rem);
  font-weight: 800;
  line-height: 1;
}

.menu-secondary a,
.menu-secondary p {
  display: block;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.4;
}

.menu-secondary a {
  width: fit-content;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.menu-secondary a:hover {
  transform: translateX(6px);
  opacity: 0.68;
}

.menu-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 0.35em;
  margin-top: 12px;
}

.menu-legal a {
  display: inline-block;
  color: inherit;
}

body.menu-open {
  overflow: hidden;
}

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

.structure-card {
  padding: 28px;
  border: 1px solid var(--border-soft);
  border-radius: var(--media-radius);
  background: var(--surface-soft);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.structure-card:hover {
  transform: translateY(-6px);
}

.structure-card h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.structure-card p {
  margin: 0 0 18px;
}

.structure-links {
  display: grid;
  gap: 10px;
}

.structure-links a {
  width: fit-content;
  font-weight: 700;
  color: var(--copy-strong);
}

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

.mini-article-card {
  padding: 26px;
  border-radius: var(--media-radius);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface-soft) 76%, transparent), rgba(255, 255, 255, 0.14)),
    color-mix(in srgb, var(--surface-soft) 74%, transparent);
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
}

.mini-article-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

body.menu-open {
  position: fixed;
  inset: 0;
  width: 100%;
}


.page-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}


.web-intro-grid {
  align-items: stretch;
}

.web-intro-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.web-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.web-feature-card {
  position: relative;
  min-height: 250px;
  grid-column: span 2;
  overflow: hidden;
  padding: 28px;
  border: 1px solid color-mix(in srgb, var(--theme-accent) 24%, var(--border-soft));
  border-radius: var(--ci-radius);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--theme-accent) 13%, var(--surface)) 0%, var(--surface-soft) 100%);
  transition:
    transform 0.25s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.web-feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--theme-accent), var(--theme-accent-strong));
}

.web-feature-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -48px;
  width: 140px;
  aspect-ratio: 1;
  border-radius: var(--ci-radius);
  background: color-mix(in srgb, var(--theme-accent) 16%, transparent);
  pointer-events: none;
}

.web-feature-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--theme-accent) 46%, var(--border-soft));
}

.web-feature-card i {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border-radius: var(--ci-radius);
  background: var(--theme-accent);
  color: #ffffff;
  font-size: 1.4rem;
}

.web-feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.08;
}

.web-feature-card p,
.web-section-lead {
  margin: 0;
  color: var(--copy);
  line-height: 1.65;
}

.web-feature-card-wide {
  grid-column: span 4;
}

.web-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0;
}

.web-project-grid .media-block {
  min-height: 280px;
}

@media (max-width: 980px) {
  .web-feature-grid,
  .web-project-grid {
    grid-template-columns: 1fr;
  }

  .web-feature-card,
  .web-feature-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden;
  }

  .hero-page {
    min-height: auto;
  }

  .site-header {
    padding: 14px 18px 0;
  }

  body.is-scrolled .site-header {
    padding: 12px 18px;
  }

  .hero {
    padding: 160px 18px 28px;
    align-items: flex-end;
  }

  .page-hero {
    --hero-min-height: 500px;
    --hero-title-size: clamp(2.8rem, 10vw, 4.25rem);
    --hero-padding-top: 150px;
    --hero-padding-bottom: 52px;
    padding: var(--hero-padding-top) 18px var(--hero-padding-bottom);
    min-height: var(--hero-min-height);
  }

  .two-col,
  .planet-grid,
  .footer-grid,
  .cta-shell,
  .services-grid,
  .insights-grid,
  .pricing-grid,
  .subpage-grid,
  .subpage-card-grid,
  .blog-card,
  .team-card,
  .npb-card-grid,
  .npb-grow-grid,
  .about-story-grid,
  .about-team-teaser,
  .npb-hero-inner {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: min(100svh, 860px);
    padding: 140px 20px 28px;
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(3rem, 11vw, 4.7rem);
    line-height: 0.92;
  }

  .hero .hero-slogan-heading,
  .hero-slogan-image {
    width: min(72vw, 560px);
  }

  .hero-content {
    width: 100%;
    margin: auto 0 clamp(32px, 5vh, 56px);
    text-align: center;
  }

  .hero .hero-slogan-heading {
    margin-inline: auto;
  }

  .hero-actions {
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
  }

  .hero-cta {
    width: min(100%, 560px);
    min-height: 58px;
  }

  .hero-footer-nav {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hero-footer-nav a:not(:last-child)::after {
    display: none;
  }

  .about-strength-grid,
  .about-process,
  .team-list {
    grid-template-columns: 1fr;
  }

  .about-team-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .about-team-gallery img:nth-child(n) {
    grid-column: auto;
  }

  .team-list > .team-card,
  .team-list > .team-card:nth-child(even) {
    grid-column: 1;
  }

  .team-list > .team-card + .team-card {
    margin-top: 0;
  }

  .about-hero {
    --hero-min-height: 500px;
    --hero-title-size: clamp(2.8rem, 10vw, 4.25rem);
    --hero-padding-top: 150px;
    --hero-padding-bottom: 52px;
    min-height: var(--hero-min-height);
    padding: var(--hero-padding-top) 0 var(--hero-padding-bottom);
  }

  .about-page .about-hero,
  .team-page .about-hero {
    min-height: var(--hero-min-height);
    padding: var(--hero-padding-top) 0 var(--hero-padding-bottom);
  }

  .about-hero-shell h1,
  .about-page .about-hero-shell h1,
  .team-page .about-hero-shell h1 {
    max-width: 11ch;
    font-size: var(--hero-title-size);
    line-height: var(--hero-title-line-height);
  }

  .about-process {
    --about-process-gap: 22px;
    gap: var(--about-process-gap);
    padding-top: 0;
  }

  .about-process-line {
    display: none;
  }

  .about-process-number {
    position: static;
    margin: 0 auto 16px;
  }

  .about-team-teaser {
    padding: 26px 22px;
  }

  .about-team-gallery img {
    height: 240px;
    min-height: 0;
  }

  .legal-card {
    padding: 24px 20px;
    border-radius: var(--media-radius);
  }

  body.theme-dark .subpage-panel,
  body.theme-dark .npb-info-card,
  body.theme-dark .legal-card {
    padding: 26px 22px;
  }

  .blog-overview-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card,
  .showcase-card-featured {
    min-height: 420px;
  }

  .menu-shell {
    width: auto;
    min-height: 100dvh;
    margin: 0;
    padding: 24px 20px 28px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-primary {
    padding-left: 0;
  }

  .menu-dropdown-body {
    padding-left: 18px;
  }

  .menu-dropdown-level-1 > .menu-dropdown-body {
    padding-left: 14px;
  }

  .structure-grid,
  .mini-article-grid {
    grid-template-columns: 1fr;
  }

  .content-shell {
    padding: 22px;
    margin: 10px;

  }

  .dark-shell {
    margin: 10px;
    padding: 22px;
  }

  .black-shell {
    margin: 10px;
    padding: 22px;
  }

  .web-quicknav {
    gap: 8px;
  }

  .web-quicknav a {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .web-accordion summary,
  .web-process-step summary {
    padding: 18px 18px 16px;
  }

  .web-accordion-body {
    padding: 0 18px 18px;
  }

  .web-design-page .site-header {
    padding-top: 10px;
  }

  .web-design-page .brand-lockup {
    margin-top: -12px;
  }

  .web-design-page.is-scrolled .brand-lockup {
    margin-top: -6px;
  }

  .npb-hero-inner {
    margin: 0 16px;
    padding: 110px 0 40px;
  }

  .team-card-featured {
    min-height: auto;
  }

  .team-card {
    min-height: auto;
    display: grid;
    gap: 0;
    padding: 0;
    border-radius: var(--media-radius);
    background: transparent;
    overflow: visible;
    cursor: pointer;
  }

  body.theme-dark .team-card {
    background: transparent;
  }

  .team-card-media {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 6 / 9;
    border-radius: var(--media-radius);
  }

  .team-card-content,
  .team-card:hover .team-card-content,
  .team-card.is-active .team-card-content,
  .team-list > .team-card:not(.team-card-single):nth-child(even) .team-card-content,
  .team-list > .team-card:not(.team-card-single):nth-child(even):hover .team-card-content,
  .team-list > .team-card:not(.team-card-single):nth-child(even).is-active .team-card-content {
    width: 100%;
    max-width: none;
    min-width: 0;
    min-height: auto;
    margin: 0;
    transform: none;
    padding: 16px clamp(18px, 5vw, 28px);
    border-radius: var(--ci-radius);
    background: rgba(255, 241, 201, 0.98);
  }

  body.theme-dark .team-card-content {
    background: rgba(8, 11, 31, 0.98);
  }

  .team-card-collapsed,
  .team-list > .team-card:not(.team-card-single):nth-child(even) .team-card-collapsed,
  .team-card:hover .team-card-collapsed {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    transform: none;
    opacity: 1;
    align-items: flex-start;
    gap: 4px;
  }

  .team-card-collapsed-role {
    display: none;
  }

  .team-card-expanded,
  .team-card:hover .team-card-expanded,
  .team-list > .team-card:not(.team-card-single):nth-child(even) .team-card-expanded,
  .team-list > .team-card:not(.team-card-single):nth-child(even):hover .team-card-expanded {
    position: relative;
    inset: auto;
    padding-top: 0;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    transform: none;
    pointer-events: none;
  }

  .team-card.is-active .team-card-collapsed {
    opacity: 0;
    max-height: 0;
    transform: none;
  }

  .team-card.is-active .team-card-expanded,
  .team-list > .team-card:not(.team-card-single):nth-child(even).is-active .team-card-expanded {
    max-height: 1200px;
    margin-top: 8px;
    overflow: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .team-card-expanded > .team-card-role,
  .team-card-expanded > h3 {
    display: block;
  }

  .team-card-expanded > .team-card-role {
    display: inline-block;
  }

  .team-card-single {
    grid-column: auto;
    max-width: none;
  }

  .testimonial-stage {
    min-height: auto;
  }

  .testimonial-sticky {
    position: relative;
    top: auto;
    min-height: auto;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 24px;
  }

  .testimonial-flow {
    position: relative;
    display: grid;
    gap: 32px;
  }

  .speech-bubble {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .section-head h2,
  .section-copy h2,
  .article-shell h1,
  .team-card-content h3 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    line-height: 1.02;
  }
}

@media (max-width: 640px) {

  .hero-page {
    min-height: auto;
    border-radius: 0;
  }

  .hero {
    min-height: min(100svh, 740px);
    padding-top: 124px;
  }

  .brand-lockup {
    width: 180px;
    height: 56px;
  }

  .web-design-page .brand-lockup {
    margin-top: -10px;
  }

  body.is-scrolled .brand-lockup {
    width: 150px;
    height: 36px;
  }

  body.is-scrolled .brand-logo-alt {
    width: 100%;
    transform: translateY(0) scale(1) rotate(0deg);
  }

  body.is-scrolled .header-actions {
    transform: none;
  }

  .web-design-page.is-scrolled .brand-lockup {
    margin-top: -4px;
  }

  .menu-logo {
    width: 160px;
  }

  .search-shell {
    display: none;
  }

  .hero h1 {
    font-size: 2.4rem;
    max-width: 8ch;
  }

  .page-hero,
  .about-hero {
    --hero-min-height: 460px;
    --hero-title-size: clamp(2.35rem, 12vw, 3.45rem);
    --hero-body-size: 1rem;
    --hero-padding-top: 132px;
    --hero-padding-bottom: 42px;
    background-position: center center;
  }

  .hero .hero-slogan-heading {
    width: min(64vw, 240px);
    max-width: min(64vw, 240px);
  }

  .hero-slogan-image {
    width: 100%;
  }

  .menu-primary a,
  .menu-secondary h2 {
    font-size: 1.5rem;
    line-height: 1.05;
  }

  .menu-secondary a,
  .menu-secondary p,
  .team-card-content p,
  .article-body p,
  .npb-clean-card p,
  .npb-clean-lead {
    font-size: 0.95rem;
    line-height: 1.55;
  }
}
.service-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-tab {
  text-align: left;
  padding: 24px;
  border: 1px solid var(--border-soft);
  border-radius: var(--media-radius);
  background: var(--surface-soft);
  color: var(--copy-strong);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background-color 0.35s ease,
    border-color 0.35s ease;
}

.service-tab:hover {
  transform: translateY(-3px);
}

.service-tab.is-active {
  background: var(--surface-strong);
  color: #ffffff;
  border-color: var(--surface-strong);
}

.service-tab h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.service-tab p {
  margin: 0;
  color: var(--copy);
  line-height: 1.6;
}

.service-tab.is-active p {
  color: rgba(255, 255, 255, 0.78);
}

.service-tab-content {
  margin-top: 18px;
}

.service-detail {
  display: none;
}

.service-detail.is-active {
  display: block;
}

.service-detail h3 {
  margin: 0 0 12px;
  font-size: 1.7rem;
}

.service-detail p {
  margin: 0 0 14px;
  color: var(--copy);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .service-tabs {
    grid-template-columns: 1fr;
  }
}

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

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--copy);
  line-height: 1.55;
}

.icon-list i {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: var(--ci-radius);
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 0.95rem;
}

.icon-list li:nth-child(7n + 1) i {
  background: linear-gradient(135deg, #ff00cc, #ff4d6d);
}

.icon-list li:nth-child(7n + 2) i {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.icon-list li:nth-child(7n + 3) i {
  background: linear-gradient(135deg, #22d3ee, #0ea5e9);
}

.icon-list li:nth-child(7n + 4) i {
  background: linear-gradient(135deg, #34d399, #22c55e);
}

.icon-list li:nth-child(7n + 5) i {
  background: linear-gradient(135deg, #a3e635, #facc15);
}

.icon-list li:nth-child(7n + 6) i {
  background: linear-gradient(135deg, #facc15, #fb923c);
}

.icon-list li:nth-child(7n + 7) i {
  background: linear-gradient(135deg, #fb7185, #ff00cc);
}

body.theme-dark .icon-list i {
  background: rgba(77, 187, 138, 0.16);
  color: #7fe0b2;
}
.led-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 24px 40px;
  overflow: visible;
}

.led-hero-inner {
  width: 100%;
  max-width: 1400px;
}

.gradient-title {
  margin: 0;
  font-size: var(--hero-title-size);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.06em;
  padding-bottom: 0.08em;

  background: linear-gradient(
    90deg,
    #ff00cc,
    #8b5cf6,
    #22d3ee,
    #34d399,
    #facc15,
    #fb923c,
    #ff6b6b,
    #ff00cc
  );

  background-size: 300% 300%;

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  animation: gradientMove 6s ease infinite;

}

.gradient-subline {
  display: block;
  margin-bottom: 22px;

  color: rgba(17,17,17,0.58);

  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.theme-dark .gradient-subline {
  color: rgba(255, 255, 255, 0.72);
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 900px) {
  .led-hero {
    min-height: 72vh;
    padding: 100px 20px 100px;
  }

  .gradient-title {
    font-size: clamp(3.8rem, 15vw, 6rem);
    line-height: 1.08;
  }
}
.npb-clean-hero {
  min-height: 100vh;
  padding: 110px 24px 80px;
  background: #ffffff;
  color: #111111;
  text-align: center;
}

.npb-clean-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.npb-clean-hero h1 {
  margin: 0;
  font-size: var(--hero-title-size);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.npb-clean-lead {
  margin: 34px auto 0;
  max-width: 620px;
  color: #1f1f1f;
  font-size: 1.05rem;
  line-height: 1.55;
}

.npb-clean-planet {
  display: block;
  width: 150px;
  height: auto;
  margin: 58px auto 86px;
}

.npb-clean-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 34px;
}

.npb-clean-card {
  min-height: 360px;
  padding: 34px 34px 30px;
  border-radius: var(--media-radius);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(247, 247, 247, 0.42)),
    rgba(247, 247, 247, 0.66);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.npb-clean-card-featured {
  min-height: 460px;
  transform: translateY(-34px);
}

.npb-clean-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 30px;
  padding: 12px;
  border-radius: var(--ci-radius);
  background: #e8f9e5;
}

.npb-clean-card:nth-child(1) img {
  background: linear-gradient(135deg, #ffe3d2 0%, #ffd1ea 100%);
}

.npb-clean-card:nth-child(2) img {
  background: linear-gradient(135deg, #fff0b8 0%, #d9f7be 100%);
}

.npb-clean-card:nth-child(3) img {
  background: linear-gradient(135deg, #d9ecff 0%, #e4dbff 100%);
}

.npb-clean-card h3 {
  margin: 0 0 28px;
  font-size: 1.65rem;
  line-height: 1.1;
}

.npb-clean-card p {
  margin: 0;
  color: #222222;
  font-size: 1rem;
  line-height: 1.7;
}

body:not(.theme-dark) #wirkung .dark-shell,
body:not(.theme-dark) #partner .dark-shell {
  background: var(--surface);
  color: var(--copy-strong);
}

body:not(.theme-dark) #wirkung .dark-shell p,
body:not(.theme-dark) #partner .dark-shell p {
  color: var(--copy);
}

body:not(.theme-dark) #partner .npb-video-card {
  background: var(--surface-soft);
  border: 1px solid var(--border-soft);
}

body.theme-dark .npb-clean-hero {
  background: var(--surface);
  color: var(--copy-strong);
}

body.theme-dark .npb-clean-lead {
  color: var(--copy);
}

body.theme-dark .npb-clean-card {
  background: var(--surface-strong);
  border: 1px solid var(--border-soft);
}

body.theme-dark .npb-clean-card:nth-child(1) img {
  background: linear-gradient(135deg, rgba(255, 167, 120, 0.22) 0%, rgba(255, 132, 196, 0.2) 100%);
}

body.theme-dark .npb-clean-card:nth-child(2) img {
  background: linear-gradient(135deg, rgba(255, 212, 89, 0.22) 0%, rgba(124, 220, 181, 0.2) 100%);
}

body.theme-dark .npb-clean-card:nth-child(3) img {
  background: linear-gradient(135deg, rgba(116, 186, 255, 0.22) 0%, rgba(164, 139, 255, 0.2) 100%);
}

body.theme-dark .npb-clean-card p {
  color: var(--copy);
}

@media (max-width: 900px) {
  .npb-clean-hero {
    padding: 100px 18px 60px;
  }

  .npb-clean-hero h1 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .npb-clean-cards {
    grid-template-columns: 1fr;
  }

  .npb-clean-card-featured {
    transform: none;
    min-height: 360px;
  }
}
.clients-shell {
  overflow: visible;
  padding-block: clamp(32px, 5vw, 72px);
  border-radius: 0;
}

.logo-slider {
  width: 100%;
  overflow: hidden;
  margin-top: 72px;
  padding-block: 28px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 110px;
  width: max-content;
  animation: logoScroll 35s linear infinite;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 110px;
  flex-shrink: 0;
}

.logo-track:has(img:hover) {
  animation-play-state: paused;
}

.logo-track img {
  height: clamp(112px, 9vw, 144px);
  width: auto;
  transform-origin: center;
  flex-shrink: 0;
  filter: grayscale(1);
  opacity: 0.55;
  transition: 0.3s ease;
}

.logo-track img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.35);
}

@keyframes logoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 55px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
}

@media (max-width: 700px) {
  .logo-slider {
    margin-top: 40px;
    padding-block: 20px;
  }

  .logo-track,
  .logo-group {
    gap: 64px;
  }

  .logo-track img {
    height: 88px;
  }

  @keyframes logoScroll {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(calc(-50% - 32px));
    }
  }
}

.contact-page-main {
  background: #ffffff;
  color: #050505;
}

.contact-hero-section {
  min-height: 100vh;
  padding: clamp(96px, 12vh, 124px) var(--page-gutter) 48px;
  display: flex;
  align-items: center;
}

.contact-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 420px);
  gap: clamp(20px, 2vw, 28px);
  align-items: start;
}

.contact-form-column {
  display: contents;
}

.contact-eyebrow {
  grid-column: 1;
  margin: 0 0 18px;
  color: var(--theme-accent);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-form-column h1 {
  grid-column: 1;
  max-width: 760px;
  margin: 0 0 66px;
  color: #050505;
  font-size: var(--section-title-size);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: var(--section-title-line-height);
}

.contact-design-form {
  grid-column: 1;
  grid-row: 3;
  gap: 20px;
}

.contact-design-form > label > span:not(.contact-topic-field),
.contact-field-row label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

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

.contact-design-form input,
.contact-design-form select,
.contact-design-form textarea {
  border: 1px solid #f0dfc8;
  border-radius: var(--media-radius);
  background: #fffaf3;
  color: #141414;
  font-size: 0.96rem;
  font-weight: 600;
}

.contact-design-form input,
.contact-design-form select {
  min-height: 74px;
  padding: 0 28px;
}

.contact-design-form select {
  width: 100%;
  appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, #c6ad92 50%),
    linear-gradient(135deg, #c6ad92 50%, transparent 50%);
  background-position: calc(100% - 29px) 32px, calc(100% - 23px) 32px;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.contact-topic-field {
  position: relative;
  display: block;
  z-index: 2;
}

.contact-topic-field input {
  width: 100%;
  padding-right: 68px;
}

.contact-topic-toggle {
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  width: 58px;
  border: 0;
  border-radius: var(--ci-radius);
  background: transparent;
  cursor: pointer;
}

.contact-topic-toggle::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 20px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #c6ad92;
  border-bottom: 2px solid #c6ad92;
  transform: rotate(45deg);
}

.contact-topic-toggle:hover::after {
  border-color: var(--theme-accent);
}

.contact-topic-field.is-open .contact-topic-toggle::after {
  top: 34px;
  transform: rotate(225deg);
}

.contact-topic-toggle:focus-visible {
  outline: 2px solid var(--theme-accent);
  outline-offset: 2px;
}

.contact-topic-options {
  position: absolute;
  z-index: 10;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  max-height: 280px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid #f0dfc8;
  border-radius: var(--ci-radius);
  background: #fffaf3;
}

.contact-topic-options[hidden] {
  display: none;
}

.contact-topic-options button {
  display: block;
  width: 100%;
  padding: 13px 18px;
  border: 0;
  border-radius: var(--ci-radius);
  background: transparent;
  color: #141414;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.contact-topic-options button:hover,
.contact-topic-options button:focus-visible,
.contact-topic-options button[aria-selected="true"] {
  outline: none;
  background: #f3e5d5;
  color: var(--theme-accent);
}

.contact-design-form textarea {
  min-height: 244px;
  padding: 24px 28px;
}

.contact-design-form input::placeholder,
.contact-design-form textarea::placeholder {
  color: #c6ad92;
}

.contact-design-form input:focus,
.contact-design-form select:focus,
.contact-design-form textarea:focus {
  border-color: var(--theme-accent);
  outline: 2px solid var(--theme-accent);
  outline-offset: 2px;
}

.contact-form-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
  margin-top: 2px;
}

.contact-consent {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: #0f0f0f;
  font-size: 0.88rem;
  line-height: 1.35;
}

.contact-consent input {
  width: 12px;
  height: 12px;
  min-height: 0;
  padding: 0;
  margin: 2px 0 0;
  border-radius: 0;
  accent-color: var(--theme-accent);
}

.contact-consent a {
  color: var(--theme-accent);
  font-weight: 800;
}

.contact-submit {
  min-height: 46px;
  padding: 0 26px;
  border: 1px solid #ff5a12;
  border-radius: var(--ci-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #ff5a12;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.contact-submit:hover {
  border-color: #ff6f1f;
  background: #ff6f1f;
  transform: translateY(-2px);
}

.contact-submit span {
  color: #ffffff;
}

.contact-submit .send-arrow {
  color: #ffffff;
  font-size: 1.15rem;
}

.contact-info-card {
  grid-column: 2;
  grid-row: 3 / span 2;
  align-self: start;
  min-height: auto;
  margin-top: 0;
  padding: clamp(34px, 3vw, 42px) 24px clamp(26px, 3vw, 34px);
  border-radius: var(--media-radius);
  background: #fff7ed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-card h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 clamp(64px, 7vh, 92px);
  color: #000;
  font-size: clamp(2.2rem, 3.5vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: var(--section-title-line-height);
  z-index: 1;
}

.contact-info-list {
  display: grid;
  gap: clamp(38px, 5vh, 58px);
  margin-bottom: clamp(46px, 6vh, 72px);
}

.contact-info-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  color: #0f0f0f;
  font-size: 0.93rem;
  line-height: 1.35;
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--ci-radius);
  display: grid;
  place-items: center;
  background: var(--theme-accent);
  color: #ffffff;
  font-size: 1.65rem;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.86rem;
}

.contact-info-item a,
.contact-info-item span {
  overflow-wrap: anywhere;
}

.contact-note {
  padding: 22px 18px;
  border-radius: var(--media-radius);
  background: #ffffff;
  color: #090909;
  font-size: 0.93rem;
  line-height: 1.35;
}

.contact-note p {
  margin: 0;
}

.contact-note p + p {
  margin-top: 22px;
}

.contact-note a {
  color: var(--theme-accent);
  font-weight: 800;
}


.contact-mapbox {
  grid-column: 1;
  grid-row: 4;
  margin-top: 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.contact-mapbox-copy {
  min-height: 320px;
  color: #111111;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-mapbox-eyebrow {
  margin: 0 0 14px;
  color: var(--theme-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-mapbox h2 {
  margin: 0 0 20px;
  color: #050505;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.contact-mapbox-address-link {
  color: inherit;
  text-decoration: none;
}

.contact-mapbox-address-link:hover address,
.contact-mapbox-address-link:focus-visible address {
  color: var(--theme-accent);
}

.contact-mapbox address {
  margin: 0;
  color: #252525;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.contact-mapbox iframe {
  width: 100%;
  min-height: 320px;
  height: 100%;
  border: 0;
  border-radius: var(--media-radius);
  filter: saturate(0.9) contrast(1.02);
}

@media (max-width: 760px) {
  .contact-mapbox {
    grid-template-columns: 1fr;
  }

  .contact-mapbox-copy {
    min-height: 0;
  }
}

body.theme-dark .contact-page-main,
body.theme-dark .contact-hero-section {
  background: #ffffff;
  color: #050505;
}

@media (max-width: 980px) {
  .contact-hero-section {
    padding-top: 112px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    grid-column: 1;
    grid-row: auto;
    margin-top: 0;
  }

  .contact-design-form,
  .contact-mapbox {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-form-column {
    display: contents;
  }
}

@media (max-width: 640px) {
  .contact-form-column h1 {
    margin-bottom: 40px;
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

  .contact-field-row,
  .contact-form-footer {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    width: 100%;
  }
}

/* Homepage redesign matching the supplied landing-page mockup */
.home-desktop-nav {
  padding-top: 8px;
}

.home-desktop-nav .desktop-nav-list {
  gap: 14px;
}

.home-desktop-nav .desktop-nav-link {
  min-height: 40px;
  font-size: clamp(1.05rem, 0.9vw, 1.18rem);
  font-weight: 800;
}

.home-desktop-nav .desktop-nav-link::after {
  bottom: 3px;
}

.home-page .content-section {
  padding: var(--section-spacing-y) 0;
}

.home-page .content-shell {
  max-width: none;
  margin-left: var(--page-gutter);
  margin-right: var(--page-gutter);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(500px, 0.9fr);
  gap: clamp(38px, 7vw, 86px);
  align-items: center;
}

.intro-copy h2 {
  margin: 0 0 var(--section-title-copy-gap);
  font-size: var(--section-title-size);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.intro-copy p {
  max-width: 680px;
  margin: 0 0 14px;
  color: var(--copy-strong);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.42;
}

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

.home-page .intro-grid .stats-grid {
  width: 100%;
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-page .intro-grid .stat-card {
  min-height: clamp(190px, 14vw, 230px);
  padding: clamp(24px, 2.2vw, 34px);
}

.stat-card {
  min-height: 170px;
  padding: 20px;
  border-radius: var(--media-radius);
  background: var(--theme-accent-strong);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat-card strong {
  position: relative;
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
  font-size: clamp(3rem, 5vw, 4.75rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.06em;
  z-index: 1;
}


.stat-card span {
  display: block;
  margin-top: 6px;
  font-size: clamp(0.98rem, 1.15vw, 1.2rem);
  font-weight: 800;
  line-height: 1.25;
}

.about-page .content-section {
  padding: var(--section-spacing-y) 0;
}

.about-page .about-intro {
  padding-top: var(--section-spacing-y);
}

.about-page .about-eyebrow {
  margin-bottom: 12px;
  color: var(--theme-accent-strong);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.about-page .about-hero-kicker,
.about-page .about-eyebrow,
.about-page .about-metric strong,
.about-page .about-strength-card i,
.about-page .about-process-step i,
.about-page .about-team-link,
.team-page .about-hero-kicker,
.team-page .about-eyebrow,
.team-page .team-intro-facts span,
.team-page .team-network-card i,
.team-page .team-card-role,
.team-page .team-card-collapsed-role,
.team-page .team-contact-shell .section-copy span {
  color: var(--theme-accent);
}

.about-page .about-team-link,
.about-page .about-team-link:hover,
.about-page .about-team-link:focus-visible {
  color: #ffffff;
}

.about-page .about-hero-kicker,
.team-page .about-hero-kicker {
  color: #ffffff;
}

.about-page .about-metric {
  border-color: var(--theme-accent);
}

.team-page .team-contact-actions .subpage-cta-link {
  background: var(--theme-accent);
}

.about-page .about-story-copy h2 {
  margin: 0 0 18px;
  font-size: var(--section-title-size);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.about-page .about-section-head h2 {
  margin: 0 0 18px;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line-height);
  letter-spacing: -0.055em;
}

.about-page .about-story-grid {
  gap: clamp(58px, 6vw, 92px);
}

.about-page .about-story-copy p,
.about-page .about-process-step p,
.about-page .about-strength-card p {
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-page .about-metrics {
  gap: clamp(18px, 2vw, 28px);
  margin-top: clamp(36px, 4vw, 58px);
}

.about-page .about-metric {
  min-width: 150px;
  min-height: 132px;
  padding: clamp(24px, 2.4vw, 34px) clamp(20px, 2vw, 28px);
}


.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  margin-top: clamp(36px, 4vw, 58px);
}

.about-stats-grid .stat-card {
  min-height: 132px;
  background: radial-gradient(circle at 50% 12%, #f6c645 0%, var(--accent-brand) 68%, #765506 100%);
}

@media (max-width: 760px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
}

.about-page .about-section-head {
  margin-bottom: clamp(42px, 5vw, 72px);
}

.about-page .about-strength-grid {
  gap: clamp(30px, 3vw, 48px);
}

.about-page .about-strength-card {
  min-height: 320px;
  padding: clamp(38px, 4vw, 58px) clamp(32px, 3.4vw, 50px);
}

.about-page .about-process {
  --about-process-gap: clamp(34px, 4vw, 58px);
  gap: var(--about-process-gap);
  padding-top: clamp(70px, 7vw, 98px);
}

.about-page .about-process-line {
  top: 34px;
}

.about-page .about-process-number {
  top: calc(17px - clamp(70px, 7vw, 98px));
}

.about-page .about-process-step {
  min-height: 250px;
}

.about-page .about-team-gallery {
  gap: clamp(16px, 2vw, 26px);
}

.about-page .about-team-gallery img {
  min-height: clamp(180px, 16vw, 240px);
}

@media (max-width: 900px) {
  .about-page .about-story-grid,
  .about-page .about-strength-grid,
  .about-page .about-process,
  .about-page .about-team-teaser {
    gap: 28px;
  }

  .about-page .about-strength-card,
  .about-page .about-process-step {
    min-height: auto;
  }

  .about-page .about-process {
    padding-top: 0;
  }

  .about-page .about-process-number {
    top: auto;
  }

  .about-page .about-team-teaser {
    padding: 32px 24px;
  }
}

#clients .section-head h2,
#services .section-head h2,
#aktuelles .section-head h2,
.faq-head h2 {
  letter-spacing: -0.055em;
}

.faq-head span {
  color: var(--theme-accent-strong);
}

.faq-head h2 {
  margin-bottom: var(--section-title-copy-gap);
  font-size: var(--section-title-size);
  line-height: var(--section-title-line-height);
}

.home-services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 34px);
}

.home-services-grid .showcase-card-featured {
  min-height: clamp(480px, 48vw, 650px);
}

.home-services-grid .showcase-card {
  min-height: clamp(360px, 34vw, 470px);
}

.home-services-grid .showcase-card .blog-card-media img {
  transform: scale(1.08);
}

.home-services-grid .showcase-card:hover .blog-card-media img {
  transform: scale(1.13);
}

.home-services-grid .showcase-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.8rem);
}

.home-services-grid .showcase-card-featured h2 {
  font-size: var(--section-title-size);
}

.home-page .testimonial-stage {
  min-height: clamp(1800px, 270vh, 2600px);
}

.home-page .testimonial-sticky h2 {
  font-size: var(--section-title-size);
}

.web-design-page .web-faq-section {
  padding: clamp(56px, 8vw, 118px) 0;
}

.web-design-page .web-faq-section .web-detail-shell {
  padding: 0;
}

.faq-head h2 em {
  color: var(--theme-accent-strong);
  font-style: normal;
}

.faq-head p {
  margin: 0 0 26px;
  color: var(--copy);
  font-weight: 600;
}

.faq-list .web-accordion {
  border: 0;
  border-radius: var(--ci-radius);
  background: var(--theme-accent-soft);
  color: var(--copy-strong);
}

.faq-list .web-accordion + .web-accordion {
  margin-top: 6px;
}

.faq-list .web-accordion:hover,
.faq-list .web-accordion[open] {
  background: var(--theme-accent-strong);
  color: #ffffff;
}

.faq-list .web-accordion summary {
  padding: 20px 28px;
}

.faq-list .web-accordion summary strong {
  color: var(--copy-strong);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
}

.faq-list .web-accordion:hover summary strong,
.faq-list .web-accordion[open] summary strong,
.faq-list .web-accordion:hover .web-accordion-body p,
.faq-list .web-accordion-body p {
  color: #ffffff;
}

.faq-list .web-accordion:not(:hover):not([open]) .web-accordion-body p {
  color: var(--copy);
}

.faq-list .web-accordion summary::after {
  align-self: center;
  background: transparent;
  color: currentColor;
  font-size: 2.1rem;
  font-weight: 300;
  line-height: 1;
}

.faq-list .web-accordion:hover summary::after,
.faq-list .web-accordion[open] summary::after {
  color: #ffffff;
}

.faq-list .web-accordion:not(:hover):not([open]) summary::after {
  color: var(--copy-strong);
}

.faq-list .web-accordion[open] summary::after {
  content: "−";
  transform: none;
}

.faq-list .web-accordion-body {
  padding: 0 28px 22px;
}

.faq-list .web-accordion-body p {
  max-width: 1180px;
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .home-desktop-nav {
    display: none;
  }

  .intro-grid,
  .home-services-grid,
  .blog-overview-grid {
    grid-template-columns: 1fr;
  }

  .home-page .content-shell {
    margin-left: var(--page-gutter);
    margin-right: var(--page-gutter);
  }

  .home-services-grid .showcase-card,
  .home-services-grid .showcase-card-featured {
    min-height: clamp(360px, 78vw, 520px);
  }
}

.home-page .site-header > .desktop-nav .desktop-nav-list {
  gap: 14px;
}

.home-page .site-header > .desktop-nav .desktop-nav-link {
  min-height: 40px;
  font-size: clamp(1.05rem, 0.9vw, 1.18rem);
  font-weight: 800;
}

.home-page .site-header > .desktop-nav .desktop-nav-link::after {
  bottom: 3px;
}

.site-footer {
  background: #000;
  color: #fff;
  padding: clamp(42px, 5vw, 64px) var(--page-gutter);
}

.site-footer-inner {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(180px, 1.25fr) repeat(3, minmax(150px, 1fr));
  column-gap: clamp(32px, 6vw, 86px);
  row-gap: 40px;
  align-items: flex-start;
}

.site-footer-brand img {
  width: 180px;
  max-width: 100%;
  height: auto;
  display: block;
}

.site-footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  align-items: center;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer-socials a {
  font-size: 1.13rem;
  line-height: 1;
  opacity: 0.96;
}

.site-footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: normal;
}

.site-footer-column h2 {
  margin: 0 0 5px;
  font-size: 0.82rem;
  font-weight: 800;
}

.site-footer-column a,
.site-footer-copyright {
  font-size: 0.82rem;
  line-height: 1.6;
}

.site-footer-column a,
.site-footer-copyright {
  opacity: 0.88;
}

.site-footer-copyright {
  margin: 16px 0 0;
  max-width: 180px;
}

.site-footer-column a:hover,
.site-footer-socials a:hover {
  color: var(--theme-accent);
}

.contact-page-main .contact-top-hero .hero-copy h1 {
  max-width: 760px;
}

@media (max-width: 900px) {
  .site-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 620px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer-copyright {
    max-width: none;
  }
}

/* Services landing page */
.services-overview,
.services-process,
.services-projects,
.services-faq,
.services-bottom-cta {
  background: #ffffff;
  color: #070707;
}

.services-overview { padding-top: clamp(56px, 7vw, 96px); }
.services-process { padding-top: clamp(86px, 9vw, 132px); padding-bottom: clamp(72px, 8vw, 112px); }
.services-projects { padding-top: clamp(70px, 8vw, 112px); padding-bottom: clamp(86px, 9vw, 132px); }
.services-faq { padding-top: clamp(76px, 8vw, 118px); padding-bottom: clamp(76px, 8vw, 118px); }
.services-bottom-cta { padding-top: 0; padding-bottom: clamp(86px, 8vw, 128px); }

.services-page-shell {
  width: auto;
  margin: 0 var(--page-gutter);
}

.services-intro { margin-bottom: clamp(34px, 4vw, 56px); }
.services-intro span, 
.service-feature-copy span {
  display: block;
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--theme-accent);
}

.services-intro h2,
.service-feature-copy h2 {
  margin: 0 0 var(--section-title-copy-gap);
  color: #050505;
  font-size: var(--section-title-size);
  line-height: 0.94;
  letter-spacing: -0.055em;
}
.services-wide-card,
.services-image-card,
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--ci-radius);
  background: #111;
}
.services-wide-card { height: clamp(360px, 42vw, 520px); margin-bottom: 52px; }
.services-wide-card,
.services-image-card {
  display: block;
  color: inherit;
}

.services-wide-card:hover img,
.services-wide-card:focus-visible img,
.services-image-card:hover img,
.services-image-card:focus-visible img {
  transform: scale(1.035);
}

.services-wide-card img,
.services-image-card img,
.project-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.services-wide-card::after,
.services-image-card::after,
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.08) 45%, rgba(0,0,0,.65));
}
.services-card-content {
  position: absolute;
  z-index: 1;
  inset: 34px 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}
.services-card-content h3 { margin: 0; font-size: clamp(1.8rem, 3vw, 3.1rem); line-height: 1.02; letter-spacing: -0.04em; }
.service-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.service-tags span {
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--ci-radius);
  background: rgba(0,0,0,.28);
  font-size: clamp(0.96rem, 1vw, 1.1rem);
  font-weight: 800;
}
.service-tags span:first-child { background: var(--theme-accent); border-color: var(--theme-accent); }
.service-feature,
.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .95fr);
  gap: 44px;
  align-items: stretch;
  margin-bottom: 112px;
}
.service-feature-copy p {
  max-width: 540px;
  margin: 0;
  color: #1f1f1f;
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  font-weight: 600;
  line-height: 1.58;
}
.service-section-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 26px;
  padding: 14px 24px;
  border-radius: var(--ci-radius);
  background: var(--theme-accent);
  color: #ffffff;
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.service-section-link .send-arrow {
  width: 1.35em;
  height: 1.35em;
}

.service-section-link:hover,
.service-section-link:focus-visible {
  transform: translateY(-1px);
  background: var(--theme-accent-strong);
}

.service-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.service-benefit-card {
  min-height: 260px;
  padding: 36px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--ci-radius);
  background: #e9ebff;
  text-align: center;
  color: #050505;
}
.service-benefit-card.is-active { background: var(--theme-accent); color: #fff; }
.service-benefit-card i { display: block; color: var(--theme-accent); font-size: 2.6rem; line-height: 1; }
.service-benefit-card.is-active i { color: #fff; }
.service-benefit-card strong { display: block; margin: 14px 0 8px; font-size: clamp(0.95rem, 1vw, 1.08rem); text-transform: uppercase; }
.service-benefit-card p { margin: 0; font-size: clamp(0.86rem, 0.9vw, 1rem); font-weight: 700; line-height: 1.4; }
.split-feature,
.split-feature-events { grid-template-columns: minmax(300px, .95fr) minmax(0, 1fr); }
.services-image-card { height: clamp(360px, 38vw, 500px); }
.split-feature > .services-image-card {
  height: auto;
  min-height: clamp(360px, 38vw, 500px);
}
.split-feature > .service-feature-copy {
  min-height: clamp(360px, 38vw, 500px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.process-mini { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; margin-top: 42px; max-width: 760px; }
.process-mini div { min-height: 132px; padding: 18px 14px; border-radius: var(--ci-radius); background: color-mix(in srgb, var(--theme-accent) 10%, #ffffff); text-align: center; color: var(--theme-accent); font-weight: 800; font-size: .9rem;  }
.process-mini b { display: inline-grid; place-items: center; width: 34px; height: 34px; margin-bottom: 14px; border-radius: var(--ci-radius); background: var(--theme-accent); color: #fff; font-size: .95rem; }
.process-mini i { display: block; font-size: 1.75rem; margin-bottom: 12px; }
.process-mini span { color: var(--theme-accent); font-size: clamp(.86rem, .95vw, 1rem); text-transform: none; letter-spacing: 0; }
.pill-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 18px; margin-top: 34px; max-width: 640px; }
.pill-grid span { padding: 16px 24px; border-radius: var(--ci-radius); background: color-mix(in srgb, var(--theme-accent) 12%, #ffffff); color: var(--theme-accent); font-size: clamp(.95rem, 1vw, 1.08rem); font-weight: 800; text-align: center;  }
.process-lineup { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.process-line { position: absolute; top: 13px; left: 12.5%; right: 12.5%; height: 2px; background: #111; opacity: .55; }
.process-step { position: relative; z-index: 1; text-align: center; }
.process-step b { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: var(--ci-radius); background: #050505; color: #fff; }
.process-step i { display: block; margin: 26px 0 18px; color: var(--theme-accent); font-size: 2rem; }
.process-step h3 { margin: 0 0 10px; font-size: clamp(1.05rem, 1.2vw, 1.35rem); }
.process-step p { margin: 0 auto; max-width: 240px; color: #333; font-size: clamp(0.9rem, 0.95vw, 1.04rem); font-weight: 600; line-height: 1.45; }
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.project-card { height: clamp(280px, 28vw, 380px); }
.project-card-wide { grid-column: 1 / -1; height: clamp(360px, 38vw, 500px); }
.project-card div {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: clamp(58px, 6vw, 76px);
  padding: 16px clamp(26px, 3vw, 48px);
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  color: #fff;
  font-size: .8rem;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.58) 34%, rgba(255, 255, 255, 0.14) 50%, rgba(0, 0, 0, 0.64) 72%, rgba(0, 0, 0, 0.86) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.project-card:hover div,
.project-card:focus-visible div {
  opacity: 1;
  transform: translateY(0);
}
.project-card:focus-visible { outline: 3px solid var(--theme-accent); outline-offset: 4px; }
.project-arrow {
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
  margin-left: auto;
  transition: transform 0.25s ease;
}
.project-card:hover .project-arrow,
.project-card:focus-visible .project-arrow { transform: translate(3px, -3px); }

.services-intro.faq-heading span {
  margin-bottom: 12px;
}

.services-intro.faq-heading h2 {
  margin-bottom: var(--section-title-copy-gap);
}
.faq-heading h2 em { color: var(--theme-accent); font-style: normal; }
.faq-heading p { margin: 0 0 26px; color: #222; font-size: clamp(1rem, 1.05vw, 1.12rem); font-weight: 600; line-height: 1.6; }
.services-faq-list details { border-radius: var(--ci-radius); background: color-mix(in srgb, var(--theme-accent) 12%, #ffffff); color: #111; font-weight: 800; }
.services-faq-list details + details { margin-top: 9px; }
.services-faq-list details[open] { background: var(--theme-accent); color: #fff; }
.services-faq-list summary { list-style: none; cursor: pointer; padding: 16px 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.services-faq-list summary::-webkit-details-marker { display: none; }
.services-faq-list summary::after { content: "+"; align-self: center; color: currentColor; line-height: 1; transition: color 0.35s ease; }
.services-faq-list details:hover summary::after,
.services-faq-list details[open] summary::after { color: #ffffff; }
.services-faq-list details[open] summary::after { content: "−"; }
.services-faq-list p { margin: 0; padding: 0 22px 20px; max-width: 760px; font-size: .86rem; font-weight: 500; line-height: 1.45; }
.services-faq .faq-head span,
.services-faq .faq-heading span {
  color: var(--theme-accent);
}

.services-faq .faq-head h2 em,
.services-faq .faq-heading h2 em {
  color: var(--theme-accent);
}

.services-faq .faq-list .web-accordion {
  background: color-mix(in srgb, var(--theme-accent) 12%, #ffffff);
}

.services-faq .faq-list .web-accordion:hover,
.services-faq .faq-list .web-accordion[open] {
  background: var(--theme-accent);
}

.services-cta-card { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 30px 36px; border-radius: var(--ci-radius); background: #030303; color: #fff; }
.services-cta-card h2 { margin: 0 0 8px; font-size: 1.45rem; }
.services-cta-card p { margin: 0; color: rgba(255,255,255,.82); font-size: .86rem; }
.services-cta-card a { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; border-radius: var(--ci-radius); background: var(--theme-accent); color: #fff; font-size: .82rem; font-weight: 800; white-space: nowrap; }

@media (max-width: 820px) {
  .service-feature,
  .split-feature,
  .split-feature-events,
  .process-lineup,
  .project-grid { grid-template-columns: 1fr; }
  .service-benefits,
  .process-mini { grid-template-columns: 1fr; }
  .process-line { display: none; }
  .project-card,
  .project-card-wide,
  .services-wide-card,
  .services-image-card { height: 320px; grid-column: auto; }
  .services-cta-card { align-items: flex-start; flex-direction: column; }
  .project-card div { padding: 14px 18px; gap: 16px; }
}

.services-faq .faq-list .web-accordion {
  border-radius: var(--ci-radius);
  color: var(--copy-strong);
  font-weight: 800;
}

.services-faq .faq-list .web-accordion + .web-accordion {
  margin-top: 6px;
}

.services-faq .faq-list .web-accordion summary {
  padding: 20px 28px;
}

.services-faq .faq-list .web-accordion .web-accordion-body {
  padding: 0 28px 22px;
}

.services-faq .faq-list .web-accordion .web-accordion-body p {
  max-width: 1180px;
  padding: 0;
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  font-weight: 600;
  line-height: 1.5;
}

.services-faq .faq-list .web-accordion:hover summary strong,
.services-faq .faq-list .web-accordion[open] summary strong,
.services-faq .faq-list .web-accordion:hover .web-accordion-body p,
.services-faq .faq-list .web-accordion[open] .web-accordion-body p {
  color: #ffffff;
}

.services-faq .faq-list .web-accordion:not(:hover):not([open]) summary strong,
.services-faq .faq-list .web-accordion:not(:hover):not([open]) summary::after,
.services-faq .faq-list .web-accordion:not(:hover):not([open]) .web-accordion-body p {
  color: var(--copy-strong);
}

.project-card div {
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  font-weight: 800;
}

.services-cta-card {
  padding: clamp(34px, 4vw, 56px);
}

.services-cta-card h2 {
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.services-cta-card p,
.services-cta-card a {
  font-size: clamp(0.95rem, 1vw, 1.08rem);
}

.team-intro-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at 8% 12%, rgba(172, 132, 18, 0.18), transparent 30%),
    var(--surface);
}

.team-intro-copy h2,
.team-network-head h2 {
  margin: 0 0 20px;
  max-width: 12ch;
  font-size: var(--section-title-size);
  line-height: 0.95;
  text-transform: uppercase;
}

.team-intro-copy p,
.team-network-head p {
  margin: 0;
  max-width: 64ch;
  color: var(--copy);
  font-size: 1.02rem;
  line-height: 1.75;
}

.team-intro-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.team-intro-facts article,
.team-network-card {
  padding: 24px;
  border: 1px solid var(--border-soft);
  border-radius: var(--media-radius);
  background: var(--surface-soft);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.team-intro-facts article:hover,
.team-network-card:hover {
  transform: translateY(-6px);
  border-color: rgba(172, 132, 18, 0.48);
}

.team-intro-facts span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--theme-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.team-intro-facts h3,
.team-network-card h3 {
  margin: 0 0 12px;
  font-size: 1.32rem;
}

.team-intro-facts p,
.team-network-card p {
  margin: 0;
  color: var(--copy);
  font-size: 0.92rem;
  line-height: 1.6;
}


.team-career-cta-section {
  padding-top: 0;
}

.team-career-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--media-radius);
  background:
    linear-gradient(135deg, rgba(172, 132, 18, 0.18), rgba(172, 132, 18, 0.04)),
    var(--surface);
}

.team-career-cta h2 {
  margin: 0 0 16px;
  max-width: 14ch;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.team-career-cta p {
  margin: 0;
  max-width: 62ch;
  color: var(--copy);
  font-size: 1rem;
  line-height: 1.7;
}

.team-career-cta .subpage-cta-link {
  flex: 0 0 auto;
  background: var(--theme-accent);
  border-color: var(--theme-accent);
}

.team-network-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
  text-align: left;
}

.team-network-head h2 {
  max-width: 18ch;
}

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

.team-network-card i {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--theme-accent);
  font-size: 1.65rem;
}


body.theme-dark .team-intro-shell,
body.theme-dark .team-network-shell {
  background:
    radial-gradient(circle at 8% 12%, rgba(172, 132, 18, 0.16), transparent 30%),
    var(--surface);
}

@media (max-width: 980px) {
  .team-intro-shell {
    grid-template-columns: 1fr;
  }

  .team-intro-facts,
  .team-network-grid {
    grid-template-columns: 1fr;
  }

  .team-career-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .team-career-cta .subpage-cta-link {
    width: 100%;
    justify-content: center;
  }

}
.web-design-page .web-hero { overflow: hidden; }
.web-hero::after { content: ""; position: absolute; right: clamp(18px, 6vw, 92px); bottom: clamp(28px, 9vw, 118px); width: clamp(160px, 24vw, 390px); aspect-ratio: 1; border-radius: var(--ci-radius); background: radial-gradient(circle, rgba(70, 100, 147, 0.46), rgba(70, 100, 147, 0) 68%); filter: blur(4px); pointer-events: none; }
.web-hero-card { position: absolute; right: var(--page-gutter); bottom: 44px; z-index: 1; width: min(330px, 32vw); padding: 22px; border: 1px solid rgba(255, 255, 255, 0.22); border-radius: var(--media-radius); background: rgba(8, 12, 24, 0.58); color: #ffffff;  backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); }
.web-hero-card i { display: inline-grid; place-items: center; width: 46px; height: 46px; margin-bottom: 22px; border-radius: var(--ci-radius); background: var(--accent-digital); font-size: 1.35rem; }
.web-hero-card strong, .web-hero-card span { display: block; }
.web-hero-card strong { margin-bottom: 8px; font-size: 1.2rem; }
.web-hero-card span { color: rgba(255, 255, 255, 0.78); line-height: 1.55; }
.web-highlight-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.web-highlight-row span { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 0 14px; border-radius: var(--ci-radius); background: color-mix(in srgb, var(--theme-accent) 12%, var(--surface-soft)); color: var(--copy-strong); font-weight: 800; }
.web-process-track { position: relative; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; margin-top: 28px; }
.web-process-track::before { content: ""; position: absolute; left: 10%; right: 10%; top: 34px; height: 2px; background: linear-gradient(90deg, var(--theme-accent-muted), var(--theme-accent), var(--theme-accent-strong)); opacity: 0.45; }
.web-process-card { position: relative; padding: 74px 18px 20px; border: 1px solid var(--border-soft); border-radius: var(--media-radius); background: var(--surface-soft); }
.web-process-card span, .web-process-card i { position: absolute; top: 18px; }
.web-process-card span { left: 18px; color: var(--theme-accent); font-size: 0.86rem; font-weight: 800; }
.web-process-card i { right: 18px; color: var(--theme-accent-strong); font-size: 1.45rem; }
.web-process-card h3 { margin: 0 0 10px; font-size: 1.15rem; }
.web-process-card p { margin: 0; color: var(--copy); line-height: 1.55; }
.web-cta-actions { align-self: end; }
.web-cta-actions .subpage-cta-link { background: var(--accent-digital); border-color: var(--accent-digital); }
@media (max-width: 980px) { .web-hero-card { position: relative; right: auto; bottom: auto; width: auto; margin: 28px 18px 0; } .web-process-track { grid-template-columns: 1fr; } .web-process-track::before { left: 35px; right: auto; top: 24px; bottom: 24px; width: 2px; height: auto; } }

.universal-project-cta {
  padding: clamp(76px, 9vw, 136px) 0;
}

.global-cta-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(540px, 1.2fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  margin: 0 var(--page-gutter);
}

.global-cta-eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--theme-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.global-cta-copy h2 {
  margin: 0 0 24px;
  color: var(--copy-strong);
  font-size: clamp(2.3rem, 4.3vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.global-cta-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--copy);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.65;
}

.global-cta-form-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 650px;
  display: grid;
  place-items: center;
  padding: clamp(28px, 4vw, 64px);
  border-radius: 30px;
  background: var(--surface-soft);
}

.global-cta-form-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--cta-background) center / cover no-repeat;
  opacity: 0.7;
}

.global-cta-form {
  position: relative;
  width: min(100%, 620px);
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.global-cta-form h3 { margin: 0 0 6px; color: var(--copy-strong); font-size: clamp(1.65rem, 2.2vw, 2.25rem); letter-spacing: -0.04em; }
.global-cta-form label { display: grid; gap: 8px; }
.global-cta-form label > span { color: var(--copy-strong); font-size: 0.9rem; font-weight: 700; }
.global-cta-field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.global-cta-form input:not([type="checkbox"]), .global-cta-form textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--border-soft); border-radius: 14px; background: var(--surface-soft); color: var(--copy-strong); font: inherit; outline: none; }
.global-cta-form textarea { min-height: 124px; resize: vertical; }
.global-cta-form input:focus, .global-cta-form textarea:focus { border-color: var(--theme-accent); box-shadow: 0 0 0 2px var(--theme-accent-soft); }
.global-cta-consent { grid-template-columns: auto 1fr; align-items: start; }
.global-cta-consent input { margin-top: 3px; accent-color: var(--theme-accent); }
.global-cta-consent span { line-height: 1.45; }
.global-cta-consent a { color: var(--theme-accent); text-decoration: underline; }

.global-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  min-height: 58px;
  padding: 0 26px;
  border: 0;
  border-radius: var(--ci-radius);
  background: var(--theme-accent);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background-color 0.35s ease;
}

.global-cta-button .send-arrow {
  font-size: 1.35rem;
}

.global-cta-button:hover,
.global-cta-button:focus-visible {
  transform: translateY(-1px);
  background: var(--theme-accent-strong);
  text-decoration: none;
}

@media (max-width: 1100px) {
  .global-cta-card { grid-template-columns: 1fr; }
  .global-cta-copy { max-width: 720px; }
}

@media (max-width: 720px) {
  .universal-project-cta { padding: 64px 0; }
  .global-cta-card {
    grid-template-columns: 1fr;
    margin: 0 10px;
  }
  .global-cta-form-stage { min-height: 0; padding: 14px; }
  .global-cta-form { padding: 24px 18px; }
  .global-cta-field-row { grid-template-columns: 1fr; }
}

/* Journal detail layout */
.theme-journal .content-section:has(.article-shell),
.theme-led .content-section:has(.article-shell) {
  padding: clamp(28px, 4vw, 56px) 0 clamp(72px, 8vw, 120px);
}

.article-shell {
  width: auto;
  max-width: none;
  margin: 0 var(--page-gutter);
  padding: 0;
  background: transparent;
}

.article-cover {
  width: 100%;
  aspect-ratio: 16 / 6.8;
  margin: 0 0 clamp(28px, 4vw, 46px);
  border-radius: var(--ci-radius);
  background: var(--theme-accent-soft);
}


.article-tags {
  gap: 10px;
  margin-bottom: clamp(24px, 3vw, 34px);
}

.article-tags span {
  min-height: 34px;
  padding: 0 18px;
  border: 0;
  background: var(--theme-accent-soft);
  color: var(--theme-accent-strong);
  font-size: 0.95rem;
  font-weight: 500;
}

.article-shell > h1 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  letter-spacing: -0.055em;
}

.article-meta {
  align-items: center;
  gap: 10px;
  margin-top: 0;
  margin-bottom: clamp(42px, 6vw, 72px);
  color: color-mix(in srgb, var(--copy) 82%, transparent);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 500;
}

.article-meta span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 12px 0 2px;
  border-radius: var(--ci-radius);
  background: color-mix(in srgb, var(--copy) 35%, transparent);
  vertical-align: middle;
}

.article-body {
  color: var(--copy-strong);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
}

.article-footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 48px);
  margin-top: clamp(44px, 6vw, 80px);
  padding-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid var(--border-soft);
}

.article-nav-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--copy-strong);
}

.article-nav-link:hover {
  text-decoration: none;
}

.article-nav-link-next {
  align-items: flex-end;
  text-align: right;
}

.article-nav-kicker {
  color: var(--copy);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 600;
}

.article-nav-title {
  max-width: 720px;
  font-size: clamp(1.45rem, 2.8vw, 2.45rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.article-nav-link:hover .article-nav-title {
  color: var(--theme-accent-strong);
}

.article-related {
  margin: clamp(56px, 7vw, 96px) calc(var(--page-gutter) * -1) 0;
  padding: clamp(44px, 6vw, 76px) var(--page-gutter);
  background: var(--surface-soft);
}

.article-related h2 {
  margin: 0 0 clamp(28px, 4vw, 42px);
  color: var(--copy-strong);
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.article-related-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 220px);
  align-items: center;
  gap: clamp(24px, 6vw, 80px);
  color: var(--copy-strong);
  cursor: pointer;
}

.article-related-card:hover,
.article-related-card:focus-visible {
  text-decoration: none;
}

.article-related-card:focus-visible {
  outline: 3px solid var(--theme-accent-strong);
  outline-offset: 10px;
  border-radius: var(--ci-radius);
}

.article-related-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--copy);
  font-weight: 600;
}

.article-related-author {
  color: var(--copy-strong);
}

.article-related-card h3 {
  margin: 0 0 18px;
  max-width: 860px;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  transition: color 0.22s ease;
}

.article-related-card:hover h3,
.article-related-card:focus-visible h3 {
  color: var(--theme-accent-strong);
}

.article-related-card p {
  max-width: 780px;
  margin: 0 0 26px;
  color: var(--copy);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.65;
  transition: color 0.22s ease;
}

.article-related-card:hover p,
.article-related-card:focus-visible p {
  color: var(--theme-accent-strong);
}

.article-related-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.article-related-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: var(--ci-radius);
  background: var(--surface);
  color: var(--copy-strong);
  font-weight: 600;
}

.article-related-media {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: var(--ci-radius);
  background: var(--theme-accent-soft);
}

.article-related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.article-related-card:hover .article-related-media img,
.article-related-card:focus-visible .article-related-media img {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.04);
}

@media (max-width: 760px) {
  .article-footer-nav,
  .article-related-card {
    grid-template-columns: 1fr;
  }

  .article-nav-link-next {
    align-items: flex-start;
    text-align: left;
  }

  .article-related-media {
    max-width: 220px;
  }
}

.article-body p,
.article-body li {
  color: var(--copy-strong);
  line-height: 1.78;
}

.article-body p {
  margin-bottom: 1.3em;
}

.article-body h2 {
  margin: clamp(44px, 6vw, 72px) 0 clamp(20px, 3vw, 30px);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.article-body h3 {
  margin: clamp(34px, 5vw, 58px) 0 18px;
  color: var(--copy-strong);
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.article-body a {
  color: var(--theme-accent);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.12em;
}

.article-body ul,
.article-body ol {
  margin: 0 0 clamp(30px, 4vw, 46px) 1.2em;
  padding: 0;
}

.article-body li {
  padding-left: 0.25em;
  margin-bottom: 0.7em;
}

.article-body li::marker {
  color: var(--theme-accent);
}

@media (max-width: 760px) {
  .article-shell {
    max-width: none;
    margin-inline: var(--page-gutter);
  }

  .article-cover {
    aspect-ratio: 1.25 / 1;
  }

  .article-shell > h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .article-meta {
    display: block;
  }

  .article-meta span {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 6px;
  }
}

/* Leistungen pages: keep text rhythm aligned with the index page. */
body.theme-leistungen,
body.theme-media,
body.theme-advertising,
body.theme-digital {
  --leistungen-hero-title-size: var(--hero-title-size);
  --leistungen-section-title-size: var(--section-title-size);
  --leistungen-copy-size: 1rem;
}

body.theme-leistungen .page-hero,
body.theme-media .page-hero,
body.theme-advertising .page-hero,
body.theme-digital .page-hero {
  --hero-title-size: var(--leistungen-hero-title-size);
  --hero-body-size: var(--leistungen-copy-size);
}

body.theme-leistungen .hero-kicker,
body.theme-media .hero-kicker,
body.theme-advertising .hero-kicker,
body.theme-digital .hero-kicker {
  margin-bottom: 14px;
  font-size: var(--hero-kicker-size);
  font-weight: 700;
  letter-spacing: 0.04em;
}

body.theme-leistungen .hero-copy,
body.theme-media .hero-copy,
body.theme-advertising .hero-copy,
body.theme-digital .hero-copy {
  max-width: 860px;
}

body.theme-leistungen .hero-copy h1,
body.theme-media .hero-copy h1,
body.theme-advertising .hero-copy h1,
body.theme-digital .hero-copy h1 {
  max-width: 12.5ch;
  margin-bottom: 16px;
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

body.theme-leistungen .hero-copy p,
body.theme-media .hero-copy p,
body.theme-advertising .hero-copy p,
body.theme-digital .hero-copy p {
  max-width: 54ch;
  font-weight: inherit;
  line-height: 1.65;
}

body.theme-leistungen .content-section,
body.theme-media .content-section,
body.theme-advertising .content-section,
body.theme-digital .content-section {
  padding: var(--section-spacing-y) 0;
}

body.theme-leistungen .section-head,
body.theme-media .section-head,
body.theme-advertising .section-head,
body.theme-digital .section-head {
  margin-bottom: clamp(34px, 4vw, 56px);
}

body.theme-leistungen .section-head span,
body.theme-media .section-head span,
body.theme-advertising .section-head span,
body.theme-digital .section-head span {
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

body.theme-leistungen .section-head h2,
body.theme-media .section-head h2,
body.theme-advertising .section-head h2,
body.theme-digital .section-head h2 {
  font-size: var(--leistungen-section-title-size);
  line-height: var(--section-title-line-height);
  letter-spacing: -0.045em;
}

body.theme-leistungen .section-head p,
body.theme-media .section-head p,
body.theme-advertising .section-head p,
body.theme-digital .section-head p,
body.theme-leistungen .mini-article-card p,
body.theme-media .mini-article-card p,
body.theme-advertising .mini-article-card p,
body.theme-digital .mini-article-card p {
  font-size: var(--leistungen-copy-size);
  line-height: 1.6;
}

body.theme-leistungen .services-intro span,
body.theme-leistungen .service-feature-copy span,
body.theme-media .services-intro span,
body.theme-media .service-feature-copy span,
body.theme-advertising .services-intro span,
body.theme-advertising .service-feature-copy span,
body.theme-digital .services-intro span,
body.theme-digital .service-feature-copy span {
  margin-bottom: 12px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

body.theme-leistungen .services-intro h2,
body.theme-leistungen .service-feature-copy h2,
body.theme-media .services-intro h2,
body.theme-media .service-feature-copy h2,
body.theme-advertising .services-intro h2,
body.theme-advertising .service-feature-copy h2,
body.theme-digital .services-intro h2,
body.theme-digital .service-feature-copy h2 {
  margin-top: 0;
  margin-bottom: var(--section-title-copy-gap);
  font-size: var(--leistungen-section-title-size);
  line-height: var(--section-title-line-height);
}

body.theme-leistungen .service-feature-copy p,
body.theme-media .service-feature-copy p,
body.theme-advertising .service-feature-copy p,
body.theme-digital .service-feature-copy p {
  font-size: var(--leistungen-copy-size);
  font-weight: 400;
  line-height: 1.6;
}

body.theme-leistungen .mini-article-grid,
body.theme-media .mini-article-grid,
body.theme-advertising .mini-article-grid,
body.theme-digital .mini-article-grid {
  gap: clamp(16px, 2vw, 24px);
}

body.theme-leistungen .mini-article-card,
body.theme-media .mini-article-card,
body.theme-advertising .mini-article-card,
body.theme-digital .mini-article-card {
  padding: clamp(20px, 2.4vw, 30px);
  border-radius: var(--ci-radius);
}

body.theme-leistungen .mini-article-card h3,
body.theme-media .mini-article-card h3,
body.theme-advertising .mini-article-card h3,
body.theme-digital .mini-article-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.12rem, 1.55vw, 1.35rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

@media (max-width: 760px) {
  body.theme-leistungen .page-hero,
  body.theme-media .page-hero,
  body.theme-advertising .page-hero,
  body.theme-digital .page-hero {
    --hero-title-size: clamp(2.25rem, 10vw, 3.35rem);
  }
}

/* Services overview: generous rhythm and one consistent CI card language */
body.theme-leistungen .services-overview {
  padding-top: clamp(80px, 9vw, 136px);
  padding-bottom: clamp(88px, 10vw, 152px);
}

body.theme-leistungen .services-intro {
  max-width: 900px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

body.theme-leistungen .services-wide-card {
  margin-bottom: clamp(72px, 9vw, 136px);
  border: 1px solid color-mix(in srgb, var(--theme-accent) 18%, transparent);
}

body.theme-leistungen .service-feature,
body.theme-leistungen .split-feature {
  gap: clamp(48px, 6vw, 96px);
  margin-bottom: clamp(112px, 13vw, 192px);
  padding: clamp(28px, 4vw, 64px);
  border: 1px solid color-mix(in srgb, var(--theme-accent) 16%, #e7e7e7);
  border-radius: var(--ci-radius);
  background: color-mix(in srgb, var(--theme-accent) 3%, #ffffff);
}

body.theme-leistungen .split-feature-events {
  margin-bottom: 0;
}

body.theme-leistungen .service-feature-copy {
  padding: clamp(8px, 1.5vw, 24px) 0;
}

body.theme-leistungen .service-feature-copy p + p {
  margin-top: 18px;
}

body.theme-leistungen .services-image-card {
  border: 1px solid color-mix(in srgb, var(--theme-accent) 18%, transparent);
}

body.theme-leistungen .service-benefits,
body.theme-leistungen .process-mini {
  gap: clamp(12px, 1.4vw, 20px);
}

body.theme-leistungen .service-benefit-card,
body.theme-leistungen .process-mini div,
body.theme-leistungen .pill-grid span {
  border: 1px solid color-mix(in srgb, var(--theme-accent) 18%, transparent);
  border-radius: var(--ci-radius);
  background: color-mix(in srgb, var(--theme-accent) 8%, #ffffff);
  box-shadow: 0 14px 32px color-mix(in srgb, var(--theme-accent) 7%, transparent);
}

body.theme-leistungen .service-benefit-card {
  min-height: 250px;
}

body.theme-leistungen .service-benefit-card.is-active {
  border-color: var(--theme-accent);
  background: var(--theme-accent);
}

body.theme-leistungen .process-mini {
  gap: 12px;
  margin-top: clamp(32px, 4vw, 48px);
}

body.theme-leistungen .process-mini div {
  display: flex;
  min-width: 0;
  min-height: 154px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 10px;
}

body.theme-leistungen .process-mini b {
  border-radius: var(--ci-radius);
}

body.theme-leistungen .pill-grid {
  gap: 12px;
  margin-top: clamp(28px, 3vw, 40px);
}

body.theme-leistungen .pill-grid span {
  padding: 18px 22px;
}

@media (max-width: 820px) {
  body.theme-leistungen .services-overview {
    padding-top: 64px;
    padding-bottom: 88px;
  }

  body.theme-leistungen .services-wide-card {
    margin-bottom: 72px;
  }

  body.theme-leistungen .service-feature,
  body.theme-leistungen .split-feature {
    gap: 36px;
    margin-bottom: 80px;
    padding: 24px;
  }

  body.theme-leistungen .split-feature-events {
    margin-bottom: 0;
  }

  body.theme-leistungen .split-feature-digital .services-image-card {
    order: 2;
  }

  body.theme-leistungen .process-mini div {
    min-height: 112px;
  }
}

@media (max-width: 520px) {
  body.theme-leistungen .service-feature,
  body.theme-leistungen .split-feature {
    margin-inline: calc(var(--page-gutter) * -0.35);
    padding: 20px;
  }

  body.theme-leistungen .pill-grid {
    grid-template-columns: 1fr;
  }
}

body.career-page {
  --theme-accent: var(--accent-brand);
  --theme-accent-soft: color-mix(in srgb, var(--theme-accent) 14%, transparent);
  --theme-accent-muted: color-mix(in srgb, var(--theme-accent) 42%, transparent);
  --theme-accent-strong: color-mix(in srgb, var(--theme-accent) 72%, #000);
}

.desktop-subnav-group-theme-about {
  --desktop-subnav-group-accent: var(--accent-brand);
}

.desktop-nav-item-theme-about .desktop-subnav-panel {
  /* Use the shared header offset so the compact panel stays aligned with the
     other desktop flyouts in both the full-size and scrolled header states. */
  position: fixed;
  top: var(--desktop-subnav-top);
  left: 50vw;
  width: min(480px, calc(100vw - (var(--page-gutter) * 2)));
  padding: 10px;
  border-radius: var(--ci-radius);
  transform: translateX(-50%) translateY(10px);
}

body.is-scrolled .desktop-nav-item-theme-about .desktop-subnav-panel {
  width: min(480px, calc(100vw - (var(--page-gutter) * 2)));
}

.desktop-nav-item-theme-about .desktop-subnav-grid.columns-1 {
  grid-template-columns: minmax(0, 1fr);
}

.desktop-nav-item-theme-about .desktop-subnav-group {
  padding: 22px;
  border-radius: var(--ci-radius);
}

.desktop-nav-item-theme-about .desktop-subnav-links {
  gap: 0;
}

.desktop-nav-item-theme-about .desktop-subnav-link {
  padding: 18px 0;
}

.desktop-nav-item-theme-about:hover .desktop-subnav-panel,
.desktop-nav-item-theme-about:focus-within .desktop-subnav-panel {
  transform: translateX(-50%) translateY(0);
}

.career-page .about-eyebrow,
.career-page .about-strength-card i,
.career-page .about-process-step i,
.career-page .about-metric strong {
  color: var(--theme-accent);
}

.career-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.career-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 2px solid var(--theme-accent);
  border-radius: var(--ci-radius);
  color: var(--theme-accent-strong);
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.25s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    background-color 0.35s ease;
}

.career-secondary-link:hover,
.career-secondary-link:focus-visible {
  transform: translateY(-1px);
  border-color: var(--theme-accent-strong);
  background: color-mix(in srgb, var(--theme-accent) 10%, transparent);
  color: var(--theme-accent-strong);
  text-decoration: none;
}

.career-highlight-card,
.career-application-box {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--media-radius);
  background: linear-gradient(145deg, #fff8e7 0%, #f1d894 100%);
  color: #111111;
}

.career-highlight-card span {
  margin-bottom: 14px;
  color: var(--theme-accent-strong);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.career-highlight-card h3,
.career-application-box h3 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.career-highlight-card p,
.career-benefits p {
  margin: 0;
  color: var(--copy);
  line-height: 1.65;
}

.career-role-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.career-benefits {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: center;
  padding: 36px;
  border-radius: var(--media-radius);
  background: var(--surface-soft);
}

.career-benefits h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: var(--section-title-line-height);
}

.career-benefit-list,
.career-application-box ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.career-benefit-list li,
.career-application-box li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--copy);
  font-weight: 700;
  line-height: 1.5;
}

.career-benefit-list i {
  color: var(--theme-accent);
  font-size: 1.25rem;
}

.career-final-cta {
  background: linear-gradient(180deg, #fff8e7 0%, #f5e2aa 100%);
}

@media (max-width: 900px) {
  .career-role-grid,
  .career-benefits {
    grid-template-columns: 1fr;
  }
}

.references-hero {
  min-height: clamp(620px, 78vh, 860px);
  background-position: center 42%;
}

.references-hero-copy {
  display: grid;
  gap: 18px;
}

.references-hero-categories {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  font-weight: 700;
}

.references-hero-categories a:first-child {
  margin-bottom: 18px;
}

.references-hero-categories a {
  color: rgba(255, 255, 255, 0.86);
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.references-hero-categories a:hover,
.references-hero-categories a:focus-visible {
  color: #ffffff;
  transform: translateX(8px);
  text-decoration: none;
}

.references-gallery-section {
  padding: clamp(28px, 4vw, 56px) 0 0;
}

.references-gallery-shell {
  overflow: hidden;
}

.references-filter-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.section-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--theme-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.references-filter-shell h2,
.references-grid-head h2 {
  margin: 0;
  color: var(--copy-strong);
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
  line-height: 1;
}

.references-filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.references-filter-pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid color-mix(in srgb, var(--theme-accent) 24%, var(--border-soft));
  border-radius: var(--ci-radius);
  color: var(--copy-strong);
  font-weight: 800;
  background: color-mix(in srgb, var(--theme-accent) 7%, var(--surface));
  font: inherit;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.references-filter-pill.is-active,
.references-filter-pill:hover,
.references-filter-pill:focus-visible {
  background: var(--theme-accent);
  color: #ffffff;
  text-decoration: none;
}

.references-filter-pill:hover {
  transform: translateY(-2px);
}

.references-grid-shell {
  padding: clamp(22px, 3vw, 36px) 0 0;
}

.references-grid-head {
  margin-bottom: 22px;
}

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

.reference-card {
  position: relative;
  display: block;
  grid-column: span 1;
  width: 100%;
  min-height: clamp(300px, 32vw, 520px);
  overflow: hidden;
  border-radius: var(--media-radius);
  color: #ffffff;
  background: #111111;
  isolation: isolate;
}

.reference-card--landscape {
  grid-column: span 2;
  min-height: clamp(320px, 38vw, 620px);
}

.reference-card[hidden] {
  display: none;
}

.reference-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transform: scale(1.02);
  transition: transform 0.45s ease;
}

.reference-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 22%, rgba(0, 0, 0, 0.76) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.reference-card:hover img {
  transform: scale(1.08);
}

.reference-card:hover::after,
.reference-card:focus-within::after {
  opacity: 1;
}

.reference-card-copy {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 2.4vw, 32px);
  right: clamp(20px, 2.4vw, 32px);
  bottom: clamp(20px, 2.4vw, 32px);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.reference-card:hover .reference-card-copy,
.reference-card:focus-within .reference-card-copy {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.reference-card-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--theme-accent) 72%, #fff);
}

.reference-card-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
}

.reference-card-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.reference-card-copy a {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 800;
  color: #ffffff;
}

@media (max-width: 980px) {
  .references-filter-shell {
    grid-template-columns: 1fr;
  }

  .references-filter-list {
    justify-content: flex-start;
  }

  .reference-card,
  .reference-card--landscape {
    grid-column: span 2;
    min-height: clamp(300px, 52vw, 520px);
  }
}

@media (max-width: 640px) {
  .references-hero-categories {
    gap: 8px;
  }

  .reference-card,
  .reference-card--landscape {
    grid-column: 1 / -1;
    min-height: clamp(320px, 105vw, 520px);
  }
}

@media (hover: none) {
  .reference-card::after {
    opacity: 1;
  }

  .reference-card-copy {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

.references-cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 4vw, 48px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.3)),
    url("../../images/header5.jpg") center / cover no-repeat;
}

.references-cta-shell h2 {
  max-width: 780px;
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.references-cta-shell p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.references-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--ci-radius);
  background: #ffffff;
  color: #111111;
  font-weight: 900;
  white-space: nowrap;
}

.references-cta-button:hover,
.references-cta-button:focus-visible {
  text-decoration: none;
  background: var(--theme-accent);
  color: #ffffff;
}

@media (max-width: 760px) {
  .references-cta-shell {
    align-items: flex-start;
    flex-direction: column;
  }
}

.reference-detail-hero {
  min-height: clamp(600px, 76vh, 820px);
  background-position: center 44%;
}

.reference-detail-hero-copy {
  display: grid;
  gap: 18px;
  max-width: 780px;
}

.reference-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.reference-detail-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--ci-radius);
  color: #ffffff;
  font-weight: 800;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.1);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.reference-detail-actions a:hover,
.reference-detail-actions a:focus-visible {
  color: #111111;
  background: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
}

.reference-detail-intro {
  padding-bottom: 8px;
}

.reference-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 22px;
  align-items: stretch;
}

.reference-detail-media,
.reference-detail-facts,
.reference-story-card,
.reference-result-shell {
  border: 1px solid color-mix(in srgb, var(--theme-accent) 18%, var(--border-soft));
  border-radius: var(--media-radius);
  background: color-mix(in srgb, var(--theme-accent) 5%, var(--surface));
}

.reference-detail-media {
  min-height: clamp(340px, 44vw, 620px);
  overflow: hidden;
}

.reference-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reference-detail-facts {
  padding: clamp(24px, 3vw, 38px);
}

.reference-detail-facts h2 {
  margin: 0 0 22px;
  color: var(--copy-strong);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

.reference-detail-facts dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.reference-detail-facts dl div {
  padding: 16px;
  border-radius: var(--ci-radius);
  background: var(--surface);
}

.reference-detail-facts dt {
  margin-bottom: 6px;
  color: var(--theme-accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reference-detail-facts dd {
  margin: 0;
  color: var(--copy-strong);
  font-weight: 800;
  line-height: 1.35;
}

.reference-story-shell {
  display: grid;
  gap: 24px;
}

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

.reference-story-card {
  padding: clamp(24px, 3vw, 40px);
}

.reference-story-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: var(--ci-radius);
  color: #ffffff;
  background: var(--theme-accent);
  font-weight: 900;
}

.reference-story-card h3 {
  margin: 0 0 12px;
  color: var(--copy-strong);
  font-size: clamp(1.5rem, 2vw, 2.2rem);
}

.reference-story-card p,
.reference-result-shell p {
  margin: 0;
  color: var(--copy);
  line-height: 1.75;
}

.reference-result-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 52px);
}

.reference-result-shell h2 {
  max-width: 760px;
  margin: 0 0 16px;
  color: var(--copy-strong);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.reference-result-list {
  display: grid;
  gap: 10px;
}

.reference-result-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--ci-radius);
  color: var(--copy-strong);
  background: var(--surface);
  font-weight: 800;
}

.reference-result-list span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: var(--ci-radius);
  color: #ffffff;
  background: var(--theme-accent);
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .reference-detail-shell,
  .reference-result-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .reference-detail-actions {
    flex-direction: column;
  }

  .reference-story-grid {
    grid-template-columns: 1fr;
  }

  .reference-detail-actions a {
    width: 100%;
    justify-content: center;
  }

  .reference-story-grid {
    display: grid;
  }
}
/*
 * Sprungziele der Leistungsnavigation mit ausreichend Vorlauf anzeigen.
 * Die Navigation verweist auf einzelne Tabs, JavaScript scrollt anschließend
 * zur gemeinsamen Leistungssektion. Der Abstand hält dabei auch Überschrift
 * und Tabnavigation vollständig unter dem fixierten Header sichtbar.
 */
.services-overview[id="leistungen"] {
  scroll-margin-top: clamp(11rem, 22vh, 15rem);
}

/* Shared expandable service overview for all three division pages. */
.service-switcher {
  overflow: visible;
  border-radius: var(--media-radius);
  background: var(--surface-soft);
}

.service-switcher > [role="tablist"] {
  position: relative;
  z-index: 2;
  display: flex;
  overflow: visible;
  padding: 10px;
  gap: 8px;
  scrollbar-width: none;
}

.service-switcher > [role="tablist"] button {
  flex: 1 0 auto;
  padding: 13px 18px;
  border: 0;
  border-radius: var(--ci-radius);
  background: transparent;
  color: var(--copy);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.service-switcher > [role="tablist"] button:hover,
.service-switcher > [role="tablist"] button:focus-visible {
  color: var(--theme-accent);
  transform: translateY(-1px);
}

.service-switcher > [role="tablist"] button.is-active {
  background: var(--theme-accent);
  color: #fff;
}

.service-switcher article {
  display: none;
  grid-template-columns: minmax(300px, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: clamp(18px, 2.5vw, 34px);
}

.service-switcher article.is-active {
  display: grid;
  animation: service-switcher-in 0.4s ease both;
}

@keyframes service-switcher-in {
  from { opacity: 0; transform: translateY(12px); }
}

.service-switcher .services-image-card {
  min-height: clamp(350px, 42vw, 580px);
  margin: 0;
  border-radius: var(--media-radius);
}

.service-switcher .service-feature-copy {
  padding: clamp(10px, 3vw, 40px) 0;
}

.service-switcher .service-feature-copy h3 {
  margin: 14px 0 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.service-switcher .service-feature-copy p {
  margin-bottom: 24px;
}

.service-switcher .service-tags {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-switcher .service-tags li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--copy);
  font-weight: 700;
}

.service-switcher .service-feature-copy-detailed {
  padding-block: clamp(10px, 2vw, 24px);
}

.service-switcher .service-feature-copy-detailed h3 {
  font-size: clamp(2rem, 3.3vw, 3.5rem);
}

.service-feature-copy-detailed h4 {
  margin: 32px 0 14px;
  color: var(--heading);
  font-size: 1.05rem;
}

.service-details {
  display: grid;
  gap: 0;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.service-switcher .service-benefits {
  display: grid;
  gap: 18px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.service-details li {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}

.service-details li:first-child {
  border-top: 1px solid var(--border-soft);
}

.service-details strong {
  color: var(--heading);
  font-size: 0.98rem;
}

.service-details span {
  color: var(--copy);
  font-size: 0.94rem;
  line-height: 1.65;
}

.service-switcher .service-benefits li {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
}

.service-switcher .service-benefits strong,
.service-switcher .service-benefits span {
  display: block;
}

.service-switcher .service-benefits strong {
  margin-bottom: 6px;
  color: var(--copy-strong);
  font-size: 1rem;
}

.service-switcher .service-benefits span {
  color: var(--copy);
  font-size: 0.94rem;
  line-height: 1.65;
}

.service-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(440px, 0.9fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.service-intro-layout .intro-copy {
  align-self: center;
  padding-right: 0;
}

.service-intro-layout .intro-copy h2 {
  max-width: 10ch;
}

.service-intro-layout .section-label {
  display: block;
}

.content-section .stats-grid {
  margin-top: clamp(34px, 5vw, 64px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-intro-layout .stats-grid {
  width: min(100%, 680px);
  justify-self: end;
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-intro-layout .stat-card {
  min-height: clamp(150px, 15vw, 210px);
}

.services-process .process-lineup {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.services-process .process-step span {
  display: block;
  margin-top: 22px;
  color: var(--copy-strong);
  font-weight: 800;
}

.project-card strong { font-size: clamp(1rem, 1.4vw, 1.3rem); }
.project-card small { color: rgba(255, 255, 255, 0.78); }
.project-card i { margin-left: auto; font-style: normal; }

@media (max-width: 980px) {
  .service-intro-layout {
    grid-template-columns: 1fr;
  }

  .service-intro-layout .intro-copy {
    padding-right: 0;
  }

  .service-intro-layout .stats-grid {
    width: 100%;
    grid-template-rows: none;
  }

  .service-intro-layout .stat-card {
    min-height: 138px;
  }
}

@media (max-width: 820px) {
  .service-switcher > [role="tablist"] {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 28px;
    margin-bottom: -18px;
  }

  .service-switcher article,
  .service-switcher article.is-active { grid-template-columns: 1fr; }
  .content-section .stats-grid,
  .services-process .process-lineup { grid-template-columns: 1fr; }
  .service-switcher .services-image-card { min-height: 320px; }
}

/* Interactive five-step process on service pages */
.interactive-process {
  position: relative;
  height: calc(100vh + 180vh);
  margin-top: clamp(36px, 5vw, 64px);
  --process-card-size: clamp(360px, calc(100vh - 300px), 460px);
}
.interactive-process.has-sticky-heading { margin-top: 0; }
.process-sticky-shell {
  position: sticky;
  /* JavaScript resolves the centred sticky offset from the shell's actual
     height. Unlike a translate, top only takes effect once the shell sticks,
     so the process remains in its natural position while it enters the view. */
  top: var(--process-sticky-top, 72px);
}
.process-sticky-shell > .section-head {
  margin-bottom: clamp(36px, 5vw, 64px);
}
.interactive-process .process-lineup {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--process-step-count, 5), minmax(0, 1fr));
  gap: clamp(8px, 2vw, 24px);
  margin: 0 0 clamp(28px, 4vw, 48px);
}
.interactive-process .process-lineup::before {
  content: "";
  position: absolute;
  top: 25px;
  left: calc(50% / var(--process-step-count, 5));
  right: calc(50% / var(--process-step-count, 5));
  height: 2px;
  background: var(--border-soft);
}
.process-trigger {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: var(--copy-strong);
  font: inherit;
  text-align: center;
  cursor: default;
}
.process-trigger b {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: var(--ci-radius);
  background: #050505;
  color: #fff;
  font-size: .88rem;
  transition: transform .3s ease, background-color .3s ease;
}
.process-trigger span {
  display: block;
  margin-top: 16px;
  font-size: clamp(.82rem, 1vw, 1rem);
  font-weight: 800;
}
.process-trigger.is-active b {
  background: var(--theme-accent);
  transform: scale(1.4);
}
.process-trigger.is-active span {
  color: var(--theme-accent-strong);
  animation: process-title-down .35s ease both;
}
.process-details { border-radius: var(--media-radius); background: var(--surface-soft); overflow: hidden; }
.process-detail {
  display: none;
  height: var(--process-card-size);
  grid-template-columns: auto minmax(280px, 1fr);
  align-items: stretch;
}
.process-detail.is-active { display: grid; animation: process-detail-in .5s .28s ease both; }
.process-detail figure {
  width: var(--process-card-size);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
}
.process-detail img { width: 100%; height: 100%; object-fit: cover; }
.process-detail > div { min-height: 0; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: clamp(30px, 4vw, 56px); }
.process-detail h3 { margin: 14px 0 18px; font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1; letter-spacing: -.045em; }
.process-detail p { max-width: 540px; margin: 0; color: var(--copy); font-size: clamp(1rem, 1.15vw, 1.15rem); font-weight: 600; line-height: 1.65; }
@keyframes process-title-down { from { opacity: .35; transform: translateY(-12px); } to { transform: translateY(8px); } }
@keyframes process-detail-in { from { opacity: 0; transform: translateY(24px); } }
@media (prefers-reduced-motion: reduce) {
  .process-trigger.is-active span,
  .process-detail.is-active { animation: none; }
}
@media (max-width: 820px) {
  .interactive-process { height: calc(100vh + 220vh); }
  .process-sticky-shell { top: 72px; }
  .interactive-process .process-lineup { gap: 4px; }
  .interactive-process .process-lineup::before { top: 20px; }
  .process-trigger b { width: 40px; height: 40px; font-size: .76rem; }
  .process-trigger span { margin-top: 13px; font-size: .72rem; hyphens: auto; }
  .process-trigger.is-active b { transform: scale(1.25); }
  .process-detail,
  .process-detail.is-active { height: auto; grid-template-columns: 1fr; }
  .process-detail figure { width: 100%; min-height: 0; max-height: none; aspect-ratio: 1; }
  .process-detail > div { min-height: 300px; overflow: visible; }
}

/* --------------------------------------------------------------------------
   Responsive layout grid

   Laptop: 1440px frame / 1200px container / 12 columns / 120px margins.
   Tablet:  768px frame /  704px container /  8 columns /  32px margins.
   Mobile:  390px frame /  358px container /  4 columns /  16px margins.

   Component-specific grids and rounded corners remain untouched; only the
   shared container, inset and column tokens change with the viewport.
   -------------------------------------------------------------------------- */
:root,
body.theme-dark {
  --content-max-width: 1400px;
  --page-gutter: max(32px, calc((100vw - var(--content-max-width)) / 2));
  --grid-columns: 12;
  --grid-gutter: 24px;
  --media-radius: 30px;
}

/* All primary shells use the same centered content edge. */
.content-shell,
.dark-shell,
.black-shell,
.home-page .content-shell {
  width: min(var(--content-max-width), calc(100% - (var(--page-gutter) * 2)));
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
}

/* Reusable grid for new sections; existing component grids remain untouched. */
.layout-grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), minmax(0, 1fr));
  column-gap: var(--grid-gutter);
}

@media (max-width: 1024px) {
  :root,
  body.theme-dark {
    --page-gutter: 32px;
    --grid-columns: 8;
  }

  .content-shell,
  .dark-shell,
  .black-shell,
  .home-page .content-shell {
    width: calc(100% - (var(--page-gutter) * 2));
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  :root,
  body.theme-dark {
    --page-gutter: 16px;
    --grid-columns: 4;
  }

  .site-header,
  body.is-scrolled .site-header {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  .hero,
  .page-hero {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }
}

/* Media must never force a responsive grid wider than its container. */
img,
video,
iframe {
  max-width: 100%;
}

/* Links and button-like controls use colour and motion instead of underlines. */
a,
a:hover,
a:focus,
a:focus-visible,
button,
button:hover,
button:focus,
button:focus-visible {
  text-decoration: none;
}

/* Service pages: calm typography and quickly scannable service summaries. */
body.theme-digital .hero-kicker,
body.theme-digital .hero-copy h1,
body.theme-digital .section-label,
body.theme-digital .section-head span,
body.theme-digital .service-feature-copy span {
  letter-spacing: -0.01em;
}

body.theme-digital .hero-copy h1,
body.theme-digital .service-feature-copy span:not(.section-label) {
  text-transform: none;
}

body.theme-digital .hero-kicker,
body.theme-digital .section-label,
body.theme-digital .section-head span {
  text-transform: uppercase;
}

body.theme-digital .services-overview .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.6fr);
  column-gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

body.theme-digital .services-overview .section-head .section-label {
  grid-column: 1 / -1;
}

body.theme-digital .services-overview .section-head h2,
body.theme-digital .services-overview .section-head p {
  margin-bottom: 0;
}

.service-switcher .service-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.service-switcher .service-benefits li {
  padding: 15px;
  border: 1px solid var(--border-soft);
  border-radius: var(--ci-radius);
  background: var(--surface);
}

.service-switcher .service-benefits strong {
  color: var(--heading);
}

@media (max-width: 820px) {
  body.theme-digital .services-overview .section-head,
  .service-switcher .service-benefits {
    grid-template-columns: 1fr;
  }

  body.theme-digital .services-overview .section-head p {
    margin-top: 14px;
  }
}

/* Responsive masonry references on the three division pages. */
.services-results {
  position: relative;
  padding-block: clamp(80px, 10vw, 150px);
  background: var(--body-bg);
}

.results-stage {
  position: relative;
}

.results-sticky {
  margin-bottom: clamp(40px, 6vw, 80px);
}

.results-sticky .section-label {
  margin-bottom: 18px;
  color: var(--theme-accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.results-sticky h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--copy-strong);
  font-size: clamp(2.8rem, 6vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.results-flow {
  columns: 3 280px;
  column-gap: clamp(18px, 2vw, 32px);
}

.results-more {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
  margin: clamp(24px, 4vw, 48px) 0 0 auto;
  padding: 14px 22px;
  border: 1px solid var(--theme-accent);
  border-radius: var(--ci-radius);
  color: #ffffff;
  background: var(--theme-accent);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 800;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.results-more:hover,
.results-more:focus-visible {
  color: #ffffff;
  background: var(--theme-accent);
  text-decoration: none;
}

.results-more .send-arrow {
  width: 1.35em;
  height: 1.35em;
  color: currentColor;
}

.result-bubble {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 clamp(18px, 2vw, 32px);
  overflow: hidden;
  break-inside: avoid;
  border-radius: 30px;
  border: 1px solid color-mix(in srgb, var(--theme-accent) 32%, rgba(255, 255, 255, 0.5));
  border-radius: var(--ci-radius);
  color: #fff;
  background: #111;
  vertical-align: top;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.result-bubble::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.82) 100%);
  opacity: 1;
  transition: opacity 0.35s ease;
}

.result-bubble img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.result-bubble-overlay {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 4px 18px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.result-bubble small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.76);
  max-width: 42ch;
  font-size: clamp(0.72rem, 0.8vw, 0.84rem);
  font-weight: 700;
  line-height: 1.45;
}

.result-bubble strong {
  color: #fff;
  font-size: clamp(1.15rem, 1.8vw, 1.75rem);
  line-height: 1.08;
}

.result-bubble i {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  place-items: center;
  font-size: 1.2rem;
  font-style: normal;
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.result-bubble:hover,
.result-bubble:focus-visible {
  border-radius: var(--ci-radius);
  text-decoration: none;
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.result-bubble:hover::after,
.result-bubble:focus-visible::after,
.result-bubble:hover .result-bubble-overlay,
.result-bubble:focus-visible .result-bubble-overlay {
  opacity: 1;
}

.result-bubble:hover .result-bubble-overlay,
.result-bubble:focus-visible .result-bubble-overlay { transform: translateY(0); }

.result-bubble:hover img,
.result-bubble:focus-visible img {
  transform: scale(1.08);
}

@media (max-width: 760px) {
  .results-sticky {
    margin-bottom: 36px;
  }
  .results-sticky h2 { max-width: 10ch; font-size: clamp(3rem, 15vw, 5rem); }
  .results-flow { columns: 1; }
  .result-bubble-overlay { right: 20px; bottom: 20px; left: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .result-bubble,
  .result-bubble img { transition: none; }
}

/* Horizontal project gallery on all service pages. */
.results-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.results-heading h2 {
  max-width: 15ch;
  margin: 0;
  color: var(--copy-strong);
  font-size: clamp(2.65rem, 5.5vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.results-controls { display: flex; gap: 10px; }
.results-controls button {
  display: grid;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: var(--theme-accent);
  font-size: 1.35rem;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.results-controls button:hover,
.results-controls button:focus-visible { transform: scale(1.07); }
.results-controls button:disabled { opacity: 0.35; cursor: default; transform: none; }

.result-control-symbol {
  display: block;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-0.04em);
}

.results-gallery {
  display: grid;
  grid-auto-columns: min(72vw, 520px);
  grid-auto-flow: column;
  gap: clamp(16px, 2vw, 28px);
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.results-gallery::-webkit-scrollbar { display: none; }
.result-card {
  position: relative;
  height: clamp(390px, 52vw, 650px);
  overflow: hidden;
  border-radius: var(--ci-radius);
  color: #fff;
  background: #111;
  scroll-snap-align: start;
}
.result-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s cubic-bezier(.2,.75,.25,1); }
.result-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0,0,0,.82));
  opacity: 0;
  transition: opacity .3s ease;
}
.result-card-overlay {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 26px;
  left: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 20px;
  align-items: end;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .3s ease, transform .3s ease;
}
.result-card-overlay small { grid-column: 1 / -1; color: rgba(255,255,255,.78); font-weight: 700; }
.result-card-overlay strong { font-size: clamp(1.35rem, 2.2vw, 2rem); line-height: 1.05; }
.result-card-overlay i {
  display: block;
  width: 56px;
  height: 56px;
  background: #ffffff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='cutout'%3E%3Ccircle cx='32' cy='32' r='32' fill='white'/%3E%3Cpath d='M17 30.5L48.5 17L39.5 46L31.5 35.5L17 30.5Z' fill='none' stroke='black' stroke-width='3.5' stroke-linejoin='round'/%3E%3Cpath d='M31.5 35.5L48.5 17' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/mask%3E%3Ccircle cx='32' cy='32' r='32' fill='white' mask='url(%23cutout)'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='cutout'%3E%3Ccircle cx='32' cy='32' r='32' fill='white'/%3E%3Cpath d='M17 30.5L48.5 17L39.5 46L31.5 35.5L17 30.5Z' fill='none' stroke='black' stroke-width='3.5' stroke-linejoin='round'/%3E%3Cpath d='M31.5 35.5L48.5 17' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/mask%3E%3Ccircle cx='32' cy='32' r='32' fill='white' mask='url(%23cutout)'/%3E%3C/svg%3E") center / contain no-repeat;
}
.result-card-overlay i::before { display: none; }
.result-card:hover,
.result-card:focus-visible { text-decoration: none; }
.result-card:hover::after,
.result-card:focus-visible::after,
.result-card:hover .result-card-overlay,
.result-card:focus-visible .result-card-overlay { opacity: 1; }
.result-card:hover .result-card-overlay,
.result-card:focus-visible .result-card-overlay { transform: translateY(0); }
.result-card:hover img,
.result-card:focus-visible img { transform: scale(1.045); }

@media (max-width: 760px) {
  .results-heading { align-items: flex-end; }
  .results-heading h2 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .results-controls button { width: 48px; height: 48px; }
  .results-gallery { grid-auto-columns: 86vw; }
  .result-card { height: 480px; }
  .result-card::after,
  .result-card-overlay { opacity: 1; }
  .result-card-overlay { right: 20px; bottom: 20px; left: 20px; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .results-gallery { scroll-behavior: auto; }
  .result-card img, .result-card-overlay { transition: none; }
}

/* Keep every prominent action proportional as the available screen space shrinks. */
@media (max-width: 760px) {
  :is(
    .hero-cta,
    .subpage-cta-link,
    .npb-button,
    .contact-submit,
    .global-cta-button,
    .references-cta-button,
    .service-section-link,
    .services-cta-card a
  ) {
    min-height: 48px;
    padding: 11px 18px;
    gap: 9px;
    font-size: 0.78rem;
  }

  .hero-cta {
    min-height: 52px;
    padding-inline: 20px;
    font-size: 0.9rem;
  }

  .hero-cta-primary span,
  :is(.subpage-cta-link, .service-section-link, .global-cta-button) .send-arrow {
    width: 29px;
    height: 29px;
  }

  .contact-topic-options button,
  .service-switcher > [role="tablist"] button {
    padding: 10px 14px;
    font-size: 0.76rem;
  }
}

@media (max-width: 420px) {
  :is(
    .hero-cta,
    .subpage-cta-link,
    .npb-button,
    .contact-submit,
    .global-cta-button,
    .references-cta-button,
    .service-section-link,
    .services-cta-card a
  ) {
    min-height: 44px;
    padding: 9px 14px;
    gap: 8px;
    font-size: 0.72rem;
  }

  .hero-cta {
    width: min(100%, 560px);
    min-height: 46px;
    padding-inline: 16px;
    font-size: 0.8rem;
  }

  .hero-actions {
    align-items: center;
  }

  .contact-topic-options button,
  .service-switcher > [role="tablist"] button {
    padding: 8px 11px;
    font-size: 0.7rem;
  }

  .results-controls button {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}

/*
 * Leistungen: tabbed editorial stage shared by Media, Advertising and Digital.
 * The tabs visually sit on the panel while the image and copy form one calm,
 * generous card. This intentionally lives after the generic responsive rules.
 */
:is(.theme-media, .theme-advertising, .theme-digital) .service-switcher {
  --service-stage-gap: clamp(28px, 4vw, 64px);
  overflow: hidden;
  border-radius: clamp(18px, 1.7vw, 30px);
  background: var(--surface-soft);
}

:is(.theme-media, .theme-advertising, .theme-digital) .service-switcher > [role="tablist"] {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: clamp(8px, 1.5vw, 28px);
  padding: 0;
  background: var(--surface);
}

:is(.theme-media, .theme-advertising, .theme-digital) .service-switcher > [role="tablist"] button {
  min-width: 0;
  min-height: clamp(48px, 4vw, 62px);
  padding: 10px 12px;
  border-radius: clamp(18px, 1.6vw, 28px) clamp(18px, 1.6vw, 28px) 0 0;
  background: color-mix(in srgb, var(--theme-accent) 11%, var(--surface-soft));
  color: var(--theme-accent-strong);
  font-size: clamp(0.68rem, 0.85vw, 0.84rem);
  line-height: 1.2;
  white-space: normal;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease,
    min-height 0.25s ease, padding 0.25s ease, font-size 0.25s ease;
}

:is(.theme-media, .theme-advertising, .theme-digital) .service-switcher > [role="tablist"] button:hover,
:is(.theme-media, .theme-advertising, .theme-digital) .service-switcher > [role="tablist"] button:focus-visible {
  background: color-mix(in srgb, var(--theme-accent) 18%, var(--surface-soft));
}

:is(.theme-media, .theme-advertising, .theme-digital) .service-switcher > [role="tablist"] button.is-active {
  min-height: clamp(58px, 5vw, 78px);
  padding: 14px 12px;
  background: var(--theme-accent);
  color: #fff;
  font-size: clamp(0.72rem, 1vw, 0.98rem);
}

:is(.theme-media, .theme-advertising, .theme-digital) .service-switcher article,
:is(.theme-media, .theme-advertising, .theme-digital) .service-switcher article.is-active {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--service-stage-gap);
  align-items: stretch;
  padding: clamp(24px, 2.4vw, 40px);
}

:is(.theme-media, .theme-advertising, .theme-digital) .service-switcher .services-image-card {
  /* Match the media frame to the complete copy column beside it. */
  min-height: 0;
  height: 100%;
  border-radius: clamp(16px, 1.5vw, 26px);
}

:is(.theme-media, .theme-advertising, .theme-digital) .service-switcher .service-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(8px, 1.8vw, 28px) 0;
}

:is(.theme-media, .theme-advertising, .theme-digital) .service-switcher .service-feature-copy h3 {
  max-width: 12ch;
  margin: clamp(14px, 1.5vw, 22px) 0 clamp(16px, 1.6vw, 24px);
  font-size: clamp(2.35rem, 4.3vw, 4.65rem);
  line-height: 0.98;
}

:is(.theme-media, .theme-advertising, .theme-digital) .service-switcher .service-feature-copy > p {
  max-width: 46rem;
  margin: 0 0 clamp(22px, 2vw, 32px);
  font-size: clamp(0.94rem, 1.15vw, 1.12rem);
  line-height: 1.55;
}

:is(.theme-media, .theme-advertising, .theme-digital) .service-switcher .service-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: clamp(20px, 2.5vw, 34px);
}

:is(.theme-media, .theme-advertising, .theme-digital) .service-switcher .service-benefits li {
  display: grid;
  place-content: center;
  min-height: clamp(84px, 8vw, 108px);
  padding: 14px 18px;
  border: 0;
  border-radius: clamp(16px, 1.5vw, 24px);
  background: var(--surface);
  text-align: center;
}

:is(.theme-media, .theme-advertising, .theme-digital) .service-switcher .service-benefits strong {
  margin: 0;
  color: var(--theme-accent-strong);
  font-size: clamp(0.92rem, 1.25vw, 1.3rem);
  line-height: 1.15;
  text-transform: uppercase;
}

:is(.theme-media, .theme-advertising, .theme-digital) .service-switcher .service-benefits span {
  display: none;
}

:is(.theme-media, .theme-advertising, .theme-digital) .service-switcher .service-section-link {
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 920px) {
  :is(.theme-media, .theme-advertising, .theme-digital) .service-switcher {
    overflow: visible;
    background: transparent;
  }

  :is(.theme-media, .theme-advertising, .theme-digital) .service-switcher > [role="tablist"] {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 10px;
    background: transparent;
    scroll-snap-type: x proximity;
  }

  :is(.theme-media, .theme-advertising, .theme-digital) .service-switcher > [role="tablist"] button {
    flex: 0 0 min(76vw, 280px);
    min-height: 52px;
    border-radius: 16px;
    scroll-snap-align: start;
  }

  :is(.theme-media, .theme-advertising, .theme-digital) .service-switcher article,
  :is(.theme-media, .theme-advertising, .theme-digital) .service-switcher article.is-active {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 18px;
    border-radius: 20px;
    background: var(--surface-soft);
  }

  :is(.theme-media, .theme-advertising, .theme-digital) .service-switcher .services-image-card {
    min-height: 0;
    height: clamp(300px, 72vw, 520px);
  }
}

@media (max-width: 560px) {
  :is(.theme-media, .theme-advertising, .theme-digital) .service-switcher .service-feature-copy h3 {
    font-size: clamp(2.15rem, 11vw, 3.25rem);
  }

  :is(.theme-media, .theme-advertising, .theme-digital) .service-switcher .service-benefits {
    grid-template-columns: 1fr;
  }

  :is(.theme-media, .theme-advertising, .theme-digital) .service-switcher .service-benefits li {
    min-height: 82px;
  }
}

/* --------------------------------------------------------------------------
   Viewport-sized content sections

   Every top-level content chapter gets at least one full visible viewport so
   that the preceding and following chapter do not peek into view. Content
   that genuinely needs more room can still grow naturally; nothing is clipped
   or forced into a fixed height. Hero sections deliberately keep their
   existing sizing and spacing.
   -------------------------------------------------------------------------- */
main > section:not(.hero-page, .page-hero, .about-hero, .universal-project-cta) {
  box-sizing: border-box;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  padding-block: clamp(80px, 12svh, 160px);
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 760px) {
  main > section:not(.hero-page, .page-hero, .about-hero, .universal-project-cta) {
    padding-block: clamp(64px, 10svh, 112px);
  }
}

@media (max-height: 680px) and (min-width: 761px) {
  main > section:not(.hero-page, .page-hero, .about-hero, .universal-project-cta) {
    padding-block: 64px;
  }
}

/*
 * Keep the first content chapter at the same distance from its hero as on the
 * contact page. Unlike later viewport-sized chapters, the first chapter starts
 * at the shared top padding instead of being vertically centered.
 */
.hero-followup-section {
  justify-content: flex-start;
  padding-top: clamp(96px, 12svh, 124px);
}

/* --------------------------------------------------------------------------
   About, team and career: shared Kollmann Media CI

   These editorial pages use the same bold, borderless surface language as the
   Digital & Creation intro: white chapters, solid brand-colour modules and
   outlined display figures instead of pale, decorative card gradients.
   -------------------------------------------------------------------------- */
:is(.about-page, .team-page, .career-page) main > .content-section {
  --surface: #ffffff;
  --surface-soft: #fafafa;
  --copy: #343434;
  --copy-strong: #111111;
  background: #ffffff;
  color: #111111;
}

:is(.about-page, .team-page, .career-page) .about-eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--theme-accent);
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

/* Intro modules follow the two-column service-intro composition. */
.team-intro-shell {
  grid-template-columns: minmax(0, 1.1fr) minmax(440px, 0.9fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: 0;
  background: transparent;
}

.team-intro-copy h2 {
  max-width: 10ch;
  letter-spacing: -0.055em !important;
}

.team-intro-copy p {
  max-width: 680px;
  color: var(--copy-strong);
  font-weight: 600;
  line-height: 1.55;
}

.team-intro-facts {
  width: min(100%, 680px);
  justify-self: end;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.team-intro-facts article,
.team-network-card {
  min-height: clamp(180px, 16vw, 230px);
  padding: clamp(24px, 2.2vw, 34px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--ci-radius);
  background: var(--theme-accent-strong);
  color: #ffffff;
  text-align: center;
}

.team-intro-facts article:last-child {
  grid-column: 1 / -1;
}

.team-intro-facts article:hover,
.team-network-card:hover {
  transform: translateY(-4px);
  background: var(--theme-accent);
}

.team-intro-facts span,
.team-network-card i {
  margin: 0 0 14px;
  color: transparent;
  -webkit-text-stroke: 1.5px #ffffff;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 0.92;
}

.team-intro-facts h3,
.team-network-card h3 {
  margin-bottom: 8px;
  color: #ffffff;
}

.team-intro-facts p,
.team-network-card p {
  color: rgba(255, 255, 255, 0.8);
}

/* Reusable editorial grids: strong dark modules with a brand-colour marker. */
:is(.about-page, .career-page) .about-strength-card {
  min-height: clamp(240px, 20vw, 320px);
  padding: clamp(28px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--ci-radius);
  background: #111111;
}

:is(.about-page, .career-page) .about-strength-card i {
  color: var(--theme-accent);
  font-size: clamp(2rem, 3vw, 3rem);
}

:is(.about-page, .career-page) .about-process {
  gap: 14px;
  padding-top: 0;
}

:is(.about-page, .career-page) .about-process-line {
  display: none;
}

:is(.about-page, .career-page) .about-process-step {
  min-height: clamp(250px, 22vw, 340px);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-radius: var(--ci-radius);
  background: var(--surface-soft);
  text-align: left;
}

:is(.about-page, .career-page) .about-process-number {
  position: static;
  width: auto;
  height: auto;
  margin: 0 0 auto;
  background: transparent;
  color: var(--theme-accent);
  font-size: 1rem;
}

:is(.about-page, .career-page) .about-process-step i {
  margin: 28px 0 18px;
}

/* Remove the cream gradients that competed with the brand colour. */
:is(.about-page, .career-page) .about-team-teaser,
.career-final-cta,
.career-highlight-card,
.career-application-box,
.career-benefits,
.team-career-cta {
  border-radius: var(--ci-radius);
  background: var(--surface-soft);
}

.career-highlight-card,
.career-application-box {
  background: var(--theme-accent-strong);
  color: #ffffff;
}

.career-highlight-card span,
.career-highlight-card h3,
.career-highlight-card p,
.career-application-box h3,
.career-application-box li {
  color: #ffffff;
}

.career-benefit-list li {
  padding: 18px 20px;
  border-radius: var(--ci-radius);
  background: #ffffff;
}

.team-career-cta {
  padding: clamp(34px, 5vw, 64px);
  background: #111111;
  color: #ffffff;
}

.team-career-cta h2,
.team-career-cta p {
  color: #ffffff;
}

.team-network-shell {
  padding: 0;
  background: transparent;
}

.team-network-grid {
  gap: 14px;
}

@media (max-width: 980px) {
  .team-intro-shell {
    grid-template-columns: 1fr;
  }

  .team-intro-facts {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .team-intro-facts,
  .team-network-grid,
  :is(.about-page, .career-page) .about-strength-grid,
  :is(.about-page, .career-page) .about-process {
    grid-template-columns: 1fr;
  }

  .team-intro-facts article:last-child {
    grid-column: auto;
  }

  :is(.about-page, .career-page) .about-process-step {
    min-height: 230px;
  }
}

/* --------------------------------------------------------------------------
   Einheitliche vertikale Seitenabstaende

   Der Abstand zwischen zwei direkten Seitenabschnitten kommt ausschliesslich
   vom vorherigen Abschnitt. Dadurch addieren sich weder oberes und unteres
   Padding noch kollabierende Margins. Nach dem Hero bleibt der kompaktere
   bestehende Abstand erhalten; erst die folgenden Kapitel werden deutlich
   grosszuegiger voneinander getrennt.
   -------------------------------------------------------------------------- */
main > section {
  margin-top: 0;
  margin-bottom: var(--section-gap-y);
}

main > :is(.page-hero, .about-hero, .npb-clean-hero, .hero-page) {
  margin-bottom: var(--hero-followup-gap-y);
}

main > section:not(.page-hero):not(.about-hero):not(.npb-clean-hero):not(.hero-page) {
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  justify-content: flex-start;
}

/* Keep the compact Hero-to-intro rhythm, then give every following homepage
   section at least one full viewport of vertical room. */
.home-page main > .content-section:not(.intro-section) {
  min-height: 100vh;
}
