.section-hero h3 span {
    /* text-color: linear-gradient(to right, #8b14b1, #ab019e, #c00c8b, #cd267b, #d53d6e) !important; */
    background: linear-gradient(to right, #8b14b1, #ab019e); /* Gradasi warna */
    -webkit-background-clip: text; /* Clip latar belakang ke teks */
    -webkit-text-fill-color: transparent; /* Teks menjadi transparan agar gradasi terlihat */
    font-weight: bold; /* Opsional: menonjolkan teks */
}

.section-background-hero {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section-background-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../../images/lain-lain/bg-purple.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: -1;
}

.section-background-about {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section-background-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../../images/lain-lain/bg-purple2.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.section-background-keunggulan {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section-background-keunggulan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../../images/lain-lain/bg1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.07;
    z-index: -1;
}

/* BOX KEUNGGULAN */
.feature-box:hover .feature-box-icon img {
    filter: brightness(0) invert(1);
}

/* BUTTON HERO */
.btn-transparent-hero {
    position: relative;
    /* background: linear-gradient(to right, red, blue); Gradien latar belakang */
    border-radius: 8px; /* Sudut melengkung */
    padding: 10px 20px;
    color: var(--main-color);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 0;
    border: none; /* Tidak memerlukan border langsung */
    transition: all .3s ease-in-out;
}

.btn-transparent-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #652D93, #93278E); /* Gradien untuk border */
    border-radius: inherit; /* Warisi radius border dari elemen utama */
    z-index: -1;
    padding: 2px; /* Ketebalan border */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out; /* Safari */
}

.btn-transparent-hero:hover {
    color: #652D93;
}

.desk-pricelist li strong{
    color:var(--black);
}