@font-face {
  font-family: "BS Outfit";
  src: url("/assets/fonts/outfit-v15-latin-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "BS Outfit";
  src: url("/assets/fonts/outfit-v15-latin-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --bs-mint: #72ffc9;
  --bs-mint-dark: #26d99a;
  --bs-navy: #272f3f;
  --bs-navy-soft: #3a455a;
  --bs-ink: #272f3f;
  --bs-muted: #697184;
  --bs-subtle: #9298a5;
  --bs-surface: #fff;
  --bs-surface-muted: #f6f7f8;
  --bs-border: #e5e7eb;
  --bs-border-strong: #cfd3d8;
  --bs-heading: "BS Outfit", "Outfit", "Inter", system-ui, sans-serif;
  --bs-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bs-container: 1200px;
  --bs-radius-sm: 8px;
  --bs-radius: 14px;
  --bs-radius-lg: 22px;
  --bs-shadow-sm: 0 8px 30px rgba(39, 47, 63, 0.06);
  --bs-shadow-md: 0 16px 46px rgba(39, 47, 63, 0.09);
  --bs-shadow-lg: 0 26px 70px rgba(26, 34, 50, 0.16);
}

html {
  scroll-behavior: smooth;
}

html.bs-menu-open,
html.bs-menu-open body {
  overflow: hidden;
  overscroll-behavior: none;
}

body.bs-site {
  width: 100%;
  max-width: none;
  margin: 0;
  background: var(--bs-surface);
  color: var(--bs-ink);
  font-family: var(--bs-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.bs-site h1,
.bs-site h2,
.bs-site h3,
.bs-site h4 {
  font-family: var(--bs-heading);
  color: inherit;
}

.bs-site a {
  color: inherit;
}

.bs-main {
  min-height: 60vh;
}

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

.bs-overline {
  display: block;
  margin-bottom: 18px;
  color: var(--bs-subtle);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.bs-overline--mint {
  color: var(--bs-mint);
}

.bs-section {
  padding: 104px 0;
}

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

.bs-section--dark {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 15%, rgba(114, 255, 201, 0.13), transparent 34%),
    linear-gradient(135deg, var(--bs-navy-soft), #1f2739);
}

.bs-section__head {
  max-width: 690px;
  margin-bottom: 54px;
}

.bs-section__head--center {
  margin-inline: auto;
  text-align: center;
}

.bs-section__head h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.bs-section__head p {
  margin: 0;
  color: var(--bs-muted);
  font-size: 17px;
  line-height: 1.7;
}

.bs-section--dark .bs-section__head p {
  color: rgba(255, 255, 255, 0.64);
}

.bs-section__intro-text p {
  margin: 0 0 12px;
  color: var(--bs-muted);
  font-size: 17px;
  line-height: 1.7;
}

.bs-section__intro-text p:last-child {
  margin-bottom: 0;
}

.bs-section__crossfunc {
  max-width: 690px;
  margin-bottom: 54px;
  padding-top: 36px;
  border-top: 1px solid var(--bs-border, rgba(39, 47, 63, 0.12));
}

.bs-section__crossfunc .bs-overline {
  display: block;
  margin-bottom: 16px;
}

.bs-section__crossfunc-text p {
  margin: 0 0 12px;
  color: var(--bs-muted);
  font-size: 17px;
  line-height: 1.7;
}

.bs-section__crossfunc-text p:last-child {
  margin-bottom: 0;
}

.bs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: var(--bs-radius-sm);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.bs-button:hover {
  transform: translateY(-2px);
}

.bs-button--primary {
  color: var(--bs-navy);
  background: var(--bs-mint);
}

.bs-button--primary:hover {
  background: #9bffda;
  box-shadow: 0 10px 30px rgba(114, 255, 201, 0.28);
}

.bs-button--ghost {
  border-color: rgba(39, 47, 63, 0.15);
  background: rgba(255, 255, 255, 0.24);
}

.bs-button--ghost:hover {
  background: rgba(255, 255, 255, 0.65);
}

[data-reveal],
.bs-site .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms cubic-bezier(.2, .8, .2, 1), transform 620ms cubic-bezier(.2, .8, .2, 1);
}

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

/* Navigation */
.bs-site header.bs-nav {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  height: auto;
  margin: 0;
  overflow: visible;
  z-index: 1000;
  color: var(--bs-navy);
  transition: background 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.bs-nav.is-scrolled,
.template-sector .bs-nav {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1px 0 rgba(39, 47, 63, 0.08);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.template-services .bs-nav:not(.is-scrolled),
.template-jobs .bs-nav:not(.is-scrolled),
.template-job .bs-nav:not(.is-scrolled),
.template-the-bonn-way .bs-nav:not(.is-scrolled) {
  color: #fff;
}

.template-services .bs-nav:not(.is-scrolled) .bs-nav__link,
.template-jobs .bs-nav:not(.is-scrolled) .bs-nav__link,
.template-job .bs-nav:not(.is-scrolled) .bs-nav__link,
.template-the-bonn-way .bs-nav:not(.is-scrolled) .bs-nav__link {
  color: #fff;
}

.template-services .bs-nav:not(.is-scrolled) .bs-nav__link:hover,
.template-services .bs-nav:not(.is-scrolled) .bs-nav__link.is-active,
.template-jobs .bs-nav:not(.is-scrolled) .bs-nav__link:hover,
.template-jobs .bs-nav:not(.is-scrolled) .bs-nav__link.is-active,
.template-job .bs-nav:not(.is-scrolled) .bs-nav__link:hover,
.template-job .bs-nav:not(.is-scrolled) .bs-nav__link.is-active,
.template-the-bonn-way .bs-nav:not(.is-scrolled) .bs-nav__link:hover,
.template-the-bonn-way .bs-nav:not(.is-scrolled) .bs-nav__link.is-active {
  background: rgba(255, 255, 255, .1);
}

.template-services .bs-nav:not(.is-scrolled) .bs-language__trigger,
.template-jobs .bs-nav:not(.is-scrolled) .bs-language__trigger,
.template-job .bs-nav:not(.is-scrolled) .bs-language__trigger,
.template-the-bonn-way .bs-nav:not(.is-scrolled) .bs-language__trigger {
  border-color: rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .06);
}

.template-services .bs-nav:not(.is-scrolled) .bs-nav__menu-button span,
.template-jobs .bs-nav:not(.is-scrolled) .bs-nav__menu-button span,
.template-job .bs-nav:not(.is-scrolled) .bs-nav__menu-button span,
.template-the-bonn-way .bs-nav:not(.is-scrolled) .bs-nav__menu-button span {
  background: #fff;
}

.bs-nav__inner {
  display: flex;
  align-items: center;
  width: min(calc(100% - 64px), var(--bs-container));
  height: 68px;
  margin-inline: auto;
}

.bs-nav__brand {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: 185px;
  height: 25px;
  margin-right: 36px;
}

.bs-nav__brand img {
  position: absolute;
  inset: 0 auto auto 0;
  display: block;
  width: auto;
  max-width: 100%;
  height: 25px;
  margin: 0;
  transition: opacity 180ms ease;
}

.bs-nav__logo--light {
  opacity: 0;
}

.template-services .bs-nav:not(.is-scrolled) .bs-nav__logo--dark,
.template-jobs .bs-nav:not(.is-scrolled) .bs-nav__logo--dark,
.template-job .bs-nav:not(.is-scrolled) .bs-nav__logo--dark,
.template-the-bonn-way .bs-nav:not(.is-scrolled) .bs-nav__logo--dark {
  opacity: 0;
}

.template-services .bs-nav:not(.is-scrolled) .bs-nav__logo--light,
.template-jobs .bs-nav:not(.is-scrolled) .bs-nav__logo--light,
.template-job .bs-nav:not(.is-scrolled) .bs-nav__logo--light,
.template-the-bonn-way .bs-nav:not(.is-scrolled) .bs-nav__logo--light {
  opacity: 1;
}

.bs-nav__links {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 2px;
}

.bs-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 7px;
  color: var(--bs-navy);
  background: transparent;
  font-family: var(--bs-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 150ms ease;
}

.bs-nav__link:hover,
.bs-nav__link.is-active {
  background: rgba(39, 47, 63, 0.065);
}

.bs-nav__actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.bs-nav__cta {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 13px;
}

.bs-nav__dropdown,
.bs-language {
  position: relative;
}

.bs-nav__dropdown-panel,
.bs-language__panel {
  position: absolute;
  top: calc(100% + 8px);
  padding: 8px;
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--bs-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-7px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}

.bs-nav__dropdown-panel {
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  width: 520px;
}

.bs-nav__dropdown:hover .bs-nav__dropdown-panel,
.bs-nav__dropdown:focus-within .bs-nav__dropdown-panel,
.bs-nav__dropdown.is-open .bs-nav__dropdown-panel,
.bs-language:hover .bs-language__panel,
.bs-language.is-open .bs-language__panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.bs-nav__dropdown-panel a {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 11px;
  align-items: center;
  padding: 12px;
  border-radius: 9px;
  text-decoration: none;
  color: var(--bs-navy);
}

.bs-nav__dropdown-panel a:hover {
  background: #f5f6f7;
}

.bs-nav__dropdown-panel strong,
.bs-nav__dropdown-panel small {
  display: block;
}

.bs-nav__dropdown-panel strong {
  color: var(--bs-navy);
  font-size: 14px;
  font-weight: 650;
}

.bs-nav__dropdown-panel small {
  margin-top: 2px;
  color: var(--bs-muted);
  font-size: 11px;
}

.bs-nav__sector-dot,
.bs-nav__service-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bs-mint);
  box-shadow: 0 0 0 4px rgba(114, 255, 201, 0.16);
}

.bs-nav__service-dot--all { background: var(--bs-navy); box-shadow: 0 0 0 4px rgba(39, 47, 63, .1); }
.bs-nav__service-dot--softwareentwicklung { background: #ff9e42; box-shadow: 0 0 0 4px rgba(255, 158, 66, .14); }
.bs-nav__service-dot--datenanalysen { background: #72ffc9; box-shadow: 0 0 0 4px rgba(114, 255, 201, .16); }
.bs-nav__service-dot--user-experience { background: #b9a4d8; box-shadow: 0 0 0 4px rgba(185, 164, 216, .14); }
.bs-nav__service-dot--forschung { background: #8eb795; box-shadow: 0 0 0 4px rgba(142, 183, 149, .14); }

.bs-nav__sector-dot--security { background: #f06278; box-shadow: 0 0 0 4px rgba(240, 98, 120, .14); }
.bs-nav__sector-dot--mobility { background: #f0a030; box-shadow: 0 0 0 4px rgba(240, 160, 48, .14); }
.bs-nav__sector-dot--energy { background: #65c87a; box-shadow: 0 0 0 4px rgba(101, 200, 122, .14); }
.bs-nav__sector-dot--agrifood { background: #8ab693; box-shadow: 0 0 0 4px rgba(138, 182, 147, .14); }
.bs-nav__sector-dot--infrastructure { background: #9a86bd; box-shadow: 0 0 0 4px rgba(154, 134, 189, .14); }
.bs-nav__sector-dot--administration { background: #39b9c5; box-shadow: 0 0 0 4px rgba(57, 185, 197, .14); }

.bs-language__trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(39, 47, 63, 0.15);
  border-radius: 8px;
  color: var(--bs-muted);
  background: rgba(255, 255, 255, 0.28);
  font-family: var(--bs-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.bs-language__panel {
  right: 0;
  min-width: 145px;
}

.bs-language__panel a {
  display: block;
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--bs-ink);
  font-size: 13px;
  text-decoration: none;
}

.bs-language__panel a:hover,
.bs-language__panel a.is-active {
  background: #f4f5f6;
}

.bs-nav__menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.bs-nav__menu-button span {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--bs-navy);
  transition: transform 180ms ease;
}

.bs-nav__menu-button.is-open span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.bs-nav__menu-button.is-open span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.bs-nav__mobile {
  display: none;
}

/* Footer */
.bs-footer {
  color: #fff;
  background:
    radial-gradient(circle at 16% 12%, rgba(114, 255, 201, 0.1), transparent 28%),
    #202838;
}

.bs-footer__inner {
  display: grid;
  grid-template-columns: 1.05fr 2fr;
  gap: 90px;
  width: min(calc(100% - 64px), var(--bs-container));
  margin-inline: auto;
  padding: 76px 0 64px;
}

.bs-footer__brand img {
  width: auto;
  height: 25px;
  margin: 0 0 22px;
}

.bs-footer__brand p {
  max-width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.bs-footer__contact {
  display: grid;
  gap: 4px;
  margin-top: 24px;
}

.bs-footer__contact a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-decoration: none;
}

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

.bs-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.bs-footer__column h2 {
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--bs-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bs-footer__column a,
.bs-footer__column span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
}

.bs-footer__column a:hover {
  color: var(--bs-mint);
}

.bs-footer__fine {
  display: flex;
  justify-content: space-between;
  width: min(calc(100% - 64px), var(--bs-container));
  margin-inline: auto;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
}

.bs-footer__fine span:last-child {
  display: flex;
  gap: 20px;
}

.bs-footer__fine a {
  color: inherit;
  text-decoration: none;
}

/* Shared core-page hero */
.bs-site header.bs-page-hero,
.bs-site header.bs-home-hero,
.bs-site header.bs-job-hero,
.bs-site header.bs-sector-hero,
.bs-site header.bs-way-hero,
.bs-site header.bs-service-detail__hero {
  width: 100%;
  height: auto;
  margin: 0;
}

.bs-page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 590px;
  padding: 136px 0 86px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse at 5% 75%, rgba(114, 255, 201, .19), transparent 42%),
    radial-gradient(ellipse at 92% 14%, rgba(255, 255, 255, .06), transparent 35%),
    linear-gradient(135deg, #4b5b6b 0%, #293246 72%);
}

.bs-page-hero--large {
  min-height: 720px;
}

.bs-page-hero--light {
  min-height: 620px;
  color: var(--bs-navy);
  background:
    radial-gradient(ellipse at 88% 80%, rgba(114, 255, 201, .42), transparent 42%),
    #fff;
}

.bs-page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.bs-page-hero h1 {
  margin: 0 0 26px;
  max-width: 850px;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.032em;
}

.template-services .bs-page-hero h1,
.template-jobs .bs-page-hero h1 {
  font-size: 68px;
}

.bs-page-hero--light h1 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.13;
}

.bs-page-hero__lead {
  max-width: 630px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.7;
}

.bs-page-hero--light .bs-page-hero__lead {
  color: var(--bs-muted);
}

/* Home */
.bs-home-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 820px;
  padding: 144px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 12% 74%, rgba(114, 255, 201, .48), transparent 42%),
    radial-gradient(ellipse at 89% 16%, rgba(45, 59, 83, .28), transparent 40%),
    linear-gradient(140deg, #f4f7f7, #fff);
}

.bs-home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(transparent, #fff);
}

.bs-home-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.bs-home-hero h1 {
  margin: 0 0 28px;
  font-size: clamp(58px, 8vw, 96px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.04em;
}

.bs-home-hero h1 span {
  display: block;
  color: #9ba1ad;
  font-weight: 400;
}

.bs-home-hero__lead {
  max-width: 610px;
  margin: 0 0 38px;
  color: var(--bs-muted);
  font-size: 18px;
  line-height: 1.7;
}

.bs-home-hero__actions {
  display: flex;
  gap: 12px;
}

.bs-home-hero__note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 50px;
  color: var(--bs-subtle);
  font-size: 14px;
}

.bs-home-hero__note::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #cdd1d7;
}

.bs-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.bs-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.bs-copy p {
  margin: 0 0 20px;
  color: var(--bs-muted);
  font-size: 17px;
}

.bs-dna-orbit {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.bs-dna-orbit::before,
.bs-dna-orbit::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(114, 255, 201, .24);
  border-radius: 50%;
}

.bs-dna-orbit::after {
  inset: 23%;
  border-style: dashed;
  animation: bs-spin 28s linear infinite;
}

.bs-dna-orbit__core {
  position: absolute;
  inset: 36%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--bs-navy);
  background: var(--bs-mint);
  box-shadow: 0 0 90px rgba(114, 255, 201, .25);
  font-family: var(--bs-heading);
  font-size: 22px;
  font-weight: 600;
}

.bs-dna-orbit__item {
  position: absolute;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  background: rgba(255, 255, 255, .045);
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.bs-dna-orbit__item:nth-child(2) { top: 0; left: calc(50% - 56px); }
.bs-dna-orbit__item:nth-child(3) { top: 24%; right: 0; }
.bs-dna-orbit__item:nth-child(4) { right: 11%; bottom: 2%; }
.bs-dna-orbit__item:nth-child(5) { bottom: 2%; left: 11%; }
.bs-dna-orbit__item:nth-child(6) { top: 24%; left: 0; }

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

.bs-dna-visual {
  width: min(100%, 1040px);
  margin: 12px auto 0;
}

.bs-dna-visual svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.bs-dna-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.bs-dna-visual__connections {
  fill: none;
  stroke: rgba(114, 255, 201, .24);
  stroke-width: 1.2;
  stroke-dasharray: 8 10;
  animation: bs-dna-flow 18s linear infinite;
}

.bs-dna-visual__node circle {
  fill: rgba(255, 255, 255, .045);
  stroke: rgba(255, 255, 255, .16);
  stroke-width: 1.2;
  transform-box: fill-box;
  transform-origin: center;
  transition: fill 260ms ease, stroke 260ms ease, transform 360ms cubic-bezier(.2, .8, .2, 1);
}

.bs-dna-visual__node:hover circle {
  fill: rgba(114, 255, 201, .11);
  stroke: rgba(114, 255, 201, .72);
  transform: scale(1.12);
}

.bs-dna-visual text {
  fill: rgba(255, 255, 255, .72);
  font-family: var(--bs-body);
  font-size: 13px;
  text-anchor: middle;
  pointer-events: none;
}

.bs-dna-visual__core circle {
  fill: var(--bs-mint);
  filter: drop-shadow(0 0 38px rgba(114, 255, 201, .25));
  transform-box: fill-box;
  transform-origin: center;
  animation: bs-dna-pulse 4s ease-in-out infinite;
}

.bs-dna-visual__core text {
  fill: var(--bs-navy);
  font-family: var(--bs-heading);
  font-size: 25px;
  font-weight: 600;
}

.bs-dna-visual__cta {
  margin: 22px 0 0;
  text-align: center;
}

.bs-dna-visual__cta .bs-button {
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
  background: rgba(255, 255, 255, .04);
}

@keyframes bs-dna-flow {
  to { stroke-dashoffset: -180; }
}

@keyframes bs-dna-pulse {
  50% { transform: scale(1.035); }
}

.bs-about-visual {
  display: grid;
  place-items: center;
  min-height: 340px;
  padding: 42px;
}

.bs-about-visual img {
  display: block;
  width: min(86%, 440px);
  max-height: 320px;
  margin: 0;
  object-fit: contain;
}

.bs-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 60px;
  width: min(100%, 900px);
  margin-inline: auto;
  justify-items: center;
}

.bs-expertise-node {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  transition: transform 300ms cubic-bezier(.2, .8, .2, 1);
}

.bs-expertise-node:hover {
  transform: scale(1.08);
}

.bs-expertise-node__ring {
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--expert-color);
  transition: box-shadow 300ms ease;
}

.bs-expertise-node:hover .bs-expertise-node__ring {
  box-shadow: 0 10px 34px color-mix(in srgb, var(--expert-color) 34%, transparent);
}

.bs-expertise-node__inner {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.bs-expertise-node svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--expert-color);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.bs-expertise-node strong {
  color: var(--bs-navy);
  font-family: var(--bs-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.bs-sector-link {
  position: relative;
  min-height: 190px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius-lg);
  background: #fff;
  box-shadow: var(--bs-shadow-sm);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.bs-sector-link:hover {
  transform: translateY(-5px);
  box-shadow: var(--bs-shadow-lg);
}

.bs-sector-link::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--sector-accent, var(--bs-mint));
  opacity: .16;
  filter: blur(3px);
}

.bs-sector-link span {
  display: block;
  margin-bottom: 48px;
  color: var(--bs-subtle);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bs-sector-link strong {
  display: block;
  font-family: var(--bs-heading);
  font-size: 25px;
  font-weight: 500;
}

.bs-steps,
.bs-card-grid,
.bs-team-grid,
.bs-values-grid {
  display: grid;
  gap: 18px;
}

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

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

.bs-card {
  padding: 32px;
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius-lg);
  background: #fff;
  box-shadow: var(--bs-shadow-sm);
}

.bs-card--dark {
  color: #fff;
  border-color: rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .045);
}

.bs-card--dark h3 {
  color: #fff;
}

.bs-card--dark p {
  color: rgba(255, 255, 255, .62);
}

.bs-way-card {
  color: #fff;
  background: rgba(255, 255, 255, .045);
  border-color: rgba(255, 255, 255, .1);
}

.bs-way-card h3 { color: #fff; }
.bs-way-card p  { color: rgba(255, 255, 255, .58); }

.bs-way-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 20px 0 24px;
  border-radius: 10px;
  background: rgba(114, 255, 201, .1);
}

.bs-way-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--bs-mint);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.bs-card__tag {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 5px 11px;
  border: 1px solid #c9f9e5;
  border-radius: 999px;
  color: #16835e;
  background: #eafff6;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bs-card h3 {
  margin: 0 0 10px;
  font-size: 23px;
  font-weight: 500;
}

.bs-card p {
  margin: 0;
  color: var(--bs-muted);
  font-size: 15px;
}

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

.bs-team-card {
  overflow: hidden;
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius-lg);
  background: #fff;
  box-shadow: var(--bs-shadow-sm);
}

.bs-team-card__photo {
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
  background: #edf0f2;
}

.bs-team-card__photo img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: top center;
}

.bs-team-card__body {
  padding: 21px 23px 24px;
}

.bs-team-card h3 {
  margin: 0 0 3px;
  font-size: 20px;
  font-weight: 500;
}

.bs-team-card p {
  margin: 0;
  color: var(--bs-muted);
  font-size: 13px;
}

.bs-team-card__links {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.bs-team-card__links a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--bs-border);
  border-radius: 8px;
  color: var(--bs-navy);
  background: #fff;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.bs-team-card__links a:hover {
  border-color: var(--bs-navy);
  color: #fff;
  background: var(--bs-navy);
  transform: translateY(-2px);
}

.bs-team-card__links svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

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

.bs-service-card {
  min-height: 250px;
  padding: 34px;
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius-lg);
  background: #fff;
  box-shadow: var(--bs-shadow-sm);
}

