:root {
  --font-family: "IBM Plex Sans", sans-serif;
  --font-size-base: 15.5px;
  --line-height-base: 1.91;

  --max-w: 1060px;
  --space-x: 2.18rem;
  --space-y: 1.5rem;
  --gap: 0.81rem;

  --radius-xl: 1.38rem;
  --radius-lg: 1rem;
  --radius-md: 0.7rem;
  --radius-sm: 0.3rem;

  --shadow-sm: 0 0px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 5px 18px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 28px rgba(0,0,0,0.08);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 460ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 1;

  --brand: #1E3A5F;
  --brand-contrast: #FFFFFF;
  --accent: #FF6B35;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D5DB;
  --neutral-600: #6B7280;
  --neutral-800: #1F2937;
  --neutral-900: #111827;

  --bg-page: #FFFFFF;
  --fg-on-page: #1F2937;

  --bg-alt: #F0F4F8;
  --fg-on-alt: #374151;

  --surface-1: #FFFFFF;
  --surface-2: #F9FAFB;
  --fg-on-surface: #1F2937;
  --border-on-surface: #E5E7EB;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #E5E7EB;

  --bg-primary: #2563EB;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1D4ED8;
  --ring: #2563EB;

  --bg-accent: #FF6B35;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #E55A2B;

  --link: #2563EB;
  --link-hover: #1D4ED8;

  --gradient-hero: linear-gradient(135deg, #1E3A5F 0%, #2563EB 100%);
  --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.68);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}

/* Header Grundstruktur */
  header {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 1rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Obere Reihe */
  .header-top {
    padding: var(--space-y, 0.75rem) 0;
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .header-top .header-inner {
    gap: var(--gap, 1rem);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }

  .header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }

  .contact-item {
    font-size: var(--font-size-base, 1rem);
    color: var(--neutral-600, #666);
    white-space: nowrap;
  }

  .cta-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent, #ff5722);
    color: var(--accent-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover, #e64a19);
  }

  /* Burger-Button */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Untere Reihe – Navigation */
  .header-bottom {
    background: var(--surface-2, #f5f5f5);
  }

  .header-bottom .header-inner {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    color: var(--neutral-800, #333);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-base, 1rem);
    position: relative;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--brand, #1a73e8);
    border-radius: var(--radius-sm, 4px);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a:hover {
    color: var(--brand, #1a73e8);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  /* Mobile Ansicht */
  @media (max-width: 767px) {
    .header-contact {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-bottom {
      position: relative;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }

    .nav.open {
      max-height: 500px;
    }

    .nav-list {
      flex-direction: column;
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
      gap: 0;
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

  /* Tablet+ */
  @media (min-width: 768px) {
    .nav {
      display: block !important;
      max-height: none !important;
      position: static;
      box-shadow: none;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    margin-bottom: 20px;
  }
  .top-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .footer-brand {
    margin-bottom: 10px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .middle-row .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  .middle-row .footer-contact li {
    color: #bdc3c7;
  }
  .bottom-row {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
  }
  .footer-legal p {
    margin: 5px 0;
    color: #95a5a6;
    font-size: 0.9rem;
  }
  .footer-legal a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-style: italic;
    font-size: 0.85rem;
    margin-top: 10px;
    color: #7f8c8d;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .middle-row .footer-contact ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.nflang-v10 {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
    }

    .nflang-v10__btn {
        border: 1px solid rgba(255, 255, 255, .28);
        border-radius: 999px;
        background: linear-gradient(145deg, #111827, #1f2937);
        color: #f9fafb;
        box-shadow: var(--shadow-lg);
        padding: 9px 14px;
        min-width: 56px;
        cursor: pointer;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .08em;
    }

    .nflang-v10__dropdown {
        position: absolute;
        bottom: 52px;
        left: 50%;
        transform: translate(-50%, 10px);
        opacity: 0;
        pointer-events: none;
        display: flex;
        gap: 6px;
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .nflang-v10__dropdown.open {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }

    .nflang-v10__dropdown button,
    .nflang-v10__dropdown a {
        width: 42px;
        height: 34px;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(255, 255, 255, .28);
        background: rgba(17, 24, 39, .92);
        color: #e5e7eb;
        text-decoration: none;
        font-size: 11px;
        font-weight: 700;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .nflang-v10__dropdown button:hover,
    .nflang-v10__dropdown a:hover {
        background: #38bdf8;
        border-color: transparent;
        color: #06263a;
    }

.hero {
        position: relative;
        min-height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--fg-on-primary);
        overflow: hidden;
    }

    .hero__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
    }

    .hero__overlay {
        position: absolute;
        inset: 0;
        background: var(--gradient-hero);
        opacity: 0.7;
        z-index: -1;
    }

    .hero__content {
        max-width: 900px;
        padding: clamp(16px, 3vw, 32px);
        z-index: 1;
    }

    .hero h1 {
        font-size: clamp(28px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: var(--space-y);
        text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }

    .hero p {
        font-size: clamp(16px, 2.5vw, 20px);
        font-weight: 400;
        margin: 0 auto calc(var(--space-y) * 1.5);
        max-width: 700px;
    }

    .hero__actions {
        display: flex;
        gap: var(--gap);
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero__btn {
        display: inline-block;
        padding: 12px 30px;
        border-radius: var(--radius-md);
        font-weight: 500;
        text-align: center;
        transition: all var(--anim-duration) var(--anim-ease);
        cursor: pointer;
        border: 1px solid transparent;
        font-size: 1rem;
    }

    .hero__btn--primary {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .hero__btn--primary:hover {
        background-color: var(--bg-primary-hover);
        border-color: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .hero__btn--outline {
        background-color: transparent;
        color: var(--fg-on-primary);
        border-color: var(--fg-on-primary);
    }

    .hero__btn--outline:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .next-ux22 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .next-ux22__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-ux22__head {
        margin-bottom: 1.1rem;
    }

    .next-ux22__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .next-ux22__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-ux22__head span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
        max-width: 38rem;
    }

    .next-ux22__pins {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
        gap: var(--gap);
    }

    .next-ux22__pins article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
    }

    .next-ux22__pins div {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--neutral-100);
    }

    .next-ux22__pins h3 {
        margin: .75rem 0 .35rem;
    }

    .next-ux22__pins a {
        color: var(--link);
        text-decoration: none;
    }

    .next-ux22__button {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

.education-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

    .education-struct-v5 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .education-struct-v5 h2, .education-struct-v5 h3, .education-struct-v5 p {
        margin: 0
    }

    .education-struct-v5 a {
        text-decoration: none
    }

    .education-struct-v5 article, .education-struct-v5 .row, .education-struct-v5 details, .education-struct-v5 .program {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .education-struct-v5 .grid, .education-struct-v5 .tiers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .education-struct-v5 .grid a, .education-struct-v5 .tiers a, .education-struct-v5 .cta a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .education-struct-v5 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v5 .path article {
        position: relative;
        padding-left: 1.25rem
    }

    .education-struct-v5 .path article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .55rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .education-struct-v5 .table {
        display: grid;
        gap: .45rem
    }

    .education-struct-v5 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .6rem
    }

    .education-struct-v5 .combo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .education-struct-v5 .mentors {
        display: grid;
        gap: .6rem
    }

    .education-struct-v5 .mentors article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .education-struct-v5 .mentors img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .education-struct-v5 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v5 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v5 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v5 .grid, .education-struct-v5 .tiers, .education-struct-v5 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v5 .grid, .education-struct-v5 .tiers, .education-struct-v5 .combo, .education-struct-v5 .row {
            grid-template-columns:1fr
        }
    }

.why-choose-light-alt {

        background: var(--bg-alt);
        color: var(--fg-on-alt);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
    }

    .why-choose-light-alt .why-choose-light-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .why-choose-light-alt .why-choose-light-alt__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

    }

    .why-choose-light-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-alt);
        position: relative;
        display: inline-block;
    }

    .why-choose-light-alt h2::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
        0%, 100% {
            opacity: 1;
            transform: scaleX(1);
        }
        50% {
            opacity: 0.4;
            transform: scaleX(0.8);
        }
    }

    .why-choose-light-alt .why-choose-light-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

    .why-choose-light-alt .why-choose-light-alt__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2vw, 24px);
    }

    .why-choose-light-alt .why-choose-light-alt__item {
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        align-items: flex-start;

        position: relative;
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .why-choose-light-alt .why-choose-light-alt__wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,
        var(--bg-primary) 0%,
        var(--accent) 50%,
        var(--bg-primary) 100%);
        background-size: 200% 100%;
        animation: wave 3s linear infinite;

        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    @keyframes wave {
        0% {
            background-position: 0% 0%;
        }
        100% {
            background-position: 200% 0%;
        }
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover .why-choose-light-alt__wave {
        opacity: 1;
    }

    .why-choose-light-alt .why-choose-light-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        animation: sparkle 4s ease-in-out infinite;
    }

    @keyframes sparkle {
        0%, 100% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        10% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
        20%, 80% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        90% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
    }

    .why-choose-light-alt .why-choose-light-alt__content {
        flex: 1;
    }

    .why-choose-light-alt .why-choose-light-alt__item h3 {
        font-size: clamp(18px, 2.2vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
        position: relative;
    }

    .why-choose-light-alt .why-choose-light-alt__item h3::before {
        content: '';
        position: absolute;
        left: -12px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        transition: height var(--anim-duration) var(--anim-ease);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover h3::before {
        height: 100%;
    }

    .why-choose-light-alt .why-choose-light-alt__item p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

.nfsocial-v11 {
        padding: clamp(48px, 8vw, 80px) 0;
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .nfsocial-v11__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
    }

    .nfsocial-v11__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: calc(var(--gap) * 2);
        align-items: center;
    }

    .nfsocial-v11__media img {
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        width: 100%;
        display: block;
    }

    .nfsocial-v11__text h2 {
        margin-bottom: var(--space-y);
    }

    .nfsocial-v11__text p {
        margin-bottom: var(--space-y);
        opacity: .92;
    }

    .nfsocial-v11__text a {
        display: inline-block;
        padding: 12px 24px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    @media (max-width: 840px) {
        .nfsocial-v11__grid {
            grid-template-columns: 1fr;
        }
    }

/* Header Grundstruktur */
  header {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 1rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Obere Reihe */
  .header-top {
    padding: var(--space-y, 0.75rem) 0;
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .header-top .header-inner {
    gap: var(--gap, 1rem);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }

  .header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }

  .contact-item {
    font-size: var(--font-size-base, 1rem);
    color: var(--neutral-600, #666);
    white-space: nowrap;
  }

  .cta-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent, #ff5722);
    color: var(--accent-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover, #e64a19);
  }

  /* Burger-Button */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Untere Reihe – Navigation */
  .header-bottom {
    background: var(--surface-2, #f5f5f5);
  }

  .header-bottom .header-inner {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    color: var(--neutral-800, #333);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-base, 1rem);
    position: relative;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--brand, #1a73e8);
    border-radius: var(--radius-sm, 4px);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a:hover {
    color: var(--brand, #1a73e8);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  /* Mobile Ansicht */
  @media (max-width: 767px) {
    .header-contact {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-bottom {
      position: relative;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }

    .nav.open {
      max-height: 500px;
    }

    .nav-list {
      flex-direction: column;
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
      gap: 0;
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

  /* Tablet+ */
  @media (min-width: 768px) {
    .nav {
      display: block !important;
      max-height: none !important;
      position: static;
      box-shadow: none;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    margin-bottom: 20px;
  }
  .top-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .footer-brand {
    margin-bottom: 10px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .middle-row .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  .middle-row .footer-contact li {
    color: #bdc3c7;
  }
  .bottom-row {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
  }
  .footer-legal p {
    margin: 5px 0;
    color: #95a5a6;
    font-size: 0.9rem;
  }
  .footer-legal a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-style: italic;
    font-size: 0.85rem;
    margin-top: 10px;
    color: #7f8c8d;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .middle-row .footer-contact ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .identity-ux16 {
        padding: clamp(54px, 8vw, 98px) clamp(16px, 4vw, 40px);
        background: linear-gradient(145deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
    }

    .identity-ux16__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .identity-ux16__head {
        margin-bottom: 16px;
    }

    .identity-ux16__head span {
        display: inline-flex;
        padding: 4px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.2);
    }

    .identity-ux16__head h2 {
        margin: 8px 0;
        font-size: clamp(30px, 5vw, 50px);
    }

    .identity-ux16__head p {
        margin: 0;
        max-width: 70ch;
        opacity: .92;
    }

    .identity-ux16__list {
        display: grid;
        gap: 10px;
    }

    .identity-ux16__list article {
        display: grid;
        grid-template-columns: 70px 1fr;
        gap: 12px;
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .identity-ux16__list b {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: rgba(15, 23, 42, 0.45);
        color: var(--neutral-0);
        align-self: start;
    }

    .identity-ux16__list h3 {
        margin: 0;
    }

    .identity-ux16__list em {
        display: block;
        margin-top: 4px;
        font-style: normal;
        opacity: .95;
    }

    .identity-ux16__list p {
        margin: 7px 0 0;
        opacity: .9;
    }

    @media (max-width: 640px) {
        .identity-ux16__list article {
            grid-template-columns: 1fr;
        }
    }

.story-column-l4 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .story-column-l4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1rem;
    }

    .story-column-l4__copy p:first-child {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .story-column-l4__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .story-column-l4__copy strong {
        display: block;
        margin-top: .8rem;
    }

    .story-column-l4__copy p {
        color: var(--neutral-600);
    }

    .story-column-l4__stats {
        display: grid;
        gap: .75rem;
    }

    .story-column-l4__stats div {
        padding: .9rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .story-column-l4__stats span {
        display: block;
        margin-top: .25rem;
        color: var(--neutral-600);
    }

    @media (max-width: 820px) {
        .story-column-l4__wrap {
            grid-template-columns: 1fr;
        }
    }

.mission--colored-v5 {

    padding: 64px 20px;
    background: radial-gradient(circle at top left, rgba(16,185,129,0.35), transparent),
                radial-gradient(circle at bottom right, rgba(59,130,246,0.4), transparent),
                var(--neutral-900);
    color: var(--neutral-0);
}

.mission__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: start;
}

.mission__eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(209,250,229,0.9);
    margin: 0 0 0.5rem;
}

.mission__title {
    margin: 0 0 8px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

.mission__text {
    margin: 0;
    color: var(--neutral-200);
    font-size: 0.95rem;
    line-height: 1.7;
}

.mission__pillars {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.mission__pillar {
    border-radius: var(--radius-lg);
    padding: 10px 12px;
    border: 1px solid rgba(148,163,184,0.6);
    background: rgba(15,23,42,0.96);
}

.mission__pillar--impact {
    border-color: var(--accent);
}

.mission__pillar--safety {
    border-color: var(--accent);
}

.mission__pillar--focus {
    border-color: var(--bg-primary);
}

.mission__pillar h3 {
    margin: 0 0 4px;
    font-size: 0.95rem;
    color: var(--brand-contrast);
}

.mission__pillar p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-200);
}

@media (max-width: 768px) {
    .mission__inner {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Header Grundstruktur */
  header {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 1rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Obere Reihe */
  .header-top {
    padding: var(--space-y, 0.75rem) 0;
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .header-top .header-inner {
    gap: var(--gap, 1rem);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }

  .header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }

  .contact-item {
    font-size: var(--font-size-base, 1rem);
    color: var(--neutral-600, #666);
    white-space: nowrap;
  }

  .cta-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent, #ff5722);
    color: var(--accent-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover, #e64a19);
  }

  /* Burger-Button */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Untere Reihe – Navigation */
  .header-bottom {
    background: var(--surface-2, #f5f5f5);
  }

  .header-bottom .header-inner {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    color: var(--neutral-800, #333);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-base, 1rem);
    position: relative;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--brand, #1a73e8);
    border-radius: var(--radius-sm, 4px);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a:hover {
    color: var(--brand, #1a73e8);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  /* Mobile Ansicht */
  @media (max-width: 767px) {
    .header-contact {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-bottom {
      position: relative;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }

    .nav.open {
      max-height: 500px;
    }

    .nav-list {
      flex-direction: column;
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
      gap: 0;
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

  /* Tablet+ */
  @media (min-width: 768px) {
    .nav {
      display: block !important;
      max-height: none !important;
      position: static;
      box-shadow: none;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    margin-bottom: 20px;
  }
  .top-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .footer-brand {
    margin-bottom: 10px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .middle-row .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  .middle-row .footer-contact li {
    color: #bdc3c7;
  }
  .bottom-row {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
  }
  .footer-legal p {
    margin: 5px 0;
    color: #95a5a6;
    font-size: 0.9rem;
  }
  .footer-legal a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-style: italic;
    font-size: 0.85rem;
    margin-top: 10px;
    color: #7f8c8d;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .middle-row .footer-contact ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.capabilities-light-alt {

        background: var(--bg-alt);
        color: var(--fg-on-alt);
        padding: clamp(60px, 8vw, 100px) clamp(16px, 3vw, 40px);
    }

    .capabilities-light-alt .capabilities-light-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .capabilities-light-alt .capabilities-light-alt__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 72px);

    }

    .capabilities-light-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin: 0 0 1rem;
    }

    .capabilities-light-alt .capabilities-light-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

    .capabilities-light-alt .capabilities-light-alt__steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: clamp(24px, 4vw, 48px);
        position: relative;
    }

    .capabilities-light-alt .capabilities-light-alt__step {
        position: relative;

        transform: translateY(30px);
    }

    .capabilities-light-alt .capabilities-light-alt__number {
        width: 56px;
        height: 56px;
        background: var(--brand);
        color: var(--fg-on-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 900;
        margin: 0 auto 1.5rem;
        box-shadow: var(--shadow-md);
        position: relative;
        z-index: 2;
    }

    .capabilities-light-alt .capabilities-light-alt__number::before {
        content: '';
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        background: var(--brand);
        opacity: 0.2;
        animation: ripple 2s ease-out infinite;
    }

    @keyframes ripple {
        0% {
            transform: scale(1);
            opacity: 0.2;
        }
        100% {
            transform: scale(1.5);

        }
    }

    .capabilities-light-alt .capabilities-light-alt__box {
        background: var(--surface-1);
        border: 2px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: clamp(24px, 3vw, 32px);
        text-align: center;
        position: relative;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .capabilities-light-alt .capabilities-light-alt__step:hover .capabilities-light-alt__box {
        border-color: var(--brand);
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .capabilities-light-alt .capabilities-light-alt__box h3 {
        font-size: clamp(20px, 2.5vw, 24px);
        font-weight: 700;
        margin: 0 0 1rem;
        color: var(--fg-on-surface);
    }

    .capabilities-light-alt .capabilities-light-alt__box p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .capabilities-light-alt .capabilities-light-alt__arrow {
        position: absolute;
        bottom: -32px;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
        font-size: 32px;
        color: var(--brand);
        opacity: 0.5;
    }

    .capabilities-light-alt .capabilities-light-alt__step:last-child .capabilities-light-alt__arrow {
        display: none;
    }

    @media (min-width: 768px) {
        .capabilities-light-alt .capabilities-light-alt__arrow {
            bottom: auto;
            top: 50%;
            left: auto;
            right: -40px;
            transform: translateY(-50%) rotate(0deg);
        }
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .plans-cv1 {
        padding: clamp(54px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .plans-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .plans-cv1__head {
        margin-bottom: 16px;
    }

    .plans-cv1__head h2 {
        margin: 0;
        font-size: clamp(30px, 5vw, 48px);
    }

    .plans-cv1__head p {
        margin: 8px 0 0;
        opacity: .9;
        max-width: 72ch;
    }

    .plans-cv1__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .plans-cv1__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.36);
        color: var(--fg-on-page);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
    }

    .plans-cv1__line {
        display: flex;
        justify-content: space-between;
        gap: 8px;
        align-items: center;
    }

    .plans-cv1__line h3 {
        margin: 0;
    }

    .plans-cv1__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .plans-cv1__desc {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .plans-cv1__card ul {
        margin: 10px 0 0;
        padding-left: 18px;
        display: grid;
        gap: 5px;
        color: var(--neutral-800);
    }

    .plans-cv1__card button {
        width: 100%;
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 9px 12px;
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .hiw-ledger-l2 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .hiw-ledger-l2__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

    .hiw-ledger-l2__head {
        text-align: center;
        margin-bottom: 1.2rem;
    }

    .hiw-ledger-l2__head p {
        margin: 0;
        color: var(--neutral-600);
    }

    .hiw-ledger-l2__head h2 {
        margin: .45rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .hiw-ledger-l2__rows {
        display: grid;
        gap: .8rem;
    }

    .hiw-ledger-l2__rows article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
    }

    .hiw-ledger-l2__rows strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        color: var(--brand);
        box-shadow: var(--shadow-sm);
    }

    .hiw-ledger-l2__rows h3 {
        margin: 0;
    }

    .hiw-ledger-l2__rows p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

.about-struct-v4 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-primary);
        color: var(--fg-on-primary)
    }

    .about-struct-v4 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .about-struct-v4 h2, .about-struct-v4 h3, .about-struct-v4 p {
        margin: 0
    }

    .about-struct-v4 .split, .about-struct-v4 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .about-struct-v4 .split img, .about-struct-v4 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v4 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v4 .split div {
        display: grid;
        gap: .5rem
    }

    .about-struct-v4 .cards {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .about-struct-v4 article, .about-struct-v4 .values div, .about-struct-v4 .facts div, .about-struct-v4 .quote, .about-struct-v4 .statement {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v4 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v4 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

    .about-struct-v4 .timeline article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .55rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .about-struct-v4 .values, .about-struct-v4 .facts {
        display: grid;
        gap: .6rem
    }

    .about-struct-v4 .gallery {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .about-struct-v4 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v4 .statement {
        display: grid;
        gap: .5rem
    }

    .about-struct-v4 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem
    }

    .about-struct-v4 .actions a {
        display: inline-flex;
        min-height: 2.4rem;
        padding: 0 .85rem;
        border-radius: var(--radius-sm);
        align-items: center;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    @media (max-width: 900px) {
        .about-struct-v4 .split, .about-struct-v4 .duo, .about-struct-v4 .cards, .about-struct-v4 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .about-struct-v4 .split, .about-struct-v4 .duo, .about-struct-v4 .cards, .about-struct-v4 .gallery {
            grid-template-columns:1fr
        }
    }

/* Header Grundstruktur */
  header {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 1rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Obere Reihe */
  .header-top {
    padding: var(--space-y, 0.75rem) 0;
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .header-top .header-inner {
    gap: var(--gap, 1rem);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }

  .header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }

  .contact-item {
    font-size: var(--font-size-base, 1rem);
    color: var(--neutral-600, #666);
    white-space: nowrap;
  }

  .cta-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent, #ff5722);
    color: var(--accent-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover, #e64a19);
  }

  /* Burger-Button */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Untere Reihe – Navigation */
  .header-bottom {
    background: var(--surface-2, #f5f5f5);
  }

  .header-bottom .header-inner {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    color: var(--neutral-800, #333);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-base, 1rem);
    position: relative;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--brand, #1a73e8);
    border-radius: var(--radius-sm, 4px);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a:hover {
    color: var(--brand, #1a73e8);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  /* Mobile Ansicht */
  @media (max-width: 767px) {
    .header-contact {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-bottom {
      position: relative;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }

    .nav.open {
      max-height: 500px;
    }

    .nav-list {
      flex-direction: column;
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
      gap: 0;
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

  /* Tablet+ */
  @media (min-width: 768px) {
    .nav {
      display: block !important;
      max-height: none !important;
      position: static;
      box-shadow: none;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    margin-bottom: 20px;
  }
  .top-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .footer-brand {
    margin-bottom: 10px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .middle-row .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  .middle-row .footer-contact li {
    color: #bdc3c7;
  }
  .bottom-row {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
  }
  .footer-legal p {
    margin: 5px 0;
    color: #95a5a6;
    font-size: 0.9rem;
  }
  .footer-legal a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-style: italic;
    font-size: 0.85rem;
    margin-top: 10px;
    color: #7f8c8d;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .middle-row .footer-contact ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.form-layout-f {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

    .form-layout-f .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .form-layout-f .section-head {
        margin-bottom: 14px;
        text-align: center;
    }

    .form-layout-f h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .form-layout-f .section-head p {
        margin: 10px auto 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .form-layout-f .boxed {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .form-layout-f .group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .form-layout-f label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
    }

    .form-layout-f input:not([type="checkbox"]), .form-layout-f textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
    }

    .form-layout-f .agree {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .form-layout-f button {
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .form-layout-f .group {
            grid-template-columns: 1fr;
        }
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .support-cv2 {
        padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(140deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .support-cv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .support-cv2__box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: 16px;
    }

    .support-cv2__box h2 {
        margin: 0;
        font-size: clamp(26px, 4vw, 40px);
    }

    .support-cv2__box p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-cv2__box a {
        text-decoration: none;
        white-space: nowrap;
        padding: 10px 16px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .support-cv2__box {
            flex-direction: column;
            align-items: flex-start;
        }
    }

.contacts-fresh-v6 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

    .contacts-fresh-v6 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v6 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3vw, 2.5rem);
    }

    .contacts-fresh-v6 .columns {
        display: flex;
        gap: var(--gap);
        overflow: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: .2rem;
    }

    .contacts-fresh-v6 article {
        min-width: 260px;
        scroll-snap-align: start;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .contacts-fresh-v6 h3 {
        margin: 0 0 .5rem;
    }

    .contacts-fresh-v6 p {
        margin: 0;
    }

    .contacts-fresh-v6 .hint {
        margin: .4rem 0 .8rem;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v6 a {
        text-decoration: none;
        color: var(--link);
        font-weight: 700;
    }

/* Header Grundstruktur */
  header {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 1rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Obere Reihe */
  .header-top {
    padding: var(--space-y, 0.75rem) 0;
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .header-top .header-inner {
    gap: var(--gap, 1rem);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }

  .header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }

  .contact-item {
    font-size: var(--font-size-base, 1rem);
    color: var(--neutral-600, #666);
    white-space: nowrap;
  }

  .cta-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent, #ff5722);
    color: var(--accent-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover, #e64a19);
  }

  /* Burger-Button */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Untere Reihe – Navigation */
  .header-bottom {
    background: var(--surface-2, #f5f5f5);
  }

  .header-bottom .header-inner {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    color: var(--neutral-800, #333);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-base, 1rem);
    position: relative;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--brand, #1a73e8);
    border-radius: var(--radius-sm, 4px);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a:hover {
    color: var(--brand, #1a73e8);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  /* Mobile Ansicht */
  @media (max-width: 767px) {
    .header-contact {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-bottom {
      position: relative;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }

    .nav.open {
      max-height: 500px;
    }

    .nav-list {
      flex-direction: column;
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
      gap: 0;
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

  /* Tablet+ */
  @media (min-width: 768px) {
    .nav {
      display: block !important;
      max-height: none !important;
      position: static;
      box-shadow: none;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    margin-bottom: 20px;
  }
  .top-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .footer-brand {
    margin-bottom: 10px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .middle-row .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  .middle-row .footer-contact li {
    color: #bdc3c7;
  }
  .bottom-row {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
  }
  .footer-legal p {
    margin: 5px 0;
    color: #95a5a6;
    font-size: 0.9rem;
  }
  .footer-legal a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-style: italic;
    font-size: 0.85rem;
    margin-top: 10px;
    color: #7f8c8d;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .middle-row .footer-contact ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.policy-layout-c {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .policy-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .policy-layout-c .section-head {
        margin-bottom: 14px;
    }

    .policy-layout-c h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .policy-layout-c .section-head p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .policy-layout-c .stack {
        display: grid;
        gap: 10px;
    }

    .policy-layout-c article {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, .1);
    }

    .policy-layout-c h3 {
        margin: 0;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .policy-layout-c h3 span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
    }

    .policy-layout-c article p {
        margin: 8px 0 0;
        opacity: .95;
    }

/* Header Grundstruktur */
  header {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 1rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Obere Reihe */
  .header-top {
    padding: var(--space-y, 0.75rem) 0;
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .header-top .header-inner {
    gap: var(--gap, 1rem);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }

  .header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }

  .contact-item {
    font-size: var(--font-size-base, 1rem);
    color: var(--neutral-600, #666);
    white-space: nowrap;
  }

  .cta-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent, #ff5722);
    color: var(--accent-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover, #e64a19);
  }

  /* Burger-Button */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Untere Reihe – Navigation */
  .header-bottom {
    background: var(--surface-2, #f5f5f5);
  }

  .header-bottom .header-inner {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    color: var(--neutral-800, #333);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-base, 1rem);
    position: relative;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--brand, #1a73e8);
    border-radius: var(--radius-sm, 4px);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a:hover {
    color: var(--brand, #1a73e8);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  /* Mobile Ansicht */
  @media (max-width: 767px) {
    .header-contact {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-bottom {
      position: relative;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }

    .nav.open {
      max-height: 500px;
    }

    .nav-list {
      flex-direction: column;
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
      gap: 0;
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

  /* Tablet+ */
  @media (min-width: 768px) {
    .nav {
      display: block !important;
      max-height: none !important;
      position: static;
      box-shadow: none;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    margin-bottom: 20px;
  }
  .top-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .footer-brand {
    margin-bottom: 10px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .middle-row .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  .middle-row .footer-contact li {
    color: #bdc3c7;
  }
  .bottom-row {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
  }
  .footer-legal p {
    margin: 5px 0;
    color: #95a5a6;
    font-size: 0.9rem;
  }
  .footer-legal a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-style: italic;
    font-size: 0.85rem;
    margin-top: 10px;
    color: #7f8c8d;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .middle-row .footer-contact ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.policy-layout-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

    .policy-layout-e .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .policy-layout-e .section-head {
        margin-bottom: 16px;
        text-align: center;
    }

    .policy-layout-e h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .policy-layout-e .section-head p {
        margin: 10px auto 0;
        max-width: 72ch;
        color: var(--neutral-100);
    }

    .policy-layout-e .columns {
        columns: 2 260px;
        column-gap: 14px;
    }

    .policy-layout-e article {
        break-inside: avoid;
        margin-bottom: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 12px;
        background: rgba(255, 255, 255, .05);
    }

    .policy-layout-e h3 {
        margin: 0;
    }

    .policy-layout-e .meta {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

    .policy-layout-e article p:last-child {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

/* Header Grundstruktur */
  header {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 1rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Obere Reihe */
  .header-top {
    padding: var(--space-y, 0.75rem) 0;
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .header-top .header-inner {
    gap: var(--gap, 1rem);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }

  .header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }

  .contact-item {
    font-size: var(--font-size-base, 1rem);
    color: var(--neutral-600, #666);
    white-space: nowrap;
  }

  .cta-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent, #ff5722);
    color: var(--accent-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover, #e64a19);
  }

  /* Burger-Button */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Untere Reihe – Navigation */
  .header-bottom {
    background: var(--surface-2, #f5f5f5);
  }

  .header-bottom .header-inner {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    color: var(--neutral-800, #333);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-base, 1rem);
    position: relative;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--brand, #1a73e8);
    border-radius: var(--radius-sm, 4px);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a:hover {
    color: var(--brand, #1a73e8);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  /* Mobile Ansicht */
  @media (max-width: 767px) {
    .header-contact {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-bottom {
      position: relative;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }

    .nav.open {
      max-height: 500px;
    }

    .nav-list {
      flex-direction: column;
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
      gap: 0;
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

  /* Tablet+ */
  @media (min-width: 768px) {
    .nav {
      display: block !important;
      max-height: none !important;
      position: static;
      box-shadow: none;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    margin-bottom: 20px;
  }
  .top-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .footer-brand {
    margin-bottom: 10px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .middle-row .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  .middle-row .footer-contact li {
    color: #bdc3c7;
  }
  .bottom-row {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
  }
  .footer-legal p {
    margin: 5px 0;
    color: #95a5a6;
    font-size: 0.9rem;
  }
  .footer-legal a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-style: italic;
    font-size: 0.85rem;
    margin-top: 10px;
    color: #7f8c8d;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .middle-row .footer-contact ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.thank-mode-a {
        padding: clamp(56px, 10vw, 110px) 18px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .thank-mode-a .box {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .thank-mode-a h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 52px);
    }

    .thank-mode-a p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .thank-mode-a a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

/* Header Grundstruktur */
  header {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 1rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Obere Reihe */
  .header-top {
    padding: var(--space-y, 0.75rem) 0;
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .header-top .header-inner {
    gap: var(--gap, 1rem);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--brand-contrast, #0d47a1);
  }

  .header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }

  .contact-item {
    font-size: var(--font-size-base, 1rem);
    color: var(--neutral-600, #666);
    white-space: nowrap;
  }

  .cta-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent, #ff5722);
    color: var(--accent-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover, #e64a19);
  }

  /* Burger-Button */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Untere Reihe – Navigation */
  .header-bottom {
    background: var(--surface-2, #f5f5f5);
  }

  .header-bottom .header-inner {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    color: var(--neutral-800, #333);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-base, 1rem);
    position: relative;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--brand, #1a73e8);
    border-radius: var(--radius-sm, 4px);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a:hover {
    color: var(--brand, #1a73e8);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  /* Mobile Ansicht */
  @media (max-width: 767px) {
    .header-contact {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-bottom {
      position: relative;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }

    .nav.open {
      max-height: 500px;
    }

    .nav-list {
      flex-direction: column;
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
      gap: 0;
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

  /* Tablet+ */
  @media (min-width: 768px) {
    .nav {
      display: block !important;
      max-height: none !important;
      position: static;
      box-shadow: none;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px 20px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    margin-bottom: 20px;
  }
  .top-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .footer-brand {
    margin-bottom: 10px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .middle-row .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  .middle-row .footer-contact li {
    color: #bdc3c7;
  }
  .bottom-row {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
  }
  .footer-legal p {
    margin: 5px 0;
    color: #95a5a6;
    font-size: 0.9rem;
  }
  .footer-legal a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-style: italic;
    font-size: 0.85rem;
    margin-top: 10px;
    color: #7f8c8d;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .middle-row .footer-contact ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.nf404-v7 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .nf404-v7__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .nf404-v7 h1 {
        margin: 0;
        font-size: clamp(34px, 6vw, 58px);
    }

    .nf404-v7 p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .nf404-v7 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }