.neeb-process-section{
  padding:64px 24px;
  background:
    radial-gradient(circle at top left, rgba(8,72,99,.06), transparent 30%),
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
  border-radius:50px;
  max-width:1600px;
  margin:0 auto;
}

.neeb-process-box{
  max-width:1200px;
  margin:0 auto;
  padding:44px 42px;
  border-radius:28px;
  background:#ffffff;
  border:1px solid #e5edf2;
  box-shadow:0 20px 50px rgba(15,23,42,.06);
}

.neeb-process-header{
  margin-bottom:30px;
}

.neeb-process-header h2{
  margin:0 0 10px;
  font-size:38px;
  line-height:1.1;
  letter-spacing:-0.03em;
  color:#0f172a;
}

.neeb-process-header p{
  margin:0;
  font-size:17px;
  line-height:1.65;
  color:#475569;
}

.neeb-process-list{
  display:grid;
  gap:16px;
}

.neeb-process-item{
  border:1px solid #e5edf2;
  border-radius:20px;
  background:linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%);
  overflow:hidden;
  transition:all .25s ease;
}

.neeb-process-item:hover,
.neeb-process-item.is-open{
  background:linear-gradient(180deg, rgba(8,72,99,.04) 0%, #ffffff 100%);
  border-color:#084863;
  box-shadow:0 16px 34px rgba(8,72,99,.10);
  transform:translateY(-2px);
}

.neeb-process-trigger{
  width:100%;
  display:grid;
  grid-template-columns:64px 1fr 28px;
  gap:18px;
  align-items:start;
  padding:24px 24px 22px;
  border:0;
  background:transparent;
  text-align:left;
  cursor:pointer;
}

.neeb-process-number{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#084863;
  color:#ffffff;
  font-size:14px;
  font-weight:700;
  box-shadow:0 6px 16px rgba(8,72,99,.18);
  transition:all .25s ease;
}

.neeb-process-item:hover .neeb-process-number,
.neeb-process-item.is-open .neeb-process-number{
  background:#ffffff;
  color:#084863;
  border:2px solid #084863;
  box-shadow:0 6px 18px rgba(8,72,99,.15);
}

.neeb-process-summary{
  display:block;
}

.neeb-process-title{
  display:block;
  margin-bottom:4px;
  font-size:23px;
  line-height:1.25;
  font-weight:600;
  color:#1f2937;
  transition:color .2s ease;
}

.neeb-process-item:hover .neeb-process-title,
.neeb-process-item.is-open .neeb-process-title{
  color:#084863;
}

.neeb-process-subtitle{
  display:block;
  font-size:15px;
  line-height:1.6;
  color:#5b6675;
  transition:color .2s ease;
}

.neeb-process-item:hover .neeb-process-subtitle,
.neeb-process-item.is-open .neeb-process-subtitle{
  color:#084863;
}

.neeb-process-icon{
  position:relative;
  width:22px;
  height:22px;
  margin-top:6px;
}

.neeb-process-icon::before,
.neeb-process-icon::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:14px;
  height:2px;
  background:#084863;
  border-radius:2px;
  transform:translate(-50%, -50%);
  transition:all .2s ease;
}

.neeb-process-icon::after{
  transform:translate(-50%, -50%) rotate(90deg);
}

.neeb-process-item.is-open .neeb-process-icon::after{
  opacity:0;
}

.neeb-process-panel{
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows .3s ease;
}

.neeb-process-item.is-open .neeb-process-panel{
  grid-template-rows:1fr;
}

.neeb-process-panel-inner{
  overflow:hidden;
  padding:0 24px 0 88px;
}

.neeb-process-item.is-open .neeb-process-panel-inner{
  padding-bottom:24px;
}

.neeb-process-panel-inner p{
  margin:0 0 14px;
  margin-top:10px;
  margin-left:20px;
  font-size:15px;
  line-height:1.7;
  color:#5b6675;
}

.neeb-process-panel-inner a{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:2px;
  margin-left:20px;
  font-size:16px;
  font-weight:700;
  color:#084863;
  text-decoration:none;
}

.neeb-process-panel-inner a::after{
  content:"→";
  transition:transform .2s ease;
}

.neeb-process-panel-inner a:hover::after{
  transform:translateX(3px);
}

.neeb-process-links{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
  margin-top:6px;
}

.neeb-process-links a{
  display:flex;
  align-items:center;
  min-height:48px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid #e5edf2;
  background:linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
  color:#084863;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  transition:all .2s ease;
}

.neeb-process-links a:hover{
  border-color:rgba(8,72,99,.25);
  background:rgba(8,72,99,.05);
  transform:translateY(-1px);
}

.neeb-process-info{
  margin-bottom:14px;
  margin-top:10px;
  margin-left:15px;
  padding:18px 20px;
  border-radius:16px;
  background:linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
  border:1px solid #e5edf2;
  max-width:860px;
}

.neeb-process-info strong{
  display:block;
  margin-bottom:6px;
  font-size:15px;
  color:#084863;
}

.neeb-process-info p{
  margin:0;
  font-size:15px;
  line-height:1.7;
  color:#5b6675;
}

/* HARTE OVERRIDES FÜR OPEN / HOVER */
.neeb-process-item:hover,
.neeb-process-item.is-open{
  background:linear-gradient(180deg, rgba(8,72,99,.04) 0%, #ffffff 100%) !important;
  border-color:#084863 !important;
  box-shadow:0 16px 34px rgba(8,72,99,.10) !important;
  transform:translateY(-2px) !important;
}

.neeb-process-trigger{
  background:transparent !important;
}

.neeb-process-item:hover .neeb-process-title,
.neeb-process-item.is-open .neeb-process-title{
  color:#084863 !important;
}

.neeb-process-item:hover .neeb-process-subtitle,
.neeb-process-item.is-open .neeb-process-subtitle{
  color:#084863 !important;
}

.neeb-process-item:hover .neeb-process-number,
.neeb-process-item.is-open .neeb-process-number{
  background:#ffffff !important;
  color:#084863 !important;
  border:2px solid #084863 !important;
  box-shadow:0 6px 18px rgba(8,72,99,.15) !important;
}

.neeb-process-item:hover .neeb-process-icon::before,
.neeb-process-item:hover .neeb-process-icon::after,
.neeb-process-item.is-open .neeb-process-icon::before,
.neeb-process-item.is-open .neeb-process-icon::after{
  background:#084863 !important;
}

.neeb-process-item.is-open .neeb-process-icon::after{
  opacity:0 !important;
}

@media (max-width:767px){
  .neeb-process-section{
    padding:36px 16px;
    border-radius:28px;
  }

  .neeb-process-box{
    max-width:none;
    padding:24px 18px;
    border-radius:20px;
  }

  .neeb-process-header h2{
    font-size:28px;
  }

  .neeb-process-header p{
    font-size:15px;
  }

  .neeb-process-trigger{
    grid-template-columns:50px 1fr 22px;
    gap:12px;
    padding:18px 16px;
  }

  .neeb-process-number{
    width:36px;
    height:36px;
    font-size:12px;
  }

  .neeb-process-title{
    font-size:20px;
  }

  .neeb-process-subtitle{
    font-size:14px;
  }

  .neeb-process-panel-inner{
    padding:0 16px 0 58px;
  }

  .neeb-process-item.is-open .neeb-process-panel-inner{
    padding-bottom:18px;
  }

  .neeb-process-links{
    grid-template-columns:1fr;
  }

  .neeb-process-info{
    padding:16px;
    max-width:none;
  }
}