
/* =========================
   GMBH TARGET (DARK)
========================= */

.neeb-gmbh-target-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 18% 22%, rgba(255,255,255,.08), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(8,72,99,.28), transparent 40%),
    linear-gradient(135deg, #02131c 0%, #07364a 45%, #084863 100%);
}

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

/* =========================
   LINK FIX
========================= */

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

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

/* =========================
   HEAD (FIXED CENTER)
========================= */

.neeb-gmbh-target-section .neeb-gmbh-section-head{
  max-width:760px;
  margin:0 auto 36px;   /* 🔥 FIX */
  text-align:center;    /* 🔥 FIX */
}

.neeb-gmbh-target-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-target-section .neeb-gmbh-section-head h2{
  margin:0;
  font-size:40px;
  line-height:1.1;
  letter-spacing:-.04em;
  color:#ffffff;
  font-weight:700;
}

/* =========================
   GRID
========================= */

.neeb-gmbh-target-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

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

.neeb-gmbh-target-card{
  position:relative;
  overflow:hidden;

  padding:32px;
  border-radius:26px;

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

  backdrop-filter:blur(12px);

  transition:.25s ease;
}

/* Glow Effekt */
.neeb-gmbh-target-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.12), transparent 45%);
  opacity:0;
  transition:.25s ease;
}

.neeb-gmbh-target-card:hover{
  transform:translateY(-5px);
  background:rgba(255,255,255,.10);
  box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.neeb-gmbh-target-card:hover:before{
  opacity:1;
}

/* Titel */
.neeb-gmbh-target-card h3{
  margin:0 0 12px;
  font-size:24px;
  line-height:1.2;
  color:#ffffff;
  letter-spacing:-.02em;
}

/* Text */
.neeb-gmbh-target-card p{
  margin:0;
  font-size:15.5px;
  line-height:1.7;
  color:rgba(255,255,255,.75);
}

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

@media(max-width:700px){

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

  .neeb-gmbh-target-section .neeb-gmbh-section-head{
    margin:0 auto 24px;
  }

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

  .neeb-gmbh-target-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .neeb-gmbh-target-card{
    padding:24px 20px;
    border-radius:20px;
  }

  .neeb-gmbh-target-card h3{
    font-size:20px;
  }

  .neeb-gmbh-target-card p{
    font-size:14.5px;
  }
}
