  /* Modern-technischer SaaS-Look (Richtung Linear/Stripe): neutrale Basis, ein kraeftiger
     Indigo-Akzent, straffe Sans-Serif-Typo mit engem Tracking, grosses Produkt-Mockup im Hero,
     Feature-Karten mit Inline-SVG-Icons, dunkles Grundsatz-Band, klar abgestufte Preiskarten.
     Bewusst ohne externe Fonts/CDNs (System-Stack) - No-CDN-Policy des Projekts. */
  :root {
    --bg: #fafafa;
    --surface: #ffffff;
    --surface-2: #f4f4f5;
    --line: #e4e4e7;
    --line-strong: #d4d4d8;
    --ink: #09090b;
    --ink-soft: #52525b;
    --ink-faint: #a1a1aa;
    --accent: #4f46e5;
    --accent-strong: #4338ca;
    --accent-soft: rgba(79, 70, 229, 0.08);
    --accent-line: rgba(79, 70, 229, 0.28);
    --ok: #16a34a;
    --warn: #d97706;
    --band-bg: #0d0d12;
    --band-ink: #fafafa;
    --band-soft: #a1a1aa;
    --band-line: rgba(255, 255, 255, 0.09);
    --nav-bg-rgb: 250, 250, 250;
    --shadow-lg: 0 1px 2px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.07), 0 24px 64px rgba(0,0,0,0.07);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05), 0 2px 8px rgba(0,0,0,0.04);
  }
  :root[data-theme="dark"] {
    --bg: #0b0b0f;
    --surface: #131318;
    --surface-2: #1a1a21;
    --line: #26262e;
    --line-strong: #33333d;
    --ink: #f4f4f5;
    --ink-soft: #a1a1aa;
    --ink-faint: #63636e;
    --accent: #818cf8;
    --accent-strong: #a5b4fc;
    --accent-soft: rgba(129, 140, 248, 0.1);
    --accent-line: rgba(129, 140, 248, 0.32);
    --band-bg: #131318;
    --band-ink: #f4f4f5;
    --band-soft: #a1a1aa;
    --band-line: rgba(255, 255, 255, 0.08);
    --nav-bg-rgb: 11, 11, 15;
    --shadow-lg: 0 1px 2px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.45), 0 24px 64px rgba(0,0,0,0.45);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.3);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-variant-numeric: tabular-nums;
  }
  .mono { font-family: 'SFMono-Regular', ui-monospace, Consolas, Menlo, monospace; }
  a { color: inherit; text-decoration: none; }
  .wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
  button { appearance: none; -webkit-appearance: none; font-family: inherit; cursor: pointer; }

  /* --- nav --- */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(var(--nav-bg-rgb), 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }
  .nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 60px; }
  .brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 16px; letter-spacing: -0.02em; }
  .brand-mark { width: 24px; height: 24px; flex-shrink: 0; }
  .nav-actions { display: flex; align-items: center; gap: 18px; }
  .nav-actions a { font-size: 13.5px; font-weight: 500; color: var(--ink-soft); transition: color .15s ease; }
  .nav-actions a:hover { color: var(--ink); }
  .nav-cta {
    background: var(--ink); color: var(--bg); font-weight: 600; font-size: 13px;
    padding: 8px 16px; border-radius: 6px; border: none;
    transition: opacity .15s ease;
  }
  .nav-cta:hover { opacity: 0.85; }
  .theme-toggle {
    width: 32px; height: 32px; border-radius: 6px; border: 1px solid var(--line); background: transparent;
    color: var(--ink); display: flex; align-items: center; justify-content: center; cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
  }
  .theme-toggle:hover { border-color: var(--line-strong); background: var(--surface-2); }
  .theme-toggle svg { width: 15px; height: 15px; }
  .theme-toggle .icon-sun { display: none; }
  :root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
  :root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

  /* --- Hamburger + Ausklappmenue (nur Handy, siehe Media-Query unten) --- */
  .nav-burger {
    display: none;
    width: 36px; height: 36px; border-radius: 8px;
    border: 1px solid var(--line); background: var(--surface); cursor: pointer;
    flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    transition: border-color .15s ease;
  }
  .nav-burger span {
    display: block; width: 17px; height: 1.5px; border-radius: 2px; background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
  }
  /* Offen: obere und untere Linie kreuzen sich zum X, die mittlere blendet aus. */
  .nav-burger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed; left: 0; right: 0; top: 60px; bottom: 0; z-index: 49;
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 20px 24px calc(24px + env(safe-area-inset-bottom));
    flex-direction: column; gap: 2px;
    overflow-y: auto;
    /* Nicht ueber display umgeschaltet, sonst laesst sich der Uebergang nicht animieren. */
    opacity: 0; transform: translateY(-6px);
    visibility: hidden; pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
  }
  .mobile-menu.open { opacity: 1; transform: none; visibility: visible; pointer-events: auto; }
  .mobile-menu a {
    font-size: 17px; font-weight: 600; letter-spacing: -0.01em;
    padding: 15px 2px; border-bottom: 1px solid var(--line);
  }
  .mobile-menu a:last-of-type { border-bottom: none; }
  .mobile-menu .btn-primary { margin-top: 18px; width: 100%; padding: 15px; font-size: 15.5px; }

  /* --- hero --- */
  .hero { position: relative; padding: 88px 0 0; overflow: hidden; }
  .hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(600px 320px at 50% -80px, var(--accent-soft), transparent 70%);
  }
  .hero .wrap { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12.5px; font-weight: 550; color: var(--ink-soft);
    border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px;
    background: var(--surface); margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
  }
  .hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
  h1 {
    font-size: clamp(38px, 5.6vw, 62px); line-height: 1.04; letter-spacing: -0.035em; font-weight: 750;
    max-width: 820px; margin-bottom: 22px;
  }
  h1 .accent { color: var(--accent); }
  .hero p.lead { font-size: 17.5px; line-height: 1.6; color: var(--ink-soft); max-width: 580px; margin-bottom: 34px; }
  .hero-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: center; margin-bottom: 20px; }
  .btn-primary {
    background: var(--accent); color: #fff; font-weight: 600; font-size: 14.5px;
    padding: 13px 24px; border-radius: 8px; border: none; cursor: pointer;
    transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.14);
  }
  :root[data-theme="dark"] .btn-primary { color: #0b0b0f; }
  .btn-primary:hover { background: var(--accent-strong); transform: translateY(-1px); }
  .btn-outline {
    background: var(--surface); color: var(--ink); font-weight: 600; font-size: 14.5px;
    padding: 13px 22px; border-radius: 8px; border: 1px solid var(--line-strong); cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
  }
  .btn-outline:hover { border-color: var(--ink-faint); background: var(--surface-2); }
  .hero-note { font-size: 12.5px; color: var(--ink-faint); margin-bottom: 56px; }

  /* --- Produkt-Mockup im Hero: originalgetreue Miniatur der echten App-Uebersicht ---
     Farben, Layout und Inhalte entsprechen 1:1 dem Chef-Dashboard in app.css/app.js
     (Desktop-Ansicht ab 900px: Seitenleiste links, Gold-Akzent, Karten mit 4px-Radius,
     Donut-Karten fuer Status/Abrechnung, Stunden-pro-Baustelle-Liste). Eigene m-*
     Variablen = echte App-Palette, gekoppelt ans Landing-Theme wie in der App selbst. */
  :root {
    --m-bg: #f4f2ee; --m-surface: #ffffff; --m-raised: #ececea; --m-border: #d6d0c6;
    --m-text: #332f2a; --m-muted: #6b655d; --m-accent: #dba13a; --m-accent-text: #1a1704;
  }
  :root[data-theme="dark"] {
    --m-bg: #181a1b; --m-surface: #232527; --m-raised: #2b2e30; --m-border: #37393b;
    --m-text: #eeece6; --m-muted: #9a9d9f; --m-accent: #f2c230; --m-accent-text: #1a1704;
  }
  .mock {
    position: relative; width: 100%; max-width: 960px; margin: 0 auto;
    border: 1px solid var(--line); border-bottom: none;
    border-radius: 12px 12px 0 0; background: var(--surface);
    box-shadow: var(--shadow-lg); overflow: hidden;
    text-align: left;
  }
  .mock-bar { display: flex; align-items: center; gap: 8px; padding: 11px 16px; border-bottom: 1px solid var(--line); background: var(--surface); }
  .mock-bar .dots { display: flex; gap: 6px; }
  .mock-bar .dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
  .mock-bar .url {
    flex: 1; max-width: 320px; margin: 0 auto; text-align: center;
    font-size: 11px; color: var(--ink-faint); background: var(--surface-2);
    border: 1px solid var(--line); border-radius: 6px; padding: 4px 12px;
    font-family: 'SFMono-Regular', ui-monospace, Consolas, Menlo, monospace;
  }
  .mock-app { display: grid; grid-template-columns: 186px 1fr; min-height: 420px; background: var(--m-bg); color: var(--m-text); }
  .mock-side { border-right: 1px solid var(--m-border); padding: 14px 10px; display: flex; flex-direction: column; gap: 3px; }
  .mock-side .word { font-size: 14px; font-weight: 800; letter-spacing: -0.01em; padding: 4px 10px 14px; }
  .mock-side .item {
    display: flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 600;
    color: var(--m-muted); padding: 8px 11px; border-radius: 4px;
  }
  .mock-side .item svg { width: 15px; height: 15px; flex-shrink: 0; }
  .mock-side .item.active { background: rgba(242,194,48,0.14); color: var(--m-accent); box-shadow: inset 3px 0 0 var(--m-accent); }
  .mock-main { padding: 18px 20px; }
  .mock-title { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 12px; }
  .mock-seg {
    display: inline-flex; gap: 4px; background: var(--m-surface); border: 1px solid var(--m-border);
    border-radius: 4px; padding: 3px; margin-bottom: 14px;
  }
  .mock-seg span { font-size: 11.5px; font-weight: 700; padding: 6px 14px; border-radius: 4px; color: var(--m-muted); }
  .mock-seg span.active { background: var(--m-accent); color: var(--m-accent-text); }
  .mock-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
  .mock-stat { background: var(--m-surface); border: 1px solid var(--m-border); border-top: 3px solid var(--m-accent); border-radius: 4px; padding: 12px 14px; }
  .mock-stat.grad { background: linear-gradient(135deg, var(--m-raised), var(--m-surface)); }
  .mock-stat .l { font-size: 10.5px; color: var(--m-muted); margin-bottom: 3px; }
  .mock-stat .v { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
  .mock-stat .v.accent { color: var(--m-accent); }
  .mock-stat .v .unit { font-size: 12px; color: var(--m-muted); font-weight: 600; }
  .mock-minis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 12px; }
  .mock-mini { background: var(--m-surface); border: 1px solid var(--m-border); border-top: 3px solid var(--m-muted); border-radius: 4px; padding: 10px 12px; text-align: center; }
  .mock-mini .n { font-size: 17px; font-weight: 700; }
  .mock-mini .l { font-size: 10.5px; color: var(--m-muted); margin-top: 1px; }
  .mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .mock-card { background: var(--m-surface); border: 1px solid var(--m-border); border-radius: 4px; padding: 12px 13px; }
  .mock-card .t { font-size: 11.5px; font-weight: 700; color: var(--m-muted); margin-bottom: 10px; }
  .mock-donut-row { display: flex; align-items: center; gap: 12px; }
  .mock-donut { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; position: relative; }
  .mock-donut::after { content: ''; position: absolute; inset: 11px; border-radius: 50%; background: var(--m-surface); }
  .mock-donut.status { background: conic-gradient(#4a90d9 0 160deg, #e8974a 160deg 240deg, #4caf7d 240deg 360deg); }
  .mock-donut.billing { background: conic-gradient(#9b7fd4 0 236deg, #4a90d9 236deg 360deg); }
  .mock-legend { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 0; }
  .mock-legend .lg { display: flex; align-items: center; gap: 6px; font-size: 11px; }
  .mock-legend .lg .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
  .mock-legend .lg .lbl { color: var(--m-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .mock-legend .lg b { margin-left: auto; font-weight: 700; }
  .mock-sitelist { display: flex; flex-direction: column; }
  .mock-sitelist .sl { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 11.5px; padding: 4px 0; }
  .mock-sitelist .sl .lbl { color: var(--m-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
  .mock-sitelist .sl b { font-weight: 700; flex-shrink: 0; }
  .hero-fade { height: 88px; margin-top: -88px; position: relative; background: linear-gradient(to bottom, transparent, var(--bg)); pointer-events: none; }

  /* --- Statistik-Zeile unter dem Hero --- */
  .statbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
  .statbar .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
  .statbar .cell { padding: 26px 20px; text-align: center; border-left: 1px solid var(--line); }
  .statbar .cell:first-child { border-left: none; }
  .statbar .n { font-size: 24px; font-weight: 750; letter-spacing: -0.02em; margin-bottom: 3px; }
  .statbar .l { font-size: 12.5px; color: var(--ink-soft); }

  /* --- section shell --- */
  section { padding: 96px 0; }
  .section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
  .section-eyebrow {
    display: inline-block; font-size: 12px; font-weight: 650; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 14px;
  }
  .section-title { font-size: clamp(28px, 3.6vw, 40px); font-weight: 750; letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 14px; }
  .section-sub { color: var(--ink-soft); font-size: 16px; line-height: 1.6; }

  /* --- features: 4 grosse Karten + kompaktes Raster --- */
  .features-main { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .f-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
    padding: 26px; position: relative; overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
  }
  .f-card:hover { border-color: var(--accent-line); box-shadow: var(--shadow-sm); }
  .f-icon {
    width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center;
    background: var(--accent-soft); color: var(--accent); margin-bottom: 16px;
  }
  .f-icon svg { width: 19px; height: 19px; }
  .f-card h3 { font-size: 16.5px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 7px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
  .f-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
  .features-more { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .f-card.small { padding: 20px 22px; }
  .f-card.small .f-icon { width: 32px; height: 32px; border-radius: 8px; margin-bottom: 13px; }
  .f-card.small .f-icon svg { width: 16px; height: 16px; }
  .f-card.small h3 { font-size: 14.5px; }
  .f-card.small p { font-size: 13px; }
  .badge-business {
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
    background: var(--accent-soft); color: var(--accent);
    border-radius: 999px; padding: 2.5px 8px;
  }

  /* --- Ablauf: 3 Schritte mit Verbindungslinie --- */
  .flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; position: relative; }
  .flow-step {
    background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 26px;
    position: relative;
  }
  .flow-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 8px; font-size: 13px; font-weight: 700;
    background: var(--ink); color: var(--bg); margin-bottom: 16px;
  }
  .flow-step h4 { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 7px; }
  .flow-step p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

  /* --- Grundsatz: dunkles Band in beiden Themes --- */
  .principle { background: var(--band-bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .principle .inner { text-align: center; padding: 0; }
  .principle .section-eyebrow { color: var(--accent); }
  :root[data-theme="dark"] .principle .section-eyebrow { color: var(--accent); }
  .principle h2 {
    color: var(--band-ink); font-size: clamp(26px, 3.4vw, 38px); font-weight: 750; letter-spacing: -0.03em;
    line-height: 1.15; max-width: 700px; margin: 0 auto 18px;
  }
  .principle p.lead-p { color: var(--band-soft); font-size: 15.5px; line-height: 1.7; max-width: 620px; margin: 0 auto 52px; }
  .principle-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; text-align: left; max-width: 860px; margin: 0 auto;
  }
  .principle-card { background: rgba(255,255,255,0.03); border: 1px solid var(--band-line); border-radius: 12px; padding: 28px; }
  .pc-label { font-size: 11.5px; font-weight: 650; text-transform: uppercase; letter-spacing: 0.06em; color: var(--band-soft); margin-bottom: 14px; }
  .pi-title { font-size: 17px; font-weight: 700; color: var(--band-ink); margin-bottom: 8px; letter-spacing: -0.01em; }
  .pi-text { color: var(--band-soft); font-size: 13.5px; line-height: 1.6; }
  .price-compare-rows { display: flex; flex-direction: column; gap: 16px; }
  .price-compare-rows .row { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 14px; border-bottom: 1px solid var(--band-line); }
  .price-compare-rows .row:last-child { border-bottom: none; padding-bottom: 0; }
  .price-compare-rows .label { font-size: 13.5px; color: var(--band-soft); }
  .price-compare-rows .amount { font-size: 24px; font-weight: 750; letter-spacing: -0.02em; color: var(--band-ink); }
  .price-compare-rows .row.noquu .amount { color: var(--accent); }
  .price-compare-rows .row.noquu .label { color: var(--band-ink); font-weight: 600; }

  /* --- pricing --- */
  .pricing-table { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; align-items: stretch; }
  .price-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
    padding: 24px 20px; display: flex; flex-direction: column; position: relative;
    transition: border-color .2s ease, box-shadow .2s ease;
  }
  .price-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
  .price-card.featured {
    border-color: var(--accent-line);
    box-shadow: 0 0 0 1px var(--accent-line), var(--shadow-sm);
  }
  .price-card .tier-badge {
    position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
    font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
    background: var(--accent); color: #fff; border-radius: 999px; padding: 4px 12px; white-space: nowrap;
  }
  :root[data-theme="dark"] .price-card .tier-badge { color: #0b0b0f; }
  .price-card .tier { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
  .price-card .tier-sub { color: var(--ink-soft); font-size: 12px; margin: 4px 0 18px; line-height: 1.45; min-height: 34px; }
  .price-card .price { margin-bottom: 20px; display: flex; align-items: baseline; gap: 4px; }
  .price-card .price .amount { font-size: 30px; font-weight: 750; letter-spacing: -0.03em; }
  .price-card .price .period { color: var(--ink-faint); font-size: 12.5px; }
  .price-features { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
  .price-features li { font-size: 12.5px; color: var(--ink-soft); padding-left: 20px; position: relative; line-height: 1.45; }
  .price-features li::before {
    content: ''; position: absolute; left: 0; top: 3px; width: 13px; height: 13px;
    border-radius: 50%; background: var(--accent-soft);
  }
  .price-features li::after {
    content: ''; position: absolute; left: 3.5px; top: 6.5px; width: 6px; height: 3.5px;
    border-left: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent);
    transform: rotate(-45deg);
  }
  .price-card button { width: 100%; padding: 11px 12px; font-size: 13px; }
  .pricing-note { text-align: center; color: var(--ink-faint); font-size: 12.5px; margin-top: 28px; }

  @media (max-width: 1024px) {
    .pricing-table { grid-template-columns: repeat(2, 1fr); }
    .price-card.featured { grid-column: span 2; }
  }
  @media (max-width: 560px) {
    .pricing-table { grid-template-columns: 1fr; }
    .price-card.featured { grid-column: auto; }
  }

  /* --- FAQ --- */
  .faq { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
  .faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; transition: border-color .2s ease; }
  .faq-item:hover, .faq-item[open] { border-color: var(--line-strong); }
  .faq-item summary {
    padding: 17px 20px; font-weight: 600; font-size: 14.5px; letter-spacing: -0.01em; cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+'; color: var(--ink-faint); font-size: 19px; font-weight: 400; flex-shrink: 0;
    transition: transform .2s ease, color .2s ease;
  }
  .faq-item[open] summary::after { transform: rotate(45deg); color: var(--accent); }
  .faq-item p { color: var(--ink-soft); font-size: 13.5px; line-height: 1.65; padding: 0 20px 18px; margin: 0; }

  /* --- cta band --- */
  .cta-band {
    text-align: center; background: var(--band-bg); border-radius: 16px; padding: 72px 32px;
    position: relative; overflow: hidden; border: 1px solid var(--line);
  }
  .cta-band::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(480px 240px at 50% 0%, var(--accent-soft), transparent 70%);
  }
  .cta-band h2 { position: relative; color: var(--band-ink); font-size: clamp(26px, 3.4vw, 36px); font-weight: 750; letter-spacing: -0.03em; margin-bottom: 12px; }
  .cta-band p { position: relative; color: var(--band-soft); font-size: 15.5px; margin-bottom: 30px; }
  .cta-band .btn-primary { position: relative; }

  /* --- Noquu Tools: Werkzeugliste auf /tools --- */
  .nav-link.active { color: var(--ink); font-weight: 650; }
  a.brand { color: inherit; }
  .tool-list { display: flex; flex-direction: column; gap: 16px; }
  .tool-row {
    display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start;
    background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 26px;
  }
  .tool-head { display: flex; gap: 14px; align-items: flex-start; }
  .tool-head h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 3px; }
  .tool-norm {
    font-size: 11.5px; font-weight: 600; color: var(--accent);
    text-transform: uppercase; letter-spacing: 0.04em;
  }
  .tool-body p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 14px; }
  .tool-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
  .tool-points li { font-size: 13.5px; color: var(--ink-soft); padding-left: 20px; position: relative; line-height: 1.5; }
  .tool-points li::before {
    content: ''; position: absolute; left: 0; top: 3px; width: 13px; height: 13px;
    border-radius: 50%; background: var(--accent-soft);
  }
  .tool-points li::after {
    content: ''; position: absolute; left: 3.5px; top: 6.5px; width: 6px; height: 3.5px;
    border-left: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent);
    transform: rotate(-45deg);
  }
  /* Drei statt fuenf Preiskarten - sonst blieben zwei Spalten des Fuenfer-Rasters leer. */
  .tools-pricing { grid-template-columns: repeat(3, 1fr); }
  /* Hervorgehobener Verweis auf die jeweils andere Seite im Ausklappmenue. */
  .mobile-menu a.menu-highlight { color: var(--accent); }

  footer { border-top: 1px solid var(--line); padding: 26px 0; }
  .social-link { display: inline-flex; align-items: center; gap: 7px; transition: color .15s ease; }
  .social-link svg { width: 16px; height: 16px; flex-shrink: 0; }
  .social-link:hover { color: var(--accent); }
  footer .wrap { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--ink-soft); flex-wrap: wrap; gap: 10px; }
  footer a:hover { color: var(--ink); }

  @media (max-width: 860px) {
    .hero { padding: 56px 0 0; }
    section { padding: 68px 0; }
    .mock-app { grid-template-columns: 1fr; }
    .mock-side { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--m-border); padding: 10px 12px; align-items: center; }
    .mock-side .word { padding: 0 8px 0 0; }
    .mock-side .item { white-space: nowrap; }
    .mock-side .item.active { box-shadow: inset 0 -2px 0 var(--m-accent); }
    .mock-cards { grid-template-columns: 1fr; }
    .mock-stats { grid-template-columns: 1fr; }
    .statbar .wrap { grid-template-columns: repeat(2, 1fr); }
    .statbar .cell:nth-child(3) { border-left: none; border-top: 1px solid var(--line); }
    .statbar .cell:nth-child(4) { border-top: 1px solid var(--line); }
    .features-main { grid-template-columns: 1fr; }
    .features-more { grid-template-columns: 1fr; }
    .flow { grid-template-columns: 1fr; }
    .principle-grid { grid-template-columns: 1fr; }
    .tool-row { grid-template-columns: 1fr; gap: 18px; padding: 22px; }
    .tools-pricing { grid-template-columns: 1fr; }
  }
  /* Das Abo-Raster wird ab 1024px zweispaltig und laesst die hervorgehobene Karte ueber beide
     Spalten laufen. Fuer die drei Tools-Karten passt das nicht - hier direkt einspaltig, und
     das geerbte "span 2" muss mit zurueckgesetzt werden, sonst entsteht eine leere Spalte. */
  @media (max-width: 1024px) {
    .tools-pricing { grid-template-columns: 1fr; }
    .tools-pricing .price-card.featured { grid-column: auto; }
  }
  /* Ab hier passen Links, Umschalter und Aktionsknopf nicht mehr nebeneinander in die Leiste -
     alles Weitere wandert ins Ausklappmenue, oben bleiben nur Marke, Hell/Dunkel und Burger. */
  @media (max-width: 760px) {
    .nav-actions { gap: 10px; }
    .nav-actions .nav-link { display: none; }
    .nav-cta { display: none; }
    .nav-burger { display: flex; }
    .mobile-menu { display: flex; }
  }
  @media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
    /* Ohne Bewegung darf das Menue nicht ueber die Transition eingeblendet werden - sonst
       bliebe visibility auf hidden haengen und das Menue liesse sich nicht mehr oeffnen. */
    .mobile-menu { transition: none; }
  }

  :focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
