
/* =========================
   SECTION (DUNKEL / FULL WIDTH)
========================= */
.neeb-gmbh-faq{
  position:relative;
  overflow:hidden;

  width:100vw;
  max-width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);

  padding:110px 24px;

  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.06), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,.04), transparent 30%),
    linear-gradient(135deg, #07364a 0%, #084863 45%, #0b6b8d 100%);
}

.neeb-gmbh-faq-container{
  max-width:1000px;
  margin:0 auto;
}

/* =========================
   HEADER
========================= */
.neeb-gmbh-faq-header{
  text-align:center;
  margin-bottom:50px;
}

.neeb-gmbh-faq-header h2{
  font-size:48px;
  font-weight:800;
  letter-spacing:-.04em;
  color:#ffffff;
}

.neeb-gmbh-faq-header span{
  color:#c9e4ee;
}

/* =========================
   LIST
========================= */
.neeb-gmbh-faq-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* =========================
   ITEM
========================= */
.neeb-gmbh-faq-item{
  border-radius:20px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(12px);
  overflow:hidden;
  transition:background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

/* =========================
   QUESTION
========================= */
.neeb-gmbh-faq-question{
  width:100%;
  padding:30px 24px;
  margin:0;
  background:transparent !important;
  border:none !important;
  outline:none !important;
  box-shadow:none !important;
  appearance:none;
  -webkit-appearance:none;
  cursor:pointer;

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;

  font-size:18px;
  font-weight:700;
  color:#ffffff !important;
  text-align:left;
}

/* Hover */
.neeb-gmbh-faq-item:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.16);
}

/* =========================
   ICON
========================= */
.neeb-gmbh-faq-icon{
  width:26px;
  height:26px;
  border-radius:50%;
  background:#ffffff;
  position:relative;
  flex-shrink:0;
}

.neeb-gmbh-faq-icon::before,
.neeb-gmbh-faq-icon::after{
  content:"";
  position:absolute;
  background:#084863;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
}

.neeb-gmbh-faq-icon::before{
  width:12px;
  height:2px;
}

.neeb-gmbh-faq-icon::after{
  width:2px;
  height:12px;
  transition:height .2s ease;
}

/* =========================
   ANSWER (FIX!)
========================= */
.neeb-gmbh-faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
}

.neeb-gmbh-faq-answer-inner{
  padding:0 24px 22px;
}

/* TEXT */
.neeb-gmbh-faq-answer p{
  margin:0 0 14px;
  font-size:15px;
  line-height:1.8;
  color:rgba(255,255,255,.82);
}

/* 👉 LIST FIX (DAS WAR DEIN PROBLEM) */
.neeb-gmbh-faq-answer ul{
  margin:0 0 14px;
  padding-left:20px;
  color:rgba(255,255,255,.82);
}

.neeb-gmbh-faq-answer li{
  margin-bottom:8px;
  color:rgba(255,255,255,.82);
}

/* =========================
   ACTIVE
========================= */
.neeb-gmbh-faq-item.active{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.20);
}

.neeb-gmbh-faq-item.active .neeb-gmbh-faq-icon::after{
  height:0;
}

/* =========================
   GLOSSAR LINKS FIX (FAQ DUNKEL)
========================= */
.neeb-gmbh-faq a,
.neeb-gmbh-faq .glossary-link,
.neeb-gmbh-faq .glossaryLink,
.neeb-gmbh-faq a.glossary{
  color:#ffffff !important;
  text-decoration:none !important;
  border-bottom:1px solid rgba(255,255,255,.35);
  transition:border-color .2s ease, color .2s ease;
}

.neeb-gmbh-faq a:hover,
.neeb-gmbh-faq a:focus,
.neeb-gmbh-faq a:active{
  color:#ffffff !important;
  border-bottom-color:#ffffff;
  outline:none !important;
  box-shadow:none !important;
}

/* falls Plugin span nutzt */
.neeb-gmbh-faq a span,
.neeb-gmbh-faq .glossary-link span{
  color:inherit !important;
}

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

  .neeb-gmbh-faq{
    width:100%;
    margin-left:0;
    margin-right:0;
    padding:56px 16px;
  }

  .neeb-gmbh-faq-header{
    text-align:left;
    margin-bottom:30px;
  }

  .neeb-gmbh-faq-header h2{
    font-size:32px;
  }

  .neeb-gmbh-faq-question{
    font-size:16px;
    padding:18px;
  }

  .neeb-gmbh-faq-answer-inner{
    padding:0 18px 18px;
  }

  .neeb-gmbh-faq-answer p,
  .neeb-gmbh-faq-answer li{
    font-size:14px;
  }
}
