:root {
    --blau: #004F9E;
    --blau-dunkel: #003A75;
    --blau-tief: #2E3B4E;
    --blau-hell: #e8eff8;
    --claim-grau: #666666;
    --text: #2E3B4E;
    --text-leise: #666666;
    --bg: #ffffff;
    --bg-grau: #f5f6f8;
    --linie: #e3e5ea;
    --max-w: 1180px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

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

  h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.01em; color: var(--blau-tief); }

  /* ============= NAV ============= */
  .nav {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--linie);
    z-index: 100;
  }
  .nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 16px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  .nav-logo img {
    height: 52px;
    width: auto;
    display: block;
  }
  .nav-links {
    display: flex;
    gap: 32px;
    font-size: 14px;
    font-weight: 400;
  }
  .nav-links a {
    color: var(--blau-tief);
    transition: color 0.2s;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    letter-spacing: 0.2px;
  }
  .nav-links a:hover { color: var(--blau); border-bottom-color: var(--blau); }

  @media (max-width: 820px) {
    .nav-links { display: none; }
    .nav-logo img { height: 42px; }
  }

  /* ============= CLAIM-LEISTE ============= */
  .claim-leiste {
    background: var(--blau-hell);
    border-bottom: 1px solid var(--linie);
    padding: 14px 30px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 3.5px;
    color: var(--claim-grau);
    text-transform: uppercase;
    font-weight: 400;
  }
  .claim-leiste span {
    display: inline-block;
    margin: 0 14px;
  }
  .claim-leiste .punkt {
    color: var(--blau);
    margin: 0;
  }

  @media (max-width: 560px) {
    .claim-leiste { font-size: 10px; letter-spacing: 2px; }
    .claim-leiste span { margin: 0 6px; }
  }

  /* ============= HERO ============= */
  .hero {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 100px 30px 90px;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 70px;
    align-items: center;
  }
  .hero-kicker {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blau);
    font-weight: 700;
    margin-bottom: 28px;
  }
  .hero h1 {
    font-size: 54px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    color: var(--blau-tief);
  }
  .hero h1 strong {
    font-weight: 700;
    color: var(--blau);
  }
  .hero-lead {
    font-size: 17px;
    color: var(--text-leise);
    max-width: 520px;
    margin-bottom: 36px;
    font-weight: 300;
    line-height: 1.65;
  }
  .hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;
    border: 1px solid var(--blau);
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
  }
  .btn-primary {
    background: var(--blau);
    color: #fff;
  }
  .btn-primary:hover { background: var(--blau-dunkel); border-color: var(--blau-dunkel); }
  .btn-secondary {
    background: transparent;
    color: var(--blau);
  }
  .btn-secondary:hover { background: var(--blau-hell); }

  .hero-visual {
    aspect-ratio: 1/1.15;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
  .hero-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    filter: saturate(0.95);
  }
  .hero-portrait-badge {
    position: absolute;
    top: -18px;
    left: -18px;
    width: 74px;
    height: 74px;
    background: var(--blau);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,79,158,0.25);
  }
  .hero-portrait-badge svg {
    width: 60%;
    height: 60%;
  }
  .hero-portrait-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(46,59,78,0.92) 0%, rgba(46,59,78,0.7) 60%, transparent 100%);
    color: #fff;
  }
  .hero-portrait-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: 0.2px;
  }
  .hero-portrait-rolle {
    font-size: 12px;
    color: #d5dff0;
    letter-spacing: 0.5px;
    font-weight: 400;
  }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding: 60px 30px 50px; gap: 40px; }
    .hero h1 { font-size: 38px; }
    .hero-visual { aspect-ratio: 1/1; max-width: 420px; margin: 0 auto; }
  }

  /* ============= ZWEI-WEGE-WEICHE ============= */
  .weiche {
    background: var(--bg-grau);
    padding: 90px 30px;
    border-top: 1px solid var(--linie);
    border-bottom: 1px solid var(--linie);
  }
  .weiche-inner {
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .section-kicker {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blau);
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
  }
  .section-h2 {
    font-size: 34px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--blau-tief);
  }
  .section-h2 strong { font-weight: 700; color: var(--blau); }

  .weiche-karten {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .karte {
    background: #fff;
    padding: 48px 44px;
    border: 1px solid var(--linie);
    transition: all 0.25s;
    position: relative;
  }
  .karte:hover {
    border-color: var(--blau);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,79,158,0.10);
  }
  .karte-label {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 2.5px;
    color: #fff;
    background: var(--blau);
    padding: 5px 12px;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
  }
  .karte h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.25;
    color: var(--blau-tief);
  }
  .karte p {
    color: var(--text-leise);
    font-size: 15px;
    margin-bottom: 26px;
  }
  .karte-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--blau);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--blau);
    padding-bottom: 3px;
    display: inline-block;
  }

  @media (max-width: 720px) {
    .weiche-karten { grid-template-columns: 1fr; }
    .section-h2 { font-size: 26px; margin-bottom: 40px; }
  }

  /* ============= LEISTUNGEN ============= */
  .leistungen {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 100px 30px;
  }
  .leistungen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--linie);
    border-left: 1px solid var(--linie);
  }
  .leistung {
    padding: 44px 40px;
    border-right: 1px solid var(--linie);
    border-bottom: 1px solid var(--linie);
    background: #fff;
    transition: background 0.2s;
    display: flex;
    gap: 24px;
  }
  .leistung:hover { background: var(--bg-grau); }
  .leistung-nr {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--blau);
    font-weight: 700;
    padding-top: 4px;
    min-width: 30px;
  }
  .leistung h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    color: var(--blau-tief);
  }
  .leistung p {
    font-size: 14px;
    color: var(--text-leise);
    line-height: 1.6;
  }

  @media (max-width: 700px) {
    .leistungen-grid { grid-template-columns: 1fr; }
    .leistung { padding: 32px 24px; }
  }

  /* ============= PROFIL ============= */
  .profil {
    background: var(--blau);
    color: #fff;
    padding: 100px 30px;
    position: relative;
    overflow: hidden;
  }
  .profil::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  }
  .profil-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
    position: relative;
  }
  .profil .section-kicker { color: #9bb8dd; text-align: left; }
  .profil h2 {
    font-size: 38px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #fff;
    letter-spacing: -0.015em;
  }
  .profil h2 strong { font-weight: 700; }
  .profil p {
    color: #d5dff0;
    font-size: 16px;
    margin-bottom: 16px;
    max-width: 560px;
    line-height: 1.7;
  }
  .profil-quali {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 13px;
    color: #b8c9e3;
    letter-spacing: 0.3px;
    line-height: 2;
  }
  .profil-mehr {
    display: inline-block;
    margin-top: 24px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 3px;
    transition: border-color 0.2s;
  }
  .profil-mehr:hover { border-bottom-color: #fff; }
  .profil-bild {
    aspect-ratio: 4/5;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
  }
  .profil-bild img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
  }
  .profil-bild-label {
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    height: fit-content;
    font-size: 11px;
    color: #9bb8dd;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
  }

  @media (max-width: 900px) {
    .profil-inner { grid-template-columns: 1fr; gap: 40px; }
    .profil h2 { font-size: 28px; }
    .profil-bild { aspect-ratio: 1/1; max-width: 400px; margin: 0 auto; }
  }

  /* ============= ENGAGEMENT ============= */
  .engagement {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 100px 30px;
  }
  .engagement-sub {
    text-align: center;
    color: var(--text-leise);
    font-size: 15px;
    margin-top: -40px;
    margin-bottom: 60px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  .engagement-liste {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--linie);
    border-bottom: 1px solid var(--linie);
  }
  .engagement-item {
    text-align: center;
    padding: 40px 28px;
    border-right: 1px solid var(--linie);
  }
  .engagement-item:last-child { border-right: none; }
  .engagement-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--blau);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
  }
  .engagement-item p {
    font-size: 13px;
    color: var(--text-leise);
    line-height: 1.55;
  }

  @media (max-width: 720px) {
    .engagement-liste { grid-template-columns: 1fr; }
    .engagement-item { border-right: none; border-bottom: 1px solid var(--linie); }
    .engagement-item:last-child { border-bottom: none; }
  }

  /* ============= KONTAKT ============= */
  .kontakt {
    background: var(--bg-grau);
    padding: 100px 30px;
    border-top: 1px solid var(--linie);
  }
  .kontakt-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
  }
  .kontakt h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 18px;
    line-height: 1.2;
    color: var(--blau-tief);
    letter-spacing: -0.015em;
  }
  .kontakt h2 strong { font-weight: 700; color: var(--blau); }
  .kontakt-sub {
    color: var(--text-leise);
    font-size: 16px;
    margin-bottom: 48px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .kontakt-daten {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 48px;
    background: #fff;
    border: 1px solid var(--linie);
  }
  .kontakt-feld {
    text-align: center;
    padding: 32px 24px;
    border-right: 1px solid var(--linie);
  }
  .kontakt-feld:last-child { border-right: none; }
  .kontakt-feld-label {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blau);
    margin-bottom: 12px;
    font-weight: 700;
  }
  .kontakt-feld-wert {
    font-size: 15px;
    color: var(--blau-tief);
    line-height: 1.6;
  }

  @media (max-width: 720px) {
    .kontakt-daten { grid-template-columns: 1fr; }
    .kontakt-feld { border-right: none; border-bottom: 1px solid var(--linie); }
    .kontakt-feld:last-child { border-bottom: none; }
    .kontakt h2 { font-size: 26px; }
  }

  /* ============= FOOTER ============= */
  .footer {
    background: var(--blau-tief);
    color: #a8b5c9;
    padding: 50px 30px 30px;
    font-size: 13px;
  }
  .footer-top {
    max-width: var(--max-w);
    margin: 0 auto 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
  }
  .footer-logo img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
  }
  .footer-kontakt {
    font-size: 13px;
    line-height: 1.9;
    text-align: right;
    color: #cfd8e3;
  }
  .footer-kontakt strong { color: #fff; font-weight: 500; }
  .footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
  }
  .footer-links {
    display: flex;
    gap: 24px;
  }
  .footer-links a:hover { color: #fff; }

  @media (max-width: 700px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-kontakt { text-align: left; }
    .footer-inner { flex-direction: column; text-align: center; }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-kicker { animation: fadeUp 0.7s ease 0.1s backwards; }
  .hero h1 { animation: fadeUp 0.7s ease 0.2s backwards; }
  .hero-lead { animation: fadeUp 0.7s ease 0.35s backwards; }
  .hero-cta { animation: fadeUp 0.7s ease 0.5s backwards; }
  .hero-visual { animation: fadeUp 0.9s ease 0.3s backwards; }
  /* ============= UNTERSEITEN ============= */
  .page-header {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 80px 30px 40px;
    text-align: center;
  }
  .page-header .section-kicker {
    margin-bottom: 16px;
  }
  .page-header h1 {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--blau-tief);
    margin-bottom: 20px;
  }
  .page-header h1 strong { font-weight: 700; color: var(--blau); }
  .page-header p {
    font-size: 17px;
    color: var(--text-leise);
    max-width: 620px;
    margin: 0 auto;
  }

  @media (max-width: 720px) {
    .page-header { padding: 50px 30px 30px; }
    .page-header h1 { font-size: 32px; }
  }

  /* Fließtext-Bereiche */
  .prose-section {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 30px 80px;
  }
  .prose-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--blau-tief);
    margin: 48px 0 18px;
    letter-spacing: -0.01em;
  }
  .prose-section h2:first-child { margin-top: 0; }
  .prose-section h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--blau-tief);
    margin: 32px 0 10px;
  }
  .prose-section p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.75;
  }
  .prose-section ul {
    margin: 12px 0 18px 20px;
  }
  .prose-section ul li {
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 6px;
  }
  .prose-section a { color: var(--blau); border-bottom: 1px solid var(--blau); }
  .prose-section a:hover { color: var(--blau-dunkel); border-bottom-color: var(--blau-dunkel); }
  .prose-section .platzhalter {
    background: var(--blau-hell);
    border-left: 3px solid var(--blau);
    padding: 14px 18px;
    margin: 16px 0;
    font-size: 14px;
    color: var(--blau-tief);
    font-style: italic;
  }

  /* Timeline für Über-mich */
  .timeline {
    margin: 40px 0;
    border-left: 2px solid var(--linie);
    padding-left: 28px;
  }
  .timeline-item {
    margin-bottom: 36px;
    position: relative;
  }
  .timeline-item::before {
    content: "";
    position: absolute;
    left: -35px;
    top: 6px;
    width: 10px;
    height: 10px;
    background: var(--blau);
    border-radius: 50%;
  }
  .timeline-jahr {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--blau);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .timeline-item h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--blau-tief);
  }
  .timeline-item p {
    font-size: 14px;
    color: var(--text-leise);
    margin: 0;
  }

  /* Tabelle für Impressum */
  .info-tabelle {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
  }
  .info-tabelle td {
    padding: 10px 0;
    vertical-align: top;
    font-size: 15px;
    border-bottom: 1px solid var(--linie);
  }
  .info-tabelle td:first-child {
    width: 180px;
    color: var(--text-leise);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding-right: 20px;
    padding-top: 14px;
  }
  .info-tabelle td:last-child {
    color: var(--blau-tief);
  }

  @media (max-width: 560px) {
    .info-tabelle td { display: block; padding: 4px 0; }
    .info-tabelle td:first-child { padding-top: 14px; border-bottom: none; }
    .info-tabelle td:last-child { padding-bottom: 14px; }
  }

  /* Back-Link auf Unterseiten */
  .back-link {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blau);
    font-weight: 700;
    margin-bottom: 20px;
  }
  .back-link:hover { color: var(--blau-dunkel); }

  /* ============= RATGEBER ============= */
  .ratgeber {
    background: var(--bg-grau);
    padding: 100px 30px;
    border-top: 1px solid var(--linie);
  }
  .ratgeber-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 70px;
    align-items: center;
  }
  .ratgeber-cover {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ratgeber-cover img {
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.15)) drop-shadow(0 2px 6px rgba(0,0,0,0.08));
    transition: transform 0.3s ease;
  }
  .ratgeber-cover img:hover {
    transform: scale(1.03) translateY(-3px);
  }
  .ratgeber-text h2 {
    font-size: 34px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--blau-tief);
    letter-spacing: -0.015em;
  }
  .ratgeber-text h2 strong { font-weight: 700; color: var(--blau); }
  .ratgeber-text p {
    color: var(--text-leise);
    font-size: 16px;
    margin-bottom: 16px;
    max-width: 580px;
    line-height: 1.7;
  }
  .ratgeber-meta {
    display: flex;
    gap: 32px;
    margin: 28px 0;
    padding: 20px 0;
    border-top: 1px solid var(--linie);
    border-bottom: 1px solid var(--linie);
    flex-wrap: wrap;
  }
  .ratgeber-meta-item {
    font-size: 14px;
    color: var(--blau-tief);
  }
  .ratgeber-meta-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--blau);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  @media (max-width: 820px) {
    .ratgeber-inner { grid-template-columns: 1fr; gap: 40px; justify-items: center; }
    .ratgeber-cover { max-width: 240px; }
    .ratgeber-text { text-align: center; }
    .ratgeber-text h2 { font-size: 26px; }
    .ratgeber-text p { margin-left: auto; margin-right: auto; }
    .ratgeber-meta { justify-content: center; }
  }

  /* Hero-Ratgeber-Hinweis */
  .hero-ratgeber-hinweis {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding: 10px 16px 10px 12px;
    background: #fff;
    border: 1px solid var(--linie);
    border-left: 3px solid var(--blau);
    font-size: 13px;
    transition: all 0.2s;
  }
  .hero-ratgeber-hinweis:hover {
    border-color: var(--blau);
    border-left-color: var(--blau);
    transform: translateX(3px);
  }
  .hero-ratgeber-hinweis .hinweis-label {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--blau);
    font-weight: 700;
    text-transform: uppercase;
    padding-right: 12px;
    border-right: 1px solid var(--linie);
  }
  .hero-ratgeber-hinweis .hinweis-text {
    color: var(--blau-tief);
    font-size: 13px;
  }

  @media (max-width: 560px) {
    .hero-ratgeber-hinweis {
      flex-wrap: wrap;
    }
    .hero-ratgeber-hinweis .hinweis-label {
      border-right: none;
      padding-right: 0;
    }
  }

  /* Engagement mit 4 Items: 2x2 Grid */
  .engagement-liste-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: auto auto;
  }
  .engagement-liste-4 .engagement-item {
    border-bottom: 1px solid var(--linie);
  }
  .engagement-liste-4 .engagement-item:nth-child(2n) {
    border-right: none;
  }
  .engagement-liste-4 .engagement-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  @media (max-width: 720px) {
    .engagement-liste-4 {
      grid-template-columns: 1fr !important;
    }
    .engagement-liste-4 .engagement-item {
      border-right: none;
      border-bottom: 1px solid var(--linie);
    }
    .engagement-liste-4 .engagement-item:last-child {
      border-bottom: none;
    }
  }

  /* ============= KONTAKTSEITE ============= */
  .kontakt-seite {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 40px 30px 100px;
  }
  .kontakt-seite-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: start;
  }
  .kontakt-seite-info {
    background: var(--bg-grau);
    padding: 40px 32px;
    border-left: 3px solid var(--blau);
    position: sticky;
    top: 110px;
  }
  .kontakt-seite-info h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--blau-tief);
  }
  .kontakt-seite-lead {
    color: var(--text-leise);
    font-size: 14px;
    margin-bottom: 32px;
    line-height: 1.6;
  }
  .kontakt-seite-kanal {
    margin-bottom: 24px;
  }
  .kontakt-seite-kanal-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blau);
    font-weight: 700;
    margin-bottom: 6px;
  }
  .kontakt-seite-kanal-wert {
    font-size: 15px;
    color: var(--blau-tief);
    line-height: 1.5;
  }
  .kontakt-seite-kanal-wert a {
    color: var(--blau-tief);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
  }
  .kontakt-seite-kanal-wert a:hover {
    border-bottom-color: var(--blau);
  }
  .kontakt-seite-hinweis {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--linie);
    font-size: 13px;
    color: var(--text-leise);
    line-height: 1.6;
  }
  .kontakt-seite-hinweis strong {
    color: var(--blau-tief);
  }

  /* ============= FORMULAR ============= */
  .kontakt-seite-formular h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--blau-tief);
  }

  .formular {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .formular-zeile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .formular-feld {
    display: flex;
    flex-direction: column;
  }
  .formular-feld label {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blau-tief);
    font-weight: 700;
    margin-bottom: 8px;
  }
  .formular-feld .pflicht {
    color: var(--blau);
    font-weight: 700;
  }
  .formular-feld .optional {
    color: var(--text-leise);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-size: 11px;
  }
  .formular-feld input[type="text"],
  .formular-feld input[type="email"],
  .formular-feld input[type="tel"],
  .formular-feld textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--linie);
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    border-radius: 0;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .formular-feld input:focus,
  .formular-feld textarea:focus {
    outline: none;
    border-color: var(--blau);
    box-shadow: 0 0 0 3px rgba(0,79,158,0.08);
  }
  .formular-feld input:invalid:not(:placeholder-shown),
  .formular-feld textarea:invalid:not(:placeholder-shown) {
    border-color: #c33;
  }
  .formular-feld textarea {
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
    min-height: 140px;
  }
  .formular-hinweis {
    font-size: 12px;
    color: var(--text-leise);
    margin-top: 6px;
  }
  .formular-feld-check {
    margin-top: 4px;
  }
  .check-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 14px;
    color: var(--text);
    line-height: 1.55;
    cursor: pointer;
  }
  .check-label input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--blau);
    cursor: pointer;
  }
  .check-label a {
    color: var(--blau);
    border-bottom: 1px solid var(--blau);
  }
  .formular .btn {
    align-self: flex-start;
    padding: 16px 40px;
    font-size: 14px;
  }
  .formular-pflicht-hinweis {
    font-size: 12px;
    color: var(--text-leise);
    margin-top: 0;
  }

  /* Honeypot: absolut versteckt vor echten Nutzern */
  .honigtopf {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  /* Meldungs-Boxen (Danke / Fehler) */
  .meldung {
    max-width: 720px;
    margin: 60px auto 80px;
    padding: 40px;
    background: #fff;
    text-align: center;
    border: 1px solid var(--linie);
  }
  .meldung-erfolg {
    border-left: 4px solid #3a9b5c;
  }
  .meldung-fehler {
    border-left: 4px solid #c33;
  }
  .meldung-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
  }
  .meldung-erfolg .meldung-icon { background: #3a9b5c; }
  .meldung-fehler .meldung-icon { background: #c33; }
  .meldung h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--blau-tief);
    margin-bottom: 14px;
  }
  .meldung p {
    color: var(--text-leise);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 16px;
  }
  .meldung .btn {
    margin-top: 20px;
  }

  @media (max-width: 820px) {
    .kontakt-seite-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .kontakt-seite-info {
      position: static;
    }
    .formular-zeile {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  }

  /* Bei 5 Leistungen: letzte Kachel füllt beide Spalten */
  .leistungen-grid .leistung:last-child:nth-child(5) {
    grid-column: 1 / -1;
  }

  /* Auszeichnungs-Hinweis im Engagement-Block */
  .engagement-auszeichnung {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--blau);
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.2px;
  }


  /* ========================================================================
     ============= MEINPFLEGEGRAD24-SPEZIFISCH =============
     ======================================================================== */

  /* Akzentfarbe: zusätzlich zum Blau ein warmes Signal-Orange für CTAs */
  :root {
    --akzent: #d97706;          /* warmes Orange für Dringlichkeit/CTAs */
    --akzent-dunkel: #b45309;
    --akzent-hell: #fef3e2;
    --erfolg: #3a9b5c;
  }

  .nav-logo img {
    height: 60px;
  }

  /* Dringlichkeits-Banner direkt unter dem Header */
  .dringlichkeit {
    background: var(--akzent);
    color: #fff;
    padding: 10px 30px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
  }
  .dringlichkeit strong {
    font-weight: 700;
  }
  .dringlichkeit a {
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.7);
  }

  /* Hero mit anderem Akzent als Hauptseite */
  .mpg-hero {
    background: linear-gradient(135deg, var(--bg-grau) 0%, #fff 100%);
    padding: 80px 30px 70px;
    border-bottom: 1px solid var(--linie);
  }
  .mpg-hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .mpg-hero h1 {
    font-size: 52px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--blau-tief);
  }
  .mpg-hero h1 strong { font-weight: 700; color: var(--blau); }
  .mpg-hero-lead {
    font-size: 18px;
    color: var(--text-leise);
    margin-bottom: 28px;
    line-height: 1.6;
    max-width: 560px;
  }
  .mpg-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
  .btn-akzent {
    background: var(--akzent);
    color: #fff;
    border-color: var(--akzent);
    font-weight: 700;
    padding: 16px 32px;
    font-size: 14px;
  }
  .btn-akzent:hover {
    background: var(--akzent-dunkel);
    border-color: var(--akzent-dunkel);
  }
  .mpg-hero-vertrauen {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--linie);
    font-size: 13px;
    color: var(--text-leise);
  }
  .mpg-hero-vertrauen-item {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .mpg-hero-vertrauen-item::before {
    content: "✓";
    color: var(--erfolg);
    font-weight: 700;
    font-size: 16px;
  }

  /* Hero-Visual mit Pflegegutachten-Cover als visueller Anker */
  .mpg-hero-visual {
    text-align: center;
    position: relative;
  }
  .mpg-hero-visual img {
    max-width: 240px;
    height: auto;
    filter: drop-shadow(0 14px 36px rgba(0,0,0,0.18));
  }
  .mpg-hero-visual-text {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-leise);
    font-style: italic;
  }
  .mpg-hero-visual-text strong { color: var(--blau-tief); font-style: normal; }

  @media (max-width: 900px) {
    .mpg-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .mpg-hero h1 { font-size: 36px; }
  }

  /* Wann-lohnt-sich-Sektion */
  .wann-lohnt {
    background: #fff;
    padding: 90px 30px;
    border-bottom: 1px solid var(--linie);
  }
  .wann-lohnt-inner {
    max-width: 920px;
    margin: 0 auto;
  }
  .wann-lohnt h2 {
    font-size: 32px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.25;
    color: var(--blau-tief);
  }
  .wann-lohnt h2 strong { font-weight: 700; color: var(--blau); }
  .wann-lohnt-liste {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .wann-lohnt-item {
    background: var(--bg-grau);
    padding: 28px;
    border-left: 3px solid var(--blau);
  }
  .wann-lohnt-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--blau-tief);
    margin-bottom: 8px;
  }
  .wann-lohnt-item p {
    font-size: 14px;
    color: var(--text-leise);
    line-height: 1.55;
  }

  @media (max-width: 720px) {
    .wann-lohnt-liste { grid-template-columns: 1fr; }
  }

  /* Ablauf in Schritten */
  .ablauf {
    background: var(--bg-grau);
    padding: 90px 30px;
  }
  .ablauf-inner {
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .ablauf h2 {
    font-size: 32px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.25;
    color: var(--blau-tief);
  }
  .ablauf h2 strong { font-weight: 700; color: var(--blau); }
  .ablauf-schritte {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    counter-reset: schritt;
  }
  .ablauf-schritt {
    background: #fff;
    padding: 28px 20px;
    border: 1px solid var(--linie);
    text-align: center;
    position: relative;
  }
  .ablauf-schritt-nr {
    width: 44px;
    height: 44px;
    background: var(--blau);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 16px;
  }
  .ablauf-schritt h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--blau-tief);
    margin-bottom: 8px;
    line-height: 1.3;
  }
  .ablauf-schritt p {
    font-size: 13px;
    color: var(--text-leise);
    line-height: 1.5;
  }

  @media (max-width: 900px) {
    .ablauf-schritte { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 500px) {
    .ablauf-schritte { grid-template-columns: 1fr; }
  }

  /* Pakete-Vergleich */
  .pakete {
    background: #fff;
    padding: 90px 30px;
  }
  .pakete-inner {
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .pakete h2 {
    font-size: 32px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.25;
    color: var(--blau-tief);
  }
  .pakete h2 strong { font-weight: 700; color: var(--blau); }
  .pakete-untertitel {
    text-align: center;
    color: var(--text-leise);
    margin-bottom: 60px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }
  .pakete-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .paket {
    background: #fff;
    border: 1px solid var(--linie);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.25s;
  }
  .paket:hover {
    border-color: var(--blau);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,79,158,0.10);
  }
  .paket-empfehlung {
    border: 2px solid var(--blau);
    position: relative;
  }
  .paket-empfehlung::before {
    content: "Empfehlung";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blau);
    color: #fff;
    padding: 4px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  .paket-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--blau-tief);
    margin-bottom: 4px;
  }
  .paket-untertitel {
    font-size: 13px;
    color: var(--text-leise);
    margin-bottom: 24px;
  }
  .paket-preis {
    font-size: 38px;
    font-weight: 300;
    color: var(--blau);
    margin-bottom: 4px;
  }
  .paket-preis strong { font-weight: 700; }
  .paket-preis-hinweis {
    font-size: 12px;
    color: var(--text-leise);
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--linie);
  }
  .paket-leistungen {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    flex-grow: 1;
  }
  .paket-leistungen li {
    padding: 8px 0 8px 28px;
    font-size: 14px;
    color: var(--text);
    position: relative;
    line-height: 1.55;
  }
  .paket-leistungen li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--erfolg);
    font-weight: 700;
    font-size: 16px;
  }
  .paket-leistungen li.gestrichen {
    color: #aaa;
  }
  .paket-leistungen li.gestrichen::before {
    content: "—";
    color: #ccc;
  }
  .paket-cta {
    display: block;
    text-align: center;
    padding: 14px;
    background: var(--blau);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 13px;
    transition: background 0.2s;
  }
  .paket-cta:hover {
    background: var(--blau-dunkel);
  }
  .paket-empfehlung .paket-cta {
    background: var(--akzent);
  }
  .paket-empfehlung .paket-cta:hover {
    background: var(--akzent-dunkel);
  }
  .pakete-express-hinweis {
    background: var(--akzent-hell);
    border-left: 3px solid var(--akzent);
    padding: 20px 24px;
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: var(--blau-tief);
  }
  .pakete-express-hinweis strong { color: var(--akzent-dunkel); }

  @media (max-width: 900px) {
    .pakete-grid { grid-template-columns: 1fr; gap: 30px; }
    .paket-empfehlung { margin-top: 14px; }
  }

  /* Anbieter-Vorstellung */
  .mpg-anbieter {
    background: var(--blau);
    color: #fff;
    padding: 90px 30px;
  }
  .mpg-anbieter-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: center;
  }
  .mpg-anbieter-bild {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
  }
  .mpg-anbieter-bild img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
  }
  .mpg-anbieter h2 {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 24px;
    color: #fff;
  }
  .mpg-anbieter h2 strong { font-weight: 700; }
  .mpg-anbieter p {
    color: #d5dff0;
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.7;
  }
  .mpg-anbieter-quali {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 13px;
    color: #b8c9e3;
    line-height: 1.9;
  }
  .mpg-anbieter-link {
    display: inline-block;
    margin-top: 20px;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 3px;
  }
  .mpg-anbieter-link:hover { border-bottom-color: #fff; }

  @media (max-width: 900px) {
    .mpg-anbieter-inner { grid-template-columns: 1fr; gap: 40px; }
    .mpg-anbieter-bild { max-width: 320px; aspect-ratio: 1/1; }
    .mpg-anbieter h2 { font-size: 26px; }
  }

  /* FAQ */
  .faq {
    max-width: 820px;
    margin: 0 auto;
    padding: 90px 30px;
  }
  .faq h2 {
    font-size: 32px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.25;
    color: var(--blau-tief);
  }
  .faq h2 strong { font-weight: 700; color: var(--blau); }
  .faq-item {
    border-bottom: 1px solid var(--linie);
  }
  .faq-item:first-child {
    border-top: 1px solid var(--linie);
  }
  .faq-frage {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 40px 22px 0;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--blau-tief);
    text-align: left;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
  }
  .faq-frage:hover {
    color: var(--blau);
  }
  .faq-frage::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: var(--blau);
    transition: transform 0.2s;
  }
  .faq-item[open] .faq-frage::after {
    content: "−";
  }
  .faq-antwort {
    padding: 0 40px 22px 0;
    font-size: 15px;
    color: var(--text-leise);
    line-height: 1.7;
  }
  .faq-antwort p {
    margin-bottom: 12px;
  }
  .faq-antwort p:last-child {
    margin-bottom: 0;
  }

  /* Schluss-CTA */
  .schluss-cta {
    background: linear-gradient(135deg, var(--akzent-hell) 0%, #fff 100%);
    padding: 80px 30px;
    text-align: center;
  }
  .schluss-cta h2 {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--blau-tief);
  }
  .schluss-cta h2 strong { font-weight: 700; color: var(--akzent-dunkel); }
  .schluss-cta p {
    font-size: 17px;
    color: var(--text-leise);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
  }

  /* "Ein Angebot von..." Hinweis */
  .mutter-hinweis {
    background: #fff;
    padding: 24px 30px;
    text-align: center;
    border-top: 1px solid var(--linie);
    font-size: 13px;
    color: var(--text-leise);
  }
  .mutter-hinweis a {
    color: var(--blau);
    border-bottom: 1px solid var(--blau);
    font-weight: 500;
  }
