
/* ===============================
   HERO SECTION META108 PREMIUM
================================ */

.meta108-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 20px 90px;
  background:
    radial-gradient(circle at top left, rgba(73, 184, 255, 0.25), transparent 34%),
    radial-gradient(circle at bottom right, rgba(21, 101, 255, 0.28), transparent 32%),
    linear-gradient(135deg, #041b3d 0%, #071f49 45%, #0b2f6b 100%);
  color: #ffffff;
}

.meta108-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;
  opacity: .45;
}

.meta108-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: 80px;
  background: rgba(73, 184, 255, 0.18);
  filter: blur(80px);
  border-radius: 50%;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #7dd3fc;
  font-size: 14px;
  font-weight: 800;
  background: rgba(73, 184, 255, 0.1);
  border: 1px solid rgba(73, 184, 255, 0.22);
  box-shadow: inset 0 1px rgba(255,255,255,.08);
}

.hero-content h1 {
  margin-bottom: 24px;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #ffffff;
}

.hero-content p {
  margin-bottom: 34px;
  max-width: 620px;
  color: #c9d9f5;
  font-size: 18px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  transition: .35s ease;
}

.hero-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #49b8ff, #1565ff);
  box-shadow: 0 16px 38px rgba(21, 101, 255, .45);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(73, 184, 255, .42);
}

.hero-btn-secondary {
  color: #ffffff;
  border: 1px solid rgba(73, 184, 255, .45);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: #1565ff;
  border-color: #1565ff;
  transform: translateY(-3px);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
}

.hero-trust div {
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(73,184,255,.16);
  box-shadow: inset 0 1px rgba(255,255,255,.07);
}

.hero-trust strong {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.hero-trust span {
  display: block;
  color: #a9bfdf;
  font-size: 13px;
  line-height: 1.4;
}

/* HERO IMAGE */
.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-card {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1 / 1;
  padding: 14px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(73,184,255,.45), rgba(21,101,255,.12));
  border: 1px solid rgba(73,184,255,.3);
  box-shadow:
    0 30px 80px rgba(0,0,0,.42),
    0 0 60px rgba(21,101,255,.28);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 26px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  padding: 14px 20px;
  border-radius: 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  background: rgba(4,27,61,.78);
  border: 1px solid rgba(73,184,255,.28);
  box-shadow: 0 18px 42px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
}

.card-one {
  top: 78px;
  left: 16px;
}

.card-two {
  right: 18px;
  bottom: 86px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .meta108-hero {
    padding: 90px 20px 80px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-trust {
    margin: 0 auto;
  }

  .hero-visual {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .meta108-hero {
    padding: 78px 16px 64px;
  }

  .hero-content h1 {
    font-size: clamp(32px, 10vw, 46px);
    letter-spacing: -.8px;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero-image-card {
    width: 100%;
    max-width: 430px;
    border-radius: 28px;
  }

  .hero-image-card img {
    border-radius: 20px;
  }

  .floating-card {
    display: none;
  }
}

@media (max-width: 480px) {
  .meta108-hero {
    padding: 62px 14px 54px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 9px 14px;
  }

  .hero-content h1 {
    font-size: 31px;
    line-height: 1.14;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-trust div {
    padding: 16px 14px;
  }
}



@keyframes floatHero {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}