:root {
  --font-family: "Epilogue", sans-serif;
  --font-size-base: 16.5px;
  --line-height-base: 1.64;

  --max-w: 1420px;
  --space-x: 1.96rem;
  --space-y: 1.5rem;
  --gap: 1.6rem;

  --radius-xl: 1.19rem;
  --radius-lg: 0.8rem;
  --radius-md: 0.54rem;
  --radius-sm: 0.27rem;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.14);
  --shadow-md: 0 12px 18px rgba(0,0,0,0.18);
  --shadow-lg: 0 16px 32px rgba(0,0,0,0.22);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 270ms;
  --anim-ease: cubic-bezier(0.4,0,0.2,1);
  --random-number: 2;

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

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

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

  --bg-alt: #F3F4F6;
  --fg-on-alt: #1F2937;

  --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: #F97316;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #EA580C;

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

  --gradient-hero: linear-gradient(135deg, #1E3A5F 0%, #2563EB 100%);
  --gradient-accent: linear-gradient(135deg, #F97316 0%, #EA580C 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 Basis */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}

/* Sticky bei Scroll (via JS Klasse) */
.site-header.scrolled {
  background: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
}

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

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

.logo:hover {
  color: var(--accent, #ff6f00);
}

/* Navigation */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap, 24px);
}

.nav-list a {
  text-decoration: none;
  color: var(--fg-on-page, #1a1a1a);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent, #ff6f00);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--accent, #ff6f00);
}

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

/* 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: 8px;
  gap: 5px;
  z-index: 1001;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-page, #1a1a1a);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

/* Burger aktiv */
.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

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

/* Mobile */
@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 320px;
    height: 100vh;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-lg, 0 8px 30px rgba(0,0,0,0.12));
    padding: 80px 24px 24px;
    transition: right var(--anim-duration) var(--anim-ease);
    overflow-y: auto;
  }

  .nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .nav-list a {
    display: block;
    padding: 16px 0;
    font-size: 1.125rem;
  }

  .nav-list a::after {
    display: none;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2d2d4a;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    margin-bottom: 15px;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: #c0c0d0;
  }
  .contact-item svg {
    flex-shrink: 0;
    color: #f0a500;
  }
  .contact-item a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .legal-links a {
    color: #a0a0b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer p {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 5px 0;
    line-height: 1.5;
  }
  .footer-copyright p {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 5px 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-bottom {
      flex-direction: column;
    }
    .footer-contact address {
      flex-direction: column;
      gap: 10px;
    }
    .legal-links {
      flex-direction: column;
      gap: 8px;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

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

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.wp-lang-switcher-v5 {
        position: fixed;
        right: clamp(16px, 2vw, var(--space-x, 24px));
        bottom: clamp(16px, 2vw, var(--space-y, 20px));
        z-index: 99999;

        --local-random: var(--random-number, 1);
    }

    .wp-lang-switcher-v5__btn {
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        padding: calc(8px + var(--local-random) * 1px) calc(12px + var(--local-random) * 2px);
        border: 1px solid var(--border-on-surface, #e5e7eb);
        border-radius: calc(var(--radius-md, 12px) - var(--local-random) * 1px);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: var(--shadow-sm, 0 2px 4px rgba(0, 0, 0, 0.05));
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);

        font-size: 14px;
        font-weight: 500;
    }

    .wp-lang-switcher-v5__btn:hover {
        background: var(--bg-alt, #f9fafb);
        border-color: var(--neutral-300, #d1d5db);
        box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.08));
    }

    .wp-lang-switcher-v5__current {
        color: var(--fg-on-surface, #111827);
        font-weight: 600;
        letter-spacing: calc(0.3px + var(--local-random) * 0.1px);
    }

    .wp-lang-switcher-v5__arrow {
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        color: var(--neutral-600, #4b5563);
    }

    .wp-lang-switcher-v5__panel.open ~ .wp-lang-switcher-v5__btn .wp-lang-switcher-v5__arrow,
    .wp-lang-switcher-v5__btn:has(~ .wp-lang-switcher-v5__panel.open) .wp-lang-switcher-v5__arrow {
        transform: rotate(180deg);
    }

    .wp-lang-switcher-v5__panel {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 6px);
        background: var(--surface-1, #fff);
        border: 1px solid var(--border-on-surface, #e5e7eb);
        border-radius: calc(var(--radius-md, 12px) + var(--local-random) * 1px);
        box-shadow: var(--shadow-lg, 0 8px 24px rgba(0, 0, 0, 0.12));
        min-width: calc(160px + var(--local-random) * 10px);
        overflow: hidden;

        transform: translateY(4px);
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
    }

    .wp-lang-switcher-v5__panel.open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .wp-lang-switcher-v5__panel button,
    .wp-lang-switcher-v5__panel a {
        width: 100%;
        text-align: left;
        padding: calc(10px + var(--local-random) * 1px) calc(14px + var(--local-random) * 2px);
        border: 0;
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        cursor: pointer;

        font-size: 14px;
        transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        border-bottom: 1px solid var(--neutral-100, #f9fafb);
        text-decoration: none;
        display: block;
    }

    .wp-lang-switcher-v5__panel button:last-child,
    .wp-lang-switcher-v5__panel a:last-child {
        border-bottom: none;
    }

    .wp-lang-switcher-v5__panel button:hover,
    .wp-lang-switcher-v5__panel a:hover {
        background: var(--bg-alt, #f9fafb);
        color: var(--bg-primary, #3b82f6);
    }

.hero-arc-v6 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .hero-arc-v6 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: calc(var(--gap) * 1.5);
    }

    .hero-arc-v6 .top {
        display: grid;
        grid-template-columns:1fr minmax(260px, .82fr);
        gap: var(--gap);
        align-items: stretch;
    }

    .hero-arc-v6 .copy {
        padding: calc(var(--space-y) * 1.2);
        border-radius: var(--radius-xl);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        display: grid;
        align-content: center;
        gap: var(--gap);
    }

    .hero-arc-v6 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.3vw, 3.5rem);
        line-height: 1.1;
    }

    .hero-arc-v6 .subtitle {
        margin: 0;
        max-width: 50ch;
        color: var(--fg-on-surface-light);
    }

    .hero-arc-v6 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .7rem;
    }

    .hero-arc-v6 .actions a {
        padding: .64rem .95rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        transition: background var(--anim-duration) var(--anim-ease);
    }

    .hero-arc-v6 .actions a:hover {
        background: var(--bg-primary-hover);
    }

    .hero-arc-v6 .actions a:nth-child(even) {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border: 1px solid var(--border-on-surface);
    }

    .hero-arc-v6 .image {
        overflow: hidden;
        border-radius: var(--radius-xl);
    }

    .hero-arc-v6 img {
        width: 100%;
        height: 100%;
        min-height: 300px;
        object-fit: cover;
        display: block;
    }

    .hero-arc-v6 .bottom {
        display: grid;
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v6 .bottom article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        box-shadow: var(--shadow-sm);
    }

    .hero-arc-v6 .bottom p {
        margin: .3rem 0 0;
        opacity: .92;
    }

    @media (max-width: 960px) {
        .hero-arc-v6 .top {
            grid-template-columns:1fr;
        }

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

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

    .next-ux15 {
        padding: clamp(3.3rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

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

    .next-ux15__mast {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1.1rem;
    }

    .next-ux15__mast p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

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

    .next-ux15__mast a {
        display: inline-flex;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

    .next-ux15__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .next-ux15__list i {
        font-style: normal;
        display: inline-flex;
        width: 2.3rem;
        height: 2.3rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, .16);
    }

    .next-ux15__list h3 {
        margin: .8rem 0 .35rem;
        font-size: 1.04rem;
    }

    .next-ux15__list p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-ux15__list a {
        display: inline-block;
        margin-top: .75rem;
        color: var(--bg-accent);
        text-decoration: none;
        font-weight: 600;
    }

    /* macro-bg:next-ux15__wrap */
    .next-ux15 {
        overflow: hidden;
    }

    .next-ux15__wrap {
        background-image: linear-gradient(rgba(0, 0, 0, .88), rgba(17, 24, 39, .88)), url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--space-y);
    }

.education-struct-light-v13 {
    padding: calc(var(--space-y) * 2) var(--space-x);
    background: var(--neutral-100);
    color: var(--neutral-900);
}

.education-struct-light-v13__shell {
    max-width: var(--max-w);
    margin: 0 auto;
}

.education-struct-light-v13__table {
    display: grid;
    gap: .55rem;
}

.education-struct-light-v13__row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .6rem;
    background: var(--neutral-0);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-lg);
    padding: .85rem;
    color: var(--neutral-800);
}

.education-struct-light-v13__row span {
    min-width: 0;
    word-break: break-word;
}

.education-struct-light-v13__row--head {
    background: var(--neutral-0);
    color: var(--neutral-900);
    font-weight: 700;
}

@media (max-width: 680px) {
    .education-struct-light-v13__row {
        grid-template-columns: 1fr;
    }
}

.touch-stream {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .touch-stream .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .touch-stream .touch-header {
        margin-bottom: 12px;
    }

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

    .touch-stream .touhc-header p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .touch-stream .stream {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 8px;
    }

    .touch-stream .chip {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: 999px;
        background: rgba(255, 255, 255, .12);
        padding: 10px 12px;
        display: flex;
        gap: 8px;
        align-items: center;
        justify-content: space-between;
    }

    .touch-stream .chip em {
        font-style: normal;
        opacity: .85;
    }

    .touch-stream .foot {
        margin-top: 12px;
    }

    .touch-stream .foot a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .45);
        border-radius: var(--radius-md);
        padding: 10px 14px;
        display: inline-block;
    }

.visual-column-l6 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .visual-column-l6__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .visual-column-l6__head {
        margin-bottom: 1rem;
    }

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

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

    .visual-column-l6__list {
        display: grid;
        gap: .8rem;
    }

    .visual-column-l6__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .visual-column-l6__meta {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        margin-bottom: .8rem;
    }

    .visual-column-l6__meta span {
        color: var(--neutral-600);
    }

    .visual-column-l6__content {
        display: grid;
        grid-template-columns: 13rem 1fr;
        gap: 1rem;
        align-items: center;
    }

    .visual-column-l6__content img {
        display: block;
        width: 100%;
        height: 10rem;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .visual-column-l6__content small {
        color: var(--neutral-600);
    }

    .visual-column-l6__content h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-column-l6__content p {
        margin: 0;
        color: var(--neutral-600);
    }

    @media (max-width: 680px) {
        .visual-column-l6__content {
            grid-template-columns: 1fr;
        }
    }

/* Header Basis */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}

/* Sticky bei Scroll (via JS Klasse) */
.site-header.scrolled {
  background: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
}

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

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

.logo:hover {
  color: var(--accent, #ff6f00);
}

/* Navigation */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap, 24px);
}

.nav-list a {
  text-decoration: none;
  color: var(--fg-on-page, #1a1a1a);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent, #ff6f00);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--accent, #ff6f00);
}

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

/* 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: 8px;
  gap: 5px;
  z-index: 1001;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-page, #1a1a1a);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

/* Burger aktiv */
.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

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

/* Mobile */
@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 320px;
    height: 100vh;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-lg, 0 8px 30px rgba(0,0,0,0.12));
    padding: 80px 24px 24px;
    transition: right var(--anim-duration) var(--anim-ease);
    overflow-y: auto;
  }

  .nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .nav-list a {
    display: block;
    padding: 16px 0;
    font-size: 1.125rem;
  }

  .nav-list a::after {
    display: none;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2d2d4a;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    margin-bottom: 15px;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: #c0c0d0;
  }
  .contact-item svg {
    flex-shrink: 0;
    color: #f0a500;
  }
  .contact-item a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .legal-links a {
    color: #a0a0b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer p {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 5px 0;
    line-height: 1.5;
  }
  .footer-copyright p {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 5px 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-bottom {
      flex-direction: column;
    }
    .footer-contact address {
      flex-direction: column;
      gap: 10px;
    }
    .legal-links {
      flex-direction: column;
      gap: 8px;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

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

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.team-fresh-v2 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .team-fresh-v2 .shell {
        max-width: 920px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .team-fresh-v2 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.1vw, 2.4rem);
    }

    .team-fresh-v2 .list {
        display: grid;
        gap: .75rem;
    }

    .team-fresh-v2 article {
        display: grid;
        grid-template-columns:92px 1fr;
        gap: var(--gap);
        align-items: center;
        padding: .8rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .team-fresh-v2 img {
        width: 92px;
        height: 92px;
        object-fit: cover;
        border-radius: 50%;
    }

    .team-fresh-v2 h3 {
        margin: 0 0 .2rem;
    }

    .team-fresh-v2 .role {
        margin: 0;
        font-weight: 700;
        color: var(--link);
    }

    .team-fresh-v2 .bio {
        margin: .3rem 0 0;
        color: var(--fg-on-surface-light);
    }

    @media (max-width: 620px) {
        .team-fresh-v2 article {
            grid-template-columns:1fr;
        }

        .team-fresh-v2 img {
            border-radius: var(--radius-md);
            width: 100%;
            height: auto;
            aspect-ratio: 4/3;
        }
    }

.faq-fresh-v5 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .faq-fresh-v5 .shell {
        max-width: 840px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .faq-fresh-v5 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.1vw, 2.4rem);
    }

    .faq-fresh-v5 .stack {
        display: grid;
        gap: .75rem;
    }

    .faq-fresh-v5 article {
        padding: 1rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .faq-fresh-v5 h3 {
        margin: 0 0 .5rem;
        font-size: 1rem;
    }

    .faq-fresh-v5 p {
        margin: 0;
        opacity: .88;
    }

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

    .identity-ux20 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .identity-ux20__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: var(--gap);
        align-items: start;
    }

    .identity-ux20__img img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
        border: 1px solid var(--neutral-300);
    }

    .identity-ux20__body h2 {
        margin: 0 0 6px;
        font-size: clamp(28px, 4vw, 40px);
    }

    .identity-ux20__body h3 {
        margin: 0 0 10px;
        color: var(--brand);
        font-size: 1rem;
    }

    .identity-ux20__body p {
        margin: 0 0 10px;
        color: var(--neutral-600);
    }

    .identity-ux20__body ul {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 6px;
        color: var(--neutral-800);
    }

    @media (max-width: 820px) {
        .identity-ux20__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 Basis */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}

/* Sticky bei Scroll (via JS Klasse) */
.site-header.scrolled {
  background: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
}

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

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

.logo:hover {
  color: var(--accent, #ff6f00);
}

/* Navigation */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap, 24px);
}

