
/* =========================
   GMBH PROCESS (DARK)
========================= */

.neeb-gmbh-process-section{
  position:relative;
  overflow:hidden;

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

  padding:100px 24px;

  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.08), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(8,72,99,.25), transparent 40%),
    linear-gradient(135deg, #02131c 0%, #07364a 45%, #084863 100%);
}

/* CONTAINER */
.neeb-gmbh-container{
  max-width:1100px;
  margin:0 auto;
}

/* =========================
   LINK FIX (WICHTIG)
========================= */

.neeb-gmbh-process-section a,
.neeb-gmbh-process-section a:hover,
.neeb-gmbh-process-section a:focus{
  color:inherit !important;
  text-decoration:none !important;
  border-bottom:none !important;
}

.neeb-gmbh-process-section .glossary-link,
.neeb-gmbh-process-section .glossaryLink,
.neeb-gmbh-process-section a.glossary{
  border-bottom:none !important;
}

/* =========================
   HEAD (JETZT ZENTRIERT)
========================= */

.neeb-gmbh-process-section .neeb-gmbh-section-head{
  max-width:720px;
  margin:0 auto 40px;   /* 🔥 FIX: zentriert */
  text-align:center;    /* 🔥 FIX: Text mittig */
}

.neeb-gmbh-process-section .neeb-gmbh-section-head span{
  display:inline-block;
  margin-bottom:10px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.75);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.neeb-gmbh-process-section .neeb-gmbh-section-head h2{
  margin:0;
  font-size:40px;
  line-height:1.1;
  letter-spacing:-.04em;
  color:#ffffff;
  font-weight:700;
}

/* =========================
   LIST
========================= */

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

/* =========================
   ITEM
========================= */

.neeb-gmbh-process-item{
  position:relative;
  display:grid;
  grid-template-columns:60px 1fr;
  gap:20px;

  padding:26px 28px;
  border-radius:24px;

  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(12px);

  transition:.25s ease;
}

/* Hover */
.neeb-gmbh-process-item:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,.10);
  box-shadow:0 18px 40px rgba(0,0,0,.25);
}

/* Nummer */
.neeb-gmbh-process-item > span{
  display:flex;
  align-items:center;
  justify-content:center;

  width:44px;
  height:44px;

  border-radius:14px;

  background:rgba(255,255,255,.12);
  color:#ffffff;

  font-size:14px;
  font-weight:800;
}

/* Titel */
.neeb-gmbh-process-item h3{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.25;
  color:#ffffff;
}

/* Text */
.neeb-gmbh-process-item p{
  margin:0;
  font-size:15px;
  line-height:1.65;
  color:rgba(255,255,255,.75);
}

/* =========================
   MOBILE
========================= */

@media(max-width:700px){

  .neeb-gmbh-process-section{
    padding:60px 16px;
  }

  .neeb-gmbh-process-section .neeb-gmbh-section-head{
    margin:0 auto 26px;
  }

  .neeb-gmbh-process-section .neeb-gmbh-section-head h2{
    font-size:28px;
  }

  .neeb-gmbh-process-item{
    grid-template-columns:1fr;
    padding:22px 20px;
    gap:14px;
  }

  .neeb-gmbh-process-item > span{
    width:38px;
    height:38px;
    font-size:13px;
  }

  .neeb-gmbh-process-item h3{
    font-size:18px;
  }

  .neeb-gmbh-process-item p{
    font-size:14px;
  }
}
