

    /* ================= HERO ================= */
    .hero-search {
      min-height: 100vh;
      padding: env(safe-area-inset-top) 1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(160deg, #ffffff, #eeeeee);
    }

    .search-box {
      width: 100%;
      max-width: 720px;
    }

    .search-box h1 {
      text-align: center;
      font-size: 1.6rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    /* ================= MOBILE ACTIONS ================= */
    .mobile-actions {
      display: none;
      justify-content: center;
      gap: .75rem;
      margin-bottom: .75rem;
    }

    /* ================= SEARCH ROW ================= */
    .search-row {
      display: flex;
      align-items: center;
      gap: .6rem;
    }

    /* ================= SIDE BUTTONS ================= */
    .side-action {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid #ddd;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: #111;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .side-action:active {
      background: #f0f0f0;
    }

    .side-action:hover {
      background: #f3f3f3;
    }

    /* ================= AUTOCOMPLETE ================= */
    .autocomplete-wrapper {
      position: relative;
      flex: 1;
    }

    .autocomplete-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      padding: 0.9rem 3.2rem 0.9rem 1.1rem;
      font-size: 1.1rem;
      pointer-events: none;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      color: #111;
      text-align: left;
    }

    .autocomplete-overlay .rest {
      color: #aaa;
    }

    #heroSearchInput {
      width: 100%;
      padding: 0.9rem 3.2rem 0.9rem 1.1rem;
      font-size: 1.1rem;
      border-radius: 2.5rem;
      border: 1px solid #ccc;
      outline: none;
      background: transparent;
      color: transparent;
      caret-color: #111;
      appearance: none;
      text-align: left;
    }

    /* ================= SUBMIT BUTTON ================= */
    .submit-button {
      position: absolute;
      right: .4rem;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: none;
      background: #111;
      color: #fff;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .submit-button.disabled {
      background: #ccc;
      cursor: default;
    }

    /* ================= BELOW HERO ================= */
    .below-hero {
      padding: 2rem 1.25rem;
      max-width: 900px;
      margin: auto;
      line-height: 1.6;
    }

    .below-hero h2 {
      font-size: 1.6rem;
      margin-bottom: 1rem;
      margin-left: 1.7rem;
    }

    /* ================= FAQ ================= */
    .faq-section {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 1.25rem;
    }

    .faq-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1.7rem;
    margin-right: 1.7rem;
    text-align: right;
    }

    .faq-item {
    background: #fff;
    border-radius: 1.25rem;
    border: 1px solid #e0e0e0;
    margin-bottom: .75rem;
    overflow: hidden;
    }

    .faq-question {
    width: 100%;
    color: black;
    background: none;
    border: none;
    padding: 1.1rem 1.25rem;
    font-size: 1rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    }

    .faq-question:hover {
    background: #fafafa;
    }

    /* ICON */
    .faq-icon {
    width: 20px;
    height: 20px;
    transition: transform .25s ease;
    }

    /* ANSWER */
    .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding: 0 1.25rem;
    }

    .faq-answer p {
    margin: 0;
    padding-bottom: 1.1rem;
    padding-top: 1rem;
    color: #444;
    line-height: 1.5;
    }

    /* OPEN STATE */
    .faq-item.open .faq-answer {
    max-height: 2000px;
    border-top: 1px solid #e0e0e0;
    }

    .faq-item.open .faq-icon {
    transform: rotate(45deg); /* plus → x / minus */
    }


    /* DESKTOP */
    @media (min-width: 768px) {
    .faq-question {
        font-size: 1.1rem;
    }
    }



    /* ================= WIZARD BTN PULSE ================= */

.wizard-btn {
  position: relative;
}

/* Pulsierender Kreis */
.wizard-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,.18);
  animation: pulse 2.6s ease-out infinite;
  pointer-events: none;
}
/* Animation */
@keyframes pulse {
  0%   { transform: scale(1);   opacity: .35; }
  70%  { transform: scale(1.22); opacity: 0; }
  100% { opacity: 0; }
}






    /* ================= DESKTOP ================= */
    @media (min-width: 768px) {
      .search-box h1 {
        font-size: 2.3rem;
      }

      .autocomplete-overlay,
      #heroSearchInput {
        font-size: 1.3rem;
      }
    }

    /* ================= MOBILE LAYOUT ================= */
    @media (max-width: 600px) {

      .mobile-actions {
        display: flex;
      }

      .search-row > .side-action {
        display: none;
      }

      .autocomplete-overlay,
      #heroSearchInput {
        font-size: 1.05rem;
      }
    }



  /* ================= CONTACT CARD ================= */

  .contact-card-section {
    padding: 2rem 1rem 0;
    margin-bottom: 5rem;
    padding-top:0;
  }

  .contact-card {
    max-width: 720px;
    margin: 0 auto;
    background: #eeeeee;
    border-radius: 1.5rem;
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: center;
  }

  .contact-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #ddd;
  }

  .contact-content h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
  }

  /*.contact-role {
    margin: 0.15rem 0 0.75rem;
    font-size: 0.9rem;
    color: #555;
  }*/

  .contact-text {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 0.75rem;
  }

  .contact-links {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .contact-links a {
    font-size: 0.9rem;
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid #aaa;
  }

  .contact-links a:hover {
    border-bottom-color: #111;
  }

  /* ================= MOBILE ================= */
  @media (max-width: 600px) {
    .contact-card {
      flex-direction: column;
      text-align: center;
    }

    .contact-links {
      justify-content: center;
    }
  }