:root {
      --red: #8f0f23;
      --red-dark: #650918;
      --red-soft: #f5e7ea;

      --gray-dark: #1f2023;
      --gray-main: #303237;
      --gray-mid: #5d6168;
      --gray-light: #f3f3f4;
      --gray-border: #dedfe3;

      --white: #ffffff;
      --shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
      --radius: 22px;
      --header-height: 88px;
    }

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

    html,
    body {
      width: 100%;
      height: 100%;
      overflow: hidden;
      font-family: Arial, Helvetica, sans-serif;
      background: var(--gray-dark);
      color: var(--gray-dark);
      line-height: 1.5;
    }

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

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

    button {
      cursor: pointer;
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: var(--header-height);
      z-index: 999;
      background:
        linear-gradient(90deg, rgba(255,255,255,0.98), rgba(246,246,247,0.96)),
        radial-gradient(circle at 15% 0%, rgba(143, 15, 35, 0.08), transparent 30%);
      backdrop-filter: blur(10px);
      border-bottom: 4px solid var(--red);
      box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
    }

    .nav {
      max-width: 1180px;
      height: 100%;
      margin: 0 auto;
      padding: 12px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
      border: 0;
      background: transparent;
      border-radius: 999px;
      padding: 6px 10px 6px 6px;
      transition: 0.25s ease;
    }

    .logo-wrap:hover {
      background: rgba(143, 15, 35, 0.08);
      transform: translateY(-2px);
    }

    .logo-wrap:hover .mini-logo {
      transform: rotate(-5deg) scale(1.08);
      box-shadow: 0 8px 20px rgba(143, 15, 35, 0.22);
    }

    .logo-wrap:hover .brand-text strong {
      letter-spacing: 0.4px;
    }

    .mini-logo {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      object-fit: contain;
      transition: 0.25s ease;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      text-align: left;
      line-height: 1.1;
    }

    .brand-text strong {
      color: var(--red);
      font-size: 18px;
    }

    .brand-text span {
      color: var(--gray-main);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    nav ul {
      display: flex;
      align-items: center;
      gap: 24px;
      list-style: none;
    }

    .nav-link {
      border: 0;
      background: transparent;
      color: var(--gray-main);
      font-size: 15px;
      font-weight: 900;
      padding: 8px 0;
      position: relative;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--red);
    }

    .nav-link.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 3px;
      border-radius: 99px;
      background: var(--red);
    }

    .nav-button {
      border: 0;
      background: var(--red);
      color: var(--white);
      padding: 11px 19px;
      border-radius: 999px;
      font-weight: 900;
      font-size: 15px;
    }

    .nav-button:hover {
      background: var(--red-dark);
    }

    main {
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .page {
      display: none;
      width: 100%;
      height: 100vh;
      overflow-y: auto;
      overflow-x: hidden;
      padding: calc(var(--header-height) + 44px) 24px 60px;
      animation: fadeIn 0.25s ease;
    }

    .page.active {
      display: block;
    }

    .page::-webkit-scrollbar,
    .modal-content::-webkit-scrollbar {
      width: 9px;
    }

    .page::-webkit-scrollbar-thumb,
    .modal-content::-webkit-scrollbar-thumb {
      background: var(--red);
      border-radius: 99px;
    }

    .page::-webkit-scrollbar-track,
    .modal-content::-webkit-scrollbar-track {
      background: rgba(0, 0, 0, 0.08);
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(8px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .container {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
    }

    .section-label {
      color: var(--red);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    h1 {
      font-size: clamp(44px, 7vw, 78px);
      line-height: 1.02;
      letter-spacing: -1.4px;
      margin-bottom: 24px;
    }

    h2,
    h1.page-title {
      font-size: clamp(34px, 5vw, 54px);
      line-height: 1.08;
      letter-spacing: -0.8px;
      margin-bottom: 18px;
    }

    h3 {
      font-size: 24px;
      line-height: 1.15;
      margin-bottom: 10px;
    }

    p {
      font-size: 17px;
      color: var(--gray-mid);
    }

    .btn {
      border: 0;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      padding: 14px 24px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 900;
    }

    .btn-red {
      background: var(--red);
      color: var(--white);
    }

    .btn-red:hover {
      background: var(--red-dark);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.65);
    }

    .grid {
      display: grid;
      gap: 22px;
    }

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

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

    .card {
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .card-red {
      background: var(--red);
      color: var(--white);
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow);
    }

    .card-red p {
      color: rgba(255,255,255,0.85);
    }

    .number {
      width: 46px;
      height: 46px;
      background: var(--red-soft);
      color: var(--red);
      border-radius: 14px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: 900;
      margin-bottom: 18px;
    }


    /* Hintergrund-Design */
    .page {
      position: relative;
      isolation: isolate;
    }

    .page::before {
      content: "";
      position: fixed;
      inset: var(--header-height) 0 0 0;
      pointer-events: none;
      z-index: -2;
      opacity: 0.55;
      background:
        radial-gradient(circle at 8% 18%, rgba(143, 15, 35, 0.16), transparent 24%),
        radial-gradient(circle at 88% 78%, rgba(255, 255, 255, 0.10), transparent 28%);
    }

    .page::after {
      content: "";
      position: fixed;
      inset: var(--header-height) 0 0 0;
      pointer-events: none;
      z-index: -1;
      opacity: 0.26;
      background-image:
        linear-gradient(115deg, transparent 0%, transparent 43%, rgba(143, 15, 35, 0.26) 43.2%, transparent 44%),
        linear-gradient(118deg, transparent 0%, transparent 49%, rgba(255, 255, 255, 0.20) 49.2%, transparent 50%),
        linear-gradient(122deg, transparent 0%, transparent 56%, rgba(143, 15, 35, 0.18) 56.2%, transparent 57%);
      background-size: 100% 100%;
    }

    .start-page::before {
      background:
        radial-gradient(circle at 80% 18%, rgba(143, 15, 35, 0.34), transparent 28%),
        radial-gradient(circle at 15% 82%, rgba(255, 255, 255, 0.10), transparent 26%),
        radial-gradient(circle at 50% 50%, rgba(143, 15, 35, 0.10), transparent 36%);
    }

    .standorte-page::before {
      background:
        radial-gradient(circle at 15% 20%, rgba(143, 15, 35, 0.12), transparent 28%),
        radial-gradient(circle at 82% 68%, rgba(143, 15, 35, 0.10), transparent 28%),
        linear-gradient(135deg, rgba(255,255,255,0.75), rgba(233,234,237,0.55));
    }

    .leitung-page::before {
      background:
        radial-gradient(circle at 12% 24%, rgba(143, 15, 35, 0.15), transparent 25%),
        radial-gradient(circle at 88% 76%, rgba(143, 15, 35, 0.13), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.4), rgba(245,231,234,0.58));
    }

    .about-page::before,
    .kontakt-page::before {
      background:
        radial-gradient(circle at 82% 16%, rgba(143, 15, 35, 0.34), transparent 26%),
        radial-gradient(circle at 12% 80%, rgba(255, 255, 255, 0.09), transparent 28%),
        linear-gradient(135deg, rgba(255,255,255,0.04), transparent);
    }

    .jobs-page::before {
      background:
        radial-gradient(circle at 12% 22%, rgba(143, 15, 35, 0.11), transparent 27%),
        radial-gradient(circle at 90% 18%, rgba(143, 15, 35, 0.13), transparent 24%),
        radial-gradient(circle at 70% 88%, rgba(31, 32, 35, 0.10), transparent 30%);
    }

    .container {
      position: relative;
    }

    .container::before {
      content: "";
      position: absolute;
      right: -90px;
      top: -42px;
      width: 190px;
      height: 190px;
      border: 1px solid rgba(143, 15, 35, 0.16);
      border-radius: 50%;
      pointer-events: none;
      opacity: 0.85;
      box-shadow:
        -42px 62px 0 -18px rgba(143, 15, 35, 0.10),
        -120px 110px 0 -42px rgba(143, 15, 35, 0.06);
    }

    .container::after {
      content: "";
      position: absolute;
      left: -110px;
      bottom: -80px;
      width: 260px;
      height: 260px;
      border: 1px solid rgba(143, 15, 35, 0.10);
      border-radius: 50%;
      pointer-events: none;
      opacity: 0.85;
      box-shadow:
        68px -42px 0 -24px rgba(143, 15, 35, 0.08),
        138px -110px 0 -52px rgba(143, 15, 35, 0.06);
    }

    .start-layout,
    .standorte-layout,
    .leitung-layout,
    .about-layout,
    .jobs-layout,
    .kontakt-layout {
      position: relative;
      z-index: 1;
    }

    .card,
    .benefit-board,
    .job-info,
    .map-card,
    .person-box,
    .contact-item,
    .contact-button,
    .brand-strip-card,
    .logo-card {
      position: relative;
      overflow: hidden;
    }

    .card::after,
    .benefit-board::after,
    .job-info::after,
    .map-card::after,
    .person-box::before,
    .contact-item::after,
    .contact-button::after,
    .logo-card::after {
      content: "";
      position: absolute;
      right: -42px;
      top: -42px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: rgba(143, 15, 35, 0.06);
      pointer-events: none;
    }

    .map-card::after,
    .job-info::after,
    .person-box::before {
      background: rgba(255, 255, 255, 0.08);
    }

    .card,
    .contact-item,
    .contact-button,
    .job-row,
    .benefit {
      transition: 0.22s ease;
    }

    .card:hover,
    .contact-item:hover,
    .contact-button:hover,
    .job-row:hover,
    .benefit:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .section-label::before {
      content: "";
      width: 22px;
      height: 3px;
      border-radius: 99px;
      background: currentColor;
      opacity: 0.8;
    }

    @media (max-width: 720px) {
      .container::before,
      .container::after {
        display: none;
      }

      .page::after {
        opacity: 0.14;
      }
    }

    .start-page {
      background:
        radial-gradient(circle at 85% 18%, rgba(143, 15, 35, 0.28), transparent 28%),
        linear-gradient(135deg, #303237, #17181b);
      color: var(--white);
    }

    .start-layout {
      min-height: calc(100vh - var(--header-height) - 110px);
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 54px;
      align-items: center;
    }

    .start-page p {
      color: rgba(255,255,255,0.86);
      max-width: 680px;
      margin-bottom: 16px;
      font-size: 20px;
    }

    .slogan {
      display: inline-block;
      background: var(--red);
      color: var(--white);
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 18px;
      font-weight: 900;
      margin: 10px 0 32px;
    }

    .start-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .logo-card {
      background: var(--white);
      border-radius: 34px;
      padding: 36px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.28);
      border-left: 12px solid var(--red);
    }

    .logo-card img {
      max-width: 410px;
      margin: 0 auto;
    }

    .service-row {
      margin-top: 40px;
    }

    .service-row .card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: none;
      color: var(--white);
    }

    .service-row .card p {
      color: rgba(255,255,255,0.78);
    }

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

    .service-row .number {
      background: var(--red);
      color: var(--white);
    }

    .standorte-page {
      background: linear-gradient(135deg, #f7f7f8, #e8e9ec);
    }

    .standorte-layout {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 38px;
      align-items: start;
    }

    .location-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .pill {
      background: var(--white);
      color: var(--gray-dark);
      border: 1px solid var(--gray-border);
      border-radius: 999px;
      padding: 13px 20px;
      font-weight: 900;
      box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    }

    .map-card {
      background:
        radial-gradient(circle at 70% 20%, rgba(143, 15, 35, 0.25), transparent 30%),
        linear-gradient(135deg, var(--gray-dark), var(--gray-main));
      color: var(--white);
      min-height: 430px;
      border-radius: 32px;
      padding: 36px;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .map-card p {
      color: rgba(255,255,255,0.8);
    }

    .city-list {
      display: grid;
      gap: 16px;
      margin-top: 26px;
    }

    .city-item {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 18px;
      padding: 18px;
    }

    .city-item strong {
      display: block;
      font-size: 22px;
      margin-bottom: 4px;
    }


    .standorte-layout {
      align-items: start;
    }

    .standorte-intro {
      display: grid;
      gap: 16px;
    }

    .standorte-extra {
      margin-top: 34px;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 24px;
      align-items: stretch;
    }

    .standort-detail-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 26px;
    }

    .standort-detail {
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: 22px;
      padding: 22px;
      box-shadow: 0 10px 28px rgba(0,0,0,0.06);
      position: relative;
      overflow: hidden;
    }

    .standort-detail::after {
      content: "";
      position: absolute;
      right: -44px;
      top: -44px;
      width: 116px;
      height: 116px;
      border-radius: 50%;
      background: rgba(143, 15, 35, 0.07);
      pointer-events: none;
    }

    .standort-detail span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 13px;
      background: var(--red);
      color: var(--white);
      font-weight: 900;
      margin-bottom: 14px;
    }

    .standort-detail h3 {
      font-size: 22px;
      color: var(--gray-dark);
    }

    .standort-detail p {
      font-size: 15px;
    }

    .standort-flow {
      background:
        radial-gradient(circle at 86% 18%, rgba(255,255,255,0.12), transparent 25%),
        linear-gradient(135deg, var(--gray-dark), var(--red));
      color: var(--white);
      border-radius: 28px;
      padding: 30px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      min-height: 100%;
    }

    .standort-flow::before {
      content: "";
      position: absolute;
      right: -90px;
      bottom: -90px;
      width: 240px;
      height: 240px;
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 50%;
    }

    .standort-flow h3 {
      color: var(--white);
      font-size: 28px;
    }

    .standort-flow p {
      color: rgba(255,255,255,0.82);
      margin-bottom: 18px;
    }

    .flow-list {
      display: grid;
      gap: 13px;
      position: relative;
      z-index: 1;
    }

    .flow-item {
      background: rgba(255,255,255,0.09);
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: 16px;
      padding: 14px 16px;
      color: var(--white);
      font-weight: 900;
    }

    .standort-note {
      background: rgba(143, 15, 35, 0.08);
      border: 1px solid rgba(143, 15, 35, 0.12);
      border-radius: 22px;
      padding: 24px;
      margin-top: 24px;
    }

    .standort-note h3 {
      color: var(--red);
      font-size: 25px;
      margin-bottom: 10px;
    }

    .standort-note p {
      font-size: 15.5px;
    }

    .standorte-visual {
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: 28px;
      padding: 14px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .standorte-visual img {
      width: 100%;
      border-radius: 18px;
      display: block;
      background: #fff;
      object-fit: cover;
      min-height: 320px;
    }

    .standort-copy-card {
      margin-top: 28px;
      background:
        radial-gradient(circle at 12% 88%, rgba(255,255,255,0.08), transparent 26%),
        linear-gradient(135deg, #9b0d24, #820c1e);
      color: var(--white);
      border-radius: 30px;
      padding: 30px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .standort-copy-card::after {
      content: "";
      position: absolute;
      right: -70px;
      top: -70px;
      width: 210px;
      height: 210px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow:
        -48px 82px 0 -30px rgba(255,255,255,0.08),
        -120px 150px 0 -60px rgba(255,255,255,0.05);
      pointer-events: none;
    }

    .standort-copy-card h3 {
      color: var(--white);
      font-size: 28px;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }

    .standort-copy-card p {
      color: rgba(255,255,255,0.86);
      font-size: 17px;
      max-width: 760px;
      position: relative;
      z-index: 1;
    }

    .google-map-card {
      margin-top: 30px;
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: 32px;
      padding: 16px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .google-map-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      padding: 8px 8px 18px;
    }

    .google-map-head h3 {
      font-size: 28px;
      color: var(--gray-dark);
      margin: 0;
    }

    .google-map-head p {
      margin: 6px 0 0;
      font-size: 15px;
      color: var(--gray-mid);
    }

    .map-badge {
      background: var(--red);
      color: var(--white);
      border-radius: 999px;
      padding: 10px 15px;
      font-size: 13px;
      font-weight: 900;
      white-space: nowrap;
    }

    .google-map-frame {
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(143, 15, 35, 0.12);
      min-height: 430px;
      background: var(--red-soft);
    }

    .google-map-frame iframe {
      width: 100%;
      height: 430px;
      border: 0;
      display: block;
      filter: grayscale(0.18) contrast(1.02);
    }

    .google-map-frame {
      position: relative;
    }

    .google-map-frame iframe {
      width: 100%;
      height: 430px;
      border: 0;
      display: block;
      filter: grayscale(0.06) contrast(1.01);
    }

    .map-pin-overlay {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -88%);
      z-index: 3;
      background: transparent;
      border: 0;
      padding: 0;
      cursor: pointer;
    }

    .map-pin-overlay:focus-visible {
      outline: 3px solid rgba(143, 15, 35, 0.25);
      outline-offset: 6px;
      border-radius: 999px;
    }

    .map-pin-shape {
      position: relative;
      width: 46px;
      height: 46px;
      background: var(--red);
      border: 4px solid var(--white);
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
    }

    .map-pin-shape::before {
      content: "";
      position: absolute;
      inset: 11px;
      background: var(--white);
      border-radius: 50%;
    }

    .map-pin-bubble {
      position: absolute;
      left: calc(50% + 34px);
      top: calc(50% - 86px);
      z-index: 4;
      min-width: 240px;
      max-width: 290px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(143, 15, 35, 0.12);
      border-radius: 22px;
      padding: 16px 18px;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
      display: none;
    }

    .map-pin-bubble.show {
      display: block;
    }

    .map-pin-bubble::after {
      content: "";
      position: absolute;
      left: -9px;
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
      width: 18px;
      height: 18px;
      background: rgba(255, 255, 255, 0.96);
      border-left: 1px solid rgba(143, 15, 35, 0.12);
      border-bottom: 1px solid rgba(143, 15, 35, 0.12);
    }

    .map-pin-bubble .eyebrow {
      color: var(--red);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.7px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .map-pin-bubble strong {
      display: block;
      color: var(--gray-dark);
      font-size: 18px;
      margin-bottom: 5px;
    }

    .map-pin-bubble p {
      margin: 0;
      color: var(--gray-mid);
      font-size: 14px;
      line-height: 1.45;
    }

    .map-pin-bubble a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 12px;
      background: var(--red);
      color: var(--white);
      text-decoration: none;
      padding: 10px 14px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 900;
    }

    .map-pin-bubble a:hover {
      background: var(--red-dark);
    }

    .map-action-row {
      display: none;
    }

    @media (max-width: 720px) {
      .google-map-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .google-map-frame,
      .google-map-frame iframe {
        min-height: 340px;
        height: 340px;
      }

      .map-pin-shape {
        width: 40px;
        height: 40px;
      }

      .map-pin-bubble {
        left: 50%;
        top: 18px;
        transform: translateX(-50%);
        min-width: 220px;
        max-width: calc(100% - 24px);
      }

      .map-pin-bubble::after {
        display: none;
      }
    }

    .map-action-row {
      display: none;
    }

    @media (max-width: 720px) {
      .google-map-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .google-map-frame,
      .google-map-frame iframe {
        min-height: 340px;
        height: 340px;
      }
    }


    @media (max-width: 720px) {
      .google-map-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .google-map-frame,
      .google-map-frame iframe {
        min-height: 340px;
        height: 340px;
      }
    }

    .standort-map-card {
      margin-top: 30px;
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: 32px;
      padding: 16px;
      box-shadow: var(--shadow);
    }

    .standort-map-card.simple-map {
      padding: 18px;
    }

    .standort-map-frame.simple-map {
      min-height: auto;
      background: transparent;
    }

    .standort-map-frame.simple-map img {
      min-height: auto;
      height: auto;
      object-fit: contain;
      transform: none;
      filter: none;
      border-radius: 22px;
    }

    .standort-map-caption {
      margin-top: 16px;
      text-align: center;
      color: var(--gray-mid);
      font-size: 15px;
    }

    .standort-map-frame {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      min-height: 470px;
      background: #eadbde;
    }

    .standort-map-frame img {
      width: 100%;
      height: 100%;
      min-height: 470px;
      object-fit: cover;
      display: block;
      filter: saturate(0.75) contrast(1.03) brightness(1.02);
      transform: scale(1.015);
    }

    .standort-map-frame::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(143,15,35,0.08)),
        radial-gradient(circle at 84% 16%, rgba(143,15,35,0.10), transparent 26%);
      pointer-events: none;
    }

    .map-label {
      position: absolute;
      z-index: 2;
      background: rgba(255,255,255,0.94);
      color: var(--gray-dark);
      border: 1px solid rgba(143, 15, 35, 0.10);
      border-radius: 999px;
      padding: 10px 16px;
      font-size: 14px;
      font-weight: 900;
      box-shadow: 0 10px 24px rgba(0,0,0,0.12);
      backdrop-filter: blur(6px);
    }

    .map-label.red {
      background: rgba(143,15,35,0.94);
      color: var(--white);
      border-color: rgba(255,255,255,0.12);
    }

    .map-label.dresden { left: 62%; top: 58%; }
    .map-label.leipzig { left: 52%; top: 50%; }
    .map-label.sachsen { left: 68%; top: 74%; }

    .map-headline {
      position: absolute;
      left: 24px;
      top: 24px;
      z-index: 2;
      background: rgba(255,255,255,0.92);
      border: 1px solid rgba(143,15,35,0.10);
      border-radius: 22px;
      padding: 16px 18px;
      max-width: 260px;
      box-shadow: 0 12px 26px rgba(0,0,0,0.12);
    }

    .map-headline span {
      display: block;
      color: var(--red);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .map-headline strong {
      display: block;
      color: var(--gray-dark);
      font-size: 22px;
      line-height: 1.15;
    }

    @media (max-width: 980px) {
      .map-label.dresden { left: 57%; top: 58%; }
      .map-label.leipzig { left: 47%; top: 48%; }
      .map-label.sachsen { left: 63%; top: 74%; }
    }

    @media (max-width: 720px) {
      .standort-map-frame,
      .standort-map-frame img {
        min-height: 340px;
      }

      .map-headline {
        left: 14px;
        top: 14px;
        max-width: 220px;
        padding: 14px 15px;
      }

      .map-headline strong {
        font-size: 18px;
      }

      .map-label {
        font-size: 12px;
        padding: 8px 12px;
      }
    }

    @media (max-width: 980px) {
      .standorte-extra,
      .standort-detail-grid {
        grid-template-columns: 1fr;
      }
    }

    .leitung-page {
      background: linear-gradient(180deg, #ffffff, var(--red-soft));
    }

    .leitung-layout {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 34px;
      align-items: start;
    }

    .person-box {
      background: var(--gray-dark);
      color: var(--white);
      border-radius: 32px;
      padding: 36px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .person-box::after {
      content: "";
      position: absolute;
      right: -120px;
      bottom: -120px;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12);
    }

    .person-box span {
      display: block;
      color: rgba(255,255,255,0.7);
      font-size: 14px;
      font-weight: 900;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .person-box strong {
      display: block;
      font-size: clamp(42px, 5vw, 66px);
      line-height: 1;
      margin-bottom: 20px;
    }

    .person-box p {
      color: rgba(255,255,255,0.82);
      max-width: 520px;
    }


    .mini-visual {
      background: linear-gradient(135deg, rgba(31,32,35,0.95), rgba(143,15,35,0.88));
      border: 1px solid rgba(143, 15, 35, 0.22);
      border-radius: 26px;
      padding: 14px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .mini-visual.dark {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.10);
    }

    .mini-visual img {
      width: 100%;
      border-radius: 18px;
    }

    .side-stack {
      display: grid;
      gap: 18px;
      margin-top: 24px;
    }

    .small-copy {
      font-size: 15px;
      line-height: 1.5;
    }

    .leitung-data-card {
      display: grid;
      gap: 18px;
      color: var(--white);
      background:
        radial-gradient(circle at 86% 14%, rgba(255,255,255,0.14), transparent 26%),
        radial-gradient(circle at 10% 82%, rgba(255,255,255,0.08), transparent 24%),
        linear-gradient(135deg, var(--gray-dark), var(--red));
      border-radius: 18px;
      padding: 24px;
      min-height: 100%;
      position: relative;
      overflow: hidden;
    }

    .leitung-data-card::before {
      content: "";
      position: absolute;
      right: -80px;
      top: -80px;
      width: 210px;
      height: 210px;
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 50%;
      box-shadow:
        -60px 95px 0 -38px rgba(255,255,255,0.08),
        -145px 170px 0 -72px rgba(255,255,255,0.05);
      pointer-events: none;
    }

    .leitung-data-card::after {
      content: "";
      position: absolute;
      left: -90px;
      bottom: -90px;
      width: 230px;
      height: 230px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 50%;
      pointer-events: none;
    }

    .leitung-data-card > * {
      position: relative;
      z-index: 1;
    }

    .leitung-data-card .eyebrow {
      color: rgba(255,255,255,0.74);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.9px;
      text-transform: uppercase;
    }

    .leitung-data-card h3 {
      color: var(--white);
      font-size: 34px;
      line-height: 1.05;
      margin-bottom: 0;
    }

    .leitung-data-card p {
      font-size: 15px;
      color: rgba(255,255,255,0.82);
      margin: 0;
    }

    .leitung-text-content {
      display: grid;
      gap: 9px;
      line-height: 1.45;
    }

    .leitung-text-content strong {
      color: var(--white);
      font-size: 18px;
      display: block;
      margin-bottom: 2px;
    }

    .leitung-note {
      background: rgba(255,255,255,0.09);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 18px;
      padding: 16px 18px;
    }

    .leitung-note strong {
      display: block;
      color: var(--white);
      font-size: 14px;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .mini-contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .mini-contact-box {
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 16px;
      padding: 14px;
    }

    .mini-contact-box span {
      display: block;
      color: rgba(255,255,255,0.68);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .mini-contact-box strong {
      display: block;
      color: var(--white);
      font-size: 18px;
      line-height: 1.25;
    }

    .mini-feature-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }

    .mini-feature {
      background: rgba(143, 15, 35, 0.06);
      border: 1px solid rgba(143, 15, 35, 0.10);
      border-radius: 16px;
      padding: 12px 10px;
      text-align: center;
    }

    .mini-feature strong {
      display: block;
      color: var(--red);
      font-size: 15px;
      margin-bottom: 2px;
    }

    .mini-feature span {
      color: var(--gray-mid);
      font-size: 12px;
      font-weight: 700;
      line-height: 1.3;
    }

    .tiny-hint {
      color: var(--gray-mid);
      font-size: 12px;
      line-height: 1.45;
    }


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

    .contact-item {
      background: var(--white);
      border-left: 7px solid var(--red);
      border-radius: 18px;
      padding: 20px;
      box-shadow: var(--shadow);
    }

    .contact-item span {
      display: block;
      color: var(--gray-mid);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .contact-item strong {
      color: var(--gray-dark);
      font-size: 24px;
    }

    .about-page {
      background:
        radial-gradient(circle at 80% 16%, rgba(143, 15, 35, 0.22), transparent 28%),
        linear-gradient(135deg, #303237, #17181b);
      color: var(--white);
    }

    .about-page p {
      color: rgba(255,255,255,0.78);
    }

    .about-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
      align-items: start;
    }

    .value-list {
      list-style: none;
      display: grid;
      gap: 14px;
      margin-top: 24px;
    }

    .value-list li {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--white);
      border-radius: 16px;
      padding: 16px 18px;
      font-weight: 900;
    }

    .benefit-board {
      background: var(--white);
      color: var(--gray-dark);
      border-radius: 30px;
      padding: 34px;
      box-shadow: var(--shadow);
    }

    .benefit-board p {
      color: var(--gray-mid);
    }

    .benefit-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 24px;
    }

    .benefit {
      background: var(--gray-light);
      border-radius: 18px;
      padding: 18px;
      border: 1px solid var(--gray-border);
    }

    .benefit strong {
      display: block;
      color: var(--red);
      font-size: 20px;
      margin-bottom: 4px;
    }

    .benefit span {
      color: var(--gray-mid);
      font-size: 14px;
      font-weight: 700;
    }

    .jobs-page {
      background: linear-gradient(135deg, #f7f7f8, #ececef);
    }

    .jobs-layout {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 32px;
      align-items: start;
    }

    .job-list {
      display: grid;
      gap: 14px;
      margin-top: 24px;
    }

    .job-row {
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: 18px;
      padding: 18px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    }

    .job-row strong {
      font-size: 18px;
    }

    .job-row span {
      color: var(--gray-mid);
      font-size: 14px;
      font-weight: 700;
    }

    .job-info {
      background: var(--gray-dark);
      color: var(--white);
      border-radius: 30px;
      padding: 34px;
      box-shadow: var(--shadow);
    }

    .job-info p {
      color: rgba(255,255,255,0.78);
      margin-bottom: 16px;
    }

    .job-checks {
      display: grid;
      gap: 12px;
      margin: 22px 0;
    }

    .job-check {
      background: rgba(255,255,255,0.08);
      border-radius: 14px;
      padding: 13px 15px;
      color: var(--white);
      font-weight: 900;
    }

    .kontakt-page {
      background:
        radial-gradient(circle at 82% 18%, rgba(143, 15, 35, 0.28), transparent 28%),
        linear-gradient(135deg, #303237, #17181b);
      color: var(--white);
    }

    .kontakt-page p {
      color: rgba(255,255,255,0.78);
    }

    .kontakt-layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
      align-items: center;
    }

    .brand-strip-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .brand-strip-card img {
      width: 100%;
      height: auto;
    }

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

    .contact-button {
      background: var(--white);
      border-left: 7px solid var(--red);
      border-radius: 18px;
      padding: 20px;
      box-shadow: var(--shadow);
    }

    .contact-button span {
      display: block;
      color: var(--gray-mid);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .contact-button strong {
      font-size: 23px;
      color: var(--gray-dark);
    }

    .page-counter {
      position: fixed;
      right: 24px;
      bottom: 22px;
      display: flex;
      gap: 8px;
      z-index: 1000;
    }

    .dot {
      width: 9px;
      height: 9px;
      border: 0;
      border-radius: 99px;
      background: rgba(143, 15, 35, 0.35);
      transition: 0.2s ease;
    }

    .dot.active {
      width: 28px;
      background: var(--red);
    }

    .modal {
      position: fixed;
      inset: 0;
      background: rgba(20, 21, 24, 0.74);
      backdrop-filter: blur(8px);
      z-index: 2000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      width: min(760px, 100%);
      max-height: calc(100vh - 48px);
      overflow-y: auto;
      background: var(--white);
      border-radius: 30px;
      padding: 32px;
      box-shadow: 0 30px 90px rgba(0,0,0,0.35);
      border-top: 9px solid var(--red);
      position: relative;
    }

    .modal-close {
      position: absolute;
      right: 22px;
      top: 18px;
      border: 0;
      background: var(--gray-light);
      width: 38px;
      height: 38px;
      border-radius: 99px;
      color: var(--gray-dark);
      font-size: 22px;
    }

    .modal-content p {
      color: var(--gray-mid);
      margin-bottom: 20px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 20px;
    }

    .form-field {
      display: grid;
      gap: 7px;
    }

    .form-field.full {
      grid-column: 1 / -1;
    }

    label {
      color: var(--gray-dark);
      font-size: 14px;
      font-weight: 900;
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid var(--gray-border);
      background: var(--gray-light);
      border-radius: 14px;
      padding: 13px 14px;
      font-size: 15px;
      color: var(--gray-dark);
      outline: none;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--red);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(143, 15, 35, 0.09);
    }

    textarea {
      min-height: 120px;
      resize: vertical;
    }

    .form-actions {
      margin-top: 22px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
    }

    .small-note {
      color: var(--gray-mid);
      font-size: 13px;
      margin-top: 12px;
    }

    @media (max-width: 980px) {
      :root {
        --header-height: 128px;
      }

      .nav {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
      }

      nav ul {
        flex-wrap: wrap;
        gap: 14px;
      }

      .start-layout,
      .standorte-layout,
      .leitung-layout,
      .about-layout,
      .jobs-layout {
        grid-template-columns: 1fr;
      }

      .grid-3,
      .benefit-grid,
      .contact-grid {
        grid-template-columns: 1fr 1fr;
      }

      .mini-feature-row {
        grid-template-columns: 1fr 1fr;
      }

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

      h1 {
        font-size: 48px;
      }
    }

    @media (max-width: 720px) {
      .page {
        padding-left: 18px;
        padding-right: 18px;
      }

      .mini-logo {
        width: 50px;
        height: 50px;
      }

      .brand-text strong {
        font-size: 16px;
      }

      .grid-2,
      .grid-3,
      .benefit-grid,
      .form-grid,
      .contact-grid,
      .mini-contact-grid,
      .mini-feature-row {
        grid-template-columns: 1fr;
      }

      .card,
      .card-red,
      .benefit-board,
      .job-info,
      .modal-content {
        padding: 22px;
      }

      .nav-link,
      .nav-button {
        font-size: 14px;
      }

      .page-counter {
        right: 18px;
        bottom: 16px;
      }
    }
  
    .osm-map-card {
      position: relative;
    }

    .osm-map-frame {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      min-height: 430px;
      background: var(--red-soft);
    }

    #personnel-map {
      width: 100%;
      height: 430px;
      border-radius: 24px;
      z-index: 1;
    }

    .custom-red-pin {
      width: 54px;
      height: 54px;
      background: var(--red);
      border: 5px solid var(--white);
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
      box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
      position: relative;
    }

    .custom-red-pin::after {
      content: "";
      position: absolute;
      width: 18px;
      height: 18px;
      left: 13px;
      top: 13px;
      background: var(--white);
      border-radius: 50%;
    }

    .leaflet-popup-content-wrapper {
      border-radius: 20px;
      border: 1px solid rgba(143, 15, 35, 0.12);
      box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    }

    .leaflet-popup-content {
      margin: 15px 17px;
      font-family: Arial, Helvetica, sans-serif;
    }

    .standort-popup-eyebrow {
      color: var(--red);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.7px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .standort-popup-title {
      color: var(--gray-dark);
      font-size: 19px;
      font-weight: 900;
      margin-bottom: 6px;
    }

    .standort-popup-text {
      color: var(--gray-mid);
      font-size: 14px;
      line-height: 1.45;
    }

    .standort-popup-link {
      display: inline-flex;
      margin-top: 12px;
      background: var(--white);
      color: var(--red);
      text-decoration: none;
      border-radius: 999px;
      padding: 10px 14px;
      font-size: 13px;
      font-weight: 900;
      border: 1px solid rgba(143, 15, 35, 0.16);
    }

    .standort-popup-link:hover {
      background: #f5f5f5;
      color: var(--red-dark);
    }

    @media (max-width: 720px) {
      .osm-map-frame,
      #personnel-map {
        min-height: 340px;
        height: 340px;
      }
    }

  
    .about-layout.fresh-about {
      grid-template-columns: 0.98fr 1.02fr;
      gap: 12px;
      align-items: stretch;
    }

    .about-hero-card {
      background:
        radial-gradient(circle at 92% 12%, rgba(255,255,255,0.13), transparent 26%),
        radial-gradient(circle at 12% 88%, rgba(255,255,255,0.09), transparent 24%),
        linear-gradient(135deg, var(--gray-dark), var(--red));
      color: var(--white);
      border-radius: 28px;
      padding: 22px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      min-height: 100%;
    }

    .about-hero-card::after {
      content: "";
      position: absolute;
      right: -92px;
      top: -92px;
      width: 245px;
      height: 245px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.16);
      box-shadow:
        -62px 92px 0 -36px rgba(255,255,255,0.08),
        -150px 168px 0 -72px rgba(255,255,255,0.05);
      pointer-events: none;
    }

    .about-hero-card > * {
      position: relative;
      z-index: 1;
    }

    .about-hero-card h2,
    .about-hero-card h1.page-title {
      color: var(--white);
    }

    .about-hero-card p {
      color: rgba(255,255,255,0.84);
      font-size: 17px;
      line-height: 1.55;
    }

    .about-slogan-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
      margin-top: 14px;
    }

    .about-slogan-row span {
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.14);
      color: var(--white);
      border-radius: 12px;
      padding: 8px 8px;
      text-align: center;
      font-weight: 900;
      font-size: 12px;
    }

    .about-image-card {
      margin-top: 14px;
      background: rgba(255,255,255,0.09);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 18px;
      padding: 8px;
      overflow: hidden;
    }

    .about-image-card img {
      width: 100%;
      display: block;
      border-radius: 18px;
    }

    .about-story-board {
      display: grid;
      gap: 8px;
    }

    .about-story-card {
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: 16px;
      padding: 14px;
      box-shadow: 0 8px 18px rgba(0,0,0,0.05);
      position: relative;
      overflow: hidden;
    }

    .about-story-card::after {
      content: "";
      position: absolute;
      right: -54px;
      top: -54px;
      width: 142px;
      height: 142px;
      border-radius: 50%;
      background: rgba(143,15,35,0.06);
      pointer-events: none;
    }

    .about-story-card h3 {
      color: var(--gray-dark);
      font-size: 26px;
      margin-bottom: 8px;
    }

    .about-story-card p {
      color: var(--gray-mid);
      font-size: 17px;
      line-height: 1.55;
      position: relative;
      z-index: 1;
    }

    .about-process {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
    }

    .about-process-item {
      background: var(--gray-light);
      border: 1px solid var(--gray-border);
      border-radius: 14px;
      padding: 10px;
    }

    .about-process-item strong {
      display: block;
      color: var(--red);
      font-size: 24px;
      margin-bottom: 6px;
    }

    .about-process-item span {
      display: block;
      color: var(--gray-dark);
      font-weight: 900;
      margin-bottom: 4px;
      font-size: 18px;
    }

    .about-process-item p {
      color: var(--gray-mid);
      font-size: 15px;
      line-height: 1.45;
      margin: 0;
    }

    .about-mini-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px;
    }

    .about-mini-card {
      background: rgba(143,15,35,0.08);
      border: 1px solid rgba(143,15,35,0.12);
      border-radius: 14px;
      padding: 10px;
    }

    .about-mini-card strong {
      display: block;
      color: var(--red);
      font-size: 20px;
      margin-bottom: 6px;
    }

    .about-mini-card span {
      color: var(--gray-mid);
      font-size: 15px;
      font-weight: 700;
      line-height: 1.4;
    }

    @media (max-width: 980px) {
      .about-layout.fresh-about,
      .about-process,
      .about-mini-grid {
        grid-template-columns: 1fr;
      }

      .about-slogan-row {
        grid-template-columns: 1fr;
      }
    }

  
    .about-image-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      background: rgba(255,255,255,0.14);
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 999px;
      padding: 10px 14px;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.7px;
      text-transform: uppercase;
    }

    .about-process-item:nth-child(1) {
      background: rgba(143,15,35,0.08);
      border-color: rgba(143,15,35,0.12);
    }

    .about-process-item:nth-child(2) {
      background: rgba(48,50,55,0.06);
      border-color: rgba(48,50,55,0.10);
    }

    .about-process-item:nth-child(3) {
      background: linear-gradient(180deg, rgba(143,15,35,0.05), rgba(48,50,55,0.05));
      border-color: rgba(143,15,35,0.10);
    }

    .about-mini-card:nth-child(1) {
      background: linear-gradient(180deg, rgba(143,15,35,0.10), rgba(143,15,35,0.06));
      border-color: rgba(143,15,35,0.14);
    }

    .about-mini-card:nth-child(2) {
      background: linear-gradient(180deg, rgba(48,50,55,0.08), rgba(48,50,55,0.05));
      border: 1px solid rgba(48,50,55,0.12);
    }

    .about-mini-card:nth-child(2) strong {
      color: var(--gray-dark);
    }

    .about-story-card:first-child {
      background: linear-gradient(180deg, #ffffff, #faf7f8);
    }

    .about-story-card:last-child {
      background: linear-gradient(180deg, #f7f7f8, #f1ebed);
    }

  
    .about-story-card,
    .about-process-item,
    .about-mini-card {
      background: #ffffff !important;
      position: relative;
      overflow: hidden;
    }

    .about-story-card::before,
    .about-process-item::before,
    .about-mini-card::before {
      content: "";
      position: absolute;
      right: -34px;
      top: -34px;
      width: 108px;
      height: 108px;
      border-radius: 50%;
      background: rgba(143,15,35,0.07);
      pointer-events: none;
    }

    .about-story-card::after {
      background: rgba(143,15,35,0.06);
    }

    .about-process-item {
      border: 1px solid rgba(143,15,35,0.10) !important;
      box-shadow: 0 10px 24px rgba(0,0,0,0.05);
    }

    .about-mini-card {
      border: 1px solid rgba(143,15,35,0.10) !important;
      box-shadow: 0 10px 24px rgba(0,0,0,0.05);
    }

    .about-process-item:nth-child(1)::after,
    .about-process-item:nth-child(2)::after,
    .about-process-item:nth-child(3)::after,
    .about-mini-card:nth-child(1)::after,
    .about-mini-card:nth-child(2)::after {
      content: "";
      position: absolute;
      left: 18px;
      bottom: 18px;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(143,15,35,0.14);
      pointer-events: none;
    }

    .about-process-item strong,
    .about-mini-card strong {
      color: var(--red) !important;
      position: relative;
      z-index: 1;
    }

    .about-process-item span,
    .about-mini-card span,
    .about-story-card p {
      position: relative;
      z-index: 1;
    }

  
    .jobs-layout.jobs-fresh {
      grid-template-columns: 0.92fr 1.08fr;
      gap: 22px;
      align-items: start;
    }

    .jobs-intro-card {
      background: var(--white);
      border: 1px solid var(--gray-border);
      border-radius: 24px;
      padding: 20px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .jobs-intro-card::before {
      content: "";
      position: absolute;
      right: -70px;
      top: -70px;
      width: 210px;
      height: 210px;
      border-radius: 50%;
      background: rgba(143, 15, 35, 0.07);
      pointer-events: none;
    }

    .jobs-intro-card::after {
      content: "";
      position: absolute;
      left: -45px;
      bottom: -45px;
      width: 130px;
      height: 130px;
      border-radius: 50%;
      border: 1px solid rgba(143, 15, 35, 0.14);
      pointer-events: none;
    }

    .jobs-intro-card > * {
      position: relative;
      z-index: 1;
    }

    .jobs-mini-line {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-top: 18px;
    }

    .jobs-mini-line div {
      background: rgba(143,15,35,0.07);
      border: 1px solid rgba(143,15,35,0.10);
      border-radius: 14px;
      padding: 10px;
      text-align: center;
      font-weight: 900;
      color: var(--red);
      font-size: 12px;
    }

    .job-list.fancy-jobs {
      gap: 10px;
      margin-top: 16px;
    }

    .job-row.fancy-job {
      position: relative;
      overflow: hidden;
      border-radius: 18px;
      padding: 17px 18px 17px 22px;
      border: 1px solid rgba(143, 15, 35, 0.10);
      background:
        radial-gradient(circle at 96% 20%, rgba(143,15,35,0.06), transparent 26%),
        var(--white);
      cursor: pointer;
      isolation: isolate;
      width: 100%;
      text-align: left;
    }

    .job-row.fancy-job::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 6px;
      background: var(--red);
      transition: 0.22s ease;
    }

    .job-row.fancy-job::after {
      display: none;
    }

    .job-row.fancy-job:hover {
      transform: translateY(-5px) scale(1.01);
      border-color: rgba(143, 15, 35, 0.22);
      box-shadow: 0 18px 42px rgba(143, 15, 35, 0.16);
      background:
        radial-gradient(circle at 96% 20%, rgba(143,15,35,0.12), transparent 28%),
        #ffffff;
    }

    .job-row.fancy-job:hover::before {
      width: 10px;
    }

    .job-row.fancy-job:hover::after {
      display: none;
    }

    .job-row.fancy-job strong {
      color: var(--gray-dark);
      font-size: 19px;
      transition: 0.2s ease;
    }

    .job-row.fancy-job:hover strong {
      color: var(--red);
      padding-left: 4px;
    }

    .job-row.fancy-job span {
      padding-right: 0;
      font-size: 14px;
    }

    .job-info.fancy-requirements {
      background:
        radial-gradient(circle at 85% 12%, rgba(255,255,255,0.12), transparent 27%),
        radial-gradient(circle at 12% 82%, rgba(255,255,255,0.08), transparent 25%),
        linear-gradient(135deg, var(--gray-dark), var(--red));
      border-radius: 30px;
      padding: 30px;
      position: relative;
      overflow: hidden;
    }

    .job-info.fancy-requirements::before {
      content: "";
      position: absolute;
      right: -88px;
      top: -88px;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.13);
      pointer-events: none;
    }

    .job-info.fancy-requirements > * {
      position: relative;
      z-index: 1;
    }

    .job-info.fancy-requirements h3 {
      font-size: 30px;
      color: var(--white);
    }

    .jobs-image-card {
      margin: 18px 0;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 22px;
      padding: 10px;
      overflow: hidden;
    }

    .jobs-image-card img {
      width: 100%;
      display: block;
      border-radius: 16px;
    }

    .job-checks.fancy-checks {
      gap: 10px;
      margin: 18px 0;
    }

    .job-check.fancy-check {
      position: relative;
      overflow: hidden;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: 16px;
      padding: 14px 15px 14px 42px;
      transition: 0.22s ease;
      cursor: default;
    }

    .job-check.fancy-check::before {
      content: "✓";
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 19px;
      height: 19px;
      border-radius: 50%;
      background: var(--white);
      color: var(--red);
      display: grid;
      place-items: center;
      font-size: 13px;
      font-weight: 900;
      transition: 0.22s ease;
    }

    .job-check.fancy-check:hover {
      transform: translateX(7px);
      background: rgba(255,255,255,0.18);
      border-color: rgba(255,255,255,0.26);
      box-shadow: 0 14px 28px rgba(0,0,0,0.18);
    }

    .job-check.fancy-check:hover::before {
      transform: translateY(-50%) scale(1.12);
    }

    @media (max-width: 980px) {
      .jobs-layout.jobs-fresh {
        grid-template-columns: 1fr;
      }

      .jobs-mini-line {
        grid-template-columns: 1fr;
      }

      .job-row.fancy-job span {
        padding-right: 0;
      }

      .job-row.fancy-job::after {
        display: none;
      }
    }

  
    .havarie-layout {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 32px;
      align-items: start;
    }

    .havarie-intro {
      display: grid;
      gap: 16px;
    }

    .havarie-board {
      display: grid;
      gap: 16px;
    }

    .havarie-page {
      background:
        radial-gradient(circle at 84% 14%, rgba(143, 15, 35, 0.18), transparent 28%),
        linear-gradient(135deg, #f6f3f4, #ece6e8);
    }

    .kontakt-switch-row {
      display: flex;
      gap: 10px;
      margin-top: 22px;
      flex-wrap: wrap;
    }

    .kontakt-switch-btn {
      border: 1px solid rgba(143, 15, 35, 0.14);
      background: rgba(143, 15, 35, 0.06);
      color: var(--red);
      border-radius: 999px;
      padding: 11px 16px;
      font-size: 14px;
      font-weight: 900;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .kontakt-switch-btn:hover {
      transform: translateY(-2px);
      background: rgba(143, 15, 35, 0.10);
    }

    .kontakt-switch-btn.active {
      background: var(--red);
      color: var(--white);
      border-color: var(--red);
      box-shadow: 0 12px 28px rgba(143, 15, 35, 0.18);
    }

    .location-panel {
      display: none;
      animation: fadePanel 0.18s ease;
    }

    .location-panel.active {
      display: block;
    }

    @keyframes fadePanel {
      from { opacity: 0; transform: translateY(4px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .contact-grid.location-contact-grid {
      grid-template-columns: repeat(2, 1fr);
      margin-top: 8px;
    }

    .contact-note-card {
      margin-top: 18px;
      background: var(--white);
      border-left: 7px solid var(--red);
      border-radius: 18px;
      padding: 20px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .contact-note-card::after {
      content: "";
      position: absolute;
      right: -42px;
      top: -42px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: rgba(143, 15, 35, 0.06);
      pointer-events: none;
    }

    .contact-note-card strong,
    .contact-note-card p,
    .contact-note-card span {
      position: relative;
      z-index: 1;
    }

    .contact-note-card span {
      display: block;
      color: var(--gray-mid);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .contact-note-card strong {
      color: var(--gray-dark);
      font-size: 22px;
      display: block;
      margin-bottom: 8px;
    }

    .contact-note-card p {
      margin: 0;
      color: var(--gray-mid);
    }

    @media (max-width: 980px) {
      .havarie-layout,
      .kontakt-layout {
        grid-template-columns: 1fr;
      }

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

  
    .kontakt-layout.compact-contact-layout {
      grid-template-columns: 0.95fr 1.05fr;
      gap: 28px;
      align-items: start;
    }

    .kontakt-selector-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 24px;
    }

    .kontakt-switch-btn {
      border: 1px solid rgba(143, 15, 35, 0.16);
      background: var(--white);
      color: var(--red);
      border-radius: 22px;
      padding: 18px 16px;
      font-size: 17px;
      font-weight: 900;
      cursor: pointer;
      transition: 0.22s ease;
      text-align: center;
      box-shadow: 0 10px 24px rgba(0,0,0,0.05);
    }

    .kontakt-switch-btn:hover {
      transform: translateY(-3px);
      background: var(--red);
      color: var(--white);
      border-color: var(--red);
      box-shadow: 0 16px 32px rgba(143, 15, 35, 0.18);
    }

    .kontakt-switch-btn.active {
      background: var(--red);
      color: var(--white);
      border-color: var(--red);
      box-shadow: 0 16px 32px rgba(143, 15, 35, 0.18);
    }

    .contact-single-stage {
      display: grid;
      gap: 14px;
    }

    .contact-single-card {
      display: none;
      background: var(--white);
      border: 1px solid rgba(143, 15, 35, 0.10);
      border-radius: 26px;
      padding: 24px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      animation: fadePanel 0.18s ease;
    }

    .contact-single-card::after {
      content: "";
      position: absolute;
      right: -50px;
      top: -50px;
      width: 128px;
      height: 128px;
      border-radius: 50%;
      background: rgba(143, 15, 35, 0.06);
      pointer-events: none;
    }

    .contact-single-card.active {
      display: block;
    }

    .contact-single-card > * {
      position: relative;
      z-index: 1;
    }

    .contact-single-card .eyebrow {
      display: block;
      color: var(--gray-mid);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 6px;
    }

    .contact-single-card h3 {
      color: var(--gray-dark);
      font-size: 28px;
      margin-bottom: 18px;
    }

    .contact-info-lines {
      display: grid;
      gap: 10px;
    }

    .contact-info-line {
      background: rgba(143, 15, 35, 0.04);
      border: 1px solid rgba(143, 15, 35, 0.08);
      border-radius: 16px;
      padding: 14px 16px;
    }

    .contact-info-line span {
      display: block;
      color: var(--gray-mid);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.7px;
      margin-bottom: 4px;
    }

    .contact-info-line strong {
      color: var(--red);
      font-size: 18px;
      line-height: 1.35;
    }

    .contact-placeholder-card {
      background: linear-gradient(135deg, #f7f5f6, #f0ebed);
      border: 1px dashed rgba(143, 15, 35, 0.18);
      border-radius: 26px;
      padding: 28px;
      min-height: 260px;
      display: grid;
      align-content: center;
      justify-items: start;
      text-align: left;
    }

    .contact-placeholder-card.hidden {
      display: none;
    }

    .contact-placeholder-card strong {
      color: var(--gray-dark);
      font-size: 24px;
      margin-bottom: 10px;
    }

    .contact-placeholder-card p {
      margin: 0;
      color: var(--gray-mid);
      font-size: 16px;
      line-height: 1.5;
      max-width: 440px;
    }

    @media (max-width: 980px) {
      .kontakt-layout.compact-contact-layout {
        grid-template-columns: 1fr;
      }

      .kontakt-selector-grid {
        grid-template-columns: 1fr;
      }
    }

  
    .havarie-layout.design-havarie {
      grid-template-columns: 0.96fr 1.04fr;
      gap: 28px;
      align-items: start;
    }

    .havarie-left-stack,
    .havarie-right-stack {
      display: grid;
      gap: 16px;
    }

    .havarie-hero-card {
      background:
        radial-gradient(circle at 86% 16%, rgba(143, 15, 35, 0.14), transparent 28%),
        linear-gradient(135deg, #f7f4f5, #ece5e8);
      border: 1px solid rgba(143, 15, 35, 0.10);
      border-radius: 28px;
      padding: 26px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .havarie-hero-card::after {
      content: "";
      position: absolute;
      left: -44px;
      bottom: -44px;
      width: 132px;
      height: 132px;
      border-radius: 50%;
      background: rgba(143, 15, 35, 0.06);
      pointer-events: none;
    }

    .havarie-points {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 18px;
    }

    .havarie-points div {
      background: var(--white);
      border: 1px solid rgba(143, 15, 35, 0.10);
      border-radius: 18px;
      padding: 14px 12px;
      text-align: center;
      color: var(--red);
      font-weight: 900;
      font-size: 13px;
      box-shadow: 0 10px 22px rgba(0,0,0,0.04);
      transition: 0.22s ease;
      cursor: default;
    }

    .havarie-points div:hover {
      transform: translateY(-4px);
      background: var(--red);
      color: var(--white);
      border-color: var(--red);
      box-shadow: 0 16px 30px rgba(143, 15, 35, 0.16);
    }

    .havarie-mini-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .havarie-mini-card {
      background: var(--white);
      border: 1px solid rgba(143, 15, 35, 0.10);
      border-radius: 22px;
      padding: 18px;
      box-shadow: 0 10px 22px rgba(0,0,0,0.04);
      position: relative;
      overflow: hidden;
      transition: 0.22s ease;
      cursor: default;
    }

    .havarie-mini-card:hover {
      transform: translateY(-5px);
      border-color: rgba(143, 15, 35, 0.18);
      box-shadow: 0 18px 34px rgba(143, 15, 35, 0.12);
    }

    .havarie-mini-card::after {
      content: "";
      position: absolute;
      right: -24px;
      top: -24px;
      width: 74px;
      height: 74px;
      border-radius: 50%;
      background: rgba(143, 15, 35, 0.06);
    }

    .havarie-mini-card span {
      display: block;
      color: var(--gray-mid);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.7px;
      margin-bottom: 5px;
      position: relative;
      z-index: 1;
    }

    .havarie-mini-card strong {
      display: block;
      color: var(--gray-dark);
      font-size: 18px;
      margin-bottom: 6px;
      position: relative;
      z-index: 1;
    }

    .havarie-mini-card p {
      margin: 0;
      color: var(--gray-mid);
      font-size: 14px;
      line-height: 1.45;
      position: relative;
      z-index: 1;
    }

    .havarie-callout {
      background: linear-gradient(135deg, var(--gray-dark), var(--red));
      color: var(--white);
      border-radius: 24px;
      padding: 22px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 16px 32px rgba(0,0,0,0.10);
      transition: 0.22s ease;
      cursor: default;
    }

    .havarie-callout:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 40px rgba(0,0,0,0.14);
    }

    .havarie-callout::after {
      content: "";
      position: absolute;
      right: -40px;
      top: -40px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.16);
    }

    .havarie-callout span {
      display: block;
      color: rgba(255,255,255,0.74);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 6px;
    }

    .havarie-callout strong {
      display: block;
      color: var(--white);
      font-size: 22px;
      margin-bottom: 8px;
    }

    .havarie-callout p {
      margin: 0;
      color: rgba(255,255,255,0.82);
      line-height: 1.5;
      font-size: 15px;
    }

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

    .havarie-contact-item {
      background: var(--white);
      border: 1px solid rgba(143, 15, 35, 0.10);
      border-radius: 22px;
      padding: 18px 20px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      transition: 0.22s ease;
      cursor: default;
    }

    .havarie-contact-item:hover {
      transform: translateY(-5px);
      border-color: rgba(143, 15, 35, 0.18);
      box-shadow: 0 18px 34px rgba(143, 15, 35, 0.12);
    }

    .havarie-contact-item:hover::before {
      width: 10px;
    }

    .havarie-contact-item::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 6px;
      background: var(--red);
      transition: 0.22s ease;
    }

    .havarie-contact-item span {
      display: block;
      color: var(--gray-mid);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.7px;
      margin-bottom: 6px;
    }

    .havarie-contact-item strong {
      display: block;
      color: var(--gray-dark);
      font-size: 21px;
      margin-bottom: 4px;
    }

    .havarie-contact-item p {
      margin: 0;
      color: var(--gray-mid);
      font-size: 14px;
      line-height: 1.45;
    }

    .havarie-flow {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .havarie-step {
      background: rgba(143, 15, 35, 0.05);
      border: 1px solid rgba(143, 15, 35, 0.08);
      border-radius: 18px;
      padding: 16px 14px;
      min-height: 126px;
      transition: 0.22s ease;
      cursor: default;
    }

    .havarie-step:hover {
      transform: translateY(-5px);
      background: rgba(143, 15, 35, 0.08);
      border-color: rgba(143, 15, 35, 0.14);
      box-shadow: 0 16px 30px rgba(143, 15, 35, 0.10);
    }

    .havarie-step strong {
      display: block;
      color: var(--red);
      font-size: 22px;
      margin-bottom: 6px;
    }

    .havarie-step span {
      display: block;
      color: var(--gray-dark);
      font-size: 15px;
      font-weight: 900;
      margin-bottom: 6px;
    }

    .havarie-step p {
      margin: 0;
      color: var(--gray-mid);
      font-size: 13px;
      line-height: 1.4;
    }

    .contact-deco-card {
      background:
        radial-gradient(circle at 86% 16%, rgba(143, 15, 35, 0.10), transparent 28%),
        linear-gradient(135deg, #f8f5f6, #eee8ea);
      border: 1px solid rgba(143, 15, 35, 0.10);
      border-radius: 26px;
      padding: 22px;
      margin-top: 18px;
      box-shadow: var(--shadow);
    }

    .contact-deco-card h3 {
      color: var(--gray-dark);
      font-size: 22px;
      margin-bottom: 8px;
    }

    .contact-deco-card p {
      margin: 0 0 16px 0;
      color: var(--gray-mid);
      line-height: 1.5;
    }

    .contact-deco-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .contact-deco-chip {
      background: var(--white);
      border: 1px solid rgba(143, 15, 35, 0.10);
      border-radius: 16px;
      padding: 13px 10px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    }

    .contact-deco-chip span {
      display: block;
      color: var(--red);
      font-size: 18px;
      font-weight: 900;
      margin-bottom: 4px;
    }

    .contact-deco-chip strong {
      display: block;
      color: var(--gray-dark);
      font-size: 13px;
      line-height: 1.35;
    }

    .contact-single-card {
      min-height: 388px;
    }

    .contact-single-card h3 {
      font-size: 30px;
    }

    .contact-info-lines {
      margin-top: 2px;
    }

    .contact-info-line {
      position: relative;
      overflow: hidden;
    }

    .contact-info-line::after {
      content: "";
      position: absolute;
      right: -18px;
      top: -18px;
      width: 62px;
      height: 62px;
      border-radius: 50%;
      background: rgba(143, 15, 35, 0.05);
    }

    .contact-placeholder-card {
      position: relative;
      overflow: hidden;
    }

    .contact-placeholder-card::after {
      content: "";
      position: absolute;
      right: -36px;
      top: -36px;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background: rgba(143, 15, 35, 0.08);
    }

    .contact-placeholder-card::before {
      content: "";
      position: absolute;
      left: 20px;
      bottom: 20px;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      border: 1px solid rgba(143, 15, 35, 0.16);
    }

    @media (max-width: 980px) {
      .havarie-layout.design-havarie {
        grid-template-columns: 1fr;
      }

      .havarie-mini-grid,
      .havarie-flow,
      .contact-deco-grid {
        grid-template-columns: 1fr;
      }
    }

  
    /* Hover-Effekte Über Uns */
    .about-story-card,
    .about-process-item,
    .about-mini-card,
    .about-image-card,
    .about-slogan-row span {
      transition: 0.22s ease;
      cursor: default;
    }

    .about-story-card:hover,
    .about-process-item:hover,
    .about-mini-card:hover {
      transform: translateY(-5px);
      border-color: rgba(143, 15, 35, 0.18) !important;
      box-shadow: 0 18px 34px rgba(143, 15, 35, 0.12);
    }

    .about-process-item:hover strong,
    .about-mini-card:hover strong,
    .about-story-card:hover h3 {
      color: var(--red);
    }

    .about-slogan-row span:hover {
      transform: translateY(-3px);
      background: var(--white);
      color: var(--red);
      border-color: rgba(255,255,255,0.28);
      box-shadow: 0 14px 28px rgba(0,0,0,0.16);
    }

    .about-image-card:hover {
      transform: translateY(-4px) scale(1.01);
      box-shadow: 0 18px 34px rgba(0,0,0,0.18);
      background: rgba(255,255,255,0.13);
    }

    /* Hover-Effekte Startseite */
    .start-page .card,
    .start-page .logo-card,
    .start-page .slogan,
    .start-buttons .btn {
      transition: 0.22s ease;
    }

    .start-page .card:hover,
    .start-page .logo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 44px rgba(0,0,0,0.18);
      border-color: rgba(143, 15, 35, 0.20);
    }

    .start-page .card:hover h3,
    .start-page .card:hover strong {
      color: var(--red);
    }

    .start-page .slogan:hover {
      transform: translateY(-3px);
      background: rgba(255,255,255,0.12);
      border-color: rgba(255,255,255,0.18);
      box-shadow: 0 16px 32px rgba(0,0,0,0.14);
    }

    .start-buttons .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 32px rgba(143,15,35,0.20);
    }

  
    .start-photo-card {
      position: relative;
      overflow: hidden;
      border-radius: 34px;
      min-height: 520px;
      box-shadow: 0 26px 60px rgba(0,0,0,0.30);
      border: 1px solid rgba(255,255,255,0.12);
      isolation: isolate;
      transition: 0.26s ease;
      background: var(--gray-dark);
    }

    .start-photo-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.52)),
        radial-gradient(circle at 82% 18%, rgba(143,15,35,0.22), transparent 30%);
      z-index: 1;
      pointer-events: none;
    }

    .start-photo-card::after {
      content: "";
      position: absolute;
      right: -70px;
      top: -70px;
      width: 190px;
      height: 190px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.18);
      z-index: 2;
      pointer-events: none;
    }

    .start-photo-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 34px 74px rgba(0,0,0,0.34);
    }

    .start-photo {
      width: 100%;
      height: 100%;
      min-height: 520px;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: 0.35s ease;
    }

    .start-photo-card:hover .start-photo {
      transform: scale(1.035);
    }

    .start-photo-badge {
      position: absolute;
      left: 20px;
      top: 20px;
      width: 170px;
      background: rgba(255,255,255,0.92);
      border: 1px solid rgba(255,255,255,0.28);
      border-radius: 22px;
      padding: 12px;
      z-index: 3;
      box-shadow: 0 14px 30px rgba(0,0,0,0.18);
      backdrop-filter: blur(8px);
    }

    .start-photo-badge img {
      width: 100%;
      display: block;
    }

    .start-photo-info {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 22px;
      z-index: 3;
      background: rgba(255,255,255,0.92);
      border-left: 7px solid var(--red);
      border-radius: 22px;
      padding: 18px 20px;
      box-shadow: 0 16px 34px rgba(0,0,0,0.20);
      backdrop-filter: blur(8px);
    }

    .start-photo-info span {
      display: block;
      color: var(--gray-mid);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 5px;
    }

    .start-photo-info strong {
      color: var(--red);
      font-size: 24px;
      line-height: 1.15;
    }

    @media (max-width: 980px) {
      .start-photo-card {
        min-height: 420px;
      }

      .start-photo {
        min-height: 420px;
      }
    }

    @media (max-width: 560px) {
      .start-photo-badge {
        width: 140px;
      }

      .start-photo-info strong {
        font-size: 20px;
      }
    }

  
    .about-image-card.about-image-soft {
      position: relative;
      min-height: 260px;
      padding: 0;
      border-radius: 22px;
      overflow: hidden;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.14);
      box-shadow: 0 18px 36px rgba(0,0,0,0.12);
    }

    .about-image-card.about-image-soft::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(36,36,36,0.28)),
        radial-gradient(circle at 86% 18%, rgba(143,15,35,0.18), transparent 28%);
      z-index: 1;
      pointer-events: none;
    }

    .about-image-card.about-image-soft::after {
      content: "";
      position: absolute;
      right: -44px;
      top: -44px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.20);
      z-index: 2;
      pointer-events: none;
    }

    .about-image-card.about-image-soft img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      object-position: center;
      display: block;
      opacity: 0.82;
      filter: saturate(0.92) contrast(0.96);
    }

    .about-image-note {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 16px;
      z-index: 3;
      background: rgba(255,255,255,0.90);
      border-left: 5px solid var(--red);
      border-radius: 18px;
      padding: 12px 14px;
      box-shadow: 0 14px 28px rgba(0,0,0,0.16);
      backdrop-filter: blur(8px);
    }

    .about-image-note span {
      display: block;
      color: var(--gray-mid);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 4px;
    }

    .about-image-note strong {
      display: block;
      color: var(--gray-dark);
      font-size: 16px;
      line-height: 1.3;
    }

  
    /* Über Uns etwas größer und mit zusätzlichem Infobild */
    .about-layout.fresh-about {
      gap: 18px;
    }

    .about-hero-card {
      padding: 28px !important;
      border-radius: 32px !important;
    }

    .about-story-board {
      gap: 14px !important;
    }

    .about-story-card {
      padding: 22px !important;
      border-radius: 20px !important;
      min-height: 150px;
    }

    .about-story-card h3 {
      font-size: 28px !important;
    }

    .about-story-card p {
      font-size: 18px !important;
      line-height: 1.58 !important;
    }

    .about-process {
      gap: 10px !important;
    }

    .about-process-item {
      padding: 16px !important;
      border-radius: 18px !important;
      min-height: 140px;
    }

    .about-process-item span {
      font-size: 19px !important;
    }

    .about-mini-grid {
      gap: 10px !important;
    }

    .about-mini-card {
      padding: 16px !important;
      border-radius: 18px !important;
      min-height: 118px;
    }

    .about-mini-card strong {
      font-size: 21px !important;
    }

    .about-image-card.about-image-soft img {
      height: 300px !important;
    }

  
    .jobs-image-card.jobs-image-photo {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      min-height: 320px;
      border: 1px solid rgba(143, 15, 35, 0.10);
      box-shadow: 0 16px 34px rgba(0,0,0,0.08);
      background: rgba(255,255,255,0.96);
      transition: transform 0.28s ease, box-shadow 0.28s ease;
      transform-origin: center;
    }

    .jobs-image-card.jobs-image-photo::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(36,36,36,0.26)),
        radial-gradient(circle at 85% 18%, rgba(143,15,35,0.16), transparent 28%);
      z-index: 1;
      pointer-events: none;
    }

    .jobs-image-card.jobs-image-photo img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      object-position: center;
      display: block;
      opacity: 0.88;
      transition: transform 0.32s ease;
    }

    .jobs-image-card.jobs-image-photo:hover {
      transform: scale(1.035);
      box-shadow: 0 22px 40px rgba(0,0,0,0.14);
    }

    .jobs-image-card.jobs-image-photo:hover img {
      transform: scale(1.08);
    }

    .jobs-image-overlay {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 16px;
      z-index: 2;
      background: rgba(255,255,255,0.92);
      border-left: 5px solid var(--red);
      border-radius: 18px;
      padding: 12px 14px;
      box-shadow: 0 14px 28px rgba(0,0,0,0.16);
      backdrop-filter: blur(8px);
    }

    .jobs-image-overlay span {
      display: block;
      color: var(--gray-mid);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 4px;
    }

    .jobs-image-overlay strong {
      display: block;
      color: var(--gray-dark);
      font-size: 16px;
      line-height: 1.3;
    }

  
    .contact-photo-card {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      min-height: 340px;
      background: rgba(255,255,255,0.96);
      border: 1px solid rgba(143, 15, 35, 0.10);
      box-shadow: 0 18px 36px rgba(0,0,0,0.10);
      transition: transform 0.28s ease, box-shadow 0.28s ease;
    }

    .contact-photo-card-large {
      margin-bottom: 18px;
    }

    .contact-photo-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(36,36,36,0.30)),
        radial-gradient(circle at 84% 18%, rgba(143,15,35,0.18), transparent 28%);
      z-index: 1;
      pointer-events: none;
    }

    .contact-photo-card img {
      width: 100%;
      height: 340px;
      object-fit: cover;
      object-position: center;
      display: block;
      opacity: 0.92;
      transition: transform 0.32s ease;
    }

    .contact-photo-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 42px rgba(0,0,0,0.14);
    }

    .contact-photo-card:hover img {
      transform: scale(1.05);
    }

    .contact-photo-overlay {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 16px;
      z-index: 2;
      background: rgba(255,255,255,0.92);
      border-left: 5px solid var(--red);
      border-radius: 18px;
      padding: 12px 14px;
      box-shadow: 0 14px 28px rgba(0,0,0,0.16);
      backdrop-filter: blur(8px);
    }

    .contact-photo-overlay span {
      display: block;
      color: var(--gray-mid);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 4px;
    }

    .contact-photo-overlay strong {
      display: block;
      color: var(--gray-dark);
      font-size: 16px;
      line-height: 1.35;
    }

  
    .map-location-switch {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      min-width: 230px;
    }

    .map-location-btn {
      border: 1px solid rgba(143, 15, 35, 0.16);
      background: var(--white);
      color: var(--red);
      border-radius: 999px;
      padding: 10px 14px;
      font-size: 13px;
      font-weight: 900;
      cursor: pointer;
      transition: 0.22s ease;
      box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    }

    .map-location-btn:hover,
    .map-location-btn.active {
      background: var(--red);
      color: var(--white);
      border-color: var(--red);
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(143, 15, 35, 0.18);
    }

    @media (max-width: 720px) {
      .map-location-switch {
        width: 100%;
        min-width: 0;
      }
    }

  
    .standort-office-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      margin: 22px 0 26px;
    }

    .standort-office-card {
      display: grid;
      grid-template-columns: 0.88fr 1.12fr;
      gap: 0;
      background: var(--white);
      border: 1px solid rgba(143, 15, 35, 0.10);
      border-radius: 26px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: 0.24s ease;
    }

    .standort-office-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 22px 44px rgba(143, 15, 35, 0.12);
    }

    .standort-office-image {
      min-height: 100%;
      background: var(--gray-light);
      overflow: hidden;
    }

    .standort-office-image img {
      width: 100%;
      height: 100%;
      min-height: 265px;
      object-fit: cover;
      display: block;
      transition: 0.3s ease;
    }

    .standort-office-card:hover .standort-office-image img {
      transform: scale(1.04);
    }

    .standort-office-data {
      padding: 22px;
      position: relative;
      overflow: hidden;
    }

    .standort-office-data::after {
      content: "";
      position: absolute;
      right: -48px;
      top: -48px;
      width: 128px;
      height: 128px;
      border-radius: 50%;
      background: rgba(143, 15, 35, 0.06);
      pointer-events: none;
    }

    .standort-office-data span {
      display: inline-flex;
      color: var(--red);
      background: rgba(143, 15, 35, 0.08);
      border-radius: 999px;
      padding: 8px 11px;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.7px;
      text-transform: uppercase;
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
    }

    .standort-office-data h3 {
      color: var(--gray-dark);
      font-size: 28px;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }

    .office-lines {
      display: grid;
      gap: 7px;
      position: relative;
      z-index: 1;
    }

    .office-lines p {
      margin: 0;
      color: var(--gray-mid);
      font-size: 14px;
      line-height: 1.42;
    }

    .office-lines strong {
      color: var(--gray-dark);
    }

    @media (max-width: 980px) {
      .standort-office-grid,
      .standort-office-card {
        grid-template-columns: 1fr;
      }
    }

  
    
    .standort-city-gallery {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      margin-top: 22px;
    }

    .standort-city-card {
      background: var(--white);
      border: 1px solid rgba(143, 15, 35, 0.10);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform 0.26s ease, box-shadow 0.26s ease;
    }

    .standort-city-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 22px 44px rgba(143, 15, 35, 0.14);
    }

    .standort-city-image {
      overflow: hidden;
      background: var(--gray-light);
    }

    .standort-city-image img {
      width: 100%;
      height: 290px;
      object-fit: cover;
      display: block;
      transition: transform 0.34s ease;
    }

    .standort-city-card:hover .standort-city-image img {
      transform: scale(1.05);
    }

    .standort-city-info {
      padding: 18px 20px 20px;
      position: relative;
      background: var(--white);
    }

    .standort-city-info::after {
      content: "";
      position: absolute;
      right: -35px;
      bottom: -35px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: rgba(143, 15, 35, 0.05);
      pointer-events: none;
    }

    .standort-city-info span {
      display: inline-flex;
      color: var(--red);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 7px;
      background: rgba(143, 15, 35, 0.08);
      border-radius: 999px;
      padding: 7px 11px;
    }

    .standort-city-info h3 {
      margin: 0 0 6px;
      color: var(--gray-dark);
      font-size: 25px;
    }

    .standort-city-info p {
      margin: 0;
      color: var(--gray-mid);
      font-size: 14px;
      line-height: 1.45;
      max-width: 90%;
      position: relative;
      z-index: 1;
    }

    @media (max-width: 980px) {
      .standort-city-gallery {
        grid-template-columns: 1fr;
      }
    }

  
    .standorte-intro-images {
      margin-top: 26px;
      margin-bottom: 18px;
      max-width: 760px;
    }

    .standorte-intro-images h2,
    .standorte-intro-images h1.page-title {
      margin-bottom: 10px;
    }

  
    .standort-detail-grid {
      display: none !important;
    }

    .standorte-intro-images {
      margin-top: 22px;
      margin-bottom: 18px;
      max-width: 760px;
    }

    .standort-city-gallery {
      align-items: stretch;
    }

    .standort-city-info {
      padding: 22px 24px 24px;
    }

    .standort-city-info > span {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 8px;
    }

    .standort-city-info h3 {
      margin-bottom: 10px;
    }

    .standort-city-info p {
      margin-bottom: 16px;
    }

    .standort-office-meta {
      display: grid;
      gap: 10px;
      margin-top: 12px;
      padding-top: 14px;
      border-top: 1px solid rgba(143, 15, 35, 0.10);
    }

    .standort-office-row {
      display: grid;
      gap: 4px;
    }

    .standort-office-row span {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gray-mid);
    }

    .standort-office-row strong {
      font-size: 15px;
      line-height: 1.45;
      color: var(--gray-dark);
    }

    @media (max-width: 900px) {
      .standort-city-gallery {
        grid-template-columns: 1fr;
      }
    }


    /* VACILITIY59_STANDORTE_START */
    .standorte-intro-top {
      margin-bottom: 18px;
      max-width: 780px;
    }

    .standorte-intro-top h2,
    .standorte-intro-top h1.page-title {
      margin-bottom: 10px;
    }

    .google-map-card.osm-map-card {
      padding: 22px;
      border-radius: 30px;
      background:
        radial-gradient(circle at 100% 0%, rgba(143, 15, 35, 0.06), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,248,248,0.98));
      border: 1px solid rgba(143, 15, 35, 0.10);
      box-shadow: var(--shadow);
      margin-bottom: 22px;
    }

    .standort-office-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      margin: 0;
    }

    .standort-office-card {
      display: grid;
      grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
      align-items: stretch;
      gap: 0;
      border-radius: 30px;
      overflow: hidden;
      background: var(--white);
      border: 1px solid rgba(143, 15, 35, 0.10);
      box-shadow: 0 16px 34px rgba(0,0,0,0.06);
      transition: transform 0.24s ease, box-shadow 0.24s ease;
    }

    .standort-office-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 42px rgba(143, 15, 35, 0.12);
    }

    .standort-office-card--reverse {
      grid-template-columns: minmax(320px, 1.05fr) minmax(280px, 0.95fr);
    }

    .standort-office-image {
      position: relative;
      overflow: hidden;
      min-height: 295px;
      background: var(--gray-light);
    }

    .standort-office-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.12));
      pointer-events: none;
    }

    .standort-office-image img {
      width: 100%;
      height: 100%;
      min-height: 295px;
      object-fit: cover;
      display: block;
      transition: transform 0.34s ease;
    }

    .standort-office-card:hover .standort-office-image img {
      transform: scale(1.04);
    }

    .standort-office-data--light {
      position: relative;
      padding: 24px 24px 22px;
      background:
        radial-gradient(circle at 92% 10%, rgba(143, 15, 35, 0.07), transparent 24%),
        radial-gradient(circle at 0% 100%, rgba(143, 15, 35, 0.04), transparent 26%),
        linear-gradient(180deg, #ffffff, #fbf8f8);
      overflow: hidden;
    }

    .standort-office-data--light::before {
      content: "";
      position: absolute;
      right: -42px;
      top: -42px;
      width: 130px;
      height: 130px;
      border-radius: 50%;
      border: 1px solid rgba(143, 15, 35, 0.09);
      pointer-events: none;
    }

    .standort-office-data--light::after {
      content: "";
      position: absolute;
      left: -32px;
      bottom: -32px;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background: rgba(143, 15, 35, 0.04);
      pointer-events: none;
    }

    .standort-office-data--light > span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(143, 15, 35, 0.08);
      color: var(--red);
      border-radius: 999px;
      padding: 8px 12px;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }

    .standort-office-data--light h3 {
      margin-bottom: 16px;
      color: var(--gray-dark);
      font-size: 30px;
      position: relative;
      z-index: 1;
    }

    .office-lines--boxed {
      display: grid;
      gap: 12px;
      position: relative;
      z-index: 1;
    }

    .office-line-item {
      background: rgba(255,255,255,0.88);
      border: 1px solid rgba(143, 15, 35, 0.10);
      border-radius: 18px;
      padding: 12px 14px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.04);
    }

    .office-line-item small {
      display: block;
      margin-bottom: 4px;
      color: var(--red);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .office-line-item p {
      margin: 0;
      color: var(--gray-dark);
      font-size: 15px;
      line-height: 1.45;
    }

    @media (max-width: 980px) {
      .standort-office-card,
      .standort-office-card--reverse {
        grid-template-columns: 1fr;
      }

      .standort-office-image,
      .standort-office-image img {
        min-height: 250px;
      }
    }
    /* VACILITIY59_STANDORTE_END */

  
    .legal-footer {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      width: fit-content;
      margin: 34px auto 0;
      padding: 12px 18px;
      border-radius: 999px;
      background: rgba(255,255,255,0.90);
      border: 1px solid rgba(143, 15, 35, 0.10);
      box-shadow: 0 12px 26px rgba(0,0,0,0.06);
      font-size: 13px;
      font-weight: 900;
    }

    .legal-footer a {
      color: var(--red);
      text-decoration: none;
      transition: 0.2s ease;
    }

    .legal-footer a:hover {
      color: var(--red-dark);
      transform: translateY(-1px);
    }

    .legal-footer span {
      color: rgba(143, 15, 35, 0.35);
      font-weight: 900;
    }

    .start-page .legal-footer {
      background: rgba(255,255,255,0.10);
      border-color: rgba(255,255,255,0.14);
      box-shadow: 0 16px 32px rgba(0,0,0,0.18);
    }

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

    .start-page .legal-footer span {
      color: rgba(255,255,255,0.35);
    }

  
    .email-link {
      color: inherit;
      text-decoration: none;
      transition: 0.2s ease;
    }

    .email-link:hover {
      color: var(--red);
      text-decoration: underline;
      text-underline-offset: 4px;
    }

  

    /* VACILITY65_UPDATES_START */
    .page { position: relative; }

    .mini-logo {
      width: 72px;
      height: 72px;
      box-shadow: 0 10px 24px rgba(143, 15, 35, 0.20);
      background: #fff;
      padding: 4px;
    }

    .logo-wrap {
      gap: 18px;
      padding: 8px 14px 8px 8px;
    }

    .brand-text strong {
      font-size: 22px;
    }

    .brand-text span {
      font-size: 14px;
    }

    .page-logo-badge {
      position: absolute;
      top: calc(var(--header-height) + 18px);
      right: 32px;
      z-index: 20;
      width: 132px;
      height: 132px;
      border-radius: 50%;
      background: rgba(255,255,255,0.96);
      border: 4px solid rgba(143, 15, 35, 0.32);
      box-shadow: 0 18px 42px rgba(0,0,0,0.28);
      padding: 8px;
      transition: transform 0.24s ease, box-shadow 0.24s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-logo-badge:hover {
      transform: translateY(-4px) scale(1.03);
      box-shadow: 0 24px 52px rgba(143, 15, 35, 0.26);
    }

    .page-logo-badge img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .standorte-page,
    .havarie-page,
    .about-page,
    .jobs-page,
    .kontakt-page {
      background:
        radial-gradient(circle at 82% 18%, rgba(143, 15, 35, 0.28), transparent 28%),
        linear-gradient(135deg, #303237, #17181b);
      color: var(--white);
    }

    .standorte-page p,
    .havarie-page > .container p,
    .jobs-page > .container p,
    .kontakt-page p,
    .about-page p {
      color: rgba(255,255,255,0.80);
    }

    .standorte-page h2,
    .standorte-page .google-map-head h3,
    .havarie-page h2,
    .jobs-page h2,
    .kontakt-page h2,
    .about-page h2,
    .standorte-page h1.page-title,
    .havarie-page h1.page-title,
    .jobs-page h1.page-title,
    .kontakt-page h1.page-title,
    .about-page h1.page-title {
      color: var(--white);
    }

    .standorte-page .standorte-intro-top,
    .jobs-page .jobs-intro-card,
    .havarie-page .havarie-hero-card,
    .kontakt-page .contact-deco-card {
      box-shadow: 0 18px 42px rgba(0,0,0,0.18);
    }

    .start-photo-badge {
      width: 128px;
      height: 128px;
      padding: 8px;
      background: rgba(255,255,255,0.96);
      border: 4px solid rgba(143, 15, 35, 0.26);
      box-shadow: 0 22px 40px rgba(0,0,0,0.26);
    }

    @media (max-width: 900px) {
      .page-logo-badge {
        width: 96px;
        height: 96px;
        right: 18px;
        top: calc(var(--header-height) + 14px);
      }

      .mini-logo {
        width: 58px;
        height: 58px;
      }
    }
    /* VACILITY65_UPDATES_END */

  

    /* VACILITY66_LOGO_AND_ABOUT_UPDATE_START */
    /* Logos larger, without extra white outer ring */
    .mini-logo {
      width: 88px !important;
      height: 88px !important;
      padding: 0 !important;
      background: transparent !important;
      border: none !important;
      box-shadow: none !important;
      filter: drop-shadow(0 8px 18px rgba(0,0,0,0.22));
    }

    .logo-wrap {
      padding: 8px 16px 8px 6px !important;
      gap: 16px !important;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
    }

    .page-logo-badge,
    .start-photo-badge {
      width: 160px !important;
      height: 160px !important;
      background: transparent !important;
      border: none !important;
      padding: 0 !important;
      box-shadow: none !important;
    }

    .page-logo-badge img,
    .start-photo-badge img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 16px 30px rgba(0,0,0,0.28));
    }

    .page-logo-badge:hover,
    .start-photo-badge:hover {
      box-shadow: none !important;
      transform: translateY(-4px) scale(1.04);
    }

    /* Über uns: alle Boxen im Stil der linken Box, lesbarer und einheitlicher */
    .about-story-board {
      gap: 12px !important;
    }

    .about-process,
    .about-mini-grid {
      gap: 12px !important;
    }

    .about-story-card,
    .about-process-item,
    .about-mini-card {
      background: linear-gradient(180deg, #ffffff 0%, #faf7f8 100%) !important;
      border: 1px solid rgba(143,15,35,0.14) !important;
      border-radius: 18px !important;
      padding: 16px 18px !important;
      box-shadow: 0 14px 30px rgba(0,0,0,0.08) !important;
      overflow: hidden;
      position: relative;
      min-height: 100%;
    }

    .about-story-card::before,
    .about-process-item::before,
    .about-mini-card::before {
      content: "";
      position: absolute;
      right: -42px;
      top: -42px;
      width: 132px;
      height: 132px;
      border-radius: 50%;
      background: rgba(143,15,35,0.08);
      pointer-events: none;
    }

    .about-story-card::after,
    .about-process-item::after,
    .about-mini-card::after {
      content: "";
      position: absolute;
      left: 18px;
      bottom: 16px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: rgba(143,15,35,0.12);
      pointer-events: none;
    }

    .about-story-card h3,
    .about-process-item span,
    .about-mini-card strong {
      color: #2b2f35 !important;
      position: relative;
      z-index: 1;
    }

    .about-story-card h3 {
      font-size: 28px !important;
      margin-bottom: 10px !important;
    }

    .about-process-item strong {
      display: block;
      color: var(--red) !important;
      font-size: 26px !important;
      margin-bottom: 8px !important;
      position: relative;
      z-index: 1;
    }

    .about-process-item span,
    .about-mini-card strong {
      display: block;
      font-size: 20px !important;
      font-weight: 900 !important;
      margin-bottom: 8px !important;
    }

    .about-story-card p,
    .about-process-item p,
    .about-mini-card span {
      color: #515760 !important;
      font-size: 16px !important;
      line-height: 1.55 !important;
      position: relative;
      z-index: 1;
      font-weight: 600;
      max-width: 90%;
    }

    .about-process-item,
    .about-mini-card {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .about-story-card:hover,
    .about-process-item:hover,
    .about-mini-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 34px rgba(143,15,35,0.12) !important;
    }

    @media (max-width: 900px) {
      .page-logo-badge,
      .start-photo-badge {
        width: 118px !important;
        height: 118px !important;
      }

      .mini-logo {
        width: 70px !important;
        height: 70px !important;
      }

      .about-story-card,
      .about-process-item,
      .about-mini-card {
        padding: 14px 15px !important;
      }

      .about-story-card p,
      .about-process-item p,
      .about-mini-card span {
        max-width: 100%;
      }
    }
    /* VACILITY66_LOGO_AND_ABOUT_UPDATE_END */

  

    /* VACILITY67_UNIFIED_STYLE_START */
    /* Einheitlicher Unterseiten-Hintergrund */
    .standorte-page::before,
    .about-page::before,
    .kontakt-page::before,
    .jobs-page::before,
    .havarie-page::before {
      background:
        radial-gradient(circle at 82% 16%, rgba(143, 15, 35, 0.34), transparent 26%),
        radial-gradient(circle at 14% 80%, rgba(255, 255, 255, 0.08), transparent 28%),
        radial-gradient(circle at 50% 52%, rgba(143, 15, 35, 0.10), transparent 36%),
        linear-gradient(135deg, rgba(255,255,255,0.04), transparent) !important;
    }

    /* Logo ohne weißen Außenring, größer und präsenter */
    .mini-logo,
    .page-logo-badge,
    .start-photo-badge,
    .page-logo-badge img,
    .start-photo-badge img {
      background: transparent !important;
      border: none !important;
      box-shadow: none !important;
    }

    .mini-logo {
      width: 92px !important;
      height: 92px !important;
      padding: 0 !important;
      filter: drop-shadow(0 10px 22px rgba(0,0,0,0.28));
    }

    .page-logo-badge,
    .start-photo-badge {
      width: 170px !important;
      height: 170px !important;
      padding: 0 !important;
      filter: drop-shadow(0 18px 34px rgba(0,0,0,0.28));
    }

    .logo-wrap {
      background: rgba(255,255,255,0.05) !important;
      border: 1px solid rgba(255,255,255,0.08) !important;
      box-shadow: 0 14px 30px rgba(0,0,0,0.14) !important;
    }

    /* Einheitlicher Boxenstil wie linke Über-uns-Box */
    .card,
    .jobs-intro-card,
    .jobs-image-card,
    .google-map-card,
    .standort-office-card,
    .havarie-hero-card,
    .havarie-mini-card,
    .havarie-contact-item,
    .contact-deco-card,
    .contact-single-card,
    .contact-placeholder-card,
    .about-hero-card,
    .about-image-card,
    .about-story-card,
    .about-process-item,
    .about-mini-card,
    .office-line-item,
    .havarie-points div,
    .contact-deco-chip,
    .job-check.fancy-check,
    .kontakt-switch-btn,
    .map-location-btn {
      background: linear-gradient(180deg, #ffffff 0%, #faf7f8 100%) !important;
      border: 1px solid rgba(143, 15, 35, 0.14) !important;
      box-shadow: 0 14px 30px rgba(0,0,0,0.08) !important;
    }

    .card,
    .jobs-intro-card,
    .google-map-card,
    .standort-office-card,
    .havarie-hero-card,
    .havarie-mini-card,
    .havarie-contact-item,
    .contact-deco-card,
    .contact-single-card,
    .contact-placeholder-card,
    .about-hero-card,
    .about-image-card,
    .about-story-card,
    .about-process-item,
    .about-mini-card,
    .office-line-item,
    .havarie-points div,
    .contact-deco-chip,
    .job-check.fancy-check,
    .kontakt-switch-btn,
    .map-location-btn {
      position: relative;
      overflow: hidden;
    }

    .card::before,
    .jobs-intro-card::before,
    .google-map-card::before,
    .standort-office-card::before,
    .havarie-hero-card::before,
    .havarie-mini-card::before,
    .havarie-contact-item::after,
    .contact-deco-card::before,
    .contact-single-card::before,
    .contact-placeholder-card::before,
    .about-hero-card::before,
    .about-image-card::before,
    .about-story-card::before,
    .about-process-item::before,
    .about-mini-card::before,
    .office-line-item::before,
    .havarie-points div::before,
    .contact-deco-chip::before,
    .job-check.fancy-check::after {
      content: "";
      position: absolute;
      right: -34px;
      top: -34px;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background: rgba(143, 15, 35, 0.07);
      pointer-events: none;
    }

    .about-story-card::after,
    .about-process-item::after,
    .about-mini-card::after,
    .office-line-item::after,
    .contact-single-card::after,
    .contact-placeholder-card::after,
    .havarie-mini-card::after,
    .havarie-contact-item::after,
    .jobs-intro-card::after,
    .google-map-card::after,
    .standort-office-card::after,
    .contact-deco-card::after {
      right: auto !important;
      left: 16px;
      top: auto !important;
      bottom: 14px;
      width: 22px;
      height: 22px;
      background: rgba(143, 15, 35, 0.10);
      border-radius: 50%;
      pointer-events: none;
    }

    .card > *,
    .jobs-intro-card > *,
    .google-map-card > *,
    .standort-office-card > *,
    .havarie-hero-card > *,
    .havarie-mini-card > *,
    .havarie-contact-item > *,
    .contact-deco-card > *,
    .contact-single-card > *,
    .contact-placeholder-card > *,
    .about-hero-card > *,
    .about-image-card > *,
    .about-story-card > *,
    .about-process-item > *,
    .about-mini-card > *,
    .office-line-item > *,
    .havarie-points div > *,
    .contact-deco-chip > * {
      position: relative;
      z-index: 1;
    }

    .standort-office-card {
      grid-template-columns: 0.95fr 1.05fr;
      gap: 0;
    }

    .standort-office-data,
    .standort-office-data--light {
      background: transparent !important;
      color: #2b2f35 !important;
    }

    .standort-office-data span,
    .contact-single-card .eyebrow,
    .office-line-item small,
    .contact-deco-chip,
    .havarie-mini-card span,
    .havarie-contact-item span {
      color: var(--red) !important;
    }

    .standort-office-data h3,
    .google-map-head h3,
    .jobs-intro-card h2,
    .contact-deco-card h3,
    .contact-single-card h3,
    .havarie-hero-card h2,
    .about-story-card h3,
    .about-hero-card h3,
    .about-process-item span,
    .about-mini-card strong,
    .jobs-intro-card h1.page-title,
    .havarie-hero-card h1.page-title {
      color: #2b2f35 !important;
    }

    .standort-office-data p,
    .google-map-head p,
    .jobs-intro-card p,
    .contact-deco-card p,
    .contact-single-card p,
    .contact-placeholder-card p,
    .havarie-hero-card p,
    .havarie-mini-card p,
    .havarie-contact-item p,
    .about-story-card p,
    .about-process-item p,
    .about-mini-card span,
    .office-line-item p,
    .havarie-points div {
      color: #565d66 !important;
    }

    .map-location-btn,
    .kontakt-switch-btn {
      color: var(--red) !important;
      font-weight: 900;
    }

    .map-location-btn:hover,
    .map-location-btn.active,
    .kontakt-switch-btn:hover,
    .kontakt-switch-btn.active {
      background: var(--red) !important;
      color: #fff !important;
      border-color: var(--red) !important;
      box-shadow: 0 16px 32px rgba(143,15,35,0.18) !important;
      transform: translateY(-3px);
    }

    .job-check.fancy-check {
      padding-left: 42px !important;
      color: #565d66 !important;
    }

    .job-check.fancy-check::before {
      background: var(--red) !important;
      color: #fff !important;
    }

    .jobs-image-card,
    .about-image-card,
    .contact-photo-card,
    .contact-photo-card-large,
    .standort-office-image {
      border-radius: 22px;
      overflow: hidden;
    }

    .google-map-card,
    .standort-office-card,
    .contact-single-card,
    .contact-placeholder-card,
    .havarie-hero-card,
    .jobs-intro-card,
    .about-story-card,
    .about-process-item,
    .about-mini-card,
    .contact-deco-card,
    .havarie-mini-card,
    .havarie-contact-item {
      border-radius: 22px !important;
    }

    .google-map-head {
      position: relative;
      z-index: 1;
    }

    @media (max-width: 900px) {
      .page-logo-badge,
      .start-photo-badge {
        width: 126px !important;
        height: 126px !important;
      }
      .mini-logo {
        width: 72px !important;
        height: 72px !important;
      }
    }
    /* VACILITY67_UNIFIED_STYLE_END */

  

    /* VACILITY68_SITEWIDE_UNIFORM_STYLE_START */
    :root {
      --uniform-card-bg: linear-gradient(135deg, rgba(21, 22, 26, 0.98) 0%, rgba(41, 14, 20, 0.98) 58%, rgba(109, 12, 28, 0.98) 100%);
      --uniform-card-border: rgba(201, 86, 111, 0.34);
      --uniform-card-shadow: 0 18px 36px rgba(0,0,0,0.30);
      --uniform-card-text: rgba(255,255,255,0.88);
      --uniform-card-muted: rgba(255,255,255,0.72);
      --uniform-card-title: #ffffff;
    }

    /* Einheitliche dunkle Unterseiten-Hintergründe */
    .start-page,
    .standorte-page,
    .havarie-page,
    .about-page,
    .jobs-page,
    .kontakt-page {
      background: linear-gradient(180deg, #101114 0%, #15171b 100%) !important;
    }

    .start-page::before,
    .standorte-page::before,
    .havarie-page::before,
    .about-page::before,
    .jobs-page::before,
    .kontakt-page::before {
      background:
        radial-gradient(circle at 85% 14%, rgba(143, 15, 35, 0.26), transparent 24%),
        radial-gradient(circle at 18% 82%, rgba(143, 15, 35, 0.16), transparent 28%),
        radial-gradient(circle at 54% 44%, rgba(255, 255, 255, 0.04), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,0.03), transparent) !important;
    }

    /* Header-Logo oben links ohne transparente Umrandung */
    .logo-wrap {
      padding: 0 !important;
      background: transparent !important;
      border: none !important;
      box-shadow: none !important;
      gap: 12px;
    }
    .logo-wrap:hover {
      background: transparent !important;
      transform: none !important;
    }

    /* Logo-Badges ohne Umrandung */
    .page-logo-badge,
    .page-logo-badge:hover,
    .start-photo-badge,
    .start-photo-badge:hover {
      background: transparent !important;
      border: none !important;
      box-shadow: none !important;
      padding: 0 !important;
      backdrop-filter: none !important;
    }

    .page-logo-badge,
    .start-photo-badge {
      width: 180px !important;
      height: 180px !important;
      filter: drop-shadow(0 18px 34px rgba(0,0,0,0.34));
    }

    .page-logo-badge img,
    .start-photo-badge img,
    .mini-logo {
      background: transparent !important;
      border: none !important;
      box-shadow: none !important;
      object-fit: contain;
    }

    .mini-logo {
      width: 76px !important;
      height: 76px !important;
      filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
    }

    /* Ein einheitlicher Boxenstil für die gesamte Website */
    .card,
    .card-red,
    .service-row .card,
    .about-hero-card,
    .about-story-card,
    .about-process-item,
    .about-mini-card,
    .jobs-intro-card,
    .jobs-image-card,
    .google-map-card,
    .standort-office-card,
    .office-line-item,
    .havarie-mini-card,
    .havarie-callout,
    .havarie-contact-item,
    .contact-deco-card,
    .contact-single-card,
    .contact-placeholder-card,
    .job-check.fancy-check,
    .map-location-btn,
    .kontakt-switch-btn,
    .start-photo-info,
    .start-page .slogan,
    .about-slogan-row span {
      background: var(--uniform-card-bg) !important;
      border: 1px solid var(--uniform-card-border) !important;
      box-shadow: var(--uniform-card-shadow) !important;
      color: var(--uniform-card-text) !important;
      position: relative;
      overflow: hidden;
    }

    .card::before,
    .card-red::before,
    .about-hero-card::before,
    .about-story-card::before,
    .about-process-item::before,
    .about-mini-card::before,
    .jobs-intro-card::before,
    .google-map-card::before,
    .standort-office-card::before,
    .office-line-item::before,
    .havarie-mini-card::before,
    .havarie-callout::before,
    .havarie-contact-item::before,
    .contact-deco-card::before,
    .contact-single-card::before,
    .contact-placeholder-card::before,
    .job-check.fancy-check::after,
    .start-photo-info::before,
    .start-page .slogan::before,
    .about-slogan-row span::before {
      content: "";
      position: absolute;
      right: -34px;
      top: -34px;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.10);
      pointer-events: none;
      z-index: 0;
    }

    .card > *,
    .card-red > *,
    .about-hero-card > *,
    .about-story-card > *,
    .about-process-item > *,
    .about-mini-card > *,
    .jobs-intro-card > *,
    .google-map-card > *,
    .standort-office-card > *,
    .office-line-item > *,
    .havarie-mini-card > *,
    .havarie-callout > *,
    .havarie-contact-item > *,
    .contact-deco-card > *,
    .contact-single-card > *,
    .contact-placeholder-card > *,
    .start-photo-info > *,
    .start-page .slogan > *,
    .about-slogan-row span > * {
      position: relative;
      z-index: 1;
    }

    /* Typografie in allen Boxen */
    .card h3,
    .card-red h3,
    .service-row .card h3,
    .about-hero-card h2,
    .about-story-card h3,
    .about-process-item strong,
    .about-process-item span,
    .about-mini-card strong,
    .jobs-intro-card h2,
    .google-map-head h3,
    .standort-office-data h3,
    .havarie-mini-card strong,
    .havarie-callout strong,
    .havarie-contact-item strong,
    .contact-deco-card h3,
    .contact-single-card h3,
    .contact-placeholder-card strong,
    .start-photo-info strong,
    .start-page .slogan,
    .about-slogan-row span,
    .about-hero-card h1.page-title,
    .jobs-intro-card h1.page-title {
      color: var(--uniform-card-title) !important;
    }

    .card p,
    .card-red p,
    .service-row .card p,
    .about-hero-card p,
    .about-story-card p,
    .about-process-item p,
    .about-mini-card span,
    .jobs-intro-card p,
    .google-map-head p,
    .standort-office-data p,
    .havarie-mini-card p,
    .havarie-callout p,
    .havarie-contact-item p,
    .contact-deco-card p,
    .contact-single-card p,
    .contact-placeholder-card p,
    .start-photo-info span,
    .office-line-item p {
      color: var(--uniform-card-text) !important;
    }

    .section-label,
    .standort-office-data span,
    .office-line-item small,
    .havarie-mini-card span,
    .havarie-callout span,
    .havarie-contact-item span,
    .contact-single-card .eyebrow,
    .contact-deco-chip,
    .about-mini-card span,
    .about-process-item span {
      color: #ffb5c1 !important;
    }

    .number,
    .job-check.fancy-check::before {
      background: rgba(255,255,255,0.14) !important;
      color: #ffffff !important;
      border: 1px solid rgba(255,255,255,0.16) !important;
      box-shadow: none !important;
    }

    .service-row .card,
    .card,
    .card-red,
    .about-story-card,
    .about-process-item,
    .about-mini-card,
    .jobs-intro-card,
    .google-map-card,
    .standort-office-card,
    .havarie-mini-card,
    .havarie-callout,
    .havarie-contact-item,
    .contact-deco-card,
    .contact-single-card,
    .contact-placeholder-card,
    .start-photo-info,
    .start-page .slogan {
      border-radius: 24px !important;
    }

    /* Gleiches Format für Leipzig / Dresden */
    .standort-office-grid {
      align-items: stretch;
    }
    .standort-office-card,
    .standort-office-card--reverse {
      grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.05fr) !important;
      gap: 0 !important;
      align-items: stretch;
    }
    .standort-office-card--reverse .standort-office-image,
    .standort-office-card--reverse .standort-office-data {
      order: initial !important;
    }
    .standort-office-image {
      min-height: 100%;
    }
    .standort-office-data,
    .standort-office-data--light {
      background: transparent !important;
      color: var(--uniform-card-text) !important;
      padding: 32px 30px !important;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 12px;
    }
    .office-lines--boxed {
      display: grid;
      gap: 12px !important;
      margin-top: 8px;
    }
    .office-line-item {
      padding: 14px 16px !important;
      background: rgba(255,255,255,0.06) !important;
      border-color: rgba(255,255,255,0.10) !important;
      box-shadow: none !important;
    }

    /* Selector/Schaltflächen im selben Stil */
    .map-location-btn,
    .kontakt-switch-btn {
      color: #ffffff !important;
      font-weight: 800;
      border-radius: 18px !important;
      transition: 0.25s ease;
    }
    .map-location-btn:hover,
    .map-location-btn.active,
    .kontakt-switch-btn:hover,
    .kontakt-switch-btn.active {
      background: linear-gradient(135deg, #8f0f23, #b1263e) !important;
      color: #fff !important;
      border-color: rgba(255,255,255,0.18) !important;
      transform: translateY(-3px);
      box-shadow: 0 18px 34px rgba(143,15,35,0.32) !important;
    }

    /* Startseite untere 3 Boxen klar lesbar */
    .service-row .card {
      min-height: 100%;
    }
    .service-row .card p,
    .service-row .card h3,
    .service-row .number {
      position: relative;
      z-index: 1;
    }

    /* Kleine Anpassungen für Bildkarte Startseite */
    .start-photo-info {
      border-left: 4px solid rgba(255,255,255,0.18) !important;
    }

    /* Mobile */
    @media (max-width: 900px) {
      .page-logo-badge,
      .start-photo-badge {
        width: 132px !important;
        height: 132px !important;
      }
      .standort-office-card,
      .standort-office-card--reverse {
        grid-template-columns: 1fr !important;
      }
    }
    /* VACILITY68_SITEWIDE_UNIFORM_STYLE_END */

  

    /* VACILITY69_READABILITY_PATCH_START */
    .office-line-item p,
    .office-line-item p strong,
    .office-line-item a,
    .office-line-item a strong {
      color: #ffffff !important;
    }

    .havarie-mini-card {
      background: var(--uniform-card-bg) !important;
      border: 1px solid var(--uniform-card-border) !important;
      box-shadow: var(--uniform-card-shadow) !important;
      color: var(--uniform-card-text) !important;
    }

    .havarie-mini-card span {
      color: #ffb5c1 !important;
    }

    .havarie-mini-card strong {
      color: #ffffff !important;
    }

    .havarie-mini-card p {
      color: rgba(255,255,255,0.86) !important;
    }

    .havarie-mini-card::after {
      background: rgba(255,255,255,0.05) !important;
      border: 1px solid rgba(255,255,255,0.10) !important;
    }
    /* VACILITY69_READABILITY_PATCH_END */

  

    /* VACILITY70_CONTACT_TEXT_COLOR_PATCH_START */
    .contact-single-card .eyebrow,
    .contact-single-card h3,
    .contact-info-line strong,
    .contact-info-line strong a.email-link {
      color: #ffffff !important;
    }

    .contact-info-line span {
      color: rgba(255,255,255,0.68) !important;
    }

    .contact-info-line .email-link:hover {
      color: #ffffff !important;
      text-decoration: underline;
      text-underline-offset: 4px;
    }
    /* VACILITY70_CONTACT_TEXT_COLOR_PATCH_END */



    /* VACILITY71_CONTRAST_AND_LOGO_BADGE_PATCH_START */
    /* Havarie: Schritt-Titel (Melden / Prüfen / Reagieren) waren dunkelgrau auf dunklem Grund */
    .havarie-step span {
      color: #ffffff !important;
    }

    .havarie-step p {
      color: rgba(255,255,255,0.86) !important;
    }

    /* Havarie: Section-Label auf der weißen Hero-Karte war hellrosa auf weiß */
    .havarie-hero-card .section-label {
      color: var(--red) !important;
    }

    /* Jobs: Chips (klar geplant / fair abgestimmt / direkt betreut) waren dunkelrot auf dunkelrot */
    .jobs-mini-line div {
      background: rgba(255,255,255,0.10) !important;
      border: 1px solid rgba(255,255,255,0.16) !important;
      color: #ffffff !important;
    }

    /* Logo-Badge: nur so groß wie der freie Rand neben dem 1180px-Container,
       damit es keine Inhalte mehr überdeckt. Unterhalb von 1400px (kein Platz
       neben dem Inhalt) wird es ausgeblendet – das Logo steht ohnehin im Header. */
    .page-logo-badge {
      width: min(150px, calc((100vw - 1180px) / 2 - 28px)) !important;
      height: min(150px, calc((100vw - 1180px) / 2 - 28px)) !important;
      right: 14px !important;
      top: calc(var(--header-height) + 20px) !important;
      pointer-events: none;
    }

    @media (max-width: 1400px) {
      .page-logo-badge {
        display: none !important;
      }
    }
    /* VACILITY71_CONTRAST_AND_LOGO_BADGE_PATCH_END */



    /* VACILITY72_MOBILE_NAV_AND_FORM_START */
    /* Burger-Button (nur mobil sichtbar) */
    .nav-toggle {
      display: none;
      width: 48px;
      height: 48px;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      border: 1px solid rgba(143, 15, 35, 0.18);
      border-radius: 14px;
      background: rgba(255,255,255,0.9);
      padding: 0;
      flex-shrink: 0;
      transition: background 0.2s ease, border-color 0.2s ease;
    }

    .nav-toggle:hover {
      background: rgba(143, 15, 35, 0.06);
      border-color: rgba(143, 15, 35, 0.32);
    }

    .nav-toggle-bar {
      display: block;
      width: 22px;
      height: 3px;
      border-radius: 99px;
      background: var(--red);
      transition: transform 0.25s ease, opacity 0.2s ease;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
      opacity: 0;
    }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    .nav-backdrop {
      position: fixed;
      inset: var(--header-height) 0 0 0;
      z-index: 990;
      background: rgba(16, 17, 20, 0.55);
      backdrop-filter: blur(2px);
    }

    @media (max-width: 980px) {
      /* Header wieder einzeilig (überschreibt das gestapelte 128px-Layout) */
      :root {
        --header-height: 76px;
      }

      .nav {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        padding: 8px 18px !important;
      }

      .logo-wrap {
        gap: 10px !important;
        min-width: 0;
      }

      .mini-logo {
        width: 54px !important;
        height: 54px !important;
      }

      .brand-text strong {
        font-size: 17px !important;
      }

      .brand-text span {
        font-size: 11px !important;
      }

      .nav-toggle {
        display: flex;
      }

      /* Ausklappbares Menü unter dem Header */
      header nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        z-index: 995;
        background: linear-gradient(180deg, #ffffff, #f6f6f7);
        border-bottom: 4px solid var(--red);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
        padding: 10px 18px 18px;
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.22s ease, opacity 0.22s ease, visibility 0s linear 0.22s;
      }

      header nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: transform 0.22s ease, opacity 0.22s ease, visibility 0s;
      }

      header nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px !important;
      }

      header nav li {
        width: 100%;
      }

      header nav .nav-link {
        display: block;
        width: 100%;
        text-align: left;
        font-size: 17px !important;
        padding: 14px 12px;
        border-radius: 12px;
      }

      header nav .nav-link.active {
        background: rgba(143, 15, 35, 0.07);
      }

      header nav .nav-link.active::after {
        display: none;
      }

      header nav .nav-button {
        display: block;
        width: 100%;
        margin-top: 8px;
        padding: 14px 18px;
        font-size: 16px !important;
        text-align: center;
      }
    }

    /* Honeypot-Feld: für Menschen unsichtbar, für Bots ein normales Feld */
    .form-hp {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
      opacity: 0;
    }

    /* Status-Meldung unter dem Formular */
    .form-status {
      display: none;
      margin-top: 16px;
      padding: 14px 16px;
      border-radius: 14px;
      font-weight: 700;
      font-size: 14px;
      line-height: 1.45;
    }

    .form-status.is-visible {
      display: block;
    }

    .form-status.is-success {
      background: #e8f5ec;
      border: 1px solid #b6dfc2;
      color: #1d5c31;
    }

    .form-status.is-error {
      background: var(--red-soft);
      border: 1px solid rgba(143, 15, 35, 0.25);
      color: var(--red-dark);
    }

    .form-status.is-info {
      background: var(--gray-light);
      border: 1px solid var(--gray-border);
      color: var(--gray-main);
    }

    .form-status a {
      color: inherit;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .small-note a {
      color: var(--red);
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .modal-content .section-label {
      color: var(--red) !important;
    }

    #form-submit[disabled] {
      opacity: 0.65;
      cursor: progress;
    }
    /* Karte: Platzhalter ohne API-Key + Google-InfoWindow im Seitenstil */
    .map-missing-key {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      min-height: 340px;
      padding: 24px;
      text-align: center;
      color: var(--red-dark);
      font-weight: 700;
      background:
        radial-gradient(circle at 20% 20%, rgba(143, 15, 35, 0.10), transparent 40%),
        linear-gradient(135deg, #f7e3e3, #f2c9c9);
    }

    .gm-style .gm-style-iw-c {
      border-radius: 16px !important;
      box-shadow: 0 16px 36px rgba(143, 15, 35, 0.22) !important;
    }

    .gm-style .standort-popup {
      font-family: inherit;
      padding: 2px 6px 0 2px;
    }

    .gm-style .standort-popup .standort-popup-eyebrow { margin-bottom: 2px; }
    .gm-style .standort-popup .standort-popup-text { font-size: 13px; line-height: 1.35; }
    .gm-style .standort-popup .standort-popup-link { margin-top: 8px; padding: 7px 12px; font-size: 12px; }
    /* VACILITY72_MOBILE_NAV_AND_FORM_END */

  
    /* ---------- Mehrseitige Struktur: Buttons → Links ---------- */
    a.btn, a.nav-link, a.nav-button, a.logo-wrap, a.dot {
      text-decoration: none;
      cursor: pointer;
    }
    a.nav-link { display: inline-block; }
    a.dot { display: block; }
    a.logo-wrap { color: inherit; }

    /* ---------- Mobile-Fixes: Browserleiste (iOS/Android) verdeckt Seitenende ----------
       Die Seiten scrollen intern; 100vh reicht auf dem Handy hinter die Browserleiste.
       svh = sichtbare Höhe ohne Browserleiste. */
    /* ---------- Natives Scrollen: das Fenster scrollt, nicht die Seite ---------- */
    html {
      height: auto;
      overflow: visible;
      scroll-padding-top: calc(var(--header-height) + 16px);
    }
    body {
      height: auto;
      min-height: 100vh;
      min-height: 100svh;
      overflow: visible;
      overflow-x: hidden; /* propagiert zum Viewport: x gesperrt, y scrollbar */
    }
    main {
      height: auto;
      min-height: 0;
      overflow: visible;
    }
    .page {
      height: auto;
      min-height: 100vh;
      min-height: 100svh;
      overflow: visible;
      padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }
    .page-counter { display: none !important; }
    body.modal-open { overflow: hidden; }

    @media (max-width: 980px) {
      header nav {
        max-height: calc(100vh - var(--header-height));
        max-height: calc(100svh - var(--header-height));
        overflow-y: auto;
        padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
      }
    }

    /* ---------- Standort-Umschalter: aktiver Zustand deutlich sichtbar ---------- */
    .kontakt-switch-btn,
    .map-location-btn {
      position: relative;
      padding-left: 38px !important;
    }
    .kontakt-switch-btn::before,
    .map-location-btn::before {
      content: "";
      position: absolute;
      left: 14px;
      top: 50%;
      width: 14px;
      height: 14px;
      margin-top: -7px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.55);
      background: transparent;
      transition: 0.2s ease;
    }
    .kontakt-switch-btn.active,
    .map-location-btn.active {
      background: #ffffff !important;
      color: var(--red) !important;
      border-color: #ffffff !important;
      box-shadow: 0 16px 34px rgba(0,0,0,0.30) !important;
      transform: translateY(-3px);
    }
    .kontakt-switch-btn.active::before,
    .map-location-btn.active::before {
      border-color: var(--red);
      background: var(--red);
      box-shadow: inset 0 0 0 3px #ffffff;
    }
    .kontakt-switch-btn:hover:not(.active),
    .map-location-btn:hover:not(.active) {
      background: linear-gradient(135deg, #8f0f23, #b1263e) !important;
      color: #fff !important;
    }
    .map-location-btn { padding-left: 34px !important; }
    .map-location-btn::before { left: 12px; width: 12px; height: 12px; margin-top: -6px; }