.nav-list a {
  text-decoration: none;
  color: var(--fg-on-page, #1a1a1a);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent, #ff6f00);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--accent, #ff6f00);
}

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

/* 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: 8px;
  gap: 5px;
  z-index: 1001;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-page, #1a1a1a);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

/* Burger aktiv */
.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

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

/* Mobile */
@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 320px;
    height: 100vh;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-lg, 0 8px 30px rgba(0,0,0,0.12));
    padding: 80px 24px 24px;
    transition: right var(--anim-duration) var(--anim-ease);
    overflow-y: auto;
  }

  .nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .nav-list a {
    display: block;
    padding: 16px 0;
    font-size: 1.125rem;
  }

  .nav-list a::after {
    display: none;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2d2d4a;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    margin-bottom: 15px;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: #c0c0d0;
  }
  .contact-item svg {
    flex-shrink: 0;
    color: #f0a500;
  }
  .contact-item a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .legal-links a {
    color: #a0a0b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer p {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 5px 0;
    line-height: 1.5;
  }
  .footer-copyright p {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 5px 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-bottom {
      flex-direction: column;
    }
    .footer-contact address {
      flex-direction: column;
      gap: 10px;
    }
    .legal-links {
      flex-direction: column;
      gap: 8px;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

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

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

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

    .hiw-canvas-l8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.4rem;
        align-items: start;
        flex-wrap: wrap;
    }

    .hiw-canvas-l8__media {
        flex: 1 1 18rem;
        order: calc(3 - var(--random-number));
    }

    .hiw-canvas-l8__content {
        flex: 1 1 22rem;
        order: var(--random-number);
    }

    .hiw-canvas-l8__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid var(--neutral-300);
    }

    .hiw-canvas-l8__content p:first-child {
        margin: 0;
        color: var(--neutral-600);
    }

    .hiw-canvas-l8__content h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .hiw-canvas-l8__stack p {
        margin: .8rem 0 0;
        color: var(--neutral-600);
    }

    .hiw-canvas-l8__notes {
        margin-top: 1rem;
        display: flex;
        gap: .65rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .hiw-canvas-l8__notes strong {
        color: var(--brand);
        margin-right: .25rem;
    }

    .hiw-canvas-l8__notes span {
        display: inline-flex;
        padding: .55rem .8rem;
        border-radius: 999px;
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}.plans-ux3{padding:clamp(50px,7vw,92px) clamp(16px,4vw,36px);background:var(--gradient-accent);color:var(--accent-contrast)}.plans-ux3__wrap{max-width:var(--max-w);margin:0 auto}.plans-ux3 p{margin:8px 0 12px;color:rgba(255,255,255,.88)}.plans-ux3__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:10px}.plans-ux3__grid article{border:1px solid rgba(255,255,255,.28);background:rgba(255,255,255,.12);border-radius:var(--radius-lg);padding:12px}.plans-ux3 h3{margin:0}.plans-ux3 ul{margin:8px 0 0;padding-left:18px;display:grid;gap:5px}.plans-ux3 button{width:100%;margin-top:9px;border:0;border-radius:var(--radius-sm);padding:8px 10px;background:var(--bg-primary);color:var(--fg-on-primary)}

