    :root {
      --blue-950: #09243f;
      --blue-900: #0c3158;
      --blue-800: #013c7c;
      --blue-700: #164f8f;
      --sky-100: #eaf8fb;
      --sky-200: #c9eef5;
      --red-700: #d00906;
      --red-800: #ab0906;
      --ink: #1c2733;
      --text-muted: #5c6b78;
      --line: #dbe4ec;
      --soft: #f5f8fb;
      --white: #ffffff;
      --shadow: 0 18px 45px rgba(9, 36, 63, 0.12);
      --shadow-card: 0 10px 26px rgba(9, 36, 63, 0.07);
      --radius: 8px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 120px;
    }

    body {
      min-width: 320px;
      color: var(--ink);
      background: var(--white);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      font-size: 18px;
      line-height: 1.65;
    }

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

    a {
      color: var(--blue-800);
      text-decoration: none;
    }

    a:hover {
      color: var(--red-700);
      text-decoration: underline;
    }

    p {
      margin-bottom: 1rem;
    }

    h1,
    h2,
    h3 {
      color: var(--blue-950);
      line-height: 1.14;
      letter-spacing: 0;
      margin-bottom: 1rem;
    }

    h1 {
      max-width: 1060px;
      font-size: clamp(2.35rem, 4.8vw, 3.85rem);
      font-weight: 760;
      line-height: 1.16;
    }

    h2 {
      font-size: clamp(1.95rem, 4vw, 3rem);
      font-weight: 730;
    }

    h3 {
      font-size: 1.35rem;
      font-weight: 720;
    }

    .container {
      width: min(100% - 2rem, var(--max));
      margin-inline: auto;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 255, 255, 0.96);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(12px);
    }

    .announcement-bar {
      background: var(--blue-950);
      color: var(--white);
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .announcement-inner {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 42px;
      padding-block: 0.45rem;
      text-align: center;
      font-size: 0.96rem;
      font-weight: 650;
    }

    .announcement-inner a {
      color: var(--white);
      text-decoration: none;
    }

    .announcement-inner span {
      color: var(--sky-200);
      white-space: nowrap;
    }

    .announcement-inner a:hover span {
      color: var(--white);
      text-decoration: underline;
      text-underline-offset: 0.18em;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.2rem;
      min-height: 98px;
      padding: 0.65rem 0;
    }

    .logo {
      width: 220px;
      height: auto;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 1.15rem;
      font-size: 1rem;
    }

    .nav a {
      color: var(--ink);
      font-weight: 520;
    }

    .nav a:hover {
      color: var(--red-700);
    }

    .nav-dropdown {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0.12rem;
    }

    .nav-dropdown-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 1.8rem;
      height: 1.8rem;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: pointer;
    }

    .nav-dropdown-toggle::after {
      content: "▾";
      color: var(--red-700);
      font-size: 0.95em;
      font-weight: 800;
      transition: transform 0.2s ease;
    }

    .nav-dropdown:hover .nav-dropdown-toggle::after,
    .nav-dropdown:focus-within .nav-dropdown-toggle::after,
    .nav-dropdown.is-open .nav-dropdown-toggle::after {
      transform: rotate(180deg);
    }

    .nav-submenu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 320px;
      padding: 0.65rem 0 0.5rem;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow-card);
      z-index: 30;
    }

    .nav-dropdown:hover .nav-submenu,
    .nav-dropdown:focus-within .nav-submenu,
    .nav-dropdown.is-open .nav-submenu {
      display: flex;
      flex-direction: column;
    }

    .nav-submenu a {
      display: block;
      padding: 0.72rem 1rem;
      white-space: nowrap;
      color: var(--ink);
    }

    .nav-submenu a:hover {
      color: var(--red-700);
      background: var(--soft);
      text-decoration: none;
    }

    .nav .button-primary,
    .nav .button-primary:hover,
.nav .button-primary:focus-visible {
  color: var(--white);
}

.mobile-menu-toggle {
  display: none;
  padding: 0.5rem;
  color: var(--blue-950);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 27, 47, 0.54);
  z-index: 29;
}

