@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #111111;
  background-color: #FFFFFF;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

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

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

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

[x-cloak] {
  display: none !important;
}

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

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: #111111;
}
p.muted {
  color: #5F6B7A;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: #123D9A;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  z-index: 999;
  height: 80px;
  min-height: 66px;
  padding: 0;
  color: #123d9a;
  display: flex;
  align-items: center;
  transition: height 0.25s ease, box-shadow 0.25s ease;
}
.header--compact {
  height: 66px;
}
.header__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 100%;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  .header__container {
    grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  }
}
.header__logo img {
  height: 30px;
  width: auto;
}
.header__nav {
  display: none;
}
@media (min-width: 992px) {
  .header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
  }
}
.header__nav-link {
  position: relative;
  padding: 1.3rem 0 !important;
  border-radius: 8px;
  color: #123d9a !important;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 5px;
  background: rgb(177, 198, 255);
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width 0.25s ease, left 0.25s ease;
}
.header__nav-link:hover, .header__nav-link.active {
  color: rgb(165, 182, 255);
}
.header__nav-link:hover::after {
  width: 80%;
}
.header__nav-link.active::after {
  width: 90%;
}
.header__cta {
  display: none;
}
@media (min-width: 992px) {
  .header__cta {
    display: block;
    justify-self: end;
  }
}
.header__burger {
  display: block;
  color: #123d9a;
}
@media (min-width: 992px) {
  .header__burger {
    display: none;
  }
}
.header__burger {
  font-size: 1.5rem;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background: #123d9a;
  color: #FFFFFF;
  z-index: 1001;
  transition: all 0.3s ease;
  padding: 2rem;
  box-shadow: -2px 0 24px rgba(0, 0, 0, 0.22);
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: #FFFFFF;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 8rem;
}
.mobile-menu__nav-link {
  position: relative;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
.mobile-menu__nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  margin-top: 0.5rem;
  background: rgb(177, 198, 255);
  border-radius: 1px;
  transition: width 0.25s ease;
}
.mobile-menu__nav-link:hover, .mobile-menu__nav-link.active {
  color: rgb(177, 198, 255);
}
.mobile-menu__nav-link:hover::after, .mobile-menu__nav-link.active::after {
  width: 3rem;
}
.mobile-menu .btn--primary {
  background-color: #FFFFFF;
  color: #123d9a;
}
.mobile-menu .btn--primary:hover {
  background-color: rgb(232, 238, 255);
  color: #123d9a;
}

.footer {
  background: #0F172A;
  color: #FFFFFF;
  padding: 4rem 0 2rem;
}
.footer__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 768px) {
  .footer__container {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.footer__logo {
  margin-bottom: 1rem;
}
.footer__logo img {
  height: 40px;
  width: auto;
}
.footer__description {
  color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
  margin-top: 1rem;
}
.footer__title {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #FFFFFF;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__nav-link {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}
.footer__nav-link:hover {
  color: #FFFFFF;
}
.footer__bottom {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
}
.footer__bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}
.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 8rem 0;
  }
}

.bg-light {
  background-color: #F5F7FB;
}

.grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 576px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}
.btn--primary {
  background-color: #123D9A;
  color: #FFFFFF;
}
.btn--primary:hover {
  background-color: rgb(12.6627906977, 42.9127906977, 108.3372093023);
}
.btn--outline {
  border: 2px solid #123D9A;
  color: #123D9A;
}
.btn--outline:hover {
  background-color: #123D9A;
  color: #FFFFFF;
}
.btn--full {
  display: block;
  width: 100%;
}

.card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #E5EAF3;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.card__icon {
  font-size: 2rem;
  color: #123D9A;
  margin-bottom: 1rem;
}
.card__title {
  margin-bottom: 0.5rem;
}
.card__text {
  color: #5F6B7A;
  font-size: 0.95rem;
}
.card--media {
  padding-top: 1rem;
}
.card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.card__image--wide {
  height: 280px;
}

.trust-card {
  background: #FFFFFF;
  padding: 1.15rem 1.25rem;
  border-radius: 8px;
  border-left: 4px solid #123D9A;
  margin-bottom: 1rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}
