    @font-face {
      font-family: 'Geist';
      src: url('https://cdn.jsdelivr.net/npm/geist@1/dist/fonts/geist-sans/Geist-Variable.woff2') format('woff2');
      font-weight: 100 900;
      font-style: normal;
      font-display: swap;
    }

    html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }
    body { font-family: 'Geist', system-ui, sans-serif; color: #1a2236; background: var(--white); overflow-x: hidden; line-height: 1.6; }

    .section { padding: 100px 0; }
    .tag {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      color: var(--primary); background: var(--tint); border-radius: 100px; padding: 5px 14px;
      margin-bottom: 20px;
    }
    h1,h2,h3,h4 { line-height: 1.15; font-weight: 800; }
    h1 { font-size: clamp(2rem,3.4vw,2.8rem); }

    .btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: .95rem; transition: var(--transition); }

    /* Nav */
    .logo img, .logo svg { height: 32px; width: auto; display: block; }
    @media (max-width: 1024px) {
      .logo img, .logo svg { height: 28px; }
    }
    .footer-brand svg.logo { height: 30px; }

    /* ═══ Demo-Hero: Vollbildfoto mit zentriertem Glass-Formular, keine weiteren Ablenkungen ═══ */
    .demo-hero {
      position: relative;
      min-height: 100vh;
      padding: 140px 24px 80px;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(180deg, rgba(8,92,73,.4), rgba(8,92,73,.72)), url('../images/product/gutes%20Lagerfoto.webp') center / cover no-repeat;
    }
    .demo-glass {
      width: 100%; max-width: 480px;
      background: rgba(255,255,255,.88);
      backdrop-filter: blur(22px) saturate(160%);
      -webkit-backdrop-filter: blur(22px) saturate(160%);
      border: 1px solid rgba(255,255,255,.7);
      border-radius: var(--radius-lg);
      padding: 44px 40px;
      box-shadow: var(--shadow-lg);
      text-align: center;
    }
    .demo-glass form {
      text-align: left;
    }
    @supports not (backdrop-filter: blur(1px)) {
      .demo-glass { background: rgba(255,255,255,.94); }
    }
    .demo-glass h1 { color: var(--dark); margin-bottom: 28px; }

    /* Formular */
    .field { margin-bottom: 18px; }
    .field label { display: block; font-size: .85rem; font-weight: 600; color: var(--gray-800); margin-bottom: 6px; }
    .field input, .field select, .field textarea { width: 100%; padding: 12px 16px; border-radius: 8px; border: 1.5px solid rgba(30,41,59,.18); font-family: inherit; font-size: 1rem; transition: border-color var(--transition); background: rgba(255,255,255,.9); color: var(--gray-800); }
    .field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(53,153,131,.15); }
    .field textarea { resize: vertical; min-height: 100px; }
    .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .submit-btn { width: 100%; padding: 15px; background: var(--primary); color: var(--white); border-radius: 8px; font-weight: 700; font-size: 1rem; border: none; cursor: pointer; transition: var(--transition); }
    .submit-btn:hover { background: var(--primary-l); transform: translateY(-1px); }

    /* Footer (einheitlich mit den anderen Seiten) */
    footer { background: var(--deep); color: rgba(255,255,255,.6); padding: 48px 0 26px; text-align: left; position: relative; }
    .ft-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 48px; flex-wrap: wrap; }
    .ft-brand { max-width: 380px; min-width: 240px; }
    .ft-brand svg { height: 36px; width: auto; margin-bottom: 16px; display: block; }
    .ft-brand p { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.55); margin: 0; }
    .ft-col h4 { color: var(--white); font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
    .ft-address { font-size: .92rem; line-height: 1.8; color: rgba(255,255,255,.6); font-style: normal; }
    .ft-social a { display: inline-flex; width: 44px; height: 44px; background: rgba(255,255,255,.1); border-radius: 8px; align-items: center; justify-content: center; transition: var(--transition); }
    .ft-social a:hover { background: var(--primary); transform: translateY(-2px); }
    .ft-social svg { width: 22px; height: 22px; fill: var(--white); }
    .ft-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
    .ft-copy { font-size: .82rem; color: rgba(255,255,255,.45); margin: 0; }
    .ft-legal { display: flex; gap: 24px; }
    .ft-legal a { color: rgba(255,255,255,.6); font-size: .85rem; transition: color var(--transition); }
    .ft-legal a:hover { color: var(--white); }
    .ft-top-btn svg { width: 16px; height: 16px; stroke: var(--white); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
    .ft-top-btn { position: absolute; top: 50%; transform: translateY(-50%); display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); border: none; cursor: pointer; transition: background .25s ease; z-index: 2; visibility: hidden; }
    .ft-top-btn:hover { background: var(--primary); }
    @media (max-width: 1024px) { .ft-top { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px) { .ft-bottom { flex-direction: column-reverse; align-items: flex-start; } }

    /* Partner-Logos: Karussell, das durchläuft (identisch zu den anderen Seiten) */
    .investors-strip { background: var(--white); padding: 10px 0 28px; border-top: 1px solid var(--gray-200); overflow: hidden; }
    .investors-divider { display: flex; align-items: center; gap: 16px; padding: 0 48px; margin-bottom: 14px; }
    .investors-divider::before, .investors-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
    .investors-label { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-400); white-space: nowrap; }
    .marquee-wrap { overflow: hidden; }
    .marquee-track { display: flex; align-items: center; gap: 90px; width: max-content; cursor: grab; user-select: none; }
    .marquee-track.dragging { cursor: grabbing; }
    .marquee-track a { display: block; line-height: 0; flex-shrink: 0; }
    .marquee-track img { height: 48px; width: auto; max-width: 200px; object-fit: contain; display: block; pointer-events: none; }

    /* Cookie */
    #cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--deep); color: rgba(255,255,255,.8); padding: 20px 24px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; box-shadow: 0 -4px 32px rgba(0,0,0,.3); transform: translateY(0); transition: transform 0.4s ease; }
    #cookie-banner.hidden { transform: translateY(120%); }
    #cookie-banner p { font-size: .88rem; flex: 1; }
    #cookie-banner p a { color: var(--neutral); text-decoration: underline; }
    .cookie-btns { display: flex; gap: 10px; }
    .cookie-accept { background: var(--primary); color: var(--white); padding: 10px 22px; border-radius: 6px; font-weight: 600; font-size: .88rem; border: none; cursor: pointer; transition: var(--transition); }
    .cookie-accept:hover { background: var(--primary-d); }
    .cookie-decline { background: transparent; color: var(--white); padding: 10px 22px; border-radius: 6px; font-weight: 600; font-size: .88rem; border: 1px solid rgba(255,255,255,.6); cursor: pointer; transition: var(--transition); }
    .cookie-decline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
    @media (max-width: 600px) {
      #cookie-banner { padding: 16px 18px; gap: 12px; flex-direction: column; align-items: stretch; }
      #cookie-banner p { font-size: .82rem; flex: none; }
      .cookie-btns { width: 100%; gap: 10px; }
      .cookie-accept, .cookie-decline { flex: 1; text-align: center; padding: 13px 16px; }
    }

    /* Responsive (Basis, Feinschliff folgt separat) */
    @media (max-width: 768px) {
      .field-row { grid-template-columns: 1fr; }
      .demo-glass { padding: 32px 24px; }
      .investors-divider { padding: 0 14px; }
    }

/* ---- */

.ncls-1{fill:none;stroke:#161616;stroke-miterlimit:10;stroke-width:9px;}.ncls-2{fill:var(--primary);}.ncls-3{fill:#c5dfb5;}.ncls-4{fill:#d8d8d8;}

/* ---- */

.flw-1{fill:none;stroke:var(--white);stroke-miterlimit:10;stroke-width:9px;}.flw-2{fill:var(--primary);}.flw-3{fill:#c5dfb5;}.flw-4{fill:#d8d8d8;}

@media (max-width: 768px) {
  .investors-strip .marquee-track { gap: 40px; }
  .investors-strip .marquee-track img { height: 30px; max-width: 120px; }
}
