.why-meta108 {
  position: relative;
  overflow: hidden;
  padding: 110px 24px;
  background:
    radial-gradient(circle at 10% 15%, rgba(56, 189, 248, 0.24), transparent 32%),
    radial-gradient(circle at 90% 75%, rgba(37, 99, 235, 0.28), transparent 34%),
    linear-gradient(135deg, #020817 0%, #06142e 52%, #082f6f 100%);
}

.why-meta108::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.4;
}

.why-meta108::after {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -190px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.16);
  filter: blur(85px);
}

.why-meta108__container {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  margin: auto;
}

.why-meta108__header {
  max-width: 820px;
  margin: 0 auto 55px;
  text-align: center;
  color: #ffffff;
}

.why-meta108__badge {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 10px 20px;
  border-radius: 999px;
  color: #bae6fd;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(125, 211, 252, 0.3);
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.2);
}

.why-meta108 h2 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.2px;
}

.why-meta108__header p {
  color: #dbeafe;
  font-size: 17px;
  line-height: 1.85;
}

.why-meta108__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-meta108__card {
  position: relative;
  overflow: hidden;
  padding: 30px 26px;
  min-height: 270px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(2, 8, 23, 0.42);
  border: 1px solid rgba(125, 211, 252, 0.18);
  backdrop-filter: blur(18px);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: 0.35s ease;
}

.why-meta108__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.18), transparent 38%);
  opacity: 0;
  transition: 0.35s ease;
}

.why-meta108__card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.48);
  box-shadow:
    0 28px 75px rgba(0, 0, 0, 0.42),
    0 0 45px rgba(56, 189, 248, 0.12);
}

.why-meta108__card:hover::before {
  opacity: 1;
}

.why-meta108__icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.42);
}

.why-meta108__card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 950;
}

.why-meta108__card p {
  position: relative;
  z-index: 2;
  color: #bfdbfe;
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 991px) {
  .why-meta108 {
    padding: 82px 20px;
  }

  .why-meta108__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-meta108__card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .why-meta108 {
    padding: 62px 16px;
  }

  .why-meta108__header {
    margin-bottom: 38px;
  }

  .why-meta108__badge {
    font-size: 11px;
    padding: 9px 15px;
  }

  .why-meta108 h2 {
    font-size: 32px;
    letter-spacing: -0.7px;
  }

  .why-meta108__header p {
    font-size: 15px;
    line-height: 1.75;
  }

  .why-meta108__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-meta108__card {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .why-meta108__icon {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }

  .why-meta108__card h3 {
    font-size: 20px;
  }
}