.trust-card__title {
  color: #123D9A;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.25;
  display: block;
  margin-bottom: 0.25rem;
}
.trust-card__text {
  font-size: 0.9rem;
  color: #5F6B7A;
}

.guarantee-card {
  border-left: 5px solid #123D9A;
  padding: 4rem;
}
@media (max-width: 575.98px) {
  .guarantee-card {
    padding: 2rem;
  }
}

.form__group {
  margin-bottom: 1rem;
}
.form__label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.form__input, .form__select, .form__textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #E5EAF3;
  border-radius: 8px;
  background: #FFFFFF;
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: #123D9A;
  box-shadow: 0 0 0 2px rgba(18, 61, 154, 0.1);
}
.form__textarea {
  min-height: 120px;
  resize: vertical;
}
.form__checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-top: 1rem;
}
.form__checkbox-group input {
  margin-top: 0.25rem;
}
.form__honeypot {
  display: none;
}
.form__note {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(18, 61, 154, 0.14);
  border-radius: 8px;
  background: rgba(18, 61, 154, 0.06);
  color: #5F6B7A;
  font-size: 0.92rem;
}

.alert {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.alert--success {
  background: #D1FAE5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}
.alert--error {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

.job-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #E5EAF3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.job-card__header {
  margin-bottom: 1rem;
}
.job-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: #5F6B7A;
  font-size: 0.85rem;
  margin-bottom: 2rem;
}
.job-card__meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.job-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #E5EAF3;
}
.job-card__salary {
  font-weight: 700;
  color: #123D9A;
}

.hero {
  position: relative;
  isolation: isolate;
  background: linear-gradient(90deg, rgba(4, 13, 34, 0.88) 0%, rgba(18, 61, 154, 0.315) 48%, rgba(4, 13, 34, 0.52) 100%), linear-gradient(180deg, rgba(4, 13, 34, 0.5) 0%, rgba(4, 13, 34, 0.72) 100%), url("../img/hero-munich.jpg") center/cover no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
.hero .container {
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero .grid--2 {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  }
}
.hero .brand-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.hero .brand-kicker img {
  width: 4.4rem;
  height: auto;
  padding: 0.25rem 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
}
.hero h1 {
  color: #FFFFFF;
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  line-height: 1.05;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.48);
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
}
.hero .muted {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.1rem;
  line-height: 1.65;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}
@media (min-width: 992px) {
  .hero .muted {
    font-size: 1.2rem;
  }
}
.hero .btn--primary {
  background-color: #FFFFFF;
  color: #123D9A;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}
.hero .btn--primary:hover {
  background-color: rgb(232, 238, 255);
  color: #123D9A;
  transform: translateY(-2px);
}
.hero .btn--outline {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.9);
  color: #FFFFFF;
  backdrop-filter: blur(6px);
}
.hero .btn--outline:hover {
  background-color: #FFFFFF;
  color: #123D9A;
  transform: translateY(-2px);
}
.hero__content {
  max-width: 680px;
}
@media (min-width: 992px) {
  .hero__content {
    padding-right: 4rem;
  }
}
.hero__visual {
  width: 100%;
  max-width: 460px;
  margin-left: auto;
}
.hero .hero-proof {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)), rgba(18, 61, 154, 0.28);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  color: #FFFFFF;
  backdrop-filter: blur(16px);
}
.hero .hero-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid rgba(177, 198, 255, 0.95);
  pointer-events: none;
}
.hero .hero-proof__eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgb(218, 226, 255);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero .hero-proof__title {
  margin-bottom: 0.5rem;
  color: #FFFFFF;
  font-size: 1.65rem;
  line-height: 1.15;
}
.hero .hero-proof__text {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
}
.hero .hero-proof__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero .hero-proof__metric {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}
.hero .hero-proof__metric strong,
.hero .hero-proof__metric span {
  display: block;
}
.hero .hero-proof__metric strong {
  margin-bottom: 0.3rem;
  color: #FFFFFF;
  font-size: 1.6rem;
  line-height: 1;
}
.hero .hero-proof__metric span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  line-height: 1.35;
}
.hero .hero-proof__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.hero .hero-proof__tags span {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(4, 13, 34, 0.22);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 700;
}
.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.hero__cta-group .btn {
  min-width: 10.5rem;
}
.hero--home {
  min-height: 78vh;
  padding: 2rem 0 2.5rem;
  background: linear-gradient(90deg, rgba(4, 13, 34, 0.94) 0%, rgba(18, 61, 154, 0.78) 42%, rgba(4, 13, 34, 0.24) 100%), linear-gradient(180deg, rgba(4, 13, 34, 0.08) 0%, rgba(4, 13, 34, 0.7) 100%), url("../img/hero-munich.png") center 42%/cover no-repeat;
}
.hero--home .container {
  display: block;
}
.hero--home .hero__content {
  max-width: 820px;
  padding-right: 0;
}
.hero--home .hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.hero--home h1 {
  max-width: 850px;
  margin-bottom: 1rem;
  font-size: 3rem;
  line-height: 1.02;
}
@media (min-width: 768px) {
  .hero--home h1 {
    font-size: 3.45rem;
  }
}
@media (min-width: 992px) {
  .hero--home h1 {
    font-size: 4.05rem;
  }
}
.hero--home .hero__lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.2rem;
  line-height: 1.7;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}
