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

    :root {
      --g950: #1a0203;
      --g900: #2d0507;
      --g800: #440a0a;
      --g700: #5f1515;
      --g600: #7b1d1d;
      --g500: #991b1b;
      --g400: #b91c1c;
      --g100: #fecaca;
      --g50:  #fef2f2;
      --red:  #dc2626;
      --red2: #b91c1c;
      --amber:#f59e0b;
      --bg:   #f9fafb;
      --bg2:  #f3f4f6;
      --white:#ffffff;
      --t1:   #111827;
      --t2:   #374151;
      --t3:   #6b7280;
      --t4:   #9ca3af;
      --bd:   #e5e7eb;
      --display: 'Anton', 'Oswald', sans-serif;
      --serif:   'Instrument Serif', 'Georgia', serif;
      --mono:    'JetBrains Mono', 'Courier New', monospace;
      --r-sm: 10px;
      --r-md: 16px;
      --r-lg: 24px;
      --r-xl: 32px;
      --sh-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
      --sh-md: 0 4px 16px rgba(0,0,0,.09), 0 2px 6px rgba(0,0,0,.06);
      --sh-lg: 0 16px 48px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.08);
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--bg);
      color: var(--t1);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      max-width: 100%;
    }

    /* ── TYPOGRAPHY ── */
    .label-tag {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 0.72rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: var(--g500);
      background: var(--g50); border: 1px solid var(--g100);
      padding: 5px 12px; border-radius: 999px;
      margin-bottom: 16px;
    }
    .label-tag.light { color: rgba(255,255,255,.7); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.15); }
    .label-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

    h1,h2,h3,h4 { line-height: 1.15; letter-spacing: -.02em; }

    .section-title {
      font-size: clamp(1.75rem, 4vw, 2.6rem);
      font-weight: 800; color: var(--t1); margin-bottom: 14px;
    }
    .section-title.white { color: #fff; }
    .section-sub {
      font-size: 1.05rem; color: var(--t3); line-height: 1.7;
      max-width: 680px; margin-bottom: 52px;
    }
    .section-sub.white { color: rgba(255,255,255,.65); }

    /* ── LAYOUT ── */
    section { padding: 88px 24px; }
    .inner  { max-width: 1200px; margin: 0 auto; }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: inherit; font-size: .95rem; font-weight: 700;
      padding: 14px 28px; border-radius: var(--r-sm);
      border: none; cursor: pointer; text-decoration: none;
      transition: all .2s cubic-bezier(.22,.61,.36,1);
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--red); color: #fff;
      box-shadow: 0 4px 14px rgba(220,38,38,.35);
    }
    .btn-primary:hover { background: var(--red2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(220,38,38,.4); }
    .btn-ghost {
      background: rgba(255,255,255,.12); color: #fff;
      border: 1.5px solid rgba(255,255,255,.25);
      backdrop-filter: blur(8px);
    }
    .btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
    .btn-outline-dark {
      background: transparent; color: var(--t1);
      border: 1.5px solid var(--bd);
    }
    .btn-outline-dark:hover { border-color: var(--g500); color: var(--g500); background: var(--g50); }
    .btn-lg { padding: 17px 36px; font-size: 1.05rem; }

    /* ── HEADER ── */

    /* ── STICKY WRAPPER ── */
    .top-sticky-wrap {
      position: sticky; top: 0; z-index: 200;
    }

    /* ── HINWEIS BANNER ── */
    .hinweis-banner {
      background: #18181b;
      border-bottom: 3px solid var(--red);
      cursor: pointer; width: 100%;
      box-shadow: 0 2px 16px rgba(0,0,0,.3);
    }
    .hinweis-banner-inner {
      max-width: 1200px; margin: 0 auto; padding: 13px 28px;
      display: flex; align-items: center; gap: 10px;
      color: #e4e4e7; font-size: .88rem; font-weight: 500;
      line-height: 1.5;
    }
    .hinweis-banner-inner::before {
      content: ''; width: 10px; height: 10px; flex-shrink: 0;
      background: var(--red); border-radius: 50%;
      box-shadow: 0 0 6px rgba(220,38,38,.6), 0 0 12px rgba(220,38,38,.3);
      animation: hinweisPulse 1.8s ease-in-out infinite;
    }
    @keyframes hinweisPulse {
      0%, 100% { transform: scale(1); opacity: .8; box-shadow: 0 0 6px rgba(220,38,38,.6); }
      50%      { transform: scale(1.4); opacity: 1; box-shadow: 0 0 16px rgba(220,38,38,.9); }
    }
    .hinweis-banner-inner::after {
      content: 'Zu den Öffnungszeiten ↓'; margin-left: auto; flex-shrink: 0;
      font-size: .76rem; opacity: .55; white-space: nowrap; font-weight: 500;
    }
    @media(max-width:600px){
      .hinweis-banner-inner { font-size: .88rem; padding: 12px 18px; gap: 10px; }
      .hinweis-banner-inner::after { content: '↓ Details'; font-size: .74rem; }
    }

    header {
      background: color-mix(in srgb, #2d0507 88%, transparent);
      backdrop-filter: blur(16px) saturate(1.6);
      border-bottom: 1px solid rgba(255,255,255,.06);
      transition: border-color .3s, box-shadow .3s;
    }
    header.scrolled { border-bottom-color: rgba(255,255,255,.1); box-shadow: 0 4px 24px rgba(0,0,0,.3); }
    .header-inner {
      max-width: 1200px; margin: 0 auto;
      padding: 0 24px; height: 72px;
      display: flex; align-items: center; justify-content: space-between; gap: 24px;
    }
    .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .logo-mark {
      width: 44px; height: 44px; border-radius: 9px;
      background: var(--red); display: flex; align-items: center;
      justify-content: center; font-family: var(--display); font-size: 22px; color: #fff;
    }
    .logo-text { display: flex; flex-direction: column; }
    .logo-name {
      font-size: 1.1rem; font-weight: 800; color: #f4f1ea;
      letter-spacing: .05em; text-transform: uppercase; line-height: 1;
    }
    .logo-name em { color: var(--red); font-style: normal; }
    .logo-sub {
      font-family: var(--mono); font-size: .675rem;
      letter-spacing: .18em; text-transform: uppercase;
      color: rgba(244,241,234,.7); margin-top: 2px;
    }
    nav { display: flex; align-items: center; gap: 4px; }
    nav a {
      color: rgba(255,255,255,.6); text-decoration: none;
      font-size: .92rem; font-weight: 500;
      padding: 10px 15px; border-radius: 7px;
      transition: all .15s; position: relative;
      min-height: 44px; display: inline-flex; align-items: center;
    }
    nav a:hover { color: #fff; }
    nav a::after {
      content: ''; position: absolute; left: 15px; right: 15px; bottom: 4px;
      height: 1px; background: var(--red);
      transform: scaleX(0); transform-origin: left; transition: transform .3s;
    }
    nav a:hover::after { transform: scaleX(1); }
    .nav-meta { display: flex; align-items: center; gap: 14px; }
    .nav-status {
      display: flex; align-items: center; gap: 7px;
      font-family: var(--mono); font-size: .7rem;
      letter-spacing: .08em; text-transform: uppercase;
      color: rgba(244,241,234,.4);
    }
    .nav-status-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: #4ade80;
      box-shadow: 0 0 0 0 rgba(74,222,128,.5);
      animation: pulse-dot 2.5s infinite;
    }
    .nav-cta {
      background: var(--red); color: #fff;
      padding: 12px 22px; border: none; font-family: inherit;
      font-size: .875rem; font-weight: 700; border-radius: 8px;
      cursor: pointer; transition: all .15s; white-space: nowrap;
      display: flex; align-items: center; gap: 6px;
      min-height: 44px;
    }
    .nav-cta:hover { background: var(--red2); transform: translateY(-1px); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 11px; background: none; border: none; }
    .hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; display: block; }

    /* ── HERO ── */
    .hero {
      background: #2d0507;
      padding: 72px 24px 0;
      position: relative; overflow: hidden;
    }
    .hero-video-overlay { display: none; }
    .hero-grid { position: relative; z-index: 2; }
    .hero::before {
      content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background: radial-gradient(circle at 85% 20%, rgba(220,38,38,.09), transparent 50%);
    }
    .hero-grid {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 400px;
      gap: 56px; align-items: center; position: relative; z-index: 1;
      padding-bottom: 56px;
    }
    /* Pill badge */
    .hero-pill {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 14px 8px 12px;
      background: rgba(70,8,8,.8); border: 1px solid rgba(255,255,255,.1);
      border-radius: 999px; margin-bottom: 28px;
      font-family: var(--mono); font-size: .7rem;
      letter-spacing: .14em; text-transform: uppercase; color: #f4f1ea;
      backdrop-filter: blur(8px);
    }
    .hero-pill-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--red);
      box-shadow: 0 0 0 0 rgba(220,38,38,.5);
      animation: pulse-dot 2s infinite;
      flex-shrink: 0;
    }
    @keyframes pulse-dot {
      0%   { box-shadow: 0 0 0 0 rgba(220,38,38,.5); }
      70%  { box-shadow: 0 0 0 8px rgba(220,38,38,0); }
      100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
    }
    .hero h1 {
      font-size: clamp(2.4rem, 5.5vw, 3.8rem);
      font-weight: 800; color: #f4f1ea;
      line-height: 1.06; margin-bottom: 20px;
      letter-spacing: -.025em;
    }
    .hero h1 .accent { color: var(--red); }
    .hero h1 .accent-light { color: #fca5a5; }
    .hero-desc { color: rgba(244,241,234,.6); font-size: 1rem; line-height: 1.7; margin-bottom: 16px; max-width: 52ch; }
    .hero-extra { display: inline-block; background: rgba(192,57,43,.18); border-left: 3px solid #c0392b; color: rgba(244,241,234,.9); font-size: .92rem; line-height: 1.5; padding: 8px 14px; border-radius: 0 6px 6px 0; margin-bottom: 24px; max-width: 52ch; }
    .hero-extra:empty { display: none; }
    .hero-goals {
      list-style: none; margin-bottom: 40px;
      display: flex; flex-direction: column; gap: 11px;
    }
    .hero-goals li {
      display: flex; align-items: center; gap: 12px;
      color: rgba(244,241,234,.85); font-size: .92rem;
    }
    .hero-goals li .chk {
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--red); color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 700; flex-shrink: 0;
    }
    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
    .hero-oeff-link {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 18px;
      font-size: .82rem; font-weight: 600; letter-spacing: .04em;
      color: rgba(244,241,234,.5);
      text-decoration: none;
      text-transform: uppercase;
      transition: color .2s;
      position: relative;
    }
    .hero-oeff-link::after {
      content: ''; position: absolute; bottom: -2px; left: 0;
      width: 0; height: 1px;
      background: rgba(244,241,234,.5);
      transition: width .3s ease;
    }
    .hero-oeff-link::before { content: '↓'; font-size: .75rem; }
    .hero-oeff-link:hover { color: rgba(244,241,234,.85); }
    .hero-oeff-link:hover::after { width: 100%; }

    /* Hero card */
    .hero-card {
      background: rgba(70,8,8,.7);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 18px; padding: 24px;
      backdrop-filter: blur(12px);
      display: flex; flex-direction: column; gap: 18px;
    }
    .hero-card-title {
      font-family: var(--mono); font-size: .68rem;
      font-weight: 500; color: rgba(244,241,234,.4);
      text-transform: uppercase; letter-spacing: .16em;
    }
    .hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .hero-stat {
      background: rgba(75,10,10,.9); border: 1px solid rgba(255,255,255,.07);
      border-radius: 12px; padding: 20px 16px; text-align: center;
      transition: transform .25s ease, border-color .25s ease;
    }
    .hero-stat:hover { transform: translateY(-2px); border-color: #fca5a5; }
    .hero-stat .n {
      font-family: var(--display); font-size: 2.6rem;
      color: #f4f1ea; display: block; line-height: 1; letter-spacing: -.01em;
    }
    .hero-stat .n .plus { color: var(--red); }
    .hero-stat .l {
      font-family: var(--mono); font-size: .65rem;
      letter-spacing: .14em; text-transform: uppercase;
      color: rgba(244,241,234,.4); margin-top: 6px;
    }
    .hero-divider { height: 1px; background: rgba(255,255,255,.08); }
    .hero-trust { display: flex; align-items: center; gap: 10px; }
    .hero-trust-stars { color: var(--red); font-size: .88rem; letter-spacing: 2px; }
    .hero-trust p { font-size: .8rem; color: rgba(244,241,234,.5); }
    .hero-trust p strong { color: rgba(244,241,234,.8); }

    /* ── MARQUEE ── */
    .marquee-bar {
      border-top: 1px solid rgba(255,255,255,.07);
      border-bottom: 1px solid rgba(255,255,255,.07);
      padding: 18px 0; overflow: hidden; white-space: nowrap;
      background: rgba(30,5,5,.6);
    }
    .marquee-track {
      display: inline-flex; gap: 56px;
      animation: marquee 32s linear infinite;
    }
    .marquee-item {
      font-family: var(--display); font-size: 1.5rem;
      letter-spacing: .01em; text-transform: uppercase;
      color: #f4f1ea; flex-shrink: 0;
      display: inline-flex; align-items: center; gap: 56px;
    }
    .marquee-item::after {
      content: ''; width: 8px; height: 8px; border-radius: 50%;
      background: var(--red); flex-shrink: 0;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ── FEATURES ── */
    .features { background: var(--white); }
    .features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
    .feature-card {
      background: var(--bg); border: 1px solid var(--bd);
      border-radius: var(--r-md); padding: 28px 24px;
      transition: all .25s cubic-bezier(.22,.61,.36,1);
    }
    .feature-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: transparent; background: var(--white); }
    .feature-icon-wrap {
      width: 48px; height: 48px; border-radius: 12px;
      background: var(--g50); border: 1px solid var(--g100);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin-bottom: 18px;
    }
    .feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--t1); margin-bottom: 8px; }
    .feature-card p  { font-size: .875rem; color: var(--t3); line-height: 1.65; }

    /* ── STEPS ── */
    .steps { background: var(--bg); }
    .steps-row {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 0; position: relative;
    }
    .steps-row::before {
      content: ''; position: absolute;
      top: 28px; left: 12.5%; right: 12.5%;
      height: 2px;
      background: linear-gradient(90deg, var(--g400) 0%, var(--g100) 100%);
      z-index: 0;
    }
    .step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
    .step-num {
      width: 56px; height: 56px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.15rem; font-weight: 800; margin: 0 auto 20px;
      border: 3px solid var(--white);
    }
    .step:nth-child(1) .step-num { background: var(--g700); color: #fff; box-shadow: 0 0 0 3px var(--g700); }
    .step:nth-child(2) .step-num { background: var(--g500); color: #fff; box-shadow: 0 0 0 3px var(--g500); }
    .step:nth-child(3) .step-num { background: var(--red);  color: #fff; box-shadow: 0 0 0 3px var(--red); }
    .step:nth-child(4) .step-num { background: var(--red2); color: #fff; box-shadow: 0 0 0 3px var(--red2); }
    .step h3 { font-size: .95rem; font-weight: 700; color: var(--t1); margin-bottom: 6px; }
    .step p  { font-size: .82rem; color: var(--t3); line-height: 1.6; }

    /* ── ANGEBOTE ── */
    .angebote { background: var(--white); }
    .angebote-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
    .angebot-card {
      border-radius: var(--r-md); overflow: hidden;
      border: 1px solid var(--bd); background: var(--bg);
      transition: all .25s cubic-bezier(.22,.61,.36,1);
      display: flex; flex-direction: column;
    }
    .angebot-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; background: var(--white); }
    .angebot-img {
      height: 200px; overflow: hidden; position: relative;
    }
    .angebot-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
    .angebot-card:hover .angebot-img img { transform: scale(1.05); }
    .angebot-body { padding: 22px 20px; flex: 1; display: flex; flex-direction: column; }
    .angebot-body h3 { font-size: 1rem; font-weight: 700; color: var(--t1); margin-bottom: 8px; }
    .angebot-body p  { font-size: .85rem; color: var(--t3); line-height: 1.65; flex: 1; margin-bottom: 18px; }
    .angebot-link {
      font-size: .82rem; font-weight: 700; color: var(--g500);
      background: none; border: none; cursor: pointer; font-family: inherit;
      display: inline-flex; align-items: center; gap: 5px; padding: 0;
      transition: gap .2s;
    }
    .angebot-link:hover { gap: 9px; }
    .no-bind-badge {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: .75rem; font-weight: 700; color: var(--g600);
      background: color-mix(in srgb, var(--g500) 10%, transparent);
      border: 1px solid color-mix(in srgb, var(--g500) 25%, transparent);
      border-radius: 999px; padding: 3px 10px; margin-bottom: 14px;
    }
    .angebot-modal-bg {
      display: none; position: fixed; inset: 0; z-index: 10000;
      background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
      align-items: center; justify-content: center; padding: 20px;
    }
    .angebot-modal-bg.open { display: flex; }
    .angebot-modal {
      background: var(--g900); border: 1px solid rgba(255,255,255,.1);
      border-radius: 18px; max-width: 520px; width: 100%;
      padding: 36px 32px; position: relative; animation: modalIn .25s ease;
    }
    @keyframes modalIn { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
    .angebot-modal-close {
      position: absolute; top: 16px; right: 16px;
      background: rgba(255,255,255,.08); border: none; color: rgba(255,255,255,.6);
      width: 44px; height: 44px; border-radius: 50%; font-size: 1.1rem;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: all .2s;
    }
    .angebot-modal-close:hover { background: rgba(255,255,255,.15); color: #fff; }
    .angebot-modal h3 { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
    .angebot-modal-text { color: rgba(255,255,255,.75); font-size: .95rem; line-height: 1.7; margin-bottom: 28px; white-space: pre-line; }

    /* ── BENEFITS ── */
    .benefits {
      background: linear-gradient(150deg, var(--g900) 0%, var(--g800) 100%);
      position: relative; overflow: hidden;
    }
    .benefits::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(185,28,28,.25) 0%, transparent 60%);
    }
    .benefits-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center; position: relative; z-index: 1;
    }
    .stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
    .stat-card {
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--r-md); padding: 28px 16px; text-align: center;
      transition: background .2s;
    }
    .stat-card:hover { background: rgba(255,255,255,.11); }
    .stat-card .n  { font-size: 2.4rem; font-weight: 900; color: #fff; display: block; }
    .stat-card .l  { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 6px; text-transform: uppercase; letter-spacing: .06em; }

    /* ── HIGHLIGHTS ── */
    .highlights { padding: var(--sec-pad) 24px; background: var(--bg2); }
    .highlights-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .highlights-left h2 { font-size: 2rem; font-weight: 900; color: var(--t1); line-height: 1.2; margin-bottom: 16px; }
    .highlights-left p { font-size: .95rem; color: var(--t3); line-height: 1.65; margin-bottom: 28px; }
    .hl-list { display: flex; flex-direction: column; gap: 16px; }
    .hl-item { display: flex; gap: 14px; align-items: flex-start; }
    .hl-check {
      width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
      background: var(--g700); color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: .8rem; font-weight: 900; margin-top: 1px;
    }
    .hl-item strong { display: block; font-size: .9rem; font-weight: 700; color: var(--t1); margin-bottom: 2px; }
    .hl-item p { font-size: .82rem; color: var(--t3); line-height: 1.55; margin: 0; }
    @media(max-width:860px){ .highlights-wrap { grid-template-columns: 1fr; gap: 36px; } }
    @media(max-width:560px){ .highlights-left h2 { font-size: 1.5rem; } }

    /* ── TEAM ── */
    .team { background: var(--white); }
    .team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
    .team-card {
      border-radius: var(--r-md); overflow: hidden;
      border: 1px solid var(--bd); background: var(--bg);
      text-align: center;
      transition: all .25s cubic-bezier(.22,.61,.36,1);
    }
    .team-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: transparent; }
    .team-avatar {
      height: 160px;
      background: linear-gradient(135deg, var(--g700), var(--g500));
      display: flex; align-items: center; justify-content: center;
      font-size: 3.5rem;
    }
    .team-body { padding: 18px 16px; }
    .team-body h3 { font-size: .95rem; font-weight: 700; color: var(--t1); margin-bottom: 3px; }
    .team-body span { font-size: .8rem; color: var(--g500); font-weight: 600; }

    /* ── KRANKENKASSE ── */
    .kk {
      background: linear-gradient(150deg, var(--g900) 0%, #1a0203 100%);
      position: relative; overflow: hidden;
    }
    .kk-grid {
      display: grid; grid-template-columns: 1fr 380px;
      gap: 80px; align-items: center;
    }
    .kk-grid p { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.7; margin-bottom: 14px; }
    .kk-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
    .kk-badge {
      background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
      border-radius: 999px; padding: 5px 14px;
      font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.8);
    }
    .kk-box {
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--r-lg); padding: 40px 32px; text-align: center;
      backdrop-filter: blur(12px);
    }
    .kk-pct { font-size: 5rem; font-weight: 900; color: #fff; line-height: 1; }
    .kk-pct em { color: var(--red); font-style: normal; }
    .kk-box .sub { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.8); margin: 6px 0 4px; }
    .kk-box .sub em { color: var(--red); font-style: normal; }
    .kk-box .tiny { font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: 28px; }

    /* ── REVIEWS ── */
    .reviews { background: var(--white); padding: 80px 24px; }

    /* ── GALLERY ── */
    .gallery { background: var(--bg); }
    .gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
    .gallery-item {
      height: 180px; border-radius: var(--r-sm);
      display: flex; align-items: flex-end;
      cursor: pointer; overflow: hidden; position: relative;
      transition: transform .3s cubic-bezier(.22,.61,.36,1);
    }
    .gallery-item::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 55%);
      opacity: 0; transition: opacity .3s;
    }
    .gallery-item:hover::after { opacity: 1; }
    .gallery-item:hover { transform: scale(1.03); }
    .gallery-label {
      position: relative; z-index: 1;
      color: #fff; font-size: .85rem; font-weight: 700;
      padding: 12px 14px; width: 100%;
      opacity: 0; transform: translateY(6px);
      transition: all .3s cubic-bezier(.22,.61,.36,1);
    }
    .gallery-item:hover .gallery-label { opacity: 1; transform: translateY(0); }
    .gallery-icon {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      font-size: 3rem; transition: all .3s cubic-bezier(.22,.61,.36,1);
    }
    .gallery-item:hover .gallery-icon { top: 40%; font-size: 2.2rem; }
    .gallery-item:nth-child(1) { background: linear-gradient(135deg, #2d0507, #5f1515); }
    .gallery-item:nth-child(2) { background: linear-gradient(135deg, #440a0a, #7b1d1d); }
    .gallery-item:nth-child(3) { background: linear-gradient(135deg, #5f1515, #991b1b); }
    .gallery-item:nth-child(4) { background: linear-gradient(135deg, #3d0f0f, #dc2626); }
    .gallery-item:nth-child(5) { background: linear-gradient(135deg, #440a0a, #991b1b); }
    .gallery-item:nth-child(6) { background: linear-gradient(135deg, #1a0203, #7b1d1d); }
    .gallery-item:nth-child(7) { background: linear-gradient(135deg, #2d0507, #b91c1c); }
    .gallery-item:nth-child(8) { background: linear-gradient(135deg, #5f1515, #dc2626); }

    /* ── MAPS ── */
    .kontakt-map { margin-top: 24px; border-radius: var(--r-md); overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.3); }
    .kontakt-map iframe { width: 100%; height: 260px; border: none; display: block; filter: invert(92%) hue-rotate(180deg); }
    .kontakt-map-btn { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.6); text-decoration: none; transition: color .15s; }
    .kontakt-map-btn:hover { color: #fff; }
    .consent-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 32px 20px; background: #f3f4f6; border-radius: var(--r-md); text-align: center; min-height: 180px; }
    .consent-placeholder-icon { font-size: 2rem; }
    .consent-placeholder p { font-size: .9rem; color: #374151; max-width: 320px; }
    .consent-placeholder-btn { background: var(--primary); color: #fff; border: none; border-radius: 8px; padding: 10px 20px; font-size: .875rem; font-weight: 600; cursor: pointer; transition: background .15s; }
    .consent-placeholder-btn:hover { background: var(--primary-dark, #15803d); }
    .consent-placeholder-note { font-size: .75rem; color: #9ca3af; max-width: 300px; }
    .consent-placeholder-note a { color: #6b7280; }

    /* ── FAQ ── */
    .faq { background: var(--white); }
    .faq .section-title { text-align: center; }
    .faq .section-sub { text-align: center; margin: 0 auto 48px; }
    .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
    .faq-item {
      background: var(--bg); border: 1px solid var(--bd);
      border-radius: var(--r-sm); overflow: hidden;
      transition: box-shadow .2s;
    }
    .faq-item.open { box-shadow: var(--sh-md); border-color: transparent; background: var(--white); }
    .faq-q {
      width: 100%; text-align: left; padding: 18px 22px;
      background: none; border: none; cursor: pointer;
      font-size: .95rem; font-weight: 600; color: var(--t1);
      display: flex; justify-content: space-between; align-items: center;
      gap: 12px; font-family: inherit; transition: color .15s;
    }
    .faq-q:hover { color: var(--g500); }
    .faq-q .faq-arr {
      width: 26px; height: 26px; border-radius: 50%;
      background: var(--bd); display: flex; align-items: center;
      justify-content: center; font-size: .8rem; flex-shrink: 0;
      transition: all .2s; color: var(--t3);
    }
    .faq-item.open .faq-q { color: var(--g700); }
    .faq-item.open .faq-arr { background: var(--g700); color: #fff; transform: rotate(180deg); }
    .faq-a {
      display: none; padding: 0 22px 18px;
      font-size: .9rem; color: var(--t3); line-height: 1.75;
      border-top: 1px solid var(--bd);
      padding-top: 16px;
    }
    .faq-item.open .faq-a { display: block; }

    /* ── KONTAKT SECTION ── */
    .kontakt-sec {
      background: linear-gradient(150deg, var(--g900), var(--g800));
    }
    .kontakt-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: start;
    }
    .kontakt-block h2 { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 28px; }
    .kontakt-item {
      display: flex; gap: 14px; align-items: flex-start;
      margin-bottom: 20px;
    }
    .kontakt-icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: rgba(255,255,255,.1); display: flex;
      align-items: center; justify-content: center;
      font-size: 1rem; flex-shrink: 0;
    }
    .kontakt-item .ki-label { font-size: .75rem; color: rgba(255,255,255,.4); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
    .kontakt-item .ki-val { font-size: .95rem; color: rgba(255,255,255,.85); font-weight: 500; margin-top: 2px; }
    .kontakt-item a { color: rgba(255,255,255,.85); text-decoration: none; }
    .kontakt-item a:hover { color: #fff; }
    .oeff-table { width: 100%; }
    .oeff-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.07);
      font-size: .9rem;
    }
    .oeff-row:last-child { border-bottom: none; }
    .oeff-row .day { color: rgba(255,255,255,.55); }
    .oeff-row .time { color: #fff; font-weight: 600; text-align: right; }
    @media (max-width: 420px) {
      .oeff-row { flex-direction: column; align-items: flex-start; gap: 2px; }
      .oeff-row .time { text-align: left; }
    }
    .oeff-subhead { font-size:.75rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.4); margin:4px 0 4px; display:flex; align-items:center; gap:8px; }
    .oeff-subhead--unb { font-size:1rem; color:var(--red); letter-spacing:.04em; }
    .oeff-badge { background:var(--red); color:#fff; font-size:.65rem; padding:2px 8px; border-radius:99px; letter-spacing:.04em; text-transform:uppercase; font-weight:700; }
    .oeff-badge--dim { background:rgba(255,255,255,.12); color:rgba(255,255,255,.6); }
    .oeff-transponder-info {
      display: flex; gap: 12px; align-items: flex-start;
      margin-top: 20px; padding: 14px 16px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--r-md);
    }
    .oeff-transponder-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
    .oeff-transponder-info p { font-size: .82rem; color: #fff; line-height: 1.65; margin: 0; }
    .oeff-transponder-info p strong { color: rgba(255,255,255,.85); font-weight: 700; }
    .oeff-notfall { margin-top:20px; font-size:.8rem; color:rgba(255,255,255,.45); }
      .oeff-notfall a { color:rgba(255,255,255,.65); text-decoration:none; font-weight:600; }
    .oeff-notfall a:hover { color:#fff; }
    .oeff-cta { margin-top: 28px; }
    .oeff-ausnahme-row {
      font-size:.85rem; color: var(--red); margin-bottom: 20px;
      background: rgba(220,38,38,.08);
      border: 1px solid rgba(220,38,38,.25);
      border-left: 4px solid var(--red);
      border-radius: 10px;
      padding: 14px 18px;
      line-height: 1.6;
    }
    .oeff-ausnahme-row span { color: rgba(255,255,255,.9); font-weight: 500; }
    .oeff-data-hidden { display: none; }

    /* ── ÖFFNUNGSZEITEN BALKENDIAGRAMM ── */
    .oeff-calendar-wrap {
      overflow-x: auto; -webkit-overflow-scrolling: touch;
      margin: 0 -24px; padding: 0 24px;
    }
    .oeff-cal-hint {
      font-size: .75rem; color: rgba(255,255,255,.35);
      margin-bottom: 12px; line-height: 1.5;
    }
    .oeff-calendar {
      max-width: 620px; margin-bottom: 12px;
    }
    .oeff-bar-ticks {
      position: relative; height: 18px;
      margin-left: 36px;
      font-size: .58rem; font-weight: 600;
      color: rgba(255,255,255,.18); letter-spacing: .03em;
    }
    .oeff-bar-ticks span {
      position: absolute; top: 0; white-space: nowrap;
    }
    .oeff-bar-row {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 4px;
    }
    .oeff-bar-day {
      width: 26px; text-align: right; flex-shrink: 0;
      font-size: .7rem; font-weight: 700;
      color: rgba(255,255,255,.35);
      letter-spacing: .04em;
    }
    .oeff-bar-row--today .oeff-bar-day { color: #fff; font-size: .75rem; }
    .oeff-bar-track {
      flex: 1; position: relative; height: 30px;
      background: rgba(255,255,255,.025);
      border-radius: 5px; overflow: hidden;
    }
    .oeff-bar-row--today .oeff-bar-track {
      background: rgba(255,255,255,.06);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
    }
    .oeff-bar-seg {
      position: absolute; top: 0; height: 100%;
      border-radius: 4px; overflow: hidden;
    }
    .oeff-bar-seg--betreut {
      background: var(--red);
      box-shadow: 0 0 10px rgba(220,38,38,.35);
      z-index: 2;
    }
    .oeff-bar-seg--unbetreut {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.1);
      z-index: 1;
    }
    .oeff-bar-lbl {
      position: absolute; top: 50%; transform: translateY(-50%);
      font-size: .62rem; font-weight: 600; letter-spacing: .02em;
      line-height: 1;
    }
    .oeff-bar-lbl--kern-l { left: 5px; color: #fff; }
    .oeff-bar-lbl--kern-r { right: 5px; color: #fff; }
    .oeff-bar-lbl--unb-l { left: 5px; color: rgba(255,255,255,.25); font-weight: 500; }
    .oeff-bar-lbl--unb-r { right: 5px; color: rgba(255,255,255,.25); font-weight: 500; }
    .oeff-bar-closed {
      position: absolute; top: 0; height: 100%; z-index: 3;
      background: rgba(0,0,0,.35);
      border-radius: 0 5px 5px 0;
      display: flex; align-items: center; justify-content: center;
    }
    .oeff-bar-closed-label {
      font-size: .58rem; font-weight: 600; letter-spacing: .06em;
      color: rgba(255,255,255,.15); text-transform: uppercase;
    }
    .oeff-legend {
      display: flex; gap: 20px; flex-wrap: wrap;
      font-size: .72rem; color: rgba(255,255,255,.4);
      margin: 8px 0 20px;
    }
    .oeff-leg-dot {
      display: inline-block; width: 10px; height: 10px;
      border-radius: 2px; margin-right: 5px; vertical-align: middle;
    }
    .oeff-leg-dot--betreut { background: var(--red); }
    .oeff-leg-dot--unbetreut { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); }

    /* ── FOOTER ── */
    footer { background: var(--g950); color: rgba(255,255,255,.55); padding: 64px 24px 32px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
    .footer-brand .logo-name { display: block; font-size: 1.15rem; margin-bottom: 14px; }
    .footer-brand p { font-size: .875rem; line-height: 1.7; }
    .footer-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px; }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 9px; }
    .footer-col a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .875rem; transition: color .15s; }
    .footer-col a:hover { color: #fff; }
    .footer-contact-item { display: flex; gap: 10px; margin-bottom: 10px; font-size: .875rem; }
    .footer-social { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
    .social-btn {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 8px 14px; border-radius: 8px; font-size: .8rem; font-weight: 600;
      text-decoration: none; transition: background .15s, color .15s;
      background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
      border: 1px solid rgba(255,255,255,.12);
    }
    .social-btn:hover { background: rgba(255,255,255,.15); color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
      font-size: .82rem; flex-wrap: wrap; gap: 10px;
    }
    .footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .15s; }
    .footer-bottom a:hover { color: rgba(255,255,255,.7); }
    .footer-links { display: flex; gap: 20px; }

    /* ── QUIZ OVERLAY ── */
    .quiz-overlay {
      position: fixed; inset: 0;
      background: rgba(0,0,0,.6);
      backdrop-filter: blur(4px);
      z-index: 1000;
      display: flex; align-items: center; justify-content: center;
      padding: 20px;
      opacity: 0; pointer-events: none;
      transition: opacity .25s;
    }
    .quiz-overlay.active { opacity: 1; pointer-events: all; }
    .quiz-box {
      background: var(--white);
      border-radius: var(--r-lg);
      width: 100%; max-width: 560px; max-height: min(90svh, 90dvh, 90vh);
      overflow-y: auto; box-shadow: 0 32px 80px rgba(0,0,0,.35);
      transform: translateY(24px) scale(.97);
      transition: transform .28s cubic-bezier(.22,.61,.36,1);
    }
    .quiz-overlay.active .quiz-box { transform: translateY(0) scale(1); }
    .quiz-header {
      background: linear-gradient(135deg, var(--g800), var(--g700));
      padding: 22px 26px 18px; border-radius: var(--r-lg) var(--r-lg) 0 0;
      position: sticky; top: 0; z-index: 2;
    }
    .quiz-header-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
    .quiz-logo { font-size: .9rem; font-weight: 900; color: #fff; letter-spacing: .08em; text-transform: uppercase; }
    .quiz-logo em { color: var(--red); font-style: normal; }
    .quiz-close {
      background: rgba(255,255,255,.12); border: none; color: #fff;
      width: 44px; height: 44px; border-radius: 50%; font-size: 1.1rem;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background .15s;
    }
    .quiz-close:hover { background: rgba(255,255,255,.25); }
    .quiz-prog-track { height: 4px; background: rgba(255,255,255,.15); border-radius: 2px; overflow: hidden; }
    .quiz-prog-fill { height: 100%; background: var(--red); border-radius: 2px; transition: width .35s ease; }
    .quiz-step-label { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: 8px; letter-spacing: .06em; }

    .quiz-body { padding: 28px 26px; }
    .quiz-q { font-size: 1.15rem; font-weight: 700; color: var(--t1); margin-bottom: 6px; line-height: 1.3; }
    .quiz-hint { font-size: .82rem; color: var(--t3); margin-bottom: 22px; }
    .quiz-opts { display: flex; flex-direction: column; gap: 8px; }
    .quiz-opts.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .quiz-opt {
      display: flex; align-items: center; gap: 12px;
      padding: 14px 18px; border: 1.5px solid var(--bd);
      border-radius: var(--r-sm); cursor: pointer;
      transition: all .15s; background: var(--bg);
      font-size: .9rem; font-weight: 500; color: var(--t2);
      text-align: left; width: 100%; font-family: inherit;
    }
    .quiz-opt:hover { border-color: var(--g400); background: var(--g50); color: var(--g700); }
    .quiz-opt.selected { border-color: var(--g500); background: var(--g50); color: var(--g700); }
    .quiz-opt .opt-icon { font-size: 1.2rem; flex-shrink: 0; }
    .quiz-opt .opt-chk {
      margin-left: auto; width: 20px; height: 20px;
      border-radius: 50%; border: 1.5px solid var(--bd);
      flex-shrink: 0; display: flex; align-items: center;
      justify-content: center; font-size: .65rem; color: #fff;
      transition: all .15s;
    }
    .quiz-opt.selected .opt-chk { background: var(--g500); border-color: var(--g500); }
    .quiz-opt.selected .opt-chk::after { content: '✓'; }
    .quiz-opt .opt-chk.sq { border-radius: 5px; }
    .quiz-footer {
      display: flex; justify-content: space-between; align-items: center;
      padding: 18px 26px 24px; gap: 10px;
      border-top: 1px solid var(--bd);
    }
    .quiz-back {
      background: none; border: 1.5px solid var(--bd); color: var(--t3);
      padding: 11px 22px; border-radius: var(--r-sm);
      font-size: .875rem; font-weight: 600; cursor: pointer;
      transition: all .15s; font-family: inherit;
    }
    .quiz-back:hover { border-color: var(--t1); color: var(--t1); }
    .quiz-next {
      flex: 1; max-width: 260px;
      background: var(--red); color: #fff; border: none;
      padding: 12px 24px; border-radius: var(--r-sm);
      font-size: .875rem; font-weight: 700; cursor: pointer;
      transition: all .15s; font-family: inherit;
      box-shadow: 0 4px 12px rgba(220,38,38,.3);
    }
    .quiz-next:hover { background: var(--red2); transform: translateY(-1px); }
    .quiz-next:disabled { background: var(--bd); color: var(--t4); cursor: not-allowed; box-shadow: none; transform: none; }

    /* Quiz contact form */
    .quiz-form { display: flex; flex-direction: column; gap: 14px; }
    .quiz-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .quiz-field label { display: block; font-size: .78rem; font-weight: 700; color: var(--t2); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .06em; }
    .quiz-field input {
      width: 100%; padding: 11px 14px;
      border: 1.5px solid var(--bd); border-radius: var(--r-sm);
      font-size: .9rem; outline: none; font-family: inherit;
      transition: border-color .15s; background: var(--bg);
    }
    .quiz-field input:focus { border-color: var(--g500); background: var(--white); }
    .field-error { display: block; font-size: .75rem; color: var(--red); margin-top: 3px; min-height: 16px; }

    /* Quiz success */
    .quiz-success { text-align: center; padding: 52px 28px; }
    .quiz-success .si { font-size: 3.5rem; margin-bottom: 16px; }
    .quiz-success h3 { font-size: 1.4rem; font-weight: 800; color: var(--t1); margin-bottom: 10px; }
    .quiz-success p { color: var(--t3); line-height: 1.7; margin-bottom: 28px; }

    /* ── ANIMATIONS ── */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(32px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; } to { opacity: 1; }
    }
    @keyframes quizIn {
      from { opacity: 0; transform: translateX(40px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes quizInBack {
      from { opacity: 0; transform: translateX(-40px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    .hero-pill  { animation: fadeInUp .5s .0s ease both; }
    .hero h1    { animation: fadeInUp .5s .1s ease both; }
    .hero-desc  { animation: fadeInUp .5s .2s ease both; }
    .hero-goals { animation: fadeInUp .5s .3s ease both; }
    .hero-btns  { animation: fadeInUp .5s .4s ease both; }
    .hero-card  { animation: fadeIn   .7s .25s ease both; }

    .reveal { opacity: 0; transform: translateY(32px); transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1); }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .rd1 { transition-delay: .07s; } .rd2 { transition-delay: .14s; }
    .rd3 { transition-delay: .21s; } .rd4 { transition-delay: .28s; }

    .qin  { animation: quizIn     .28s ease both; }
    .qinb { animation: quizInBack .28s ease both; }

    /* ── BACK TO TOP ── */
    .btt {
      position: fixed; bottom: 28px; right: 28px; z-index: 500;
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--g900); color: #fff;
      border: 1px solid rgba(255,255,255,.12);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; cursor: pointer; opacity: 0; pointer-events: none;
      transform: translateY(12px); transition: all .3s cubic-bezier(.22,.61,.36,1);
    }
    .btt.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
    .btt:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }

    /* ── NAV ACTIVE ── */
    nav a.active { color: #fff; }
    nav a.active::after { transform: scaleX(1); }

    /* ── COOKIE BANNER ── */
    .cookie-banner {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
      background: var(--g950); border-top: 1px solid rgba(255,255,255,.08);
      box-shadow: 0 -4px 24px rgba(0,0,0,.5);
      display: none; flex-wrap: wrap;
      align-items: center; justify-content: center; gap: 12px 20px;
      padding: 16px 24px;
    }
    .cookie-banner.show { display: flex; }
    .cookie-banner p {
      font-size: .82rem; color: rgba(255,255,255,.65); line-height: 1.5; max-width: 560px;
    }
    .cookie-banner a { color: rgba(255,255,255,.8); text-decoration: underline; }
    .cookie-banner a:hover { color: #fff; }
    .cookie-toggles {
      display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
    }
    .cookie-toggle {
      display: flex; align-items: center; gap: 8px;
      cursor: pointer; user-select: none;
    }
    .cookie-toggle input {
      position: absolute; opacity: 0; width: 0; height: 0;
    }
    .cookie-toggle-slider {
      position: relative; width: 40px; height: 24px; flex-shrink: 0;
      background: #374151; border-radius: 12px;
      transition: background .2s;
    }
    .cookie-toggle-slider::after {
      content: ''; position: absolute; top: 2px; left: 2px;
      width: 20px; height: 20px; border-radius: 50%;
      background: #fff; transition: transform .2s;
    }
    .cookie-toggle input:checked + .cookie-toggle-slider {
      background: var(--red);
    }
    .cookie-toggle input:checked + .cookie-toggle-slider::after {
      transform: translateX(16px);
    }
    .cookie-toggle-name {
      font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.8);
      white-space: nowrap;
    }
    .cookie-btns { display: flex; gap: 8px; }
    .cookie-btn-accept {
      background: var(--red); color: #fff; border: 2px solid var(--red);
      padding: 12px 26px; border-radius: 8px; font-size: .88rem;
      font-weight: 700; cursor: pointer; font-family: inherit;
      white-space: nowrap; transition: all .15s;
      min-height: 44px; display: inline-flex; align-items: center;
    }
    .cookie-btn-accept:hover { background: var(--red2); border-color: var(--red2); }
    .cookie-btn-decline {
      background: var(--g950); color: #fff; border: 2px solid #4b5563;
      padding: 12px 26px; border-radius: 8px; font-size: .88rem;
      font-weight: 700; cursor: pointer; font-family: inherit;
      white-space: nowrap; transition: all .15s;
      min-height: 44px; display: inline-flex; align-items: center;
    }
    .cookie-btn-decline:hover { background: #374151; border-color: #6b7280; }
    @media (max-width: 700px) {
      .cookie-banner { flex-direction: column; align-items: flex-start; }
      .cookie-banner p { max-width: 100%; }
      .cookie-toggles { flex-direction: column; align-items: flex-start; gap: 8px; }
      .cookie-btns { width: 100%; }
      .cookie-btns button { flex: 1; justify-content: center; }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .features-grid  { grid-template-columns: repeat(2,1fr); }
      .angebote-grid  { grid-template-columns: repeat(2,1fr); }
      .team-grid      { grid-template-columns: repeat(2,1fr); }
      .gallery-grid   { grid-template-columns: repeat(2,1fr); }
      .footer-grid    { grid-template-columns: 1fr 1fr; }
      .hero-grid      { grid-template-columns: 1fr; }
      .hero-card      { display: block; background: transparent; border: none; padding: 0; backdrop-filter: none; gap: 0; }
      .hero-card-title { display: none; }
      .hero-stats-grid { grid-template-columns: repeat(4,1fr); }
      .hero-stat { padding: 12px 8px; }
      .hero-stat .n { font-size: 1.6rem; }
      .hero-stat .l { font-size: .58rem; }
      .hero-divider, .hero-trust { display: none; }
    }
    @media (max-width: 768px) {
      section { padding: 60px 20px; }
      .hero   { padding: 72px 20px 60px; }
      .section-title  { font-size: 1.7rem; }
      .section-sub    { margin-bottom: 36px; }
      .steps-row      { grid-template-columns: 1fr 1fr; }
      .steps-row::before { display: none; }
      .benefits-grid  { grid-template-columns: 1fr; gap: 40px; }
      .kk-grid        { grid-template-columns: 1fr; gap: 40px; }
      .kontakt-grid   { grid-template-columns: 1fr; gap: 40px; }
      .kontakt-grid > * { min-width: 0; }
      .oeff-cta .btn { width: 100%; justify-content: center; }
      nav { display: none; }
      .nav-meta { display: none; }
      .hamburger { display: flex; }
      nav.open {
        display: flex; flex-direction: column; position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--g900); padding: 12px 20px; gap: 2px;
        box-shadow: 0 8px 20px rgba(0,0,0,.4);
      }
      .quiz-overlay { padding: 0; align-items: flex-end; }
      .quiz-box     { border-radius: 20px 20px 0 0; max-height: 92svh; max-height: 92dvh; }
      .quiz-opts.grid2 { grid-template-columns: 1fr; }
      .quiz-form-row { grid-template-columns: 1fr; }
      .quiz-field input { font-size: 1rem; }
    }
    @media (max-width: 480px) {
      section { padding: 48px 16px; }
      .hero   { padding: 56px 16px 48px; }
      .hero h1 { font-size: 2rem; }
      .features-grid   { grid-template-columns: 1fr; }
      .angebote-grid   { grid-template-columns: 1fr; }
      .steps-row       { grid-template-columns: 1fr; }
      .team-grid       { grid-template-columns: 1fr; }
      .gallery-grid    { grid-template-columns: repeat(2,1fr); }
      .stats-grid      { grid-template-columns: 1fr; gap: 10px; }
      .footer-grid     { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom   { flex-direction: column; text-align: center; }
      .footer-links    { flex-direction: column; gap: 8px; }
      .hero-stats-grid { grid-template-columns: 1fr 1fr; }
    }

    /* ── KURSPLAN MODAL ── */
    .kp-bg {
      display: none; position: fixed; inset: 0; z-index: 10000;
      background: rgba(0,0,0,.7); backdrop-filter: blur(6px);
      align-items: center; justify-content: center; padding: 16px;
    }
    .kp-bg.open { display: flex; }
    .kp-modal {
      background: #fff; border-radius: 20px; width: 100%; max-width: 900px;
      max-height: 90vh; display: flex; flex-direction: column;
      box-shadow: 0 32px 80px rgba(0,0,0,.4); overflow: hidden;
    }
    .kp-header {
      padding: 24px 28px 16px; border-bottom: 1px solid #f0f0f0;
      flex-shrink: 0;
    }
    .kp-header h2 { font-size: 1.3rem; font-weight: 900; color: #1a1a1f; }
    .kp-sub { font-size: .8rem; color: #999; margin-top: 3px; }
    .kp-close {
      position: absolute; top: 16px; right: 20px;
      background: #f4f4f4; border: none; border-radius: 50%;
      width: 44px; height: 44px; font-size: 1.1rem; cursor: pointer;
      color: #666; transition: background .15s;
    }
    .kp-close:hover { background: #e0e0e0; color: #222; }
    .kp-modal { position: relative; }
    .kp-scroll { flex: 1; overflow: auto; padding: 20px 24px; }
    .kp-table { width: 100%; border-collapse: separate; border-spacing: 6px; table-layout: fixed; }
    .kp-table thead th {
      background: #1a1a1f; color: #fff; font-size: .75rem; font-weight: 700;
      letter-spacing: .06em; text-transform: uppercase; padding: 10px 8px;
      border-radius: 8px; text-align: center;
    }
    .kp-table tbody td {
      vertical-align: top; padding: 3px; min-width: 110px;
    }
    .kp-slot {
      border-radius: 8px; padding: 8px 10px; font-size: .8rem;
      font-weight: 600; color: #1a1a1f; line-height: 1.4;
      margin-bottom: 4px;
    }
    .kp-time {
      display: block; font-size: .7rem; font-weight: 700;
      opacity: .7; margin-bottom: 2px;
    }
    .kp-note {
      display: block; font-size: .67rem; font-weight: 600;
      opacity: .75; margin-top: 3px; font-style: italic;
    }
    .kp-blue   { background: #dbeafe; }
    .kp-red    { background: #fee2e2; color: #991b1b; }
    .kp-yellow { background: #fef9c3; color: #713f12; }
    .kp-legend {
      display: flex; gap: 12px; flex-wrap: wrap;
      padding: 14px 24px 18px; border-top: 1px solid #f0f0f0;
      flex-shrink: 0;
    }
    .kp-leg {
      font-size: .72rem; font-weight: 700; padding: 4px 10px;
      border-radius: 6px; color: #333;
    }
    .kp-list { display: none; }
    .kp-day-card { margin-bottom: 18px; }
    .kp-day-label {
      font-size: .75rem; font-weight: 800; text-transform: uppercase;
      letter-spacing: .08em; color: #fff; background: #1a1a1f;
      border-radius: 8px; padding: 8px 12px; margin-bottom: 6px;
    }
    @media(max-width:640px){
      .kp-table-wrap { display: none; }
      .kp-list { display: block; }
      .kp-scroll { padding: 14px 12px; }
      .kp-slot { padding: 8px 10px; font-size: .8rem; }
    }