.values-ladder-l4 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .values-ladder-l4__wrap {
        max-width: 56rem;
        margin: 0 auto;
    }

    .values-ladder-l4__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

    .values-ladder-l4__head h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .values-ladder-l4__head p {
        margin: .65rem auto 0;
        max-width: 40rem;
        color: var(--neutral-600);
    }

    .values-ladder-l4__rows {
        display: grid;
        gap: .8rem;
    }

    .values-ladder-l4__rows article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .85rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-ladder-l4__step {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        color: var(--brand);
    }

    .values-ladder-l4__rows h3 {
        margin: 0;
    }

    .values-ladder-l4__rows p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

    .values-ladder-l4__rows span {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

.statistics {
    padding: clamp(48px, 8vw, 80px) 0;
    background: var(--gradient-hero);
    color: var(--neutral-0);
}

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

.statistics__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--gap);
    text-align: center;
}

.statistics__card {
    padding: clamp(16px, 3vw, 32px);
}

.statistics__number {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.statistics__label {
    font-size: 1.1rem;
    font-weight: 400;
}

/* Header Basis */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}

/* Sticky bei Scroll (via JS Klasse) */
.site-header.scrolled {
  background: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
}

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

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

.logo:hover {
  color: var(--accent, #ff6f00);
}

/* Navigation */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap, 24px);
}