.bs-service-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.bs-service-card--link:hover {
  border-color: color-mix(in srgb, var(--bs-mint) 48%, var(--bs-border));
  box-shadow: var(--bs-shadow-lg);
  transform: translateY(-5px);
}

.bs-service-card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  border-radius: 13px;
  color: var(--bs-navy);
  background: #eafff6;
}

.bs-service-card__icon svg {
  width: 24px;
  height: 24px;
}

.bs-service-card h3 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 500;
}

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

.bs-service-detail {
  color: var(--service-text);
  background: var(--service-bg);
}

.bs-service-detail .bs-main,
.template-service .bs-main {
  background: var(--service-bg, #f5f7f8);
}

.bs-service-detail__hero {
  --service-hero-min: 420px;
  --service-hero-padding: 110px 0 58px;
  --service-hero-padding-mobile: 96px 0 48px;
  --service-title-size: clamp(38px, 5vw, 64px);
  --service-title-size-mobile: 34px;
  --service-lead-size: clamp(17px, 1.85vw, 22px);
  --service-lead-size-mobile: 18px;
  --service-mark-size: min(24vw, 210px);
  --service-mark-size-mobile: 128px;
  min-height: var(--service-hero-min);
  display: flex;
  align-items: center;
  padding: var(--service-hero-padding);
  overflow: hidden;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--service-accent) 22%, transparent), transparent 38%),
    radial-gradient(circle at 85% 18%, color-mix(in srgb, var(--service-accent) 18%, transparent), transparent 30%),
    var(--service-bg);
}

.bs-service-detail__hero--height-medium {
  --service-hero-min: 490px;
  --service-hero-padding: 126px 0 68px;
  --service-hero-padding-mobile: 106px 0 56px;
  --service-mark-size: min(28vw, 240px);
  --service-mark-size-mobile: 142px;
}

.bs-service-detail__hero--height-large {
  --service-hero-min: 560px;
  --service-hero-padding: 144px 0 80px;
  --service-hero-padding-mobile: 116px 0 64px;
  --service-mark-size: min(30vw, 260px);
  --service-mark-size-mobile: 154px;
}

.bs-service-detail__hero--height-xl {
  --service-hero-min: 640px;
  --service-hero-padding: 158px 0 92px;
  --service-hero-padding-mobile: 126px 0 76px;
  --service-mark-size: min(32vw, 280px);
  --service-mark-size-mobile: 166px;
}

.bs-service-detail__hero--title-medium {
  --service-title-size: clamp(44px, 5.6vw, 78px);
  --service-title-size-mobile: 36px;
}

.bs-service-detail__hero--title-large {
  --service-title-size: clamp(52px, 6.6vw, 96px);
  --service-title-size-mobile: 38px;
}

.bs-service-detail__hero--title-xl {
  --service-title-size: clamp(60px, 8vw, 116px);
  --service-title-size-mobile: 40px;
}

.bs-service-detail__hero--lead-medium {
  --service-lead-size: clamp(19px, 2.1vw, 26px);
  --service-lead-size-mobile: 20px;
}

.bs-service-detail__hero--lead-large {
  --service-lead-size: clamp(21px, 2.45vw, 30px);
  --service-lead-size-mobile: 22px;
}

.bs-service-detail__hero--lead-xl {
  --service-lead-size: clamp(23px, 3vw, 34px);
  --service-lead-size-mobile: 24px;
}

.bs-service-detail__hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, .8fr);
  gap: 64px;
}

.bs-service-detail__copy {
  max-width: 760px;
}

.bs-service-detail__back {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--service-muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.bs-service-detail__copy .bs-overline {
  color: var(--service-muted);
}

.bs-service-detail__copy h1 {
  margin: 12px 0 18px;
  color: var(--service-text);
  font-size: var(--service-title-size);
  line-height: .94;
}

.bs-service-detail__lead {
  max-width: 680px;
  margin: 0;
  color: var(--service-muted);
  font-size: var(--service-lead-size);
  line-height: 1.24;
}

.bs-service-detail__mark {
  display: grid;
  place-items: center;
}

.bs-service-detail__mark span {
  display: grid;
  place-items: center;
  width: var(--service-mark-size);
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--service-accent) 32%, transparent);
  border-radius: 50%;
  color: var(--service-text);
  background: color-mix(in srgb, var(--service-panel) 78%, transparent);
  box-shadow: 0 24px 80px color-mix(in srgb, var(--service-accent) 18%, transparent);
}

.bs-service-detail__mark svg {
  width: 32%;
  height: 32%;
}

.bs-service-detail__body {
  color: var(--bs-navy);
  background: #fff;
}

.bs-service-detail__body .bs-copy p {
  color: var(--bs-muted);
}

.bs-service-detail__core {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--bs-border);
  color: var(--bs-navy) !important;
  font-family: var(--bs-heading);
  font-size: 28px;
  line-height: 1.2;
}

.bs-service-detail__points {
  align-self: start;
  padding: 34px;
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius-lg);
  background: var(--bs-soft);
}

.bs-service-detail__points ul {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.bs-service-detail__points li {
  position: relative;
  padding-left: 28px;
  list-style: none;
  color: var(--bs-muted);
}

.bs-service-detail__points li::marker {
  content: "";
  font-size: 0;
}

.bs-service-detail__points li::before {
  content: "";
  position: absolute;
  top: .7em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--service-accent);
}

.bs-service-detail__related {
  color: var(--bs-navy);
  background: var(--bs-soft);
}

.bs-service-detail__cta {
  margin-top: 0;
}

.bs-reach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 920px;
  margin: 52px auto 0;
}

.bs-reach-node {
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius-lg);
  background:
    linear-gradient(135deg, rgba(114, 255, 201, .14), transparent 55%),
    #fff;
  box-shadow: var(--bs-shadow-sm);
}

.bs-reach-node span {
  color: var(--bs-navy);
  font-family: var(--bs-heading);
  font-size: 25px;
  font-weight: 500;
}

.bs-reach-grid__cta {
  margin: 42px 0 0;
  text-align: center;
}

.bs-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 50px;
}

.bs-process::before {
  content: "";
  position: absolute;
  top: 31px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: rgba(114, 255, 201, .34);
}

.bs-process__step {
  position: relative;
  text-align: center;
}

.bs-process__number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border: 1px solid rgba(114, 255, 201, .4);
  border-radius: 50%;
  color: var(--bs-mint);
  background: #2b3548;
  font-size: 12px;
  font-weight: 700;
}

.bs-process h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.bs-process p {
  margin: 0;
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
}

.bs-process-visual {
  position: relative;
  width: min(100%, 1100px);
  margin: 48px auto 0;
}

.bs-process-visual__graphic {
  position: relative;
  padding-bottom: 112px;
}

.bs-process-visual__graphic > svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.bs-process-artwork {
  display: block;
  width: 100%;
  height: auto;
}

.bs-process-visual__flow {
  fill: none;
  stroke: rgba(255, 255, 255, .18);
  stroke-width: 56;
  stroke-linecap: round;
  stroke-dasharray: 10 8;
  animation: bs-process-flow 16s linear infinite;
}

.bs-process-visual__node circle {
  fill: #fff;
  stroke: rgba(114, 255, 201, .28);
  stroke-width: 2;
}

.bs-process-visual__node text {
  fill: var(--bs-navy);
  font-family: var(--bs-heading);
  font-size: 14px;
  font-weight: 600;
  text-anchor: middle;
  pointer-events: none;
}

.bs-process-visual__node .bs-process-visual__number {
  fill: #159a6b;
  font-family: var(--bs-body);
  font-size: 11px;
}

.bs-process-hotspot {
  position: absolute;
  top: 50%;
  width: 12%;
  aspect-ratio: 1;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, calc(-50% - 56px));
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 300ms cubic-bezier(.2, .8, .2, 1);
}

.bs-process-hotspot:hover,
.bs-process-hotspot:focus-visible,
.bs-process-hotspot.is-active {
  border-color: rgba(114, 255, 201, .72);
  background: rgba(114, 255, 201, .1);
  box-shadow: 0 0 0 8px rgba(114, 255, 201, .12), 0 0 42px rgba(114, 255, 201, .28);
  outline: 0;
  transform: translate(-50%, calc(-50% - 56px)) scale(1.12);
}

.bs-process-info {
  position: absolute;
  bottom: 0;
  left: var(--active-x, 50%);
  display: grid;
  gap: 5px;
  width: min(320px, 80%);
  min-height: 80px;
  opacity: 0;
  text-align: center;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.bs-process-info.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.bs-process-info strong {
  color: #fff;
  font-family: var(--bs-heading);
  font-size: 20px;
  font-weight: 500;
}

.bs-process-info span {
  color: rgba(255, 255, 255, .58);
  font-size: 15px;
}

@keyframes bs-process-flow {
  to { stroke-dashoffset: -180; }
}

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

.bs-value-card {
  padding: 28px;
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius);
  background: #fff;
}

.bs-value-card__number {
  margin-bottom: 32px;
  color: var(--bs-mint-dark);
  font-family: var(--bs-heading);
  font-size: 12px;
  font-weight: 600;
}

.bs-value-card h3 {
  margin: 0 0 9px;
  font-size: 21px;
  font-weight: 500;
}

.bs-value-card p {
  margin: 0;
  color: var(--bs-muted);
  font-size: 14px;
}

.bs-cta-band {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(114, 255, 201, .2), transparent 58%),
    linear-gradient(135deg, var(--bs-navy-soft), #1f2739);
}

.bs-cta-band__inner {
  max-width: 680px;
  margin-inline: auto;
}

