.neeb-insights-wrap{
  position:relative;
  width:100vw;
  max-width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  overflow:hidden;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.03) 0px,
      rgba(255,255,255,.03) 1px,
      transparent 1px,
      transparent 16px
    ),
    linear-gradient(
      120deg,
      rgba(255,255,255,.06) 0%,
      rgba(255,255,255,0) 40%
    ),
    linear-gradient(135deg, #084863 0%, #0b5b7b 100%);
}

.neeb-insights-section{
  position:relative;
  padding:90px 24px;
  background:transparent;
}

.neeb-insights-container{
  max-width:1200px;
  margin:0 auto;
}

.neeb-insights-header{
  max-width:760px;
  margin:0 auto 42px;
  text-align:center;
}

.neeb-insights-header h2{
  margin:0 0 14px;
  font-size:42px;
  line-height:1.12;
  font-weight:800;
  letter-spacing:-0.03em;
  color:#ffffff;
  text-wrap:balance;
}

.neeb-insights-header h2 span{
  color:#b8d7e4;
}

.neeb-insights-header p{
  margin:0;
  font-size:18px;
  line-height:1.7;
  color:rgba(255,255,255,.82);
}

.neeb-insights-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:28px;
}

.neeb-insights-card{
  position:relative;
  height:100%;
}

.neeb-insights-card::after{
  content:"";
  position:absolute;
  left:30px;
  right:30px;
  bottom:-18px;
  height:34px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(0,0,0,.20) 0%, rgba(0,0,0,0) 72%);
  filter:blur(10px);
  pointer-events:none;
  z-index:0;
}

.neeb-insights-card-link{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  height:100%;
  overflow:hidden;
  text-decoration:none;
  background:linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(248,251,253,.98) 100%);
  border:1px solid rgba(255,255,255,.18);
  border-radius:30px;
  box-shadow:
    0 22px 50px rgba(0,0,0,.18),
    0 10px 24px rgba(0,0,0,.10),
    inset 0 1px 0 rgba(255,255,255,.75);
  transition:
    transform .45s ease,
    box-shadow .45s ease,
    border-color .35s ease;
}

.neeb-insights-card-link::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border-radius:30px;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.22) 0%,
      rgba(255,255,255,0) 28%,
      rgba(255,255,255,0) 72%,
      rgba(255,255,255,.08) 100%
    );
  opacity:.9;
}

.neeb-insights-card-link::after{
  content:"";
  position:absolute;
  top:-80px;
  left:-40px;
  width:240px;
  height:240px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 70%);
  pointer-events:none;
  opacity:.7;
}

.neeb-insights-card-link:hover{
  transform:translateY(-10px) scale(1.01);
  border-color:rgba(255,255,255,.28);
  box-shadow:
    0 34px 80px rgba(0,0,0,.26),
    0 16px 36px rgba(8,72,99,.16),
    inset 0 1px 0 rgba(255,255,255,.82);
}

.neeb-insights-image-wrap{
  position:relative;
  overflow:hidden;
  background:#dce8ef;
}

.neeb-insights-image-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.08) 0%,
      rgba(255,255,255,0) 28%,
      rgba(0,0,0,.10) 100%
    );
  pointer-events:none;
}

.neeb-insights-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .6s ease;
}

.neeb-insights-card-link:hover .neeb-insights-image{
  transform:scale(1.05);
}

.neeb-insights-content{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  padding:32px 30px 30px;
  flex:1;
}

.neeb-insights-badge{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:8px 14px;
  margin-bottom:18px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#084863;
  background:linear-gradient(180deg, rgba(8,72,99,.08) 0%, rgba(8,72,99,.04) 100%);
  border:1px solid rgba(8,72,99,.10);
  border-radius:999px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.65);
}

.neeb-insights-content h3{
  margin:0 0 14px;
  font-size:30px;
  line-height:1.12;
  font-weight:800;
  letter-spacing:-0.03em;
  color:#0f172a;
  text-wrap:balance;
}

.neeb-insights-content p{
  margin:0 0 26px;
  font-size:16px;
  line-height:1.72;
  color:#5b6773;
}

.neeb-insights-button{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 20px;
  font-size:15px;
  font-weight:800;
  color:#ffffff;
  background:linear-gradient(135deg, #084863 0%, #0b6b8d 100%);
  border-radius:14px;
  box-shadow:
    0 14px 26px rgba(8,72,99,.22),
    inset 0 1px 0 rgba(255,255,255,.15);
  transition:transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.neeb-insights-button svg{
  width:18px;
  height:18px;
  flex:0 0 18px;
}

.neeb-insights-card-link:hover .neeb-insights-button{
  transform:translateX(3px);
  box-shadow:
    0 18px 34px rgba(8,72,99,.28),
    inset 0 1px 0 rgba(255,255,255,.18);
}

@media (max-width: 991px){
  .neeb-insights-section{
    padding:72px 20px;
  }

  .neeb-insights-header h2{
    font-size:36px;
  }

  .neeb-insights-grid{
    gap:22px;
  }

  .neeb-insights-content{
    padding:26px 24px 24px;
  }

  .neeb-insights-content h3{
    font-size:24px;
  }
}

@media (max-width: 767px){
  .neeb-insights-wrap{
    width:100%;
    max-width:100%;
    margin-left:0;
    margin-right:0;
    background:
      repeating-linear-gradient(
        135deg,
        rgba(255,255,255,.025) 0px,
        rgba(255,255,255,.025) 1px,
        transparent 1px,
        transparent 16px
      ),
      linear-gradient(135deg, #084863 0%, #0b5b7b 100%);
  }

  .neeb-insights-section{
    padding:56px 16px 64px;
  }

  .neeb-insights-header{
    margin-bottom:28px;
    text-align:left;
  }

  .neeb-insights-header h2{
    font-size:30px;
    line-height:1.1;
  }

  .neeb-insights-header p{
    font-size:15px;
    line-height:1.6;
    color:rgba(255,255,255,.82);
  }

  .neeb-insights-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .neeb-insights-card::after{
    left:20px;
    right:20px;
    bottom:-14px;
    height:24px;
  }

  .neeb-insights-card-link{
    border-radius:22px;
  }

  .neeb-insights-card-link::before{
    border-radius:22px;
  }

  .neeb-insights-content{
    padding:22px 20px 20px;
  }

  .neeb-insights-content h3{
    font-size:22px;
    line-height:1.2;
  }

  .neeb-insights-content p{
    font-size:15px;
    margin-bottom:18px;
  }

  .neeb-insights-button{
    width:100%;
    justify-content:center;
    padding:13px 16px;
  }
}

@media (max-width: 480px){
  .neeb-insights-header h2{
    font-size:27px;
  }

  .neeb-insights-content h3{
    font-size:20px;
  }

  .neeb-insights-badge{
    font-size:12px;
    padding:6px 12px;
  }
}