.mobile-overlay.active {
  display: block;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0 0 0 auto;
  width: min(82vw, 340px);
  padding: 5.5rem 1.25rem 1.5rem;
  background: var(--white);
  box-shadow: -18px 0 45px rgba(9, 36, 63, 0.18);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 30;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav .nav-link {
  min-width: 0;
  color: var(--ink);
  font-weight: 650;
  line-height: 1.35;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.mobile-nav-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.mobile-nav-group-header .nav-link {
  flex: 1;
}

.mobile-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid rgba(208, 9, 6, 0.22);
  border-radius: 999px;
  background: rgba(208, 9, 6, 0.08);
  cursor: pointer;
}

.mobile-nav-toggle::after {
  content: "▾";
  color: var(--red-700);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease;
}

.mobile-nav-group.is-open .mobile-nav-toggle::after {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0.75rem 0 0 0.75rem;
  padding-left: 0.85rem;
  border-left: 2px solid var(--line);
}

.mobile-nav-group.is-open .mobile-submenu {
  display: flex;
}

.button {
  display: inline-flex;
  align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0.72rem 1.05rem;
      border: 2px solid transparent;
      border-radius: var(--radius);
      font-weight: 700;
      line-height: 1.2;
      text-align: center;
      transition: 0.2s ease;
    }

    .button:hover {
      text-decoration: none;
      transform: translateY(-1px);
    }

    .button-primary {
      color: var(--white);
      background: var(--red-700);
      border-color: var(--red-700);
      box-shadow: 0 12px 24px rgba(208, 9, 6, 0.18);
    }

    .button-primary:hover {
      color: var(--white);
      background: var(--red-800);
      border-color: var(--red-800);
    }

    .button-secondary {
      color: var(--blue-900);
      background: var(--white);
      border-color: rgba(1, 60, 124, 0.28);
    }

    .button-secondary:hover {
      color: var(--blue-900);
      background: var(--sky-100);
      border-color: var(--blue-700);
    }

    .hero {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(100deg, rgba(9, 36, 63, 0.89), rgba(12, 49, 88, 0.72) 54%, rgba(12, 49, 88, 0.18)),
        url("/assets/images/baumann_im_foyer.jpg") center right 16% / cover no-repeat;
      color: var(--white);
      min-height: auto;
      display: flex;
      align-items: center;
      padding: clamp(3rem, 5.2vw, 5.4rem) 0;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 1px;
      background: rgba(255, 255, 255, 0.18);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 960px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1.1rem;
      color: var(--sky-200);
      font-size: 0.98rem;
      font-weight: 720;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 3px;
      background: var(--red-700);
      border-radius: 99px;
    }

    .hero h1,
    .hero h2 {
      color: var(--white);
      text-wrap: balance;
      overflow-wrap: anywhere;
      hyphens: auto;
    }

    .hero-lead {
      max-width: 820px;
      color: rgba(255, 255, 255, 0.92);
      font-size: clamp(1.1rem, 1.8vw, 1.28rem);
      line-height: 1.58;
      margin-bottom: 1.45rem;
    }

    .hero-actions,
    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      align-items: center;
      margin-bottom: 1.25rem;
    }

    .hero-note {
      color: rgba(255, 255, 255, 0.86);
      font-size: 0.98rem;
      margin: 0;
    }

    .hero-proof {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      margin-top: 2rem;
      max-width: 850px;
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.22);
      box-shadow: 0 16px 34px rgba(4, 21, 38, 0.14);
    }

    .hero-proof div {
      padding: 1.05rem;
      background: rgba(255, 255, 255, 0.1);
    }

    .hero-proof strong {
      display: block;
      color: var(--white);
      font-size: 1.02rem;
      margin-bottom: 0.25rem;
    }

    .hero-proof span {
      color: rgba(255, 255, 255, 0.78);
      font-size: 0.94rem;
      line-height: 1.4;
    }

    .section {
      padding: clamp(3.4rem, 6vw, 5.7rem) 0;
    }

    .section-soft {
      background: var(--soft);
    }

    .section-blue {
      color: var(--white);
      background: var(--blue-950);
    }

    .section-blue h2,
    .section-blue h3 {
      color: var(--white);
    }

    .section-intro {
      max-width: 820px;
      margin-bottom: 1.8rem;
    }

    .section-intro.center {
      margin-inline: auto;
      text-align: center;
    }

    .section-intro p {
      color: var(--text-muted);
      font-size: 1.18rem;
    }

    .section-blue .section-intro p,
    .section-blue p {
      color: rgba(255, 255, 255, 0.82);
    }

    .trust-strip {
      display: grid;
      grid-template-columns: 1.05fr 1fr 1fr;
      gap: 1rem;
      align-items: stretch;
    }

    .trust-item,
    .service-card,
    .process-step,
    .quote-card,
    .faq-item,
    .region-card,
    .proof-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow-card);
    }

    .trust-item {
      display: grid;
      grid-template-columns: 86px 1fr;
      gap: 1rem;
      align-items: center;
      padding: 1.15rem;
      min-height: 128px;
    }

    .trust-item img {
      width: 86px;
      height: 86px;
      object-fit: contain;
      border: 1px solid var(--line);
      background: var(--white);
    }

    .trust-item p,
    .service-card p,
    .process-step p,
    .quote-card p,
    .proof-card p {
      color: var(--text-muted);
      margin-bottom: 0;
    }

    .grid {
      display: grid;
      gap: 1rem;
    }

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

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

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

    .split {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      gap: clamp(2rem, 4vw, 4rem);
      align-items: center;
    }

    .split h2 {
      font-size: clamp(1.95rem, 3.45vw, 2.65rem);
      line-height: 1.18;
    }

    .portrait {
      overflow: hidden;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      background: var(--blue-950);
    }

    .portrait img {
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
    }

    .check-list {
      display: grid;
      gap: 0.75rem;
      margin-top: 1.5rem;
      list-style: none;
    }

    .check-list li {
      position: relative;
      padding-left: 1.8rem;
    }

    .check-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55rem;
      width: 0.78rem;
      height: 0.78rem;
      border-radius: 50%;
      background: var(--red-700);
      box-shadow: inset 0 0 0 3px var(--white);
      outline: 1px solid rgba(208, 9, 6, 0.22);
    }

    .service-card,
    .proof-card {
      padding: 1.3rem;
    }

    .service-card {
      display: block;
      min-height: 220px;
      color: var(--blue-950);
      text-decoration: none;
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .service-card:hover {
      transform: translateY(-3px);
      border-color: rgba(208, 9, 6, 0.28);
      box-shadow: 0 18px 42px rgba(9, 36, 63, 0.13);
      text-decoration: none;
    }

    .service-card:focus-visible {
      outline: 3px solid rgba(208, 9, 6, 0.36);
      outline-offset: 4px;
    }

    .service-card h3 {
      transition: color 180ms ease;
    }

    .service-card:hover h3 {
      color: var(--red-700);
    }

    .service-card.featured {
      color: var(--white);
      background: var(--blue-900);
      border-color: var(--blue-900);
      box-shadow: 0 12px 30px rgba(9, 36, 63, 0.14);
    }

.service-card.featured h3,
.service-card.featured p {
  color: var(--white);
}

.service-card.featured:hover {
  background: var(--blue-950);
  border-color: var(--blue-950);
}

.service-card.featured:hover h3 {
  color: var(--white);
}

.label {
  display: inline-block;
  margin-bottom: 0.75rem;
      color: var(--red-700);
      font-size: 0.9rem;
      font-weight: 760;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .service-card.featured .label {
      color: var(--sky-200);
    }

    .process-step {
      padding: 1.3rem;
      position: relative;
    }

    .step-number {
      display: inline-grid;
      place-items: center;
      width: 2.45rem;
      height: 2.45rem;
      margin-bottom: 1rem;
      color: var(--white);
      background: var(--blue-800);
      border-radius: 50%;
      font-weight: 800;
    }

    .quote-card {
      position: relative;
      padding: 1.65rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 300px;
      background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    }

    .quote {
      color: var(--ink);
      font-size: 1.08rem;
      line-height: 1.68;
    }

    .quote::before {
      content: "“";
      display: block;
      height: 1.4rem;
      color: rgba(208, 9, 6, 0.32);
      font-size: 3.6rem;
      font-family: Georgia, serif;
      line-height: 0.8;
      margin-bottom: 0.55rem;
    }

    .quote-author {
      margin-top: 1.35rem;
      padding-top: 1rem;
      border-top: 1px solid var(--line);
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.45;
    }

    .quote-author strong {
      display: block;
      color: var(--blue-950);
      margin-bottom: 0.18rem;
    }

    .quote-author span {
      display: block;
    }

    .article-card {
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 300px;
      padding: 1.55rem;
    }

    .article-card h3 a {
      color: var(--red-700);
    }

    .article-card h3 a:hover {
      color: var(--red-800);
      text-decoration: none;
    }

    .article-link {
      align-self: flex-end;
      margin-top: auto;
      padding-top: 1.2rem;
      color: var(--red-700);
      font-weight: 650;
    }

    .article-badge {
      position: absolute;
      top: -0.78rem;
      left: 1.25rem;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.22rem 0.65rem;
      color: var(--red-700);
      background: var(--white);
      border: 1px solid var(--red-700);
      border-radius: 999px;
      font-size: 0.9rem;
      font-weight: 760;
      line-height: 1.3;
    }

    .article-badge::before {
      content: "";
      width: 0.48rem;
      height: 0.48rem;
      background: var(--red-700);
      border-radius: 50%;
    }

    .article-content h1 {
      max-width: none;
      font-size: clamp(2.1rem, 3.15vw, 3rem);
      line-height: 1.18;
      margin-bottom: 1.25rem;
      text-wrap: balance;
    }

    .article-content h2 {
      font-size: clamp(1.55rem, 2.35vw, 2.15rem);
      line-height: 1.22;
      margin-top: 2.15rem;
      margin-bottom: 0.85rem;
      text-wrap: balance;
    }

    .article-content > .text-xl {
      font-size: clamp(1.08rem, 1.55vw, 1.22rem);
      line-height: 1.65;
    }

    .article-sidebar .article-cta-card h2 {
      font-size: clamp(1.55rem, 2.35vw, 2.15rem);
      line-height: 1.18;
      margin-bottom: 1rem;
    }

    .region-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 2rem;
    }

    .region-card {
      padding: 1.35rem;
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.18);
      box-shadow: 0 10px 26px rgba(4, 21, 38, 0.1);
    }

    .region-card strong {
      display: block;
      color: var(--white);
      font-size: 1.35rem;
      margin-bottom: 0.35rem;
    }

    .faq {
      max-width: 900px;
      margin-inline: auto;
    }

    .faq-item + .faq-item {
      margin-top: 0.75rem;
    }

    .faq-question {
      width: 100%;
      padding: 1rem 1.15rem;
      border: 0;
      background: transparent;
      color: var(--blue-950);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      font: inherit;
      font-weight: 720;
      text-align: left;
    }

    .faq-question span:last-child {
      color: var(--red-700);
      font-weight: 900;
    }

    .faq-question[aria-expanded="true"] .faq-arrow {
      transform: rotate(180deg);
    }

    .faq-arrow {
      display: inline-block;
      transition: transform 0.2s ease;
    }

    .faq-answer {
      padding: 0 1.15rem 1.15rem;
      color: var(--text-muted);
    }

    .cta {
      background:
        linear-gradient(90deg, rgba(9, 36, 63, 0.96), rgba(9, 36, 63, 0.78)),
        url("/assets/images/baumann_am_schreibtisch.jpg") center / cover no-repeat;
      color: var(--white);
      padding: clamp(3rem, 6vw, 5rem) 0;
    }

    .cta h2 {
      max-width: 760px;
      color: var(--white);
    }

    .cta p {
      max-width: 700px;
      color: rgba(255, 255, 255, 0.84);
      font-size: 1.18rem;
    }

    .footer {
      padding: 3rem 0 2rem;
      color: rgba(255, 255, 255, 0.76);
      background: #071b2f;
      font-size: 1rem;
    }

    .footer a {
      color: var(--white);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1fr;
      gap: 1.2rem;
      margin-bottom: 2rem;
    }

    .footer h3 {
      color: var(--white);
      font-size: 1.08rem;
    }

    .footer-memberships {
      margin-bottom: 2rem;
    }

    .footer-memberships-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.8rem;
      max-width: 640px;
    }

    .footer-membership-card {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 88px;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: var(--radius);
    }

    .footer-membership-card:hover {
      background: var(--white);
      text-decoration: none;
    }

    .footer-membership-card img {
      max-width: 100%;
      max-height: 56px;
      width: auto;
      height: auto;
      object-fit: contain;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

@media (max-width: 980px) {
      .header-inner {
        min-height: 86px;
      }

      .logo {
        width: 190px;
      }

  .nav {
    display: none;
  }

  .mobile-menu-toggle,
  .mobile-nav {
    display: block;
  }

  .hero {
        min-height: auto;
        padding: 4.8rem 0;
        background:
          linear-gradient(100deg, rgba(9, 36, 63, 0.92), rgba(12, 49, 88, 0.8)),
          url("/assets/images/baumann_im_foyer.jpg") center / cover no-repeat;
      }

      .hero-proof,
      .trust-strip,
      .grid-2,
      .grid-3,
      .grid-4,
      .split,
      .region-grid,
      .footer-memberships-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .service-card.featured {
        grid-column: auto;
      }

      .footer-bottom {
        display: block;
      }
    }

    @media (max-width: 640px) {
      body {
        font-size: 17px;
      }

      .container {
        width: min(100% - 1.2rem, var(--max));
      }

      .hero {
        padding: 3.2rem 0 3.6rem;
      }

      .hero h1 {
        font-size: clamp(2rem, 11vw, 2.65rem);
        line-height: 1.18;
      }

      .article-content h1 {
        font-size: clamp(1.85rem, 8vw, 2.3rem);
        line-height: 1.2;
      }

      .article-content h2,
      .article-sidebar .article-cta-card h2 {
        font-size: clamp(1.35rem, 6vw, 1.75rem);
      }

      .hero-actions,
      .cta-actions {
        display: grid;
      }

      .button {
        width: 100%;
      }

      .hero-proof div,
      .service-card,
      .process-step,
      .quote-card {
        padding: 1rem;
      }

      .trust-item {
        grid-template-columns: 70px 1fr;
      }

      .trust-item img {
        width: 70px;
        height: 70px;
      }

      .footer {
        padding-bottom: 5.5rem;
      }
    }
