    :root {
      --bg: #f5f7fa;
      --surface: #ffffff;
      --muted: #f0f4f9;
      --text: #1e293b;
      --text-dim: #475569;
      --brand: #2563eb;
      --brand-strong: #1d4ed8;
      --radius: 16px;
      --shadow: 0 6px 18px rgba(0,0,0,0.08);
      --maxw: 1200px;
    }
    * { box-sizing: border-box; }
    html, body { height: 100%; }
    body {
      margin: 0;
font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";      background: var(--bg);
      color: var(--text);
    }
    a { color: #010F70; text-decoration: none; }
    .container { max-width: var(--maxw); margin-inline: auto; padding: 0 20px; }

    header {
      position: sticky; top: 0; z-index: 1000;
      backdrop-filter: blur(8px);
      background: rgba(255, 255, 255, 0.9);
      border-bottom: 1px solid #e2e8f0;
    }
    .nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: 0.3px; }
    .brand .logo {
      width: 36px; height: 36px; display: grid; place-items: center;
      background: linear-gradient(135deg, var(--brand), #38bdf8);
      border-radius: 10px; box-shadow: var(--shadow);
      color: #fff; font-weight: 900;
    }
    .menu { display: flex; align-items: center; gap: 18px; }
    .menu > li { list-style: none; position: relative; }
    .menu > li > a { display: inline-flex; align-items: center; gap: 8px; padding: 13px 12px; border-radius: 10px; color: var(--text-dim); }
    .menu > li > a:hover { background: var(--muted); color: var(--text); }

    .dropdown { position: absolute; left: 0; top: 48px; min-width: 260px; padding: 10px; display: none;
      background: #ffffff; border: 1px solid #e2e8f0; border-radius: 14px; box-shadow: var(--shadow);
    }
    .menu > li:hover > .dropdown { display: grid; }
    .dropdown a { padding: 10px 12px; display: block; color: var(--text-dim); border-radius: 10px; }
    .dropdown a:hover { background: var(--muted); color: var(--text); }

    .hamb { display: none; background: none; border: 0; color: var(--text); font-size: 20px; padding: 10px; border-radius: 10px; }
    .hamb:focus { outline: 2px solid var(--brand); outline-offset: 2px; }
    .mobile-panel {
      display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 2000;
    }
    .mobile-sheet {
      position: absolute;
      left: 50%;
      top: 10px;
      transform: translateX(-50%);
      width: 90%;
      max-width: 400px;
      background: #ffffff;
      border-radius: 18px;
      box-shadow: var(--shadow);
      padding: 18px;
      overflow-y: auto;
      max-height: 100vh;
    }
    .mobile-links a { display: flex; justify-content: space-between; padding: 14px 12px; color: var(--text); border-radius: 12px; }
    .mobile-links a:hover { background: var(--muted); }
    details { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; margin: 8px 0; }
    details summary { cursor: pointer; list-style: none; padding: 14px 12px; color: var(--text-dim); }
    details[open] summary { color: var(--text); }
    details .sub { padding: 8px 10px 12px; display: grid; gap: 6px; }
    details .sub a { color: var(--text-dim); padding: 10px 10px; border-radius: 10px; }
    details .sub a:hover { background: var(--muted); color: var(--text); }

    .hero { position: relative; padding: 72px 0 64px; background: linear-gradient(135deg, #eff6ff, #f0fdfa); }
    .hero .wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center; }
    .badge { display: inline-flex; gap: 8px; align-items: center; padding: 6px 10px; border-radius: 999px; font-size: 12px; color: #fff; background: linear-gradient(135deg, var(--brand), #38bdf8); font-weight: 700; }
    .title { font-size: clamp(28px, 4vw, 48px); margin: 14px 0 12px; line-height: 1.1; }
    .muted { color: var(--text-dim); font-size: 16px; }
    .cta { display: flex; gap: 12px; margin-top: 20px; }
    .btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 16px; border-radius: 12px; font-weight: 600; border: 1px solid transparent; cursor: pointer; }
    .btn-primary { background: linear-gradient(135deg, var(--brand), #38bdf8); color: #fff; }
    .btn-ghost { border-color: #e2e8f0; color: var(--text); background: #f8fafc; }
    .btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
    .hero-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 18px; padding: 18px; display: grid; gap: 12px; box-shadow: var(--shadow); }
    .hero-card .line { display: flex; align-items: center; gap: 10px; padding: 12px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; }

    .section { padding: 36px 0; }
    .sec-head { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
    .sec-title { font-size: clamp(20px, 3vw, 28px); margin: 0; }
    .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 16px; display: grid; gap: 8px; min-height: 150px; box-shadow: var(--shadow); }
    .card h3 { margin: 0; font-size: 18px; }
    .card p { margin: 0; color: var(--text-dim); font-size: 14px; }
    .card a { margin-top: 6px; display: inline-flex; gap: 6px; align-items: center; color: var(--brand); font-weight: 600; }
    .card a:hover { color: var(--brand-strong); }

    .cta-banner { margin-top: 24px; background: linear-gradient(135deg, #2563eb, #38bdf8); color: #fff; border-radius: 18px; padding: 20px; display: grid; align-items: center; grid-template-columns: 1fr auto; gap: 16px; }
    .cta-banner .cta-buttons { display: flex; gap: 10px; }

    footer { margin-top: 40px; padding: 20px; border-top: 1px solid #e2e8f0; background: #f8fafc; }
    .foot { display: grid; gap: 20px; grid-template-columns: 2fr 1fr 1fr; padding: 28px 0; }
    .foot small, .foot a { color: #0C3487; }
    .foot a:hover { color: var(--text); }
    .copyright { border-top: 1px solid #e2e8f0; color: var(--text-dim); font-size: 12px; padding: 14px 0; }
    .vergleich-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1rem; }

    input, select, textarea {
      font-size: 16px;
padding:12px; border-radius:12px; border:1px background:#0f172a; color:var(--text);
    }
    #suggestions {
      position: absolute;
      z-index: 999;
      max-width: 100%;
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      max-height: 200px;
      overflow-y: auto;
      box-sizing: border-box;
      padding: 5px 0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    .suggestion-item {
      padding: 12px 15px;
      cursor: pointer;
      font-size: 15px;
      color: #333;
      transition: background-color 0.2s ease;
    }
    .suggestion-item:hover {
      background-color: #f5f5f5;
    }
    .suggestion-item:active {
      background-color: #e0e0e0;
    }
    #scrollToTopBtn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #004C99;
      color: #fff;
      padding: 10px 14px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 20px;
      font-weight: bold;
      box-shadow: 0 3px 6px rgba(0,0,0,0.2);
      display: none;
      transition: opacity 0.3s;
    }
    #scrollToTopBtn:hover {
      background: #0066cc;
    }
    @media (max-width: 980px) {
      .hamb { display: inline-flex; }
      .menu { display: none; }
      .hero .wrap { grid-template-columns: 1fr; }
      .grid { grid-template-columns: 1fr; }
      .foot { grid-template-columns: 1fr; }
      .vergleich-grid { grid-template-columns: 1fr; }
    }
    details .a {
        padding: 15px;
        line-height: 1.6;
    }
    .error {
        color: red;
    }
    @media (max-width: 768px) {
        .sec-head { flex-direction: column; align-items: flex-start; }
        .cta-banner { grid-template-columns: 1fr; text-align: center; }
        .container { margin-top: 10px; }
        .badge { padding: 6px 10px; max-width: 280px;
    }
