
.about-hero {
  background: #0b0b0e;
  color: #fff;
  padding: 120px 8% 80px;
}

/* TOP TEXT */
.about-text h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.about-text h1 span {
  background: linear-gradient(90deg,#8b5cf6,#ff5e69);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
  max-width: 520px;
  margin: 18px 0 26px;
  color: #a1a1aa;
  line-height: 1.7;
  font-size: 15px;
}

/* SOCIAL */
.about-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 80px;
  margin-bottom: 20px;
}

/* LEFT */
.about-left h1 {
  font-size: 66px;
  font-weight: 700;
  line-height: 1.2;
}

.about-left h1 span {
  background: linear-gradient(90deg,#8b5cf6,#ff5e69);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* RIGHT */
.about-right p {
  font-size: 15px;
  line-height: 1.7;
  color: #a1a1aa;
  margin-bottom: 26px;
  max-width: 520px;
}

/* SOCIAL */
.socials {
  display: flex;
  gap: 14px;
}

/* BASE ICON */
.social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
  transition: all .35s ease;
}

/* GRADIENT ICON */
.social.pink {
  background: linear-gradient(135deg, #ff5e69, #8b5cf6);
  border: none;
}

/* ICON STYLE */
.social i {
  line-height: 1;
}

/* HOVER */
.social:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(139,92,246,.35);
}

/* OPTIONAL: HOVER GRADIENT UNTUK SEMUA */
.social:not(.pink):hover {
  background: linear-gradient(135deg, #ff7a18, #8b5cf6);
  border-color: transparent;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-top {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .about-left h1 {
    font-size: 34px;
  }

  .about-right p {
    margin-left: auto;
    margin-right: auto;
  }

  .socials {
    justify-content: center;
  }
}


/* VIDEO */
/* WRAPPER TENGAH */
.video-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px clamp(14px, 6vw, 72px);
}

/* CARD */
.video-card {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;

  border-radius: 28px;
  background: #000;
  overflow: hidden;

  box-shadow: 0 25px 70px rgba(0,0,0,.6);
}

/* GRADIENT BORDER */
.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;

  background: linear-gradient(
    135deg,
    #B16CEA,
    #FF5E69,
    #FF8A56,
    #FFA84B
  );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

/* IFRAME */
.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 22px;
}

/* RESPONSIVE MOBILE */
@media (max-width: 600px) {
  .video-wrapper {
    padding: 40px 14px;
  }

  .video-card {
    border-radius: 20px;
  }

  .video-card iframe {
    border-radius: 16px;
  }
}



 
/* STATS */
.stats {
  display: grid;
  grid-template-columns: auto 1px auto 1px auto;
  align-items: center;
  text-align: center;

  margin: 50px auto 0;   /* ⬅️ ini kuncinya */
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;  
  gap: 40px;
}


.stat h3 {
  font-size: 45px;
  font-weight: 700;
  background: linear-gradient(
    80deg,
    #B16CEA,
    #FF5E69,
    #FF8A56
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat p {
  font-size: 18px;
  color: #9ca3af;
  margin-top: 6px;
  line-height: 1.5;
}

.divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .stats {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .divider {
    display: none;
  }

  .about-text h1 {
    font-size: 34px;
  }
}
