

.meta-hero {
  position: relative;
  overflow: hidden;
  padding: 105px 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(51, 196, 255, .25), transparent 32%),
    radial-gradient(circle at 85% 25%, rgba(0, 102, 255, .35), transparent 34%),
    linear-gradient(135deg, #020b18 0%, #041b3f 42%, #073b8c 100%);
  color: #fff;
}

.meta-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .8;
}

.hero-glow-1 {
  width: 360px;
  height: 360px;
  background: rgba(47, 199, 255, .28);
  left: -120px;
  top: 40px;
}

.hero-glow-2 {
  width: 420px;
  height: 420px;
  background: rgba(0, 102, 255, .35);
  right: -130px;
  bottom: -120px;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(111,211,255,.35);
  color: #8fe1ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .6px;
  box-shadow: inset 0 0 18px rgba(111,211,255,.08);
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #36d6ff;
  box-shadow: 0 0 18px #36d6ff;
}

.hero-content h1 {
  max-width: 760px;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -2px;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #bfeaff 58%, #55caff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  max-width: 660px;
  color: #d8ecff;
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 175px;
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: .35s ease;
}

.hero-btn.primary {
  color: #fff;
  background: linear-gradient(135deg, #31c9ff, #0066ff);
  box-shadow: 0 14px 38px rgba(0, 119, 255, .42);
}

.hero-btn.secondary {
  color: #eef8ff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
}

.hero-btn:hover {
  transform: translateY(-4px);
  filter: brightness(1.12);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 650px;
}

.hero-trust div {
  padding: 18px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border: 1px solid rgba(138,214,255,.18);
  box-shadow: inset 0 0 22px rgba(255,255,255,.035);
  backdrop-filter: blur(14px);
}

.hero-trust strong {
  display: block;
  color: #70d8ff;
  font-size: 23px;
  margin-bottom: 5px;
}

.hero-trust span {
  color: #c6e6ff;
  font-size: 13px;
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 36px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(105,215,255,.72), rgba(0,102,255,.18)),
    rgba(255,255,255,.06);
  box-shadow:
    0 35px 90px rgba(0, 30, 90, .65),
    0 0 45px rgba(0, 140, 255, .25);
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 38px;
  background: linear-gradient(135deg, #5ed8ff, transparent 45%, #0066ff);
  z-index: -1;
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.16);
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .meta-hero {
    padding: 76px 18px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 46px;
  }

  .hero-content h1,
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    margin: auto;
  }

  .hero-visual {
    max-width: 560px;
    margin: auto;
  }
}

@media (max-width: 560px) {
  .meta-hero {
    padding: 58px 16px;
  }

  .hero-content h1 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    border-radius: 26px;
    padding: 8px;
  }

  .hero-image-wrap img {
    border-radius: 20px;
  }
}