.services-section {
  padding: 100px 6%;
  background: radial-gradient(circle at top, #1a1a22, #0b0b0e);
  color: #fff;
  max-width: 1500px;
  margin: 0 auto;
}

/* TITLE */
.services-title {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 48px;
}

.services-title span {
    background: linear-gradient(
    90deg,
    #B16CEA,
    #FF5E69,
    #FF8A56
  );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* LIST */
.services-list {
  display: flex;
  flex-direction: column;
}

/* ITEM */
.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 34px;
  font-size: 34px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;

  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: .35s ease;
}

/* SVG ARROW */
.service-item svg {
  width: 70px;
  height: 70px;
  transform: rotate(130deg); /* ↗ kanan atas */
  transition: transform .3s ease, opacity .3s ease;
  opacity: .8;
  flex-shrink: 0;
}

/* HOVER ICON */
.service-item:hover svg {
  transform: rotate(180deg) translate(6px, -6px);
  opacity: 1;
}

/* HOVER ITEM */
.service-item:hover {
  border-radius: 14px;
  border-bottom: none;

  background: linear-gradient(
    90deg,
    #B16CEA,
    #FF5E69,
    #FF8A56
  );
}

/* NON ACTIVE HOVER */
 
@media (max-width: 768px) {
  .services-title {
    font-size: 26px;
  }

  .service-item {
    font-size: 18px;
    padding: 18px 20px;
  }
}