.bs-cta-band h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 500;
}

.bs-cta-band p {
  margin: 0 0 32px;
  color: rgba(255, 255, 255, .62);
}

.bs-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  align-items: start;
}

.bs-contact-details {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  color: var(--bs-muted);
  font-size: 14px;
}

.bs-contact-details strong {
  display: block;
  margin-bottom: 2px;
  color: var(--bs-ink);
}

.bs-contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 36px;
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius-lg);
  background: #fff;
  box-shadow: var(--bs-shadow-md);
}

.bs-contact-form__field {
  display: grid;
  gap: 6px;
}

.bs-contact-form__field--full {
  grid-column: 1 / -1;
}

.bs-contact-form label {
  color: var(--bs-ink);
  font-size: 13px;
  font-weight: 500;
}

.bs-contact-form input,
.bs-contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--bs-border-strong);
  border-radius: 9px;
  color: var(--bs-ink);
  background: #fff;
  font: inherit;
}

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

.bs-contact-form input:focus,
.bs-contact-form textarea:focus {
  border-color: var(--bs-mint-dark);
  outline: 3px solid rgba(114, 255, 201, .2);
}

.bs-contact-form__feedback {
  grid-column: 1 / -1;
  color: var(--bs-muted);
  font-size: 13px;
}

.bs-contact-form .bs-button {
  justify-self: start;
}

.bs-contact-form__honeypot {
  position: absolute;
  left: -9999px;
}

#kontakt {
  scroll-margin-top: 68px;
}

/* Error Page */
.template-error .bs-nav:not(.is-scrolled) {
  --nav-text: #fff;
  --nav-bg: transparent;
}

.template-error .bs-nav:not(.is-scrolled) .bs-nav__link,
.template-error .bs-nav:not(.is-scrolled) .bs-nav__link:hover {
  color: rgba(255, 255, 255, .82);
}

.template-error .bs-nav:not(.is-scrolled) .bs-nav__brand img.bs-nav__logo--dark {
  display: none;
}

.template-error .bs-nav:not(.is-scrolled) .bs-nav__brand img.bs-nav__logo--light {
  display: block;
}

.bs-error-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 144px 0 104px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse at 8% 80%, rgba(114, 255, 201, .22), transparent 45%),
    radial-gradient(ellipse at 90% 12%, rgba(255, 255, 255, .05), transparent 38%),
    linear-gradient(140deg, #3a455a 0%, #1c2336 100%);
}

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

.bs-error-hero__content {
  max-width: 720px;
}

.bs-error-hero__code {
  display: block;
  font-family: var(--bs-heading);
  font-size: clamp(96px, 18vw, 220px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: rgba(114, 255, 201, .12);
  margin-bottom: -0.1em;
  user-select: none;
  pointer-events: none;
}

.bs-error-hero .bs-overline--mint {
  display: block;
  margin-bottom: 20px;
}

.bs-error-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.bs-error-hero__lead {
  max-width: 560px;
  margin: 0 0 40px;
  color: rgba(255, 255, 255, .62);
  font-size: 17px;
  line-height: 1.72;
}

.bs-error-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 600px) {
  .bs-error-hero h1 {
    font-size: 34px;
  }

  .bs-error-hero__code {
    font-size: 120px;
  }

  .bs-error-hero__actions {
    flex-direction: column;
  }

  .bs-error-hero__actions .bs-button {
    text-align: center;
    justify-content: center;
  }
}

/* The Bonn Way */
.bs-way-hero {
  position: relative;
  display: flex;
  min-height: 760px;
  padding: 154px 0 104px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 10% 2%, rgba(114, 255, 201, .5), transparent 31%),
    radial-gradient(circle at 96% 82%, rgba(114, 255, 201, .4), transparent 29%),
    linear-gradient(135deg, #20293a, #1f2739 60%, #273246);
}

.bs-way-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 48% 48%, transparent 0, rgba(31, 39, 57, .12) 58%, rgba(31, 39, 57, .38) 100%);
  pointer-events: none;
}

.bs-way-hero .bs-container {
  position: relative;
  z-index: 1;
}

.bs-way-hero__content {
  max-width: 850px;
}

.bs-way-hero h1 {
  max-width: 820px;
  margin: 18px 0 10px;
  color: #fff;
  font-size: clamp(52px, 6vw, 78px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.04;
}

.bs-way-hero__subtitle {
  margin: 0 0 32px;
  color: rgba(255, 255, 255, .82);
  font-family: var(--bs-heading);
  font-size: clamp(21px, 2.1vw, 28px);
}

.bs-way-hero__copy {
  max-width: 720px;
}

.bs-way-hero__copy p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .65);
  font-size: 17px;
  line-height: 1.75;
}

.bs-way-hero__quote {
  max-width: 720px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, .82);
  font-family: var(--bs-heading);
  font-size: 20px;
  line-height: 1.5;
}

.bs-way-approach__diagram {
  width: min(100%, 774px);
  margin: 54px auto 0;
}

.bs-way-approach__diagram img {
  display: block;
  width: 100%;
  height: auto;
}

.bs-way-sovereignty {
  text-align: center;
}

.bs-way-sovereignty h2 {
  margin: 14px 0 18px;
  font-size: clamp(38px, 5vw, 58px);
}

.bs-way-sovereignty p {
  max-width: 640px;
  margin: 0 auto 42px;
  color: var(--bs-muted);
  font-size: 17px;
  line-height: 1.7;
}

.bs-way-sovereignty h3 {
  margin: 0 0 24px;
  font-size: 27px;
  font-weight: 500;
}

/* Jobs */
.bs-jobs-shell {
  padding: 100px 0;
}

.bs-jobs-card {
  overflow: hidden;
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius-lg);
  background: #fff;
  box-shadow: var(--bs-shadow-sm);
}

.bs-jobs-table {
  width: 100%;
  border-collapse: collapse;
}

.bs-jobs-table th,
.bs-jobs-table td {
  padding: 19px 22px;
  border-bottom: 1px solid var(--bs-border);
  text-align: left;
}

.bs-jobs-table th {
  color: var(--bs-subtle);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.bs-jobs-table td {
  font-size: 14px;
}

.bs-jobs-table tr:last-child td {
  border-bottom: 0;
}

.bs-jobs-table a {
  font-weight: 600;
  text-decoration: none;
}

/* Job detail */
.bs-job-hero {
  position: relative;
  min-height: 540px;
  padding: 122px 0 76px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse at 9% 95%, rgba(114, 255, 201, .22), transparent 42%),
    radial-gradient(ellipse at 92% 10%, rgba(255, 255, 255, .07), transparent 34%),
    linear-gradient(135deg, #455568 0%, #252e41 72%);
}

.bs-job-hero::after {
  content: "";
  position: absolute;
  right: max(3vw, 30px);
  bottom: -125px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(114, 255, 201, .12);
  border-radius: 50%;
  box-shadow:
    0 0 0 52px rgba(114, 255, 201, .025),
    0 0 0 104px rgba(114, 255, 201, .018);
}

.bs-job-hero__back {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 55px;
  color: rgba(255, 255, 255, .64);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.bs-job-hero__back:hover {
  color: var(--bs-mint);
  transform: translateX(-3px);
}

.bs-job-hero__content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.bs-job-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 6.5vw, 78px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -.035em;
}

.bs-job-hero__subtitle {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .68);
  font-family: var(--bs-heading);
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.4;
}

.bs-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 0;
}

.bs-job-meta div {
  min-width: 158px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(12px);
}

.bs-job-meta dt {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, .42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.bs-job-meta dd {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.bs-job-detail {
  padding: 98px 0 112px;
  background:
    linear-gradient(90deg, rgba(39, 47, 63, .025) 1px, transparent 1px) 0 0 / 80px 80px,
    #fff;
}

.bs-job-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 340px);
  justify-content: space-between;
  gap: clamp(58px, 8vw, 110px);
  align-items: start;
}

.bs-job-content {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.78;
}

.bs-job-content > :first-child {
  margin-top: 0;
}

.bs-job-content > :last-child {
  margin-bottom: 0;
}

