
/* ===============================
   ABOUT SECTION META108 PREMIUM
================================ */

.meta108-about {
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(73, 184, 255, 0.2), transparent 35%),
    radial-gradient(circle at bottom left, rgba(21, 101, 255, 0.22), transparent 32%),
    linear-gradient(135deg, #071221 0%, #041b3d 45%, #08285c 100%);
}

.meta108-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .4;
}

.meta108-about::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  left: -180px;
  bottom: -180px;
  border-radius: 50%;
  background: rgba(73, 184, 255, 0.14);
  filter: blur(80px);
}

.about-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 70px;
}

.about-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-wrap {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1 / 1;
  padding: 14px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(73,184,255,.44), rgba(21,101,255,.12));
  border: 1px solid rgba(73,184,255,.28);
  box-shadow:
    0 30px 80px rgba(0,0,0,.42),
    0 0 65px rgba(21,101,255,.26);
}

.about-image-wrap::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(73,184,255,.2), transparent, rgba(21,101,255,.22));
  filter: blur(18px);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 26px;
}

.about-floating-card {
  position: absolute;
  z-index: 3;
  width: 230px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(4, 27, 61, .78);
  border: 1px solid rgba(73,184,255,.25);
  box-shadow: 0 18px 42px rgba(0,0,0,.36);
  backdrop-filter: blur(14px);
}

.about-floating-card strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.about-floating-card span {
  display: block;
  color: #a9bfdf;
  font-size: 13px;
  line-height: 1.5;
}

.about-card-top {
  top: 80px;
  right: 0;
}

.about-card-bottom {
  left: 0;
  bottom: 90px;
}

.about-content {
  max-width: 700px;
}

.about-badge {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #7dd3fc;
  font-size: 14px;
  font-weight: 900;
  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);
}

.about-content h2 {
  margin-bottom: 22px;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -1px;
}

.about-content p {
  margin-bottom: 18px;
  color: #c9d9f5;
  font-size: 17px;
  line-height: 1.85;
}

.about-features {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.about-feature {
  display: flex;
  gap: 15px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(73,184,255,.16);
  box-shadow:
    inset 0 1px rgba(255,255,255,.07),
    0 12px 30px rgba(0,0,0,.18);
  transition: .35s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  border-color: rgba(73,184,255,.38);
  box-shadow:
    0 20px 45px rgba(0,0,0,.25),
    0 0 30px rgba(21,101,255,.18);
}

.feature-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #49b8ff, #1565ff);
  box-shadow: 0 12px 28px rgba(21,101,255,.36);
  font-size: 21px;
}

.about-feature h3 {
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
}

.about-feature p {
  margin: 0;
  color: #a9bfdf;
  font-size: 14px;
  line-height: 1.65;
}

.about-cta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.about-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;
}

.about-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #49b8ff, #1565ff);
  box-shadow: 0 16px 38px rgba(21, 101, 255, .45);
}

.about-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(73, 184, 255, .42);
}

.about-btn-secondary {
  color: #ffffff;
  border: 1px solid rgba(73, 184, 255, .45);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}

.about-btn-secondary:hover {
  background: #1565ff;
  border-color: #1565ff;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .meta108-about {
    padding: 90px 20px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .about-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .about-content p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-cta {
    justify-content: center;
  }

  .about-visual {
    min-height: auto;
    order: 2;
  }

  .about-content {
    order: 1;
  }
}

@media (max-width: 768px) {
  .meta108-about {
    padding: 76px 16px;
  }

  .about-content h2 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .about-content p {
    font-size: 16px;
    line-height: 1.75;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-feature {
    text-align: left;
  }

  .about-cta {
    flex-direction: column;
  }

  .about-btn {
    width: 100%;
  }

  .about-image-wrap {
    width: 100%;
    max-width: 430px;
    border-radius: 28px;
  }

  .about-image-wrap img {
    border-radius: 20px;
  }

  .about-floating-card {
    display: none;
  }
}

@media (max-width: 480px) {
  .meta108-about {
    padding: 62px 14px;
  }

  .about-badge {
    font-size: 12px;
    padding: 9px 14px;
  }

  .about-content h2 {
    font-size: 29px;
    line-height: 1.16;
  }

  .about-content p {
    font-size: 15px;
  }

  .about-feature {
    padding: 18px;
    border-radius: 20px;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 19px;
  }
}


@keyframes aboutFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}