.hero--home .hero__cta-group {
  margin-top: 2.4rem;
}
.hero--home .hero__trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 720px;
  margin-top: 2.4rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}
.hero--home .hero__trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}
.hero--home .hero__visual--home {
  max-width: 410px;
  justify-self: end;
}
.hero--home .hero-signal {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07)), rgba(4, 13, 34, 0.48);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
  color: #FFFFFF;
  backdrop-filter: blur(18px);
}
.hero--home .hero-signal::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -28%;
  width: 16rem;
  height: 16rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 64%);
  pointer-events: none;
}
.hero--home .hero-signal::after {
  content: "";
  position: absolute;
  inset: auto 1.35rem 1.35rem auto;
  width: 4.5rem;
  height: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  pointer-events: none;
}
.hero--home .hero-signal__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 4rem;
}
.hero--home .hero-signal__top span {
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero--home .hero-signal__top img {
  width: 3.25rem;
  height: auto;
  padding: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}
.hero--home .hero-signal h2,
.hero--home .hero-signal p, .hero--home .hero-signal__steps {
  position: relative;
  z-index: 1;
}
.hero--home .hero-signal h2 {
  max-width: 18rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
  font-size: 1.75rem;
  line-height: 1.12;
}
.hero--home .hero-signal p {
  margin-bottom: 4rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.6;
}
.hero--home .hero-signal__steps {
  display: grid;
  gap: 0.65rem;
}
.hero--home .hero-signal__steps span {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}
.hero--home .hero-signal__steps strong {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #FFFFFF;
  color: #123D9A;
  font-size: 0.78rem;
}
@media (max-width: 767.98px) {
  .hero {
    min-height: calc(100vh - 80px);
    padding: 4.5rem 0 3.5rem;
    background-position: 58% center;
    text-align: center;
  }
  .hero .container {
    display: block;
  }
  .hero h1 {
    font-size: 2.45rem;
    line-height: 1.08;
  }
  .hero .muted {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__content {
    margin: 0 auto;
  }
  .hero__visual {
    max-width: 100%;
    margin: 2rem auto 0;
  }
  .hero .hero-proof {
    padding: 1.15rem;
    text-align: left;
  }
  .hero .hero-proof__title {
    font-size: 1.35rem;
  }
  .hero .hero-proof__text {
    font-size: 0.95rem;
  }
  .hero .hero-proof__metrics {
    grid-template-columns: 1fr;
  }
  .hero__cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }
  .hero__cta-group .btn {
    width: 100%;
    min-width: 0;
    padding: 0.95rem 1.25rem;
  }
  .hero--home {
    min-height: auto;
    padding: 5.4rem 0 5rem;
    background: linear-gradient(90deg, rgba(4, 13, 34, 0.94) 0%, rgba(18, 61, 154, 0.82) 64%, rgba(4, 13, 34, 0.62) 100%), linear-gradient(180deg, rgba(4, 13, 34, 0.12) 0%, rgba(4, 13, 34, 0.82) 100%), url("../img/site/hero-munich-wide.jpg") 58% center/cover no-repeat;
    text-align: left;
  }
  .hero--home h1 {
    font-size: 2.45rem;
    line-height: 1.06;
  }
  .hero--home .hero__lead {
    font-size: 1.02rem;
    line-height: 1.62;
  }
  .hero--home .container {
    display: block;
  }
  .hero--home .hero__cta-group {
    align-items: stretch;
  }
  .hero--home .hero__trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .hero--home .hero__trust-row span {
    justify-content: center;
  }
  .hero--home .hero__visual--home {
    max-width: 100%;
    margin-top: 2rem;
  }
  .hero--home .hero-signal {
    padding: 1.1rem;
  }
  .hero--home .hero-signal__top {
    margin-bottom: 2rem;
  }
  .hero--home .hero-signal h2 {
    max-width: none;
    font-size: 1.45rem;
  }
  .hero--home .hero-signal p {
    margin-bottom: 2rem;
    font-size: 0.95rem;
  }
}

.proof-banner {
  position: relative;
  z-index: 2;
  margin-top: -3.5rem;
  padding-bottom: 4rem;
}
.proof-banner__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(18, 61, 154, 0.12);
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0 24px 70px rgba(4, 13, 34, 0.12);
}
.proof-banner__item {
  display: grid;
  justify-items: center;
  gap: 1rem;
  min-height: 12rem;
  padding: 2rem 1.25rem;
  text-align: center;
  border-right: 1px solid #E5EAF3;
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.proof-banner__item:last-child {
  border-right: 0;
}
.proof-banner__item:hover {
  background-color: rgba(18, 61, 154, 0.035);
  transform: translateY(-0.2rem);
}
.proof-banner__item:hover .proof-banner__icon {
  background: #123D9A;
  color: #FFFFFF;
  box-shadow: 0 16px 34px rgba(18, 61, 154, 0.24);
}
.proof-banner__item p {
  max-width: 13rem;
  margin: 0;
  color: #111111;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.42;
}
.proof-banner__icon {
  display: inline-grid;
  place-items: center;
  width: 4.4rem;
  height: 4.4rem;
  border: 1px solid rgba(18, 61, 154, 0.16);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(18, 61, 154, 0.12), rgba(18, 61, 154, 0.03)), #FFFFFF;
  color: #123D9A;
  transition: all 0.3s ease;
}
.proof-banner__icon svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 991.98px) {
  .proof-banner {
    margin-top: -2rem;
  }
  .proof-banner__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .proof-banner__item {
    min-height: 11rem;
  }
  .proof-banner__item:nth-child(2) {
    border-right: 0;
  }
  .proof-banner__item:nth-child(-n+2) {
    border-bottom: 1px solid #E5EAF3;
  }
}
@media (max-width: 575.98px) {
  .proof-banner {
    margin-top: 0;
    padding: 2rem 0;
    background: #FFFFFF;
  }
  .proof-banner__grid {
    grid-template-columns: 1fr;
    box-shadow: 0 16px 46px rgba(4, 13, 34, 0.1);
  }
  .proof-banner__item {
    min-height: 0;
    padding: 1.35rem 1rem;
    border-right: 0;
    border-bottom: 1px solid #E5EAF3;
  }
  .proof-banner__item:last-child {
    border-bottom: 0;
  }
  .proof-banner__icon {
    width: 3.8rem;
    height: 3.8rem;
  }
}

.section-brand-mark {
  width: 3.6rem;
  height: auto;
  margin-bottom: 1rem;
  opacity: 0.92;
}

.brand-heading .brand-heading__logo {
  display: inline-flex;
  width: 2.2em;
  height: 1.45em;
  margin-right: -0.12em;
}
.brand-heading .brand-heading__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 575.98px) {
  .brand-heading .brand-heading__logo {
    width: 1.85em;
    height: 1.25em;
  }
}

main {
  background: radial-gradient(circle at 8% 18%, rgba(18, 61, 154, 0.06) 0 0.35rem, transparent 0.4rem), radial-gradient(circle at 92% 38%, rgba(18, 61, 154, 0.05) 0 0.45rem, transparent 0.5rem), #FFFFFF;
}

.section {
  position: relative;
  overflow: hidden;
}
.section > .container {
  position: relative;
  z-index: 1;
}

.section--decor::before,
.section--pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section--decor::before {
  background: radial-gradient(circle at 12% 20%, rgba(18, 61, 154, 0.11) 0 5rem, transparent 5.1rem), radial-gradient(circle at 86% 74%, rgba(18, 61, 154, 0.08) 0 7rem, transparent 7.1rem), linear-gradient(135deg, transparent 0 46%, rgba(18, 61, 154, 0.08) 46% 46.35%, transparent 46.35% 100%);
}

