.stat-grid-new{
  position: relative;
  background-size: cover;
  background-position: bottom;
  margin: 0 -15px;
  z-index: 1;
}
.stat-grid-new .inner{
  padding: 6em 4em;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
}
.stat-grid-new .inner h2{
  color: white;
  font-weight: bold;
  margin-bottom: 2em;
}
.stat-grid-new .inner p{
  color: white;
}
.stat-grid-new .stat-count{
  font-size: 36px;
  color: #6dbf4c;
  line-height: 52px;
  font-weight: bold;
}
.stat-grid-new .border-left-grey{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2.75em 3.25em;
  border: 1px solid #fff;
  border-radius: 9999px;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  aspect-ratio: 1 / 1;
}
.stat-grid-new .stat-wrapper{
  margin-bottom: 3em;
}
.stat-grid-new .stat-block{
  font-size: 28px;
}
.stat-grid-new .button{
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  padding: 14px 36px;
  font-size: 18px;
  font-weight: 600;
  font-family: inherit;
  line-height: 1;
}
.stat-grid-new .rfq-button{
  color: #ffffff;
  background:
    linear-gradient(
      to bottom,
      #2a930e 0%,
      #8feb7c 100%
    );
  border: 1px solid #8af78e;


  /* INNER GLOW + OUTER GLOW */
  box-shadow:
    inset 0 0 12px rgba(180, 255, 160, 0.9), /* inner glow */
    inset 0 2px 6px rgba(79, 255, 43, 0.5), /* top soft light */
    inset 0 -2px 6px rgba(147, 249, 151, 0.9),      /* bottom depth */
    0 0 14px rgba(120, 255, 120, 0.2);         /* outer glow */

  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.stat-grid-new .rfq-button:hover {
  box-shadow:
    inset 0 0 16px rgba(79, 255, 43, 0.85),
    inset 0 2px 7px rgba(255, 255, 255, 0.45),
    inset 0 -2px 6px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(79, 255, 43, 0.9);

  transform: translateY(-1px);
}

.stat-grid-new .rfq-button:active {
  transform: translateY(1px);
}
.stat-grid-new .white-button{
  color: #fff;
  border: 3px solid white;
  background-color: transparent;
}
.stat-grid-new .white-button:hover{
  color: #6dbf4c;
  border: 3px solid #6dbf4c;
}

/*floaties*/
.stat-grid-new .firefly {
  width:8px;
  height:8px;
  position:absolute;
  background-color: #67f52d;
  box-shadow:0px 0px 17px 2px wheat;
  border-radius: 50%;
  z-index: 1;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px){
  .stat-grid-new .border-left-grey{
    margin: 1em auto;
    max-width: 300px;
  }
  .stat-grid-new .inner{
    padding: 4em 2em;
  }
  .stat-grid-new .inner h2{
    margin-bottom: 1em;
  }
  .stat-grid-new .button{
    margin-left: 0;
    margin-bottom: 10px;
  }
}