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

    :root {
      --green:       #1D9E75;
      --green-light: #E1F5EE;
      --green-dark:  #0F6E56;
      --bg:          #FAFAF8;
      --surface:     #FFFFFF;
      --surface-2:   #F4F4F1;
      --border:      rgba(0,0,0,0.08);
      --border-mid:  rgba(0,0,0,0.14);
      --text-1:      #1A1A18;
      --text-2:      #6B6B65;
      --text-3:      #A5A59E;
      --font:        'DM Sans', system-ui, sans-serif;
      --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 20px;
    }

    html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
    body { font-family: var(--font); background: var(--bg); color: var(--text-1); line-height: 1.6; }
    a { color: inherit; text-decoration: none; }
    button { font-family: var(--font); cursor: pointer; }

    /* ── Layout ── */
    .container { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }

    /* ── Nav ── */
    nav {
      position: sticky; top: 0; z-index: 50;
      background: rgba(250,250,248,0.92);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 56px;
    }
    .logo { font-size: 18px; font-weight: 500; letter-spacing: -0.3px; }
    .logo span { color: var(--green); }
    .nav-right { display: flex; align-items: center; gap: 12px; }
    .btn-ghost {
      border: 1px solid var(--border-mid); background: transparent;
      border-radius: var(--r-md); padding: 7px 16px; font-size: 13px;
      color: var(--text-1); transition: background 0.15s;
    }
    .btn-ghost:hover { background: var(--surface-2); }
    .btn-primary {
      background: var(--green); color: #fff; border: none;
      border-radius: var(--r-md); padding: 8px 20px; font-size: 13px;
      font-weight: 500; transition: opacity 0.15s;
    }
    .btn-primary:hover { opacity: 0.88; }
    .btn-primary.lg { padding: 12px 28px; font-size: 15px; border-radius: var(--r-lg); }

    /* ── Hero ── */
    .hero {
      padding: 5rem 0 4rem;
      border-bottom: 1px solid var(--border);
    }
    .eyebrow {
      display: inline-block;
      font-size: 12px; font-weight: 500; letter-spacing: 0.6px;
      text-transform: uppercase; color: var(--green);
      background: var(--green-light); border-radius: 20px;
      padding: 4px 12px; margin-bottom: 1.25rem;
    }
    .hero h1 {
      font-size: clamp(32px, 5vw, 48px);
      font-weight: 500; line-height: 1.15;
      letter-spacing: -1px; margin-bottom: 1.25rem;
    }
    .hero h1 em { font-style: normal; color: var(--green); }
    .hero p {
      font-size: 17px; color: var(--text-2); line-height: 1.7;
      max-width: 560px; margin-bottom: 2rem;
    }
    .hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
    .link-subtle {
      font-size: 14px; color: var(--text-2);
      text-decoration: underline; text-underline-offset: 3px; cursor: pointer;
    }

    /* ── Status Card ("Bereits gelistet") ── */
    .status-card {
      border: 1px solid var(--border-mid);
      border-radius: var(--r-xl);
      padding: 2rem;
      background: var(--surface);
      margin-top: 2rem;
    }
    .status-compare {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1.25rem; margin-top: 1.5rem;
    }
    .status-col {
      border: 1px solid var(--border); border-radius: var(--r-lg);
      padding: 1.25rem;
    }
    .status-col.is-partner { border-color: var(--green); background: var(--green-light); }
    .status-badge {
      display: inline-block; font-size: 11px; font-weight: 500;
      border-radius: 20px; padding: 3px 10px; margin-bottom: 10px;
    }
    .status-badge.partner { background: var(--green); color: #fff; }
    .status-badge.none { background: var(--surface-2); color: var(--text-2); }
    .status-col h4 { font-size: 15px; font-weight: 500; margin-bottom: 8px; }
    .status-col p { font-size: 13px; color: var(--text-2); line-height: 1.6; }

    /* ── Sections ── */
    section { padding: 4rem 0; border-bottom: 1px solid var(--border); }
    .section-label {
      font-size: 11px; font-weight: 500; letter-spacing: 0.8px;
      text-transform: uppercase; color: var(--text-3); margin-bottom: 2rem;
    }
    h2 {
      font-size: clamp(22px, 3vw, 30px); font-weight: 500;
      letter-spacing: -0.5px; margin-bottom: 1rem;
    }

    /* ── How it works ── */
    .steps { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
    .step {
      display: grid; grid-template-columns: 48px 1fr;
      gap: 16px; padding: 1.25rem 0;
      border-top: 1px solid var(--border);
    }
    .step:first-child { border-top: none; }
    .step-num {
      width: 32px; height: 32px; border-radius: 50%;
      background: var(--green-light); color: var(--green-dark);
      font-size: 14px; font-weight: 500;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 2px;
    }
    .step h3 { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
    .step p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

    /* ── Pricing ── */
    .pricing-card {
      border: 1px solid var(--border-mid);
      border-radius: var(--r-xl); padding: 2rem;
      display: grid; grid-template-columns: 1fr auto;
      gap: 2rem; align-items: start;
      background: var(--surface);
    }
    .price-main { font-size: 42px; font-weight: 500; line-height: 1; margin-bottom: 4px; }
    .price-sub { font-size: 14px; color: var(--text-2); margin-bottom: 1.5rem; }
    .price-badge {
      background: var(--green-light); color: var(--green-dark);
      border-radius: var(--r-md); padding: 8px 16px;
      font-size: 13px; font-weight: 500; white-space: nowrap;
      align-self: start;
    }
    .pricing-card-compact {
      max-width: none; width: 100%;
      padding: 1.75rem 2.25rem;
      align-items: center;
    }
    .pricing-card-compact .price-main { font-size: 34px; margin-bottom: 6px; }
    .pricing-card-compact .price-sub { margin-bottom: 0; max-width: 460px; }
    .checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .checklist li {
      display: flex; align-items: center; gap: 10px;
      font-size: 14px; color: var(--text-1);
    }
    .check {
      width: 20px; height: 20px; border-radius: 50%;
      background: var(--green-light); color: var(--green-dark);
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; flex-shrink: 0;
    }

    /* ── FAQ ── */
    .faq { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
    .faq-item {
      border-top: 1px solid var(--border); overflow: hidden;
    }
    .faq-item:last-child { border-bottom: 1px solid var(--border); }
    .faq-q {
      width: 100%; text-align: left; background: none; border: none;
      padding: 1.1rem 0; font-size: 14px; font-weight: 500;
      color: var(--text-1); font-family: var(--font);
      display: flex; justify-content: space-between; align-items: center;
      cursor: pointer; gap: 1rem;
    }
    .faq-q:hover { color: var(--green); }
    .faq-icon { font-size: 18px; color: var(--text-3); flex-shrink: 0; transition: transform 0.2s; }
    .faq-a {
      font-size: 14px; color: var(--text-2); line-height: 1.7;
      max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.2s;
    }
    .faq-item.open .faq-a { max-height: 260px; padding-bottom: 1rem; }
    .faq-item.open .faq-icon { transform: rotate(45deg); }

    /* ── CTA ── */
    .cta-section {
      padding: 5rem 0;
      text-align: center;
      border-bottom: none;
    }
    .cta-section h2 { margin-bottom: 0.75rem; }
    .cta-section p { font-size: 16px; color: var(--text-2); margin-bottom: 2rem; }

    /* ── Contact Form ── */
    .form-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--r-xl); padding: 2.5rem;
      max-width: 540px; margin: 0 auto; text-align: left;
    }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: 5px; }
    .form-group.full { grid-column: 1 / -1; }
    .form-group label { font-size: 13px; font-weight: 500; color: var(--text-2); }
    .form-group input, .form-group select {
      padding: 9px 12px; border: 1px solid var(--border-mid);
      border-radius: var(--r-sm); font-size: 14px;
      font-family: var(--font); background: var(--surface);
      color: var(--text-1); outline: none; transition: border-color 0.15s;
    }
    .form-group input:focus, .form-group select:focus { border-color: var(--green); }
    .form-submit {
      width: 100%; margin-top: 1.25rem;
      background: var(--green); color: #fff; border: none;
      border-radius: var(--r-md); padding: 12px;
      font-size: 15px; font-weight: 500; font-family: var(--font);
      cursor: pointer; transition: opacity 0.15s;
    }
    .form-submit:hover { opacity: 0.88; }
    .form-note { font-size: 12px; color: var(--text-3); margin-top: 10px; text-align: center; }
    .success-msg {
      text-align: center; padding: 2rem;
      color: var(--green-dark); background: var(--green-light);
      border-radius: var(--r-lg); display: none;
    }

    /* ── Footer ── */
    footer {
      padding: 1.5rem 0;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
      border-top: 1px solid var(--border);
    }
    .footer-logo { font-size: 15px; font-weight: 500; }
    .footer-logo span { color: var(--green); }
    footer p { font-size: 12px; color: var(--text-3); }

    @media (max-width: 600px) {
      .stats { grid-template-columns: 1fr; }
      .pricing-card { grid-template-columns: 1fr; }
      .form-grid { grid-template-columns: 1fr; }
      .status-compare { grid-template-columns: 1fr; }
      .hero { padding: 3rem 0 2.5rem; }
      section { padding: 3rem 0; }
    }
