.nl-register {
    font-family: "Inter", sans-serif;
    color: #111;
    max-width: 480px;
    margin: 0 auto;
    padding: 24px;
  }

  .nl-register *,
  .nl-register *::before,
  .nl-register *::after {
    box-sizing: border-box;
  }

  .nl-register-heading {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 .25rem 0;
    color: #111;
  }

  .nl-register-sub {
    font-size: .9rem;
    color: #636363;
    margin: 0 0 1.25rem 0;
    line-height: 1.5;
  }

  .nl-counter-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 1.25rem;
  }

  .nl-counter {
    padding: 14px 16px;
    border: 1px solid #eee;
    border-radius: .5rem;
    background: #fffdf0;
  }

  .nl-counter-number {
    font-family: "Josefin Sans", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fcde04;
    display: block;
    line-height: 1;
    margin-bottom: .35rem;
  }

  .nl-counter-label {
    font-family: "Inter", sans-serif;
    font-size: .85rem;
    color: #636363;
    display: block;
    margin-left: 0;
    line-height: 1.35;
  }

  .nl-form-group {
    margin-bottom: .75rem;
  }

  .nl-form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: .33rem;
    font-family: "Inter", sans-serif;
    font-size: .95rem;
    color: #111;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
  }

  .nl-form-group input:focus {
    border-color: #fcde04;
    outline: none;
    box-shadow: 0 0 0 3px rgba(252, 222, 4, 0.15);
  }

  .nl-form-group input::placeholder {
    color: #aaa;
  }

  .nl-form-hint {
    font-size: .75rem;
    color: #636363;
    margin-top: .25rem;
  }

  .nl-register .nl-btn-submit {
    display: block;
    width: 100%;
    padding: 12px 24px;
    margin-top: 1rem;
    background: #fcde44;
    color: #111;
    border: none;
    border-radius: .33rem;
    font-family: "Josefin Sans", sans-serif;
    font-size: .95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(252, 222, 4, 0.3);
  }

  .nl-register .nl-btn-submit:hover {
    background: #ffe94a;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(252, 222, 4, 0.45);
  }

  .nl-btn-submit:active {
    transform: translateY(0);
  }

  .nl-success {
    display: none;
    text-align: center;
    padding: 1.5rem 1rem;
  }

  .nl-success-icon {
    font-size: 2rem;
    margin-bottom: .4rem;
  }

  .nl-success-heading {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 .4rem 0;
    color: #111;
  }

  .nl-success-text {
    font-size: .9rem;
    color: #636363;
    line-height: 1.5;
    margin: 0;
  }

  /* Kreis pills */
  .nl-pills-container {
    margin-top: .75rem;
  }

  .nl-pills-heading {
    display: none;
    font-family: "Inter", sans-serif;
    font-size: .75rem;
    color: #636363;
    margin: 0 0 .4rem 0;
  }

  .nl-pills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .nl-pill {
    display: inline-flex;
    align-items: center;
    background: #fef9cc;
    border: 1px solid #d4c470;
    border-radius: 16px;
    padding: 4px 10px;
    font-family: "Inter", sans-serif;
    font-size: 0.8rem;
    color: #111;
    animation: nlPillFadeIn .25s ease;
    transition: background .2s ease;
  }

  .nl-pill:hover {
    background: #fcde04;
  }

  .nl-pill-remove {
    background: none;
    border: none;
    padding: 0;
    margin-left: 6px;
    cursor: pointer;
    color: #636363;
    font-size: 0.9rem;
    line-height: 1;
    transition: color .2s ease;
  }

  .nl-pill-remove:hover {
    color: #111;
  }

  @keyframes nlPillFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
  }

  /* Map reference section */
  .nl-map-ref {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
  }

  .nl-map-ref-heading {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #111;
    margin: 0 0 .5rem 0;
  }

  .nl-map-ref-text {
    font-size: .85rem;
    color: #636363;
    line-height: 1.55;
    margin: 0;
  }

  /* Arrow hint pointing to the map */
  .nl-arrow-hint {
    margin-top: 0.75rem;
    text-align: left;
  }

  .nl-arrow-icon {
    font-size: 2.5rem;
    color: #fcde04;
  }

  .nl-arrow-icon::after {
    content: "\2192"; /* → right arrow (desktop default) */
  }

  .nl-arrow-label {
    font-size: 0.8rem;
    color: #636363;
    margin-left: 0.35rem;
  }

  @media (max-width: 768px) {
    .nl-arrow-hint {
      text-align: center;
    }

    .nl-arrow-icon::after {
      content: "\2193"; /* ↓ down arrow (mobile) */
    }
  }

@media (max-width: 600px) {
  .nl-counter-grid {
    grid-template-columns: 1fr;
  }
}


.nl-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 1rem;
  font-size: .8rem;
  color: #4b5563;
  line-height: 1.5;
}

.nl-consent input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.nl-consent a {
  color: #111;
  text-decoration: underline;
}

.nl-consent a:hover {
  text-decoration: none;
}