.bs-job-content h2,
.bs-job-content h3 {
  margin: 52px 0 20px;
  color: var(--bs-navy);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -.025em;
}

.bs-job-content h4 {
  margin: 38px 0 14px;
  font-size: 22px;
  font-weight: 500;
}

.bs-job-content p {
  margin: 0 0 18px;
  color: var(--bs-muted);
}

.bs-job-content ul,
.bs-job-content ol {
  display: grid;
  gap: 13px;
  margin: 22px 0 34px;
  padding: 0;
  list-style: none;
}

.bs-job-content li {
  position: relative;
  padding-left: 30px;
  color: var(--bs-muted);
}

.bs-job-content li::before {
  content: "";
  position: absolute;
  top: .64em;
  left: 1px;
  width: 10px;
  height: 10px;
  border: 3px solid rgba(38, 217, 154, .27);
  border-radius: 50%;
  background: var(--bs-mint-dark);
}

.bs-job-content a {
  color: var(--bs-navy);
  text-decoration-color: var(--bs-mint-dark);
  text-underline-offset: 3px;
}

.bs-job-apply {
  position: sticky;
  top: 98px;
  padding: 32px;
  overflow: hidden;
  border-radius: var(--bs-radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(114, 255, 201, .18), transparent 38%),
    linear-gradient(145deg, #354155, #222a3a);
  box-shadow: var(--bs-shadow-lg);
}

.bs-job-apply::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -58px;
  width: 155px;
  height: 155px;
  border: 1px solid rgba(114, 255, 201, .13);
  border-radius: 50%;
}

.bs-job-apply__copy,
.bs-job-apply__actions,
.bs-job-apply__note {
  position: relative;
  z-index: 1;
}

.bs-job-apply__copy > :first-child {
  margin-top: 0;
}

.bs-job-apply__copy > :last-child {
  margin-bottom: 0;
}

.bs-job-apply__copy h2,
.bs-job-apply__copy h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.bs-job-apply__copy p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.65;
}

.bs-job-apply__copy a,
.bs-job-apply__copy ins {
  color: inherit;
  text-decoration-color: rgba(114, 255, 201, .62);
  text-underline-offset: 3px;
}

.bs-job-apply__actions {
  display: grid;
  gap: 17px;
  margin-top: 27px;
}

.bs-job-apply__button {
  width: 100%;
}

.bs-job-apply__phone {
  display: grid;
  gap: 2px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-decoration: none;
}

.bs-job-apply__phone span {
  color: rgba(255, 255, 255, .42);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.bs-job-apply__phone strong {
  color: #fff;
  font-family: var(--bs-heading);
  font-size: 19px;
  font-weight: 500;
}

.bs-job-apply__note {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .36);
  font-size: 11px;
  line-height: 1.55;
}

/* Sector page family */
.template-sector {
  --sector-hero: #2a3d2d;
  --sector-body: var(--sector-hero);
  --sector-highlight: #d9e1cc;
  --sector-accent: #8eb795;
  --sector-text: #d6dfd2;
  --sector-muted: #91a790;
  --sector-dim: #667a67;
  background: var(--sector-body);
}

.sector-theme-infrastructure { --sector-hero: #2a1e3a; }
.sector-theme-energy { --sector-hero: #0a1f0e; }
.sector-theme-mobility { --sector-hero: #1a0e04; }
.sector-theme-security { --sector-hero: #1f0a10; }
.sector-theme-administration { --sector-hero: #0a2e3a; }
.sector-theme-agrifood { --sector-hero: #2a3d2d; }

.template-sector .bs-main {
  background: var(--sector-body);
}

.template-sector .bs-footer {
  background: var(--sector-body);
}

.bs-sector-page {
  position: relative;
  overflow: hidden;
  color: var(--sector-text);
  background: var(--sector-body);
}

.bs-sector-page__canvas,
.bs-sector-page__particles,
.bs-sector-page__grid {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bs-sector-page__canvas {
  z-index: 0;
  background: var(--sector-hero);
}

.bs-sector-page__particles {
  z-index: 1;
}

.bs-sector-page__grid {
  z-index: 2;
  opacity: .55;
  background-image:
    linear-gradient(rgba(255, 255, 255, .015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 55% at 50% 18%, black, transparent);
}

.bs-sector-page__content {
  position: relative;
  z-index: 3;
}

.bs-sector-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-height: 100vh;
  padding: 116px 0 70px;
}

.bs-sector-hero__copy {
  max-width: 980px;
}

/* ── Floating decorative illustrations ── */
.bs-float-illust {
  position: absolute;
  pointer-events: none;
}

.bs-float-illust--a {
  top: 8%;
  right: 5%;
  width: 160px;
  opacity: .08;
  animation: bs-flt 13s ease-in-out infinite;
}

.bs-float-illust--b {
  bottom: 10%;
  left: 4%;
  width: 120px;
  opacity: .07;
  animation: bs-flt 15s ease-in-out infinite reverse;
}

.bs-float-illust--c {
  top: 14%;
  left: 5%;
  width: 110px;
  opacity: .06;
  animation: bs-flt 17s ease-in-out infinite 2s;
}

@keyframes bs-flt {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

@media (max-width: 768px) {
  .bs-float-illust { display: none; }
}

.bs-sector-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  padding: 7px 17px;
  border: 1px solid color-mix(in srgb, var(--sector-highlight) 18%, transparent);
  border-radius: 999px;
  color: var(--sector-highlight);
  background: color-mix(in srgb, var(--sector-highlight) 8%, transparent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.bs-sector-hero__label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sector-accent);
  box-shadow: 0 0 12px var(--sector-accent);
}

.bs-sector-hero h1 {
  margin: 0 0 25px;
  max-width: 1020px;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.034em;
}

.bs-sector-hero h1 {
  color: #fff;
}

.bs-sector-hero h1 span {
  display: block;
}

.bs-sector-hero h1 span:last-child {
  color: var(--sector-highlight);
}

.bs-sector-hero__lead {
  max-width: 690px;
  margin: 0;
  color: var(--sector-text);
  font-size: 18px;
  font-weight: 350;
  line-height: 1.75;
}

.bs-sector-hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transform: translateX(-50%);
  white-space: nowrap;
  transition: color 200ms ease;
}

.bs-sector-hero__scroll:hover {
  color: rgba(255, 255, 255, .9);
}

.bs-sector-hero__scroll svg {
  width: 18px;
  height: 18px;
  animation: bs-bounce 2s ease-in-out infinite;
}

@keyframes bs-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(4px); }
}

.bs-sector-divider {
  width: 200px;
  height: 1px;
  margin-inline: auto;
  background: linear-gradient(90deg, transparent, var(--sector-accent), transparent);
}

.bs-sector-intro {
  max-width: 900px;
  margin-inline: auto;
  padding: 88px 32px 70px;
  text-align: center;
}

.bs-sector-intro p {
  margin: 0 0 24px;
  color: var(--sector-muted);
  font-size: 17px;
  line-height: 1.9;
}

.bs-sector-intro strong {
  color: var(--sector-highlight);
}

/* ── Original SVG scene (replaces the orbit/node layout) ── */
.bs-sector-svg-scene {
  position: relative;
  max-width: 1000px;
  height: 320px;
  margin: 0 auto 65px;
  padding: 0 24px;
}

.bs-sector-svg-scene svg {
  width: 100%;
  height: 100%;
}

@keyframes bs-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .bs-sector-svg-scene { height: 200px; }
}

/* ── Legacy orbit/node layout (kept for reference) ── */
.bs-sector-scene {
  position: relative;
  height: 330px;
  margin: 0 auto 65px;
}

.bs-sector-scene__orbit,
.bs-sector-scene__node,
.bs-sector-scene__line {
  position: absolute;
}

.bs-sector-scene__orbit {
  inset: 5% 31%;
  border: 1px solid color-mix(in srgb, var(--sector-highlight) 22%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 80px color-mix(in srgb, var(--sector-accent) 9%, transparent);
}

.bs-sector-scene__orbit::before,
.bs-sector-scene__orbit::after {
  content: "";
  position: absolute;
  border: 1px dashed color-mix(in srgb, var(--sector-highlight) 16%, transparent);
  border-radius: 50%;
}

.bs-sector-scene__orbit::before { inset: 15%; animation: bs-spin 24s linear infinite; }
.bs-sector-scene__orbit::after { inset: 32%; animation: bs-spin 18s linear infinite reverse; }

.bs-sector-scene__core {
  position: absolute;
  inset: 36%;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--sector-highlight) 35%, transparent);
  border-radius: 50%;
  color: var(--sector-highlight);
  background: color-mix(in srgb, var(--sector-accent) 9%, transparent);
  font-family: var(--bs-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bs-sector-scene__node {
  display: grid;
  place-items: center;
  width: 118px;
  min-height: 70px;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--sector-highlight) 14%, transparent);
  border-radius: 12px;
  color: var(--sector-muted);
  background: rgba(255, 255, 255, .035);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  backdrop-filter: blur(12px);
}

.bs-sector-scene__node:nth-of-type(2) { top: 8%; left: 5%; }
.bs-sector-scene__node:nth-of-type(3) { bottom: 8%; left: 13%; }
.bs-sector-scene__node:nth-of-type(4) { top: 10%; right: 7%; }
.bs-sector-scene__node:nth-of-type(5) { right: 14%; bottom: 7%; }

.bs-sector-scene__line {
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--sector-highlight) 26%, transparent), transparent);
  transform-origin: left center;
}

.bs-sector-scene__line--a { top: 31%; left: 15%; width: 29%; transform: rotate(9deg); }
.bs-sector-scene__line--b { bottom: 29%; left: 22%; width: 24%; transform: rotate(-12deg); }
.bs-sector-scene__line--c { top: 32%; right: 15%; width: 28%; transform: rotate(-8deg); }
.bs-sector-scene__line--d { right: 21%; bottom: 27%; width: 25%; transform: rotate(11deg); }

.bs-sector-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px 86px;
}

.bs-sector-stat {
  text-align: center;
}

.bs-sector-stat strong {
  display: block;
  margin-bottom: 5px;
  color: var(--sector-highlight);
  font-family: var(--bs-heading);
  font-size: clamp(28px, 4vw, 43px);
  font-weight: 700;
}

.bs-sector-stat span {
  color: var(--sector-dim);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bs-sector-audience {
  max-width: 1120px;
  margin-inline: auto;
  padding: 76px 32px 90px;
}

.bs-sector-audience h2 {
  margin: 0 0 52px;
  color: var(--sector-text);
  font-size: 36px;
  font-weight: 500;
  text-align: center;
}

.bs-sector-audience h2 span {
  color: var(--sector-accent);
}

.bs-sector-audience__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bs-sector-audience__card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 19px;
  border: 1px solid color-mix(in srgb, var(--sector-highlight) 12%, transparent);
  border-radius: 12px;
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(14px);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.bs-sector-audience__card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--sector-highlight) 24%, transparent);
  background: rgba(255, 255, 255, .075);
}

.bs-sector-audience__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--sector-highlight) 12%, transparent);
  border-radius: 10px;
  color: var(--sector-highlight);
  background: color-mix(in srgb, var(--sector-highlight) 6%, transparent);
  font-family: var(--bs-heading);
  font-size: 12px;
  font-weight: 700;
}

.bs-sector-audience__card h3 {
  margin: 1px 0 3px;
  color: var(--sector-text);
  font-family: var(--bs-body);
  font-size: 14px;
  font-weight: 650;
}

.bs-sector-audience__card p {
  margin: 0;
  color: var(--sector-dim);
  font-size: 12px;
}

.bs-sector-cta {
  padding: 88px 32px;
  border-top: 1px solid color-mix(in srgb, var(--sector-highlight) 10%, transparent);
  text-align: center;
}

.bs-sector-cta h2 {
  margin: 0 0 12px;
  color: var(--sector-text);
  font-size: 36px;
  font-weight: 500;
}

.bs-sector-cta h2 span {
  color: var(--sector-accent);
}

.bs-sector-cta p {
  margin: 0 0 30px;
  color: var(--sector-dim);
}

.bs-sector-cta .bs-button {
  color: var(--sector-body);
  background: var(--sector-accent);
}

/* Legacy layout wrapper compatibility */
.bs-site .maincontent,
.bs-site .header-content {
  width: 100%;
}

@media (max-width: 1020px) {
  .bs-nav__links,
  .bs-language,
  .bs-nav__cta {
    display: none;
  }

  .bs-nav__actions {
    margin-left: auto;
  }

  .bs-nav__menu-button {
    display: block;
  }

  html.bs-menu-open .bs-nav {
    color: var(--bs-navy);
    background: #fff;
    box-shadow: 0 1px 0 rgba(39, 47, 63, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  html.bs-menu-open .bs-nav__logo--dark {
    opacity: 1;
  }

  html.bs-menu-open .bs-nav__logo--light {
    opacity: 0;
  }

  html.bs-menu-open .bs-nav__menu-button span {
    background: var(--bs-navy);
  }

  .bs-nav__mobile {
    position: fixed;
    top: 68px;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100vw;
    height: calc(100dvh - 68px);
    max-height: calc(100dvh - 68px);
    padding: 28px max(32px, env(safe-area-inset-right)) calc(50px + env(safe-area-inset-bottom)) max(32px, env(safe-area-inset-left));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .bs-nav__mobile.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .bs-nav__mobile a {
    padding: 11px 0;
    border-bottom: 1px solid var(--bs-border);
    font-family: var(--bs-heading);
    font-size: 22px;
    font-weight: 500;
    text-decoration: none;
  }

  .bs-nav__mobile a.bs-nav__mobile-sub {
    padding-left: 18px;
    color: var(--bs-muted);
    font-size: 18px;
  }

  .bs-nav__mobile .bs-button {
    margin-top: 18px;
    border: 0;
    font-family: var(--bs-body);
    font-size: 15px;
  }

  .bs-nav__mobile-label {
    margin: 18px 0 3px;
    color: var(--bs-subtle);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  @supports not (height: 100dvh) {
    .bs-nav__mobile {
      height: calc(100vh - 68px);
      max-height: calc(100vh - 68px);
    }
  }

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

  .bs-grid-2 {
    gap: 36px;
  }

  .bs-sector-links,
  .bs-expertise-grid,
  .bs-reach-grid,
  .bs-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .bs-container,
  .bs-nav__inner,
  .bs-footer__inner,
  .bs-footer__fine {
    width: min(calc(100% - 36px), var(--bs-container));
  }

  .bs-nav__brand img {
    height: 22px;
  }

  .bs-nav__brand {
    width: 163px;
    height: 22px;
  }

  .bs-section {
    padding: 76px 0;
  }

  .bs-grid-2,
  .bs-card-grid,
  .bs-service-grid,
  .bs-service-detail__hero-grid,
  .bs-reach-grid,
  .bs-steps,
  .bs-contact-grid {
    grid-template-columns: 1fr;
  }

  .bs-service-detail__hero {
    min-height: auto;
    padding: var(--service-hero-padding-mobile);
  }

  .bs-service-detail__hero-grid {
    gap: 42px;
  }

  .bs-service-detail__copy h1 {
    font-size: var(--service-title-size-mobile);
    line-height: 1.06;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .bs-service-detail__lead {
    font-size: var(--service-lead-size-mobile);
  }

  .bs-service-detail__mark {
    justify-content: start;
  }

  .bs-service-detail__mark span {
    width: var(--service-mark-size-mobile);
  }

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

  .bs-footer__fine {
    flex-direction: column;
    gap: 12px;
  }

  .bs-home-hero {
    min-height: 720px;
    padding-top: 120px;
  }

  .bs-home-hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .bs-home-hero__actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 250px;
  }

  .bs-home-identity .bs-section__head h2 {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .bs-contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .bs-contact-form__field--full {
    grid-column: auto;
  }

  .bs-page-hero,
  .bs-page-hero--large,
  .bs-page-hero--light {
    min-height: 570px;
    padding: 112px 0 70px;
  }

  .bs-page-hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .template-services .bs-page-hero h1 {
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .template-jobs .bs-page-hero h1 {
    font-size: clamp(36px, 11vw, 68px);
  }

  .bs-page-hero--light h1 {
    font-size: 36px;
  }

  .bs-job-hero {
    min-height: 500px;
    padding: 104px 0 62px;
  }

  .bs-job-hero::after {
    right: -170px;
    bottom: -170px;
  }

  .bs-job-hero__back {
    margin-bottom: 42px;
  }

  .bs-job-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .bs-job-detail {
    padding: 70px 0 78px;
    background: #fff;
  }

  .bs-job-detail__layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .bs-job-content {
    font-size: 16px;
  }

  .bs-job-content h2,
  .bs-job-content h3 {
    margin-top: 42px;
    font-size: 30px;
  }

  .bs-job-apply {
    position: relative;
    top: auto;
    padding: 28px 24px;
  }

  .bs-sector-links,
  .bs-values-grid,
  .bs-team-grid {
    grid-template-columns: 1fr;
  }

  .bs-expertise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 18px;
  }

  .bs-expertise-node__ring {
    width: 100px;
    height: 100px;
  }

  .bs-expertise-node__inner {
    width: 60px;
    height: 60px;
  }

  .bs-expertise-node svg {
    width: 24px;
    height: 24px;
  }

  .bs-dna-visual text {
    font-size: 15px;
  }

  .bs-dna-visual__core text {
    font-size: 28px;
  }

  .bs-about-visual {
    min-height: 220px;
    padding: 20px;
  }

  .bs-process {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .bs-process::before {
    display: none;
  }

  .bs-process__step {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    text-align: left;
  }

  .bs-process__number {
    width: 54px;
    height: 54px;
    margin: 0;
    grid-row: span 2;
  }

  .bs-process-visual__graphic {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    padding-left: 58px;
    gap: 0;
  }

  .bs-process-visual__graphic::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, .14) 12%, rgba(255, 255, 255, .14) 88%, rgba(255, 255, 255, 0));
  }

  .bs-process-visual__graphic > svg,
  .bs-process-artwork {
    display: none;
  }

  .bs-process-hotspot {
    position: relative;
    top: auto;
    left: auto !important;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 58px;
    aspect-ratio: auto;
    padding: 10px 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, .6);
    font-family: var(--bs-heading);
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    transform: none;
    box-shadow: none;
    transition: color 220ms ease;
  }

  .bs-process-hotspot::before {
    content: '';
    position: absolute;
    left: -58px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .04);
    transition: border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
  }

  .bs-process-hotspot::after {
    content: attr(aria-label);
  }

  .bs-process-hotspot:hover,
  .bs-process-hotspot:focus-visible {
    color: rgba(255, 255, 255, .85);
    transform: none;
  }

  .bs-process-hotspot.is-active {
    color: #fff;
    transform: none;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }


  /* Icons clipped from the horizontal artwork SVG */
  .bs-process-visual__graphic button:nth-of-type(1)::before,
  .bs-process-visual__graphic button:nth-of-type(2)::before,
  .bs-process-visual__graphic button:nth-of-type(3)::before,
  .bs-process-visual__graphic button:nth-of-type(4)::before,
  .bs-process-visual__graphic button:nth-of-type(5)::before {
    background-image: url('/assets/img/work-icon.svg');
    background-size: 342px 52px;
    background-color: #fff;
    background-repeat: no-repeat;
    border-color: rgba(255, 255, 255, .15);
  }

  .bs-process-visual__graphic button:nth-of-type(1)::before { background-position: -6px -7px; }
  .bs-process-visual__graphic button:nth-of-type(2)::before { background-position: -79px -7px; }
  .bs-process-visual__graphic button:nth-of-type(3)::before { background-position: -152px -7px; }
  .bs-process-visual__graphic button:nth-of-type(4)::before { background-position: -224px -7px; }
  .bs-process-visual__graphic button:nth-of-type(5)::before { background-position: -297px -7px; }

  .bs-process-hotspot.is-active::before {
    border-color: rgba(114, 255, 201, .72);
    background-color: #fff;
    box-shadow: 0 0 0 6px rgba(114, 255, 201, .1), 0 0 20px rgba(114, 255, 201, .24);
  }

  .bs-process-info {
    position: static;
    left: auto;
    bottom: auto;
    width: 100%;
    transform: none;
    text-align: left;
    margin-top: 2px;
    padding-bottom: 10px;
    min-height: 0;
  }

  .bs-process-info.is-visible {
    transform: none;
  }

  .bs-process-info strong {
    display: none;
  }

  .bs-process-info span {
    max-width: none;
    margin-inline: 0;
    font-size: 14px;
  }

  .bs-way-hero {
    min-height: auto;
    padding: 122px 0 78px;
    overflow: visible;
  }

  .bs-way-hero h1 {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .bs-way-hero__copy p {
    font-size: 15px;
    line-height: 1.58;
  }

  .bs-way-hero__quote {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.45;
  }

  .bs-way-approach__diagram {
    margin-top: 34px;
  }

  .bs-sector-hero {
    min-height: 90vh;
    padding-top: 108px;
  }

  .bs-sector-hero h1 {
    font-size: clamp(32px, 10vw, 64px);
  }

  .bs-sector-intro {
    padding-inline: 20px;
  }

  .bs-sector-scene {
    height: 250px;
  }

  .bs-sector-scene__orbit {
    inset: 10% 20%;
  }

  .bs-sector-scene__node {
    width: 92px;
    min-height: 58px;
    padding: 8px;
    font-size: 9px;
  }

  .bs-sector-scene__node:nth-of-type(2) { top: 0; left: 0; }
  .bs-sector-scene__node:nth-of-type(3) { bottom: 0; left: 2%; }
  .bs-sector-scene__node:nth-of-type(4) { top: 0; right: 0; }
  .bs-sector-scene__node:nth-of-type(5) { right: 2%; bottom: 0; }

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

  .bs-sector-audience__grid {
    grid-template-columns: 1fr;
  }

  .bs-sector-cta h2,
  .bs-sector-audience h2 {
    font-size: 31px;
  }

  .bs-jobs-card {
    overflow-x: auto;
  }

  .bs-jobs-table {
    min-width: 660px;
  }
}

/* ── About page layout improvements ──────────────────────────────────────── */

.bs-about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 60px;
}

.bs-about-intro-grid__heading {
  position: sticky;
  top: 110px;
}

.bs-about-intro-grid__heading h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.022em;
}

.bs-about-intro-grid__body .bs-section__intro-text p {
  font-size: 16px;
}

.bs-about-intro-grid__body .bs-section__crossfunc {
  margin-top: 36px;
  margin-bottom: 0;
}

/* Origin / Haltung two-column layout */
.bs-about-origin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 80px;
  align-items: start;
}

.bs-about-origin-grid__label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 11px;
  border: 1px solid #c9f9e5;
  border-radius: 999px;
  color: #16835e;
  background: #eafff6;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bs-about-origin-grid h3 {
  margin: 0 0 20px;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.018em;
}

.bs-about-origin-grid p {
  margin: 0;
  color: var(--bs-muted);
  font-size: 16px;
  line-height: 1.75;
}

.bs-about-origin-left {
  padding-right: 16px;
  border-right: 1px solid var(--bs-border);
}

/* Mantras styled list */
.bs-about-mantras {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bs-about-mantras li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--bs-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--bs-ink);
  line-height: 1.3;
}

.bs-about-mantras li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 2px;
  background: var(--bs-mint-dark);
}

/* Bonn Way teaser band (light) */
.bs-bonn-way-band {
  padding: 96px 0;
  background: var(--bs-surface-muted);
  text-align: center;
}

.bs-bonn-way-band__inner {
  max-width: 620px;
  margin-inline: auto;
}

.bs-bonn-way-band .bs-overline {
  color: var(--bs-mint-dark);
}

.bs-bonn-way-band h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.022em;
}

.bs-bonn-way-band p {
  margin: 0 0 34px;
  color: var(--bs-muted);
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .bs-about-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  .bs-about-intro-grid__heading {
    position: static;
  }

  .bs-about-intro-grid__heading h2 {
    font-size: clamp(26px, 6vw, 38px);
  }

  .bs-about-origin-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .bs-about-origin-left {
    padding-right: 0;
    border-right: none;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--bs-border);
  }
}