.nav-list a {
  text-decoration: none;
  color: var(--fg-on-page, #1a1a1a);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent, #ff6f00);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--accent, #ff6f00);
}

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

/* 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: 8px;
  gap: 5px;
  z-index: 1001;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-page, #1a1a1a);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

/* Burger aktiv */
.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

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

/* Mobile */
@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 320px;
    height: 100vh;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-lg, 0 8px 30px rgba(0,0,0,0.12));
    padding: 80px 24px 24px;
    transition: right var(--anim-duration) var(--anim-ease);
    overflow-y: auto;
  }

  .nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .nav-list a {
    display: block;
    padding: 16px 0;
    font-size: 1.125rem;
  }

  .nav-list a::after {
    display: none;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2d2d4a;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    margin-bottom: 15px;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: #c0c0d0;
  }
  .contact-item svg {
    flex-shrink: 0;
    color: #f0a500;
  }
  .contact-item a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .legal-links a {
    color: #a0a0b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer p {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 5px 0;
    line-height: 1.5;
  }
  .footer-copyright p {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 5px 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-bottom {
      flex-direction: column;
    }
    .footer-contact address {
      flex-direction: column;
      gap: 10px;
    }
    .legal-links {
      flex-direction: column;
      gap: 8px;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

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

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.nfform-v12 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--surface-2);
        color: var(--fg-on-page);
    }

    .nfform-v12__form {
        max-width: 760px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

    .nfform-v12 h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--neutral-900);
    }

    .nfform-v12 p {
        margin: 0;
        color: var(--neutral-600);
    }

    .nfform-v12 label {
        display: grid;
        gap: 6px;
    }

    .nfform-v12 input:not([type='checkbox']),
    .nfform-v12 textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 9px;
        font: inherit;
    }

    .nfform-v12__agree {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nfform-v12 button {
        justify-self: start;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

.nfcontacts-v9 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(145deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
    }

    .nfcontacts-v9__wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .nfcontacts-v9 h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 42px);
    }

    .nfcontacts-v9__subtitle {
        margin: 0;
        opacity: .92;
    }

    .nfcontacts-v9__list {
        display: grid;
        gap: 10px;
    }

    .nfcontacts-v9__list article {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        padding: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .28);
        background: rgba(255, 255, 255, .1);
    }

    .nfcontacts-v9__label {
        margin: 0;
        opacity: .86;
    }

    .nfcontacts-v9__value {
        margin: 4px 0 0;
        font-weight: 700;
    }

    .nfcontacts-v9__list a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        white-space: nowrap;
    }

    @media (max-width: 700px) {
        .nfcontacts-v9__list article {
            flex-direction: column;
            align-items: flex-start;
        }
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}.clar-ux10{padding:clamp(20px,3vw,44px);background:var(--neutral-100);color:var(--neutral-900)}.clar-ux10__wrap{max-width:var(--max-w);margin:0 auto}.clar-ux10 h2{margin:0 0 12px}.clar-ux10 ol{margin:0;padding:0;list-style:none;counter-reset:c;display:grid;gap:10px}.clar-ux10 li{counter-increment:c;border:1px solid var(--neutral-300);border-radius:var(--radius-md);background:var(--neutral-0);padding:12px;position:relative}.clar-ux10 li::before{content:counter(c);position:absolute;right:10px;top:10px;width:24px;height:24px;border-radius:999px;background:var(--bg-primary);color:var(--fg-on-primary);display:grid;place-items:center;font-size:.75rem}.clar-ux10 h3{margin:0 0 6px}.clar-ux10 p{margin:0;color:var(--neutral-800)}

/* Header Basis */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}

/* Sticky bei Scroll (via JS Klasse) */
.site-header.scrolled {
  background: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
}

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

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

.logo:hover {
  color: var(--accent, #ff6f00);
}

/* Navigation */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap, 24px);
}

.nav-list a {
  text-decoration: none;
  color: var(--fg-on-page, #1a1a1a);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent, #ff6f00);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--accent, #ff6f00);
}

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

/* 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: 8px;
  gap: 5px;
  z-index: 1001;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-page, #1a1a1a);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

/* Burger aktiv */
.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

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

/* Mobile */
@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 320px;
    height: 100vh;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-lg, 0 8px 30px rgba(0,0,0,0.12));
    padding: 80px 24px 24px;
    transition: right var(--anim-duration) var(--anim-ease);
    overflow-y: auto;
  }

  .nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .nav-list a {
    display: block;
    padding: 16px 0;
    font-size: 1.125rem;
  }

  .nav-list a::after {
    display: none;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2d2d4a;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    margin-bottom: 15px;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: #c0c0d0;
  }
  .contact-item svg {
    flex-shrink: 0;
    color: #f0a500;
  }
  .contact-item a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .legal-links a {
    color: #a0a0b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer p {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 5px 0;
    line-height: 1.5;
  }
  .footer-copyright p {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 5px 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-bottom {
      flex-direction: column;
    }
    .footer-contact address {
      flex-direction: column;
      gap: 10px;
    }
    .legal-links {
      flex-direction: column;
      gap: 8px;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

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

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.policy-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .policy-layout-d .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

    .policy-layout-d .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .policy-layout-d .timeline {
        border-left: 3px solid var(--brand);
        padding-left: 14px;
        display: grid;
        gap: 12px;
    }

    .policy-layout-d article {
        position: relative;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
    }

    .policy-layout-d .meta {
        margin: 0;
        color: var(--brand);
        font-size: .9rem;
        font-weight: 600;
    }

    .policy-layout-d h3 {
        margin: 7px 0;
    }

    .policy-layout-d article p {
        margin: 0;
        color: var(--neutral-600);
    }

/* Header Basis */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}

/* Sticky bei Scroll (via JS Klasse) */
.site-header.scrolled {
  background: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
}

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

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

.logo:hover {
  color: var(--accent, #ff6f00);
}

/* Navigation */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap, 24px);
}

.nav-list a {
  text-decoration: none;
  color: var(--fg-on-page, #1a1a1a);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent, #ff6f00);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--accent, #ff6f00);
}

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

/* 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: 8px;
  gap: 5px;
  z-index: 1001;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-page, #1a1a1a);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

/* Burger aktiv */
.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

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

/* Mobile */
@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 320px;
    height: 100vh;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-lg, 0 8px 30px rgba(0,0,0,0.12));
    padding: 80px 24px 24px;
    transition: right var(--anim-duration) var(--anim-ease);
    overflow-y: auto;
  }

  .nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .nav-list a {
    display: block;
    padding: 16px 0;
    font-size: 1.125rem;
  }

  .nav-list a::after {
    display: none;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2d2d4a;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    margin-bottom: 15px;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: #c0c0d0;
  }
  .contact-item svg {
    flex-shrink: 0;
    color: #f0a500;
  }
  .contact-item a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .legal-links a {
    color: #a0a0b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer p {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 5px 0;
    line-height: 1.5;
  }
  .footer-copyright p {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 5px 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-bottom {
      flex-direction: column;
    }
    .footer-contact address {
      flex-direction: column;
      gap: 10px;
    }
    .legal-links {
      flex-direction: column;
      gap: 8px;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

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

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

    .terms-layout-a .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .terms-layout-a .section-head {
        margin-bottom: 16px;
    }

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

    .terms-layout-a .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .terms-layout-a article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: var(--space-y) var(--space-x);
        margin-bottom: 12px;
    }

    .terms-layout-a h3, .terms-layout-a h4 {
        margin: 0 0 8px;
    }

    .terms-layout-a p, .terms-layout-a li {
        color: var(--neutral-600);
    }

/* Header Basis */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}

/* Sticky bei Scroll (via JS Klasse) */
.site-header.scrolled {
  background: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
}

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

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

.logo:hover {
  color: var(--accent, #ff6f00);
}

/* Navigation */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap, 24px);
}

.nav-list a {
  text-decoration: none;
  color: var(--fg-on-page, #1a1a1a);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent, #ff6f00);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--accent, #ff6f00);
}

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

/* 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: 8px;
  gap: 5px;
  z-index: 1001;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-page, #1a1a1a);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

/* Burger aktiv */
.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

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

/* Mobile */
@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 320px;
    height: 100vh;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-lg, 0 8px 30px rgba(0,0,0,0.12));
    padding: 80px 24px 24px;
    transition: right var(--anim-duration) var(--anim-ease);
    overflow-y: auto;
  }

  .nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .nav-list a {
    display: block;
    padding: 16px 0;
    font-size: 1.125rem;
  }

  .nav-list a::after {
    display: none;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2d2d4a;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    margin-bottom: 15px;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: #c0c0d0;
  }
  .contact-item svg {
    flex-shrink: 0;
    color: #f0a500;
  }
  .contact-item a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .legal-links a {
    color: #a0a0b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer p {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 5px 0;
    line-height: 1.5;
  }
  .footer-copyright p {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 5px 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-bottom {
      flex-direction: column;
    }
    .footer-contact address {
      flex-direction: column;
      gap: 10px;
    }
    .legal-links {
      flex-direction: column;
      gap: 8px;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

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

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.nfthank-v9 {
        padding: clamp(56px, 10vw, 114px) 18px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .nfthank-v9__panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, .24);
        border-radius: var(--radius-lg);
        padding: clamp(30px, 4vw, 44px);
        background: rgba(255, 255, 255, .06);
    }

    .nfthank-v9 h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 54px);
    }

    .nfthank-v9 p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .nfthank-v9 a {
        display: inline-block;
        margin-top: 17px;
        color: var(--accent-contrast);
        text-decoration: none;
        border-bottom: 2px solid var(--accent-contrast);
        padding-bottom: 2px;
    }

