
    /* ── TOKENS ────────────────────────────────────────────────── */
    :root {
      --bg:          #FFFFFF;
      --bg-soft:     #F7F7FC;   /* hero, factband */
      --bg-section:  #F0F1FA;   /* contact, highlight sections */
      --ink:         #0D0D1A;
      --ink-2:       #3D3D52;
      --muted:       #7A7A90;
      --border:      #E4E4EF;
      --indigo:      #6366F1;
      --indigo-d:    #4F46E5;
      --indigo-soft: rgba(99,102,241,.10);
      --indigo-xsoft:rgba(99,102,241,.06);
      --green:       #16A34A;
      --green-soft:  rgba(22,163,74,.10);
      --radius:      14px;
      --shadow-sm:   0 2px 8px rgba(13,13,26,.06);
      --shadow-md:   0 8px 32px rgba(13,13,26,.09);
      --shadow-lg:   0 20px 60px rgba(13,13,26,.10);
      --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
      --container:   1180px;
      --hh:          64px;
    }

    /* ── RESET ─────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Onest', system-ui, sans-serif;
      font-size: 17px;
      line-height: 1.65;
      color: var(--ink-2);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    ul, ol { list-style: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
    p { margin: 0; }

    /* ── TYPOGRAPHY ────────────────────────────────────────────── */
    h1, h2, h3, h4 {
      font-family: 'Gabarito', system-ui, sans-serif;
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -.032em;
      color: var(--ink);
    }
    h1 {
      font-size: clamp(2.6rem, 1.8rem + 4vw, 4.6rem);
      line-height: 1.03;
      letter-spacing: -.045em;
    }
    h2 { font-size: clamp(1.8rem, 1.2rem + 2.2vw, 3rem); }
    h3 { font-size: clamp(1rem, .9rem + .7vw, 1.3rem); font-weight: 700; letter-spacing: -.02em; }
    mark.accent {
      background: none;
      color: var(--indigo);
    }

    /* ── LAYOUT ────────────────────────────────────────────────── */
    .container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
    .section-pad { padding: 96px 0; }
    .section-pad-sm { padding: 64px 0; }

    /* ── EYEBROW PILLS (Zyntra-style) ──────────────────────────── */
    .pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--indigo);
      background: var(--indigo-soft);
      border-radius: 100px;
      padding: 5px 14px;
    }
    .pill::before {
      content: '';
      display: block;
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--indigo);
      flex-shrink: 0;
    }
    /* all pills use the single indigo style — no color variants */

    /* ── BUTTONS ───────────────────────────────────────────────── */
    /* Text-Swap container */
    .swap {
      display: block;
      overflow: hidden;
      height: 1.15em;
      line-height: 1.15;
    }
    .swap > span {
      display: block;
      transition: transform 0.32s cubic-bezier(0.23,1,0.32,1);
      white-space: nowrap;
    }
    @media (hover: hover) and (pointer: fine) {
      .has-swap:hover .swap > span { transform: translateY(-100%); }
    }

    /* ── BEISPIELRECHNUNG TABLE ────────────────────────────────── */
    .rent-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .rent-table {
      width: 100%; border-collapse: collapse;
      font-family: inherit; font-size: 0.95rem; min-width: 480px;
    }
    .rent-table thead tr { background: var(--indigo); color: #fff; }
    .rent-table th {
      padding: 14px 20px; text-align: left; font-weight: 600;
    }
    .rent-table th:first-child { border-radius: 8px 0 0 0; }
    .rent-table th:last-child  { border-radius: 0 8px 0 0; font-weight: 700; }
    .rent-table td { padding: 13px 20px; border-bottom: 1px solid var(--border); }
    .rent-table tbody tr:not(.rent-alt) { background: var(--bg); }
    .rent-table tbody tr.rent-alt      { background: var(--bg-soft); }
    .rent-table tbody tr:last-child td { border-bottom: none; }
    .rent-table tbody tr:last-child td:first-child { border-radius: 0 0 0 8px; }
    .rent-table tbody tr:last-child td:last-child  { border-radius: 0 0 8px 0; }
    .rent-val { font-weight: 700; color: var(--indigo); }

    @media (max-width: 600px) {
      .rent-table-wrap { overflow-x: visible; }
      .rent-table { min-width: 0; width: 100%; }
      .rent-table thead { display: none; }
      .rent-table tbody tr {
        display: block;
        background: var(--bg) !important;
        border: 1px solid var(--border);
        border-radius: 12px;
        margin-bottom: 12px;
        padding: 14px 16px 12px;
      }
      .rent-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 0;
        border-bottom: none;
        font-size: 0.9rem;
        border-radius: 0 !important;
      }
      .rent-table td::before {
        content: attr(data-label);
        color: var(--muted);
        font-size: 0.78rem;
        font-weight: 500;
      }
      .rent-table .rent-val {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 8px;
        padding-top: 10px;
        border-top: 1px solid var(--border) !important;
        font-size: 1.05rem;
      }
      .rent-table .rent-val::before {
        color: var(--muted);
        font-size: 0.78rem;
        font-weight: 500;
      }
    }

    /* Primary (Indigo) */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--indigo);
      color: #fff;
      font-weight: 700;
      font-size: 15px;
      border-radius: 100px;
      padding: 14px 26px;
      overflow: hidden;
      white-space: nowrap;
      transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
      box-shadow: 0 4px 16px rgba(99,102,241,.28);
    }
    .btn-primary:hover { background: var(--indigo-d); box-shadow: 0 6px 24px rgba(99,102,241,.36); }
    .btn-primary:active { transform: scale(0.97); }
    .btn-primary:focus-visible { outline: 3px solid var(--indigo); outline-offset: 3px; }

    /* Secondary (bordered) */
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--bg);
      color: var(--ink);
      font-weight: 600;
      font-size: 15px;
      border-radius: 100px;
      padding: 13px 24px;
      border: 1.5px solid var(--border);
      transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
    }
    .btn-secondary:hover { border-color: var(--indigo); background: var(--indigo-xsoft); color: var(--indigo); }
    .btn-secondary:active { transform: scale(0.97); }
    .btn-secondary:focus-visible { outline: 2px solid var(--indigo); outline-offset: 3px; }

    /* ── HEADER ────────────────────────────────────────────────── */
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: var(--hh);
      display: flex;
      align-items: center;
      background: rgba(255,255,255,.92);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(20px) saturate(160%);
      -webkit-backdrop-filter: blur(20px) saturate(160%);
      transition: box-shadow 0.3s ease;
    }
    .site-header.scrolled {
      box-shadow: 0 2px 20px rgba(13,13,26,.07);
    }
    .header-inner {
      display: flex;
      align-items: center;
      width: 100%;
    }
    .logo {
      font-family: 'Gabarito', sans-serif;
      font-weight: 800;
      font-size: 22px;
      letter-spacing: -.02em;
      color: var(--ink);
      flex-shrink: 0;
    }
    .logo-tld { color: var(--indigo); }
    .main-nav {
      display: flex;
      align-items: center;
      gap: 32px;
      margin-left: auto;
    }
    .main-nav a {
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
      position: relative;
      padding-bottom: 3px;
      transition: color 0.2s var(--ease-out);
    }
    .main-nav a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--indigo);
      border-radius: 2px;
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.2s var(--ease-out);
    }
    @media (hover: hover) and (pointer: fine) {
      .main-nav a:hover { color: var(--ink); }
      .main-nav a:hover::after { transform: scaleX(1); }
    }
    .main-nav a.nav-active { color: var(--ink); }
    .main-nav a.nav-active::after { transform: scaleX(1); }

    /* ── Smart Header CTA (shown when no form visible) ─────────── */
    .header-cta-smart {
      margin-left: 24px;
      padding: 10px 20px !important;
      font-size: 14px !important;
      box-shadow: none !important;
    }
    /* Mit JS: ausgeblendet = komplett aus dem Layout (Nav rückt bündig nach rechts) */
    html.js .header-cta-smart { display: none; }
    html.js .header-cta-smart.cta-on {
      display: inline-flex;
      animation: ctaIn 0.3s var(--ease-out);
    }
    @keyframes ctaIn {
      from { opacity: 0; transform: translateY(-6px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @media (max-width: 960px) { .header-cta-smart { display: none !important; } }

    /* ── Mobile Sticky CTA ──────────────────────────────────────── */
    .sticky-cta {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 200;
      background: var(--indigo);
      border-top: none;
      padding: 16px 20px;
      padding-bottom: calc(16px + env(safe-area-inset-bottom));
      box-shadow: 0 -8px 32px rgba(99,102,241,.35);
      align-items: center;
      gap: 14px;
      transform: translateY(110%);
      transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
    }
    .sticky-cta.cta-on { transform: translateY(0); }
    @media (max-width: 960px) { .sticky-cta { display: flex; } }
    .sticky-cta-text {
      flex: 1;
      min-width: 0;
    }
    .sticky-cta-text strong {
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
    }
    .sticky-cta-text span {
      display: block;
      font-size: 12px;
      color: rgba(255,255,255,.7);
      margin-top: 2px;
    }
    .sticky-cta-btn {
      flex-shrink: 0;
      padding: 12px 20px !important;
      font-size: 14px !important;
      white-space: nowrap;
      background: #fff !important;
      color: var(--indigo) !important;
      box-shadow: 0 4px 14px rgba(0,0,0,.15) !important;
    }
    .sticky-cta-btn:hover { background: rgba(255,255,255,.92) !important; }

    /* ── HERO ──────────────────────────────────────────────────── */
    .hero {
      min-height: 100svh;
      display: flex;
      align-items: center;
      padding-top: var(--hh);
      background: var(--bg-soft);
      position: relative;
      overflow: hidden;
    }
    /* Subtle grid pattern */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(99,102,241,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,.06) 1px, transparent 1px);
      background-size: 64px 64px;
      -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 10%, transparent 80%);
      mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 10%, transparent 80%);
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
      padding-block: 96px;
      position: relative;
      z-index: 1;
    }
    .hero-text .pill { margin-bottom: 24px; }
    .hero-text h1 { margin-bottom: 20px; }
    .hero-sub {
      color: var(--ink-2);
      font-size: 17px;
      line-height: 1.65;
      max-width: 440px;
      margin-bottom: 28px;
    }
    /* Hero USP stats */
    .hero-usps {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .hero-usp {
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 14px;
      padding: 14px 20px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-width: 120px;
    }
    .hero-usp-num {
      display: block;
      font-family: 'Gabarito', sans-serif;
      font-size: 1.55rem;
      font-weight: 800;
      color: var(--indigo);
      line-height: 1;
      letter-spacing: -.03em;
    }
    .hero-usp-label {
      display: block;
      font-size: 11.5px;
      font-weight: 500;
      color: var(--muted);
      line-height: 1.3;
    }
    /* Hero form card */
    .hero-form-card {
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 22px;
      padding: 36px 36px 30px;
      box-shadow: var(--shadow-lg);
      width: 100%;
    }
    .hero-form-card .hero-form-title {
      font-size: 1.15rem;
      color: var(--ink);
      margin-bottom: 6px;
      letter-spacing: -.02em;
    }
    .hero-form-card > p {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 24px;
    }
    .hero-form-card .form-field { margin-bottom: 12px; }
    .hero-form-card .form-field:last-of-type { margin-bottom: 0; }
    .hero-consent {
      display: flex; align-items: flex-start; gap: 9px;
      font-size: 12.5px; color: var(--muted); cursor: pointer;
      margin: 14px 0 16px;
      line-height: 1.5;
    }
    .hero-consent input {
      margin-top: 2px;
      accent-color: var(--indigo);
      width: 14px; height: 14px;
      flex-shrink: 0; cursor: pointer;
    }
    .hero-consent a { color: var(--indigo); }
    .hero-submit {
      width: 100%;
      justify-content: center;
      padding: 15px 24px !important;
      font-size: 15px !important;
      border-radius: 12px !important;
    }
    .hero-submit:disabled { opacity: .35; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
    .hero-form-micro {
      text-align: center;
      font-size: 12px;
      color: var(--muted);
      margin-top: 12px;
    }
    /* (hero floating cards removed — replaced by form) */

    /* ── FACTBAND ──────────────────────────────────────────────── */
    .factband {
      background: var(--bg);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 44px 0;
    }
    .factband-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
    .fact {
      padding: 8px 32px;
      border-right: 1px solid var(--border);
      text-align: center;
    }
    .fact:last-child { border-right: none; }
    .fact-num {
      display: block;
      font-family: 'Gabarito', sans-serif;
      font-size: clamp(1.9rem, 1.4rem + 1.5vw, 2.7rem);
      font-weight: 800;
      color: var(--indigo);
      line-height: 1;
      margin-bottom: 6px;
      letter-spacing: -.03em;
    }
    .fact-label { display: block; font-size: 13px; color: var(--muted); line-height: 1.45; }

    /* ── STATEMENT ─────────────────────────────────────────────── */
    .statement {
      background: var(--bg-section);
      padding: 112px 0;
      position: relative;
      overflow: hidden;
    }
    /* Decorative indigo circle */
    .statement::after {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(99,102,241,.08) 0%, transparent 70%);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }
    .statement > .container { position: relative; z-index: 1; }
    .statement-eye { display: flex; justify-content: center; margin-bottom: 48px; }
    .manifest-text {
      max-width: 860px;
      margin: 0 auto;
      text-align: center;
      font-family: 'Gabarito', sans-serif;
      font-size: clamp(1.8rem, 1rem + 3vw, 3.3rem);
      font-weight: 800;
      line-height: 1.18;
      letter-spacing: -.038em;
      color: var(--ink);
    }
    .manifest-text.js-split .w {
      display: inline-block;
      opacity: .15;
      transform: translateY(5px);
      transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
    }
    .manifest-text.js-split .w.lit { opacity: 1; transform: translateY(0); }

    /* ── VALUE CARDS ───────────────────────────────────────────── */
    .values { background: var(--bg); padding: 96px 0; }
    .section-head {
      text-align: center;
      margin-bottom: 56px;
    }
    .section-head .pill { margin-bottom: 16px; }
    .section-head h2 { margin-bottom: 14px; }
    .section-head p { color: var(--muted); font-size: 17px; max-width: 520px; margin: 0 auto; }
    .card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .value-card {
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 18px;
      padding: 34px 30px;
      transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.25s ease;
    }
    @media (hover: hover) and (pointer: fine) {
      .value-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(99,102,241,.2);
      }
    }
    .value-icon {
      width: 48px; height: 48px;
      background: var(--indigo-soft);
      border-radius: 13px;
      display: flex; align-items: center; justify-content: center;
      color: var(--indigo);
      margin-bottom: 20px;
    }
    .value-card h3 { color: var(--ink); margin-bottom: 10px; }
    .value-card p { color: var(--muted); font-size: 15px; line-height: 1.67; }

    /* ── SPLIT ─────────────────────────────────────────────────── */
    .split-section { background: var(--bg-soft); padding: 96px 0; border-top: 1px solid var(--border); }
    .split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
    .split-text .pill { margin-bottom: 16px; }
    .split-text h2 { margin-bottom: 20px; }
    .split-text p { color: var(--ink-2); font-size: 16px; line-height: 1.72; margin-bottom: 16px; }
    .split-text p:last-child { margin-bottom: 0; }
    .split-img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: 18px;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border);
    }

    /* ── PROCESS (STICKY) ──────────────────────────────────────── */
    .process { background: var(--bg-section); padding: 96px 0; border-top: 1px solid var(--border); }
    .process-head { margin-bottom: 64px; }
    .process-head .pill { margin-bottom: 16px; }
    .process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
    .process-sticky { position: sticky; top: calc(var(--hh) + 36px); }
    .process-num {
      font-family: 'Gabarito', sans-serif;
      font-size: clamp(4rem, 3rem + 3.5vw, 7.5rem);
      font-weight: 800;
      color: var(--indigo);
      line-height: 1;
      letter-spacing: -.07em;
      opacity: .15;
    }
    .process-sticky h3 { color: var(--ink); font-size: clamp(1.3rem, 1rem + 1.3vw, 2rem); margin: 4px 0 12px; }
    .process-sticky > p { color: var(--ink-2); font-size: 16px; line-height: 1.7; }
    .process-steps { display: flex; flex-direction: column; gap: 14px; }
    .step-item {
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      padding: 26px 28px;
      cursor: default;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .step-item.active {
      border-color: var(--indigo);
      box-shadow: 0 0 0 4px var(--indigo-xsoft);
    }
    .step-badge {
      display: inline-flex;
      align-items: center; justify-content: center;
      width: 28px; height: 28px;
      border-radius: 50%;
      font-family: 'Gabarito', sans-serif;
      font-weight: 800; font-size: 12px;
      background: var(--indigo-soft);
      color: var(--indigo);
      margin-bottom: 10px;
      transition: background 0.3s ease, color 0.3s ease;
    }
    .step-item.active .step-badge { background: var(--indigo); color: #fff; }
    .step-item h4 {
      font-family: 'Gabarito', sans-serif;
      font-weight: 700; font-size: 15px;
      color: var(--ink); letter-spacing: -.015em; margin-bottom: 5px;
    }
    .step-item p { font-size: 14px; color: var(--muted); line-height: 1.62; }

    /* ── ZIELGRUPPEN ───────────────────────────────────────────── */
    .zielgruppen { background: var(--bg); padding: 96px 0; }
    .audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .audience-card {
      background: var(--bg-soft);
      border: 1.5px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
    }
    @media (hover: hover) and (pointer: fine) {
      .audience-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
      .audience-card:hover .audience-img { transform: scale(1.04); }
    }
    .audience-img-wrap { overflow: hidden; }
    .audience-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 0.55s var(--ease-out); display: block; }
    .audience-body { padding: 28px 30px; }
    .audience-body h3 { color: var(--ink); margin-bottom: 10px; }
    .audience-body p { color: var(--muted); font-size: 15px; line-height: 1.67; }

    /* ── FAQ ───────────────────────────────────────────────────── */
    .faq { background: var(--bg-soft); border-top: 1px solid var(--border); padding: 96px 0; }
    .faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
    .faq-item { border-radius: 12px; overflow: hidden; }
    .faq-item summary {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 20px 22px;
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      cursor: pointer;
      list-style: none;
      font-weight: 600;
      font-size: 15px;
      color: var(--ink);
      transition: border-color 0.2s ease, background 0.15s ease;
      user-select: none;
      -webkit-user-select: none;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item[open] summary { border-bottom-color: transparent; border-bottom-left-radius: 0; border-bottom-right-radius: 0; border-color: var(--indigo); background: var(--indigo-xsoft); }
    .faq-item summary:hover:not(.faq-item[open] summary) { border-color: rgba(99,102,241,.3); }
    .faq-icon {
      width: 24px; height: 24px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: var(--muted);
      font-size: 16px;
      font-weight: 400;
      line-height: 1;
      transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.3s var(--ease-out);
      font-family: system-ui, sans-serif;
    }
    .faq-item[open] .faq-icon { background: var(--indigo); border-color: var(--indigo); color: #fff; transform: rotate(45deg); }
    .faq-body {
      background: var(--bg);
      border: 1.5px solid var(--indigo);
      border-top: none;
      border-bottom-left-radius: 12px;
      border-bottom-right-radius: 12px;
      padding: 16px 22px 22px;
      font-size: 15px;
      color: var(--ink-2);
      line-height: 1.72;
    }

    /* ── CONTACT ───────────────────────────────────────────────── */
    .contact { background: var(--bg-section); padding: 96px 0; border-top: 1px solid var(--border); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .contact-text .pill { margin-bottom: 16px; }
    .contact-text h2 { margin-bottom: 18px; }
    .contact-text > p { color: var(--ink-2); font-size: 16px; line-height: 1.7; }
    .trust-list { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
    .trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-2); }
    .trust-check {
      width: 20px; height: 20px;
      border-radius: 50%;
      background: var(--green-soft);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: var(--green);
    }
    .contact-form-card {
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 20px;
      padding: 40px;
      box-shadow: var(--shadow-md);
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
    .form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
    .form-field:last-of-type { margin-bottom: 0; }
    label.field-lbl {
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .form-field input,
    .form-field select,
    .form-field textarea {
      background: var(--bg-soft);
      border: 1.5px solid var(--border);
      border-radius: 10px;
      color: var(--ink);
      font-family: 'Onest', sans-serif;
      font-size: 15px;
      padding: 12px 15px;
      width: 100%;
      outline: none;
      appearance: none;
      -webkit-appearance: none;
      transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    }
    .form-field input::placeholder,
    .form-field textarea::placeholder { color: var(--muted); opacity: .6; }
    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: var(--indigo);
      background: var(--bg);
      box-shadow: 0 0 0 3px var(--indigo-soft);
    }
    .form-field select option { background: var(--bg); color: var(--ink); }
    .form-field textarea { resize: vertical; }
    .form-consents { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
    .form-consent {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 13px; color: var(--muted); cursor: pointer;
    }
    .form-consent input {
      margin-top: 2px;
      accent-color: var(--indigo);
      width: 15px; height: 15px;
      flex-shrink: 0; cursor: pointer;
    }
    .form-consent a { color: var(--indigo); }
    .btn-submit {
      width: 100%;
      justify-content: center;
      font-size: 15px;
      padding: 15px 26px !important;
    }
    .btn-submit:disabled { opacity: .35; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

    /* ── Scroll-to-top ─────────────────────────────────────────── */
    .scroll-top {
      position: fixed;
      right: 28px;
      bottom: 32px;
      z-index: 90;
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--indigo);
      color: #fff;
      border: none;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(99,102,241,.35);
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
      pointer-events: none;
    }
    .scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
    @media (hover: hover) and (pointer: fine) {
      .scroll-top:hover { background: var(--indigo-d); transform: translateY(-2px); }
    }
    .scroll-top:active { transform: scale(0.94); }
    @media (max-width: 959px) { .scroll-top { bottom: 90px; right: 16px; } }

    /* ── Owner hint box ────────────────────────────────────────── */
    .owner-hint {
      margin-top: 10px;
      padding: 11px 14px;
      background: var(--indigo-xsoft);
      border-radius: 8px;
      font-size: 12.5px;
      color: var(--muted);
      line-height: 1.6;
    }
    .owner-hint a { color: var(--indigo); }

    /* ── FOOTER ────────────────────────────────────────────────── */
    .site-footer {
      background: var(--ink);
      padding: 52px 0 32px;
    }
    .footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: start; }
    .footer-logo { font-family: 'Gabarito', sans-serif; font-weight: 800; font-size: 17px; letter-spacing: -.02em; color: #fff; }
    .footer-logo .logo-tld { color: var(--indigo); }
    .footer-brand p { color: rgba(255,255,255,.5); font-size: 14px; line-height: 1.65; max-width: 380px; margin-top: 12px; }
    .footer-nav { display: flex; flex-direction: column; gap: 12px; text-align: right; }
    .footer-nav a { font-size: 14px; color: rgba(255,255,255,.5); transition: color 0.15s ease; }
    .footer-nav a:hover { color: #fff; }
    .footer-copy {
      grid-column: 1/-1;
      font-size: 12px;
      color: rgba(255,255,255,.3);
      border-top: 1px solid rgba(255,255,255,.1);
      padding-top: 24px; margin-top: 8px;
    }
    .footer-copy em { color: var(--indigo); font-style: normal; font-weight: 600; }

    /* ── SCROLL REVEAL ─────────────────────────────────────────── */
    @media (prefers-reduced-motion: no-preference) {
      .rev {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
      }
      .rev.on { opacity: 1; transform: translateY(0); }
    }

    /* ── RESPONSIVE ────────────────────────────────────────────── */
    @media (max-width: 960px) {
      .hero-grid, .split-grid, .process-grid, .contact-grid { grid-template-columns: 1fr; }
      .hero-form-card { padding: 24px 20px 20px; }
      .card-grid { grid-template-columns: 1fr; }
      .audience-grid { grid-template-columns: 1fr; }
      .factband-grid { grid-template-columns: repeat(2, 1fr); }
      .fact { border-right: none; border-bottom: 1px solid var(--border); padding: 20px; }
      .fact:nth-child(odd) { border-right: 1px solid var(--border); }
      .fact:nth-last-child(-n+2) { border-bottom: none; }
      .process-sticky { position: static; margin-bottom: 28px; }
      .main-nav, .header-cta { display: none; }
      .footer-inner { grid-template-columns: 1fr; }
      .footer-nav { text-align: left; flex-direction: row; flex-wrap: wrap; gap: 20px; }
      .form-row { grid-template-columns: 1fr; }
    }

    
/* ══ ERHALTENE FEATURES (aus Vorversion, an Licht-Design angepasst) ══ */

/* Tokens-Ergänzung */
:root {
  --grad-dark: linear-gradient(135deg, #0D0D1A 0%, #1D1348 55%, #4338CA 130%);
}

/* ── Burger + Mobile-Menü ── */
.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 10px; margin-left: auto; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; top: var(--hh); left: 0; right: 0; z-index: 99; background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); padding: 10px 28px 22px; }
.mobile-menu[hidden] { display: none; }
.mobile-menu a { display: block; padding: 13px 0; font-family: 'Gabarito', sans-serif; font-weight: 700; font-size: 19px; color: var(--ink); border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: 0; }
@media (max-width: 960px) { .nav-burger { display: block; } }

/* ── Honeypot & Formular-Status ── */
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-status { font-weight: 600; font-size: 14.5px; padding: 12px 16px; border-radius: 10px; margin-bottom: 14px; }
.form-status[hidden] { display: none; }
.form-err { background: rgba(220, 38, 38, .08); color: #B91C1C; }

/* ── Erfolgs-Overlay (vollflächig, Batterie-Animation) ── */
@keyframes obqFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes obqRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.obq-close { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer; background: rgba(255,255,255,.12); color: inherit; font-size: 26px; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background .2s ease, transform .2s ease; }
.obq-close:hover { background: rgba(255,255,255,.22); transform: rotate(90deg); }
.obq-success { position: fixed; inset: 0; z-index: 9999; background: var(--grad-dark); color: #fff; display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; animation: obqFade .35s ease; transition: opacity .45s ease; }
.obq-success.is-hiding { opacity: 0; pointer-events: none; }
.obq-success-inner { max-width: 560px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.obq-success-inner > * { animation: obqRise .55s var(--ease-out) backwards; }
.obq-success-inner > :nth-child(2) { animation-delay: .15s; }
.obq-success-inner > :nth-child(3) { animation-delay: .28s; }
.obq-success-inner > :nth-child(4) { animation-delay: .42s; }
.obq-success h2 { color: #fff; font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem); max-width: 18ch; }
.obq-success p { font-size: 17px; color: rgba(255,255,255,.82); }
.obq-batt { display: block; filter: drop-shadow(0 0 24px rgba(99,102,241,.5)); }
@keyframes obqCell { from { opacity: 0; transform: scaleY(.3); } 60% { opacity: 1; transform: scaleY(1.08); } to { opacity: 1; transform: scaleY(1); } }
@keyframes obqBattGlow { 0%,100% { filter: drop-shadow(0 0 14px rgba(99,102,241,.4)); } 50% { filter: drop-shadow(0 0 30px rgba(99,102,241,.7)); } }
.obq-batt svg { animation: obqBattGlow 2.4s ease-in-out 1.6s infinite; }
.obq-batt .cell { opacity: 0; transform-origin: center bottom; transform-box: fill-box; animation: obqCell .5s var(--ease-out) forwards; }
.obq-batt .c1 { animation-delay: .25s; } .obq-batt .c2 { animation-delay: .7s; } .obq-batt .c3 { animation-delay: 1.15s; }
.obq-success .btn-primary { margin-top: 8px; }

/* ── Datenschutz-Overlay ── */
.obq-dse { position: fixed; inset: 0; z-index: 9998; background: rgba(13,13,26,.6); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 20px; animation: obqFade .3s ease; }
.obq-dse-card { position: relative; background: #fff; color: var(--ink); border-radius: 18px; width: min(760px, 100%); max-height: min(84vh, 900px); display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 30px 80px rgba(13,13,26,.4); animation: obqRise .4s var(--ease-out); }
.obq-dse .obq-close { background: var(--bg-soft); color: var(--ink); }
.obq-dse .obq-close:hover { background: var(--indigo-soft); }
.obq-dse-body { padding: 32px 32px 8px; overflow-y: auto; }
.obq-dse-body h1 { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem); margin-bottom: 12px; }
.obq-dse-body h2 { font-size: 1.1rem; margin: 22px 0 8px; }
.obq-dse-body p, .obq-dse-body li { color: var(--ink-2); font-size: 15px; line-height: 1.65; }
.obq-dse-body ul { padding-left: 20px; margin: 8px 0; list-style: disc; }
.obq-dse-loading { color: var(--muted); }
.obq-dse-foot { padding: 16px 32px 24px; border-top: 1px solid var(--border); }

/* ── Cookie-Consent (granular) ── */
.obq-cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9997; display: flex; justify-content: center; pointer-events: none; animation: obqRise .45s var(--ease-out); }
.obq-cookie-card { pointer-events: auto; background: #fff; color: var(--ink); border: 1.5px solid var(--border); border-radius: 18px; box-shadow: 0 24px 60px rgba(13,13,26,.22); padding: 22px 24px; width: min(640px, 100%); }
.obq-cookie-card h2 { font-size: 1.05rem; margin-bottom: 6px; }
.obq-cookie-card > p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }
.obq-cookie-card > p a { color: var(--indigo); }
.obq-cookie-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; border-top: 1px solid var(--border); }
.obq-cookie-row:first-of-type { margin-top: 14px; }
.obq-cookie-row-text { display: flex; flex-direction: column; gap: 2px; }
.obq-cookie-row-text strong { font-size: 14.5px; }
.obq-cookie-row-text span { font-size: 13px; color: var(--muted); line-height: 1.5; }
.obq-switch { position: relative; flex-shrink: 0; width: 46px; height: 26px; cursor: pointer; }
.obq-switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.obq-switch-slider { position: absolute; inset: 0; border-radius: 999px; background: #C9C9D9; transition: background .2s ease; }
.obq-switch-slider::before { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.25); transition: transform .2s ease; }
.obq-switch input:checked + .obq-switch-slider { background: var(--indigo); }
.obq-switch input:checked + .obq-switch-slider::before { transform: translateX(20px); }
.obq-switch input:focus-visible + .obq-switch-slider { outline: 3px solid var(--indigo); outline-offset: 2px; }
.obq-switch.is-locked { cursor: not-allowed; opacity: .6; }
.obq-cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.obq-cookie-actions .btn-secondary, .obq-cookie-actions .btn-primary { font-size: 14px; padding: 11px 18px; }
@media (max-width: 520px) { .obq-cookie-actions .btn-primary, .obq-cookie-actions .btn-secondary { width: 100%; justify-content: center; } }

/* ── Rechtsseiten ── */
.section-legal { background: var(--bg); padding: calc(var(--hh) + 64px) 0 96px; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 28px; }
.section-legal h1 { font-size: clamp(2rem, 1.5rem + 2vw, 3rem); margin-bottom: 8px; }
.section-legal h2 { font-size: 1.25rem; margin-top: 40px; margin-bottom: 12px; }
.section-legal p, .section-legal ul { margin-bottom: 16px; color: var(--ink-2); line-height: 1.7; }
.section-legal ul { padding-left: 20px; list-style: disc; }
.section-legal a { color: var(--indigo); }

/* ── Reduced Motion (global) ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ── Rollen-Auswahl (Eigentümer / Vermittler) ── */
.role-seg { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.role-opt { position: relative; cursor: pointer; }
.role-opt input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.role-opt span {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 12px 10px; font-size: 14px; font-weight: 600;
  color: var(--ink-2); background: var(--bg-soft);
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.role-opt input:checked + span { border-color: var(--indigo); background: var(--indigo-soft); color: var(--indigo); }
.role-opt input:focus-visible + span { outline: 3px solid var(--indigo); outline-offset: 2px; }
.role-opt:hover span { border-color: rgba(99,102,241,.4); }

fieldset.form-field { border: 0; min-width: 0; }
fieldset.form-field legend { padding: 0; }

/* ── Prozess: Sticky-Pin (Sektion rastet ein, Schritte laufen durch) ── */
.process-progress { margin-top: 22px; height: 4px; border-radius: 999px; background: var(--indigo-soft); overflow: hidden; max-width: 320px; }
.process-progress span { display: block; height: 100%; width: 0; border-radius: 999px; background: var(--indigo); transition: width 0.25s var(--ease-out); }

@media (min-width: 961px) and (min-height: 700px) and (prefers-reduced-motion: no-preference) {
  html.js .process-pin { height: 340vh; } /* 4 Schritte × ~80vh Scrollweg + Puffer */
  html.js .process-stage {
    position: sticky; top: 0; min-height: 100vh;
    display: flex; align-items: center;
    padding: calc(var(--hh) + 8px) 0 24px;
  }
  html.js .process-stage .process-head { margin-bottom: 40px; }
  html.js .process-stage .step-item { padding: 20px 24px; }
  html.js .process-stage .step-item p { font-size: 13.5px; }
}

/* ══ MOBILE-OPTIMIERUNG (UX-Pass 07.07.2026) ══ */

/* Prozess auf Mobile: dynamisches Panel + Stepping aus, alle Karten gleichwertig */
@media (max-width: 960px) {
  .process-sticky { display: none; }
  .process-head { margin-bottom: 32px; }
  .process-grid { gap: 0; }
  .step-item { border-color: var(--border) !important; box-shadow: none !important; }
  .step-item .step-badge { background: var(--indigo); color: #fff; }
}

/* Rhythmus & Randabstände auf Smartphones */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section-pad, .values, .split-section, .process, .zielgruppen, .faq, .contact { padding: 64px 0; }
  .statement { padding: 72px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head p { font-size: 15.5px; }

  .hero-grid { padding-block: 36px 56px; gap: 36px; }
  .hero-sub { font-size: 16px; }
  .hero-form-card { padding: 24px 18px 20px; border-radius: 18px; }

  .role-seg { grid-template-columns: 1fr; }
  .role-opt span { justify-content: flex-start; padding: 12px 14px; }

  .factband { padding: 8px 0; }
  .fact { padding: 18px 10px; }
  .fact-label { font-size: 12px; }

  .manifest-text { line-height: 1.24; }

  .value-card { padding: 26px 22px; }
  .split-grid { gap: 36px; }
  .audience-body { padding: 22px 20px; }

  .step-item { padding: 20px 18px; }

  .faq-item summary { padding: 16px 16px; font-size: 14.5px; }
  .faq-body { padding: 14px 16px 18px; font-size: 14.5px; }

  .contact-grid { gap: 40px; }
  .contact-form-card { padding: 24px 18px; border-radius: 16px; }
  .form-row { gap: 12px; margin-bottom: 12px; }

  .site-footer { padding: 44px 0 28px; }
  .footer-inner { gap: 28px; }

  .sticky-cta { padding: 12px 16px; padding-bottom: calc(12px + env(safe-area-inset-bottom)); gap: 10px; }
  .sticky-cta-text strong { font-size: 13px; }
  .sticky-cta-text span { font-size: 11px; }
  .sticky-cta-btn { padding: 11px 16px !important; font-size: 13.5px !important; }

  .obq-cookie { left: 10px; right: 10px; bottom: 10px; }
  .obq-cookie-card { padding: 18px 16px; }
}

/* Sicherheitsnetz: .container behält seine Seitenränder immer (Shorthand-Schutz) */
.container { padding-inline: 28px !important; }
@media (max-width: 640px) { .container { padding-inline: 20px !important; } }