.section--pattern::before {
  opacity: 0.68;
  background-image: radial-gradient(circle, rgba(18, 61, 154, 0.16) 1px, transparent 1.5px), linear-gradient(120deg, transparent 0 42%, rgba(18, 61, 154, 0.08) 42% 42.3%, transparent 42.3% 100%);
  background-size: 34px 34px, 100% 100%;
}

.feature-split {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 992px) {
  .feature-split {
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  }
}

.feature-split__content {
  max-width: 720px;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: #F5F7FB;
}
.image-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 16, 38, 0.18) 100%), radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18) 0 5rem, transparent 5.2rem);
}

.image-card--tall {
  align-self: stretch;
}
@media (min-width: 992px) {
  .image-card--tall {
    grid-row: span 1;
  }
}
.image-card--tall img {
  min-height: 480px;
}

.image-card--banner {
  margin-bottom: 2rem;
}
.image-card--banner img {
  max-height: 360px;
}

.process-step {
  position: relative;
  padding-left: 8rem;
  margin-bottom: 4rem;
}
.process-step::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  background: #123D9A;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}
.process-step__title {
  margin-bottom: 0.5rem;
}
.process-step__bullets {
  margin-top: 1rem;
}
.process-step__bullets li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.25rem;
}
.process-step__bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #123D9A;
}

.job-filters {
  background: #F5F7FB;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 4rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .job-filters {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.job-filters__empty {
  margin: 0;
  color: #5F6B7A;
}
@media (min-width: 768px) {
  .job-filters__empty {
    grid-column: 1/-1;
  }
}

.jobs-page,
.legal-page {
  padding-top: 8rem;
}

@media (max-width: 575.98px) {
  .legal-page h1,
  .legal-content h1 {
    font-size: 1.9rem;
    font-weight: 800;
  }
}
.jobs-page__intro {
  margin-bottom: 3rem;
}

.legal-page__container {
  max-width: 820px;
}
.legal-page__container h2 {
  margin-top: 2rem;
  font-size: 1.45rem;
}
.legal-page__container p {
  color: #5F6B7A;
}