/* Header Basis */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}

/* Sticky bei Scroll (via JS Klasse) */
.site-header.scrolled {
  background: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
}

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

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

.logo:hover {
  color: var(--accent, #ff6f00);
}

/* Navigation */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap, 24px);
}

.nav-list a {
  text-decoration: none;
  color: var(--fg-on-page, #1a1a1a);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent, #ff6f00);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--accent, #ff6f00);
}

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

/* 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: 8px;
  gap: 5px;
  z-index: 1001;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-page, #1a1a1a);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

/* Burger aktiv */
.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

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

/* Mobile */
@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 320px;
    height: 100vh;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-lg, 0 8px 30px rgba(0,0,0,0.12));
    padding: 80px 24px 24px;
    transition: right var(--anim-duration) var(--anim-ease);
    overflow-y: auto;
  }

  .nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .nav-list a {
    display: block;
    padding: 16px 0;
    font-size: 1.125rem;
  }

  .nav-list a::after {
    display: none;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2d2d4a;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    margin-bottom: 15px;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: #c0c0d0;
  }
  .contact-item svg {
    flex-shrink: 0;
    color: #f0a500;
  }
  .contact-item a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .legal-links a {
    color: #a0a0b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer p {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 5px 0;
    line-height: 1.5;
  }
  .footer-copyright p {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 5px 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-bottom {
      flex-direction: column;
    }
    .footer-contact address {
      flex-direction: column;
      gap: 10px;
    }
    .legal-links {
      flex-direction: column;
      gap: 8px;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

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

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.err-slab-f {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .err-slab-f .chip {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        position: relative;
    }

    .err-slab-f .chip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background: var(--gradient-accent);
    }

    .err-slab-f h1 {
        margin: 0;
        font-size: clamp(32px, 6vw, 56px);
    }

    .err-slab-f p {
        margin: 12px 0 0;
        color: var(--neutral-600);
    }

    .err-slab-f a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }