:root {
  --navy-950: #06172f;
  --navy-900: #0b2b5c;
  --navy-800: #12396d;
  --blue-600: #0e64ae;
  --blue-500: #187ec8;
  --blue-100: #eaf4fc;
  --blue-050: #f5f9fd;
  --ink: #13233b;
  --muted: #5b6b7f;
  --line: #d9e5f0;
  --white: #ffffff;
  --shadow-sm: 0 14px 36px rgba(8, 31, 66, .08);
  --shadow-lg: 0 28px 80px rgba(8, 31, 66, .16);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1220px;
  --header-height: 128px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
a { font: inherit; }

a { color: inherit; }

button { cursor: pointer; }

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

[hidden] { display: none !important; }

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

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

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 999;
  transform: translateY(-180%);
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--navy-950);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(217, 229, 240, .9);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 48px), var(--container));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-shell {
  width: 178px;
  height: 112px;
  padding: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 18px;
  text-decoration: none;
}

.brand-shell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav,
.legal-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 750;
}

.main-nav a,
.legal-nav a {
  text-decoration: none;
  position: relative;
}

.main-nav a:not(.nav-cta)::after,
.legal-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--blue-600);
  transition: right .22s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.legal-nav a:hover::after,
.legal-nav a:focus-visible::after { right: 0; }

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy-900);
  box-shadow: 0 10px 30px rgba(11, 43, 92, .18);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 12px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-900);
  border-radius: 3px;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 92px 0 96px;
  background:
    linear-gradient(125deg, rgba(255,255,255,.98) 0 48%, rgba(245,249,253,.94) 70%, rgba(234,244,252,.98) 100%),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(14,100,174,.04) 80px);
}

.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -430px;
  width: 840px;
  height: 840px;
  border-radius: 50%;
  border: 88px solid rgba(14,100,174,.94);
  box-shadow:
    inset 0 0 0 28px rgba(255,255,255,.94),
    inset 0 0 0 62px rgba(11,43,92,.94);
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 510px;
  height: 510px;
  right: 9%;
  top: -270px;
  border: 1px solid rgba(14,100,174,.17);
}

.orbit-two {
  width: 360px;
  height: 360px;
  right: 2%;
  top: -180px;
  border: 48px solid rgba(18,57,109,.05);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, .78fr);
  gap: 72px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-600);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow-light { color: #8ed0ff; }

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy-900);
  line-height: 1.07;
  letter-spacing: -.038em;
}

h1 { font-size: clamp(46px, 5.8vw, 78px); max-width: 900px; }
h2 { font-size: clamp(36px, 4.2vw, 58px); }
h3 { font-size: 25px; }

.hero-lead,
.lead-copy {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.hero-lead {
  max-width: 790px;
  margin: 30px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 38px 0 30px;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 820;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600));
  box-shadow: 0 18px 42px rgba(11, 43, 92, .23);
}

.button-ghost,
.button-secondary {
  color: var(--navy-900);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 10px 24px rgba(8, 31, 66, .06);
}

.focus-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.focus-line span,
.strength-grid span,
.environment-tags span,
.system-cloud span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 760;
}

.focus-line span {
  padding: 8px 13px;
  border-radius: 999px;
}

.executive-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(217,229,240,.9);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.executive-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -100px;
  top: -100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(14,100,174,.15), rgba(11,43,92,.03));
}

.executive-top {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
}

.monogram {
  width: 74px;
  height: 74px;
  border-radius: 23px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--blue-600), var(--navy-900));
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.04em;
  box-shadow: 0 16px 35px rgba(11,43,92,.22);
}

.card-kicker {
  margin: 0 0 7px;
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.executive-card h2 { font-size: 31px; }

.executive-card > p {
  margin: 24px 0;
  color: var(--muted);
}

.metric-grid {
  display: grid;
  gap: 12px;
}

.metric-grid div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.metric-grid strong {
  color: var(--navy-900);
  font-size: 26px;
  letter-spacing: -.04em;
}

.metric-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.section { padding: 96px 0; }
.section-white { background: #fff; }
.section-soft { background: linear-gradient(135deg, var(--blue-050), #fff 58%, #eef6fc); }

.profile-grid,
.outcome-grid,
.method-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 88px;
  align-items: start;
}

.profile-copy p { margin: 0 0 18px; color: var(--muted); }

.strength-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.strength-grid span {
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--blue-050);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 48px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 820px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

.service-card {
  min-height: 278px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(14,100,174,.34);
  box-shadow: 0 22px 50px rgba(8,31,66,.12);
}

.service-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(145deg, var(--blue-600), var(--navy-900));
  font-weight: 900;
}

.service-card h3 { margin-bottom: 14px; }
.service-card p { margin: 0; color: var(--muted); }

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(24,126,200,.25), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.section-dark h2 { color: #fff; }

.outcome-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.outcome-list article {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  background: rgba(255,255,255,.06);
}

.outcome-list strong {
  display: block;
  color: #fff;
  font-size: 19px;
  margin-bottom: 10px;
}

.outcome-list p { margin: 0; color: #d9e8f5; font-size: 15px; }

.practice-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
}

.practice-feature {
  padding: 38px;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 84% 15%, rgba(255,255,255,.15), transparent 22%),
    linear-gradient(140deg, var(--navy-900), var(--blue-600));
  box-shadow: var(--shadow-lg);
}

.practice-feature h3 { color: #fff; font-size: 34px; margin: 16px 0 18px; }
.practice-feature > p { color: #e4eff8; }

.practice-label,
.partner-note {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .04em;
}

.practice-label { background: rgba(255,255,255,.14); color: #fff; }

.practice-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.practice-facts span {
  padding: 16px;
  border-radius: 17px;
  background: rgba(255,255,255,.11);
  font-size: 13px;
  line-height: 1.35;
}

.practice-facts strong { display: block; color: #fff; font-size: 22px; margin-bottom: 5px; }

.practice-stack { display: grid; gap: 16px; }
.practice-stack article {
  padding: 25px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.practice-stack h3 { font-size: 22px; margin-bottom: 10px; }
.practice-stack p { margin: 0; color: var(--muted); }

.environment-block {
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.environment-title {
  margin: 0 0 16px;
  color: var(--navy-900);
  font-weight: 850;
}

.environment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.environment-tags span {
  padding: 8px 12px;
  border-radius: 11px;
  background: var(--blue-050);
}

.fine-print {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.section-telephony {
  background:
    linear-gradient(135deg, rgba(245,249,253,.97), rgba(255,255,255,.98)),
    repeating-linear-gradient(135deg, transparent 0 34px, rgba(14,100,174,.04) 35px);
}

.telephony-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 72px;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  margin: 13px 0;
  color: var(--ink);
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .4em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: inset 0 0 0 5px #fff, 0 0 0 1px var(--blue-600);
}

.telephony-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.partner-note {
  margin-bottom: 26px;
  color: var(--navy-900);
  background: var(--blue-100);
}

.telephony-card p { color: var(--muted); }

.system-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.system-cloud span {
  padding: 8px 12px;
  border-radius: 999px;
}

.method-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.method-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.method-steps > li > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: var(--navy-900);
  font-weight: 900;
}

.method-steps strong { display: block; color: var(--navy-900); font-size: 20px; }
.method-steps p { margin: 4px 0 0; color: var(--muted); }

.contact-section {
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(69,163,229,.28), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 56%, var(--blue-600));
}

.contact-section h2 { color: #fff; }
.contact-section > .container > div:first-child > p:last-child { color: #d9e8f5; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 76px;
  align-items: center;
}

.contact-panel {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.09);
  box-shadow: 0 30px 70px rgba(0,0,0,.22);
}

.contact-company {
  margin: 0 0 18px;
  color: #fff;
  font-weight: 850;
}

.contact-line {
  width: 100%;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
  padding: 15px 0;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.15);
  background: transparent;
  color: #fff;
  text-align: left;
  text-decoration: none;
}

.contact-line span { color: #a9cde8; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.contact-line strong { font-size: 16px; }
.contact-line:hover strong { text-decoration: underline; }

.noscript-contact { color: #d9e8f5; font-size: 14px; }

.site-footer {
  padding: 28px 0;
  color: #bdd0e4;
  background: #041326;
  font-size: 14px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-grid > div { display: grid; gap: 2px; }
.footer-grid strong { color: #fff; }
.footer-grid nav { display: flex; gap: 22px; }
.footer-grid a { color: #d5e4f1; text-decoration: none; }
.footer-grid a:hover { text-decoration: underline; }

.contact-dialog {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 20px;
}

.dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 19, 38, .72);
  backdrop-filter: blur(8px);
}

.dialog-card {
  position: relative;
  width: min(100%, 560px);
  padding: 36px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 40px 100px rgba(0,0,0,.34);
}

.dialog-card h2 { font-size: 34px; }

.dialog-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--blue-050);
  color: var(--navy-900);
  font-size: 27px;
  line-height: 1;
}

.dialog-output {
  margin: 26px 0 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--blue-050);
}

.dialog-output a {
  color: var(--navy-900);
  font-size: 19px;
  font-weight: 850;
  word-break: break-word;
}

.legal-page { background: var(--blue-050); }
.legal-main { padding: 76px 0 100px; }

.legal-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.legal-aside h1 { font-size: 54px; }
.legal-aside > p:last-child { color: var(--muted); }

.legal-content {
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.legal-content section + section {
  margin-top: 36px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  font-size: 25px;
  margin-bottom: 14px;
}

.legal-content p { margin: 0 0 14px; color: #36485e; }
.legal-contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.legal-version { margin-top: 44px !important; color: var(--muted) !important; font-size: 13px; }

:focus-visible {
  outline: 3px solid rgba(24,126,200,.45);
  outline-offset: 4px;
}

@media (max-width: 1050px) {
  :root { --header-height: 108px; }

  .header-inner { min-height: var(--header-height); }
  .brand-shell { width: 150px; height: 94px; padding: 8px; }
  .main-nav { gap: 18px; }

  .hero-grid,
  .profile-grid,
  .outcome-grid,
  .method-grid,
  .telephony-grid,
  .contact-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid { gap: 46px; }
  .executive-card { max-width: 680px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .outcome-list { grid-template-columns: repeat(3, 1fr); }
  .practice-layout { grid-template-columns: 1fr; }
  .legal-aside { position: static; }
}

@media (max-width: 790px) {
  :root { --header-height: 96px; }
  .container,
  .header-inner { width: min(calc(100% - 28px), var(--container)); }

  .brand-shell { width: 138px; height: 86px; padding: 7px; }

  .menu-toggle { display: block; }

  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 8px 4px; }
  .nav-cta { text-align: center; }

  .hero { min-height: auto; padding: 72px 0 82px; }
  .hero::after { opacity: .28; right: -410px; }
  .hero-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(42px, 12vw, 60px); }
  h2 { font-size: clamp(34px, 9vw, 48px); }
  .hero-lead, .lead-copy { font-size: 19px; }
  .section { padding: 74px 0; }

  .service-grid,
  .outcome-list,
  .practice-facts {
    grid-template-columns: 1fr;
  }

  .profile-grid,
  .outcome-grid,
  .method-grid,
  .telephony-grid,
  .contact-grid { gap: 42px; }

  .legal-nav { gap: 16px; font-size: 14px; }
  .legal-main { padding: 52px 0 74px; }
  .legal-content { padding: 28px; }
  .legal-aside h1 { font-size: 44px; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .header-inner { gap: 14px; }
  .brand-shell { width: 126px; height: 79px; }
  .legal-nav a:first-child { display: none; }

  .hero-actions { display: grid; }
  .button { width: 100%; }
  .executive-card,
  .practice-feature,
  .telephony-card,
  .contact-panel,
  .dialog-card { padding: 25px; }

  .executive-top { grid-template-columns: 60px 1fr; }
  .monogram { width: 60px; height: 60px; border-radius: 18px; font-size: 20px; }
  .executive-card h2 { font-size: 27px; }

  .metric-grid div { grid-template-columns: 90px 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .practice-feature h3 { font-size: 28px; }

  .footer-grid { align-items: flex-start; flex-direction: column; }
  .contact-line { grid-template-columns: 72px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

.partner-logo-wrap {
  margin: -4px 0 22px;
  display: flex;
  justify-content: flex-start;
}

.partner-logo {
  display: block;
  width: 172px;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}


/* Operative Verantwortung */
.section-responsibility {
  background:
    radial-gradient(circle at 85% 10%, rgba(14,100,174,.08), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
}

.responsibility-heading {
  max-width: 860px;
}

.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.responsibility-card {
  min-height: 310px;
  display: grid;
  grid-template-rows: 138px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 46px rgba(8,31,66,.07);
}

.company-logo-link,
.company-logo-static {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 138px;
  padding: 24px 34px;
  background:
    linear-gradient(135deg, rgba(245,249,253,.88), rgba(255,255,255,.98));
  border-bottom: 1px solid var(--line);
}

.company-logo-link {
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.company-logo-link::after {
  content: "↗";
  position: absolute;
  top: 13px;
  right: 16px;
  color: var(--blue-600);
  font-size: 16px;
  font-weight: 850;
  opacity: 0;
  transform: translate(-3px, 3px);
  transition: opacity .2s ease, transform .2s ease;
}

.company-logo-link:hover,
.company-logo-link:focus-visible {
  background: linear-gradient(135deg, rgba(232,242,251,.95), #fff);
}

.company-logo-link:hover::after,
.company-logo-link:focus-visible::after {
  opacity: 1;
  transform: translate(0,0);
}

.company-logo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 86px;
  object-fit: contain;
}

.company-logo-bpe { max-height: 70px; }
.company-logo-group { max-height: 64px; }
.company-logo-itschner { max-height: 94px; }
.company-logo-modern { max-height: 82px; }

.company-copy {
  padding: 26px 28px 28px;
}

.company-copy h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-size: 23px;
  line-height: 1.18;
}

.company-copy p {
  margin: 7px 0 0;
  color: var(--muted);
}

.company-copy .company-role {
  margin-top: 0;
  color: var(--blue-600);
  font-weight: 820;
}

.responsibility-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

  .responsibility-card {
    min-height: auto;
  }
}

/* Finale Profil- und LinkedIn-Ergänzungen */
.button-linkedin {
  color: #0a66c2;
  background: rgba(255,255,255,.9);
  border-color: rgba(10,102,194,.24);
  box-shadow: 0 10px 24px rgba(10,102,194,.08);
}

.button-linkedin span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: #fff;
  background: #0a66c2;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.linkedin-highlight {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(10,102,194,.2);
  border-radius: 18px;
  color: var(--navy-900);
  background: linear-gradient(135deg, rgba(10,102,194,.06), #fff);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.linkedin-highlight:hover,
.linkedin-highlight:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(10,102,194,.38);
  box-shadow: 0 16px 34px rgba(8,31,66,.09);
}

.linkedin-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: #0a66c2;
  font-size: 20px;
  font-weight: 900;
}

.linkedin-highlight strong,
.linkedin-highlight small { display: block; }
.linkedin-highlight strong { font-size: 17px; }
.linkedin-highlight small { margin-top: 2px; color: var(--muted); font-size: 13px; }
.linkedin-arrow { color: #0a66c2; font-size: 20px; font-weight: 900; }

/* Acht gleichwertige Leistungsfelder */
@media (min-width: 1051px) {
  .service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .service-card { min-height: 310px; }
}

/* Praxiserfahrung bewusst gleichgewichtet */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.practice-card {
  position: relative;
  min-height: 245px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.practice-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -72px;
  bottom: -82px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(14,100,174,.10), rgba(11,43,92,.02));
}

.practice-index {
  display: inline-block;
  margin-bottom: 23px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.practice-card h3 { margin-bottom: 13px; font-size: 24px; }
.practice-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); }

@media (max-width: 790px) {
  .practice-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .linkedin-highlight { grid-template-columns: 42px 1fr; }
  .linkedin-mark { width: 42px; height: 42px; }
  .linkedin-arrow { display: none; }
}