.specialty-section {
  background: radial-gradient(circle at 8% 0%, rgba(18, 61, 154, 0.09) 0 7rem, transparent 7.1rem), linear-gradient(180deg, #FFFFFF 0%, #F5F7FB 100%);
}
.specialty-section__intro {
  max-width: 760px;
  margin-bottom: 2rem;
}
.specialty-section__eyebrow {
  display: inline-flex;
  margin-bottom: 0.5rem;
  color: #123D9A;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.specialty-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 576px) {
  .specialty-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .specialty-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.specialty-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 1/1;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: radial-gradient(circle at 18% 18%, rgba(177, 198, 255, 0.22) 0 4rem, transparent 4.1rem), linear-gradient(145deg, #0f347f 0%, #123d9a 58%, #071933 100%);
  color: #FFFFFF;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.specialty-card::before, .specialty-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: transform 0.32s ease, opacity 0.32s ease;
}
.specialty-card::before {
  top: -4.5rem;
  right: -4.5rem;
  width: 13rem;
  height: 13rem;
  border: 2px solid rgba(177, 198, 255, 0.45);
  border-radius: 34% 66% 58% 42%;
  transform: rotate(18deg);
  z-index: -1;
}
.specialty-card::after {
  inset: auto 1rem 1rem auto;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)), url("../img/brand-mark2.svg") center/58% auto no-repeat;
  opacity: 0;
  transform: scale(0.6);
  z-index: -1;
}
.specialty-card h3 {
  margin-bottom: 0.5rem;
  color: inherit;
  font-size: 1.35rem;
  line-height: 1.1;
}
.specialty-card p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.5;
}
.specialty-card__icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgb(218, 226, 255);
  font-size: 1.45rem;
  font-weight: 800;
  transition: transform 0.28s ease, background-color 0.28s ease;
}
.specialty-card__link {
  color: rgb(218, 226, 255);
  font-weight: 800;
}
.specialty-card:hover, .specialty-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(177, 198, 255, 0.7);
  box-shadow: 0 26px 60px rgba(18, 61, 154, 0.24);
}
.specialty-card:hover::before, .specialty-card:focus-visible::before {
  transform: rotate(34deg) translate(-0.75rem, 0.75rem);
}
.specialty-card:hover::after, .specialty-card:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}
.specialty-card:hover .specialty-card__icon, .specialty-card:focus-visible .specialty-card__icon {
  background: rgba(255, 255, 255, 0.18);
  transform: translate(0.35rem, -0.35rem);
}
.specialty-card--light {
  border-color: rgba(18, 61, 154, 0.18);
  background: radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.46) 0 4rem, transparent 4.1rem), linear-gradient(145deg, rgb(232, 238, 255) 0%, rgb(205, 218, 255) 100%);
  color: #0b2f76;
}
.specialty-card--light p {
  color: rgba(7, 25, 51, 0.72);
}
.specialty-card--light .specialty-card__icon {
  border-color: rgba(18, 61, 154, 0.18);
  background: rgba(255, 255, 255, 0.48);
  color: #123D9A;
}
.specialty-card--light .specialty-card__link {
  color: #123D9A;
}
.specialty-card--light::before {
  border-color: rgba(18, 61, 154, 0.2);
}
@media (max-width: 575.98px) {
  .specialty-card {
    min-height: 230px;
  }
}

@media (min-width: 768px) {
  .home-pathways > .container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
}
.home-pathways__intro {
  max-width: 740px;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .home-pathways__intro {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.home-pathways__eyebrow {
  display: inline-flex;
  margin-bottom: 0.5rem;
  color: #123D9A;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pathway-stack {
  display: grid;
  gap: 1rem;
}

.pathway-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 3.4rem);
  border-radius: 8px;
  color: #FFFFFF;
  background-position: center;
  background-size: cover;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .pathway-card {
    border-radius: 0;
  }
}
.pathway-card::before, .pathway-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.pathway-card::before {
  inset: 0;
  z-index: -2;
  background: linear-gradient(270deg, rgba(18, 61, 154, 0.12) 0%, rgba(7, 16, 38, 0.78) 44%, rgba(7, 16, 38, 0.93) 100%);
}
.pathway-card::after {
  inset: 0 auto 0 0;
  width: 52%;
  z-index: -1;
  background: radial-gradient(circle at 40% 18%, rgba(255, 255, 255, 0.2) 0 6rem, transparent 6.1rem), linear-gradient(135deg, #123d9a 0%, #071933 100%);
  clip-path: polygon(100% 100%, 70% 0, 0 0, 0 100%);
  opacity: 0.96;
}
.pathway-card__eyebrow {
  display: inline-flex;
  margin-bottom: 0.5rem;
  color: rgb(218, 226, 255);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pathway-card h3,
.pathway-card p, .pathway-card__button {
  max-width: 560px;
  margin-left: auto;
}
.pathway-card h3 {
  margin-bottom: 1rem;
  color: inherit;
  font-size: 2.45rem;
  line-height: 1.08;
}
.pathway-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}
.pathway-card__button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin-top: 1rem;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  background: #FFFFFF;
  color: #123D9A;
  font-weight: 800;
}
.pathway-card__button::after {
  content: "->";
  transition: transform 0.25s ease;
}
.pathway-card__logo {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  width: 4.2rem;
  height: 4.2rem;
  padding: 0.3rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.pathway-card:hover, .pathway-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 30px 78px rgba(18, 61, 154, 0.24);
}
.pathway-card:hover::after, .pathway-card:focus-visible::after {
  transform: translateX(1.5rem) skewX(-3deg);
}
.pathway-card:hover .pathway-card__button::after, .pathway-card:focus-visible .pathway-card__button::after {
  transform: translateX(0.35rem);
}
.pathway-card:hover .pathway-card__logo, .pathway-card:focus-visible .pathway-card__logo {
  transform: rotate(8deg) scale(1.1);
}
.pathway-card--companies {
  background-image: url("../img/site/candidate-interview-wide.jpg");
}
.pathway-card--companies::before {
  background: linear-gradient(270deg, rgba(18, 61, 154, 0.12) 0%, rgba(7, 16, 38, 0.78) 44%, rgba(7, 16, 38, 0.93) 100%);
}
.pathway-card--companies::after {
  inset: 0 0 0 auto;
  background: radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.2) 0 6rem, transparent 6.1rem), linear-gradient(135deg, #123d9a 0%, #071933 100%);
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}
.pathway-card--companies h3,
.pathway-card--companies p,
.pathway-card--companies .pathway-card__eyebrow,
.pathway-card--companies .pathway-card__button {
  margin-left: 0;
  margin-right: auto;
}
.pathway-card--jobs {
  background-image: url("../img/site/team-workshop-wide.jpg");
}
.pathway-card--jobs::before {
  background: linear-gradient(270deg, rgba(18, 61, 154, 0.12) 0%, rgba(7, 16, 38, 0.78) 44%, rgba(7, 16, 38, 0.93) 100%);
}
.pathway-card--jobs::after {
  inset: 0 0 0 auto;
  background: radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.2) 0 6rem, transparent 6.1rem), linear-gradient(135deg, #123d9a 0%, #071933 100%);
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}
.pathway-card--jobs h3,
.pathway-card--jobs p,
.pathway-card--jobs .pathway-card__eyebrow,
.pathway-card--jobs .pathway-card__button {
  margin-left: 0;
  margin-right: auto;
}
@media (max-width: 767.98px) {
  .pathway-card {
    min-height: 420px;
    padding: 2rem;
    justify-content: flex-end;
  }
  .pathway-card::before {
    background: linear-gradient(180deg, rgba(7, 16, 38, 0.2) 0%, rgba(7, 16, 38, 0.94) 100%);
  }
  .pathway-card::after {
    inset: 0;
    width: 100%;
    height: 48%;
    clip-path: polygon(0 0, 100% 0, 76% 100%, 0 74%);
    opacity: 0.82;
  }
  .pathway-card h3,
  .pathway-card p, .pathway-card__button, .pathway-card__eyebrow {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .pathway-card h3 {
    font-size: 1.85rem;
  }
  .pathway-card p {
    font-size: 0.98rem;
  }
  .pathway-card__button {
    width: 100%;
    justify-content: center;
  }
  .pathway-card__logo {
    width: 3.4rem;
    height: 3.4rem;
    top: 1rem;
    right: 1rem;
  }
  .pathway-card--jobs .pathway-card__logo {
    left: auto;
    right: 1rem;
  }
}

.final-cta {
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 16rem;
  height: 16rem;
  background: url("../img/brand-mark.svg") center/contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.final-cta__logo {
  width: 7rem;
  height: 7rem;
  margin: 0 auto 1rem;
  padding: 0.45rem 0.65rem;
  background: rgba(255, 255, 255, 0.94);
}
.final-cta p {
  color: #FFFFFF;
}
