:root {
    --transition: 0.1s ease;
    --transition-slow: 0.2s ease;
}
html{
    overflow-x: hidden;
    overflow-x: clip;
}
body{
    padding: 0;
    margin: 0 auto;
    cursor: default;
    overflow-x: hidden;
    overflow-x: clip;
    max-width: 100%;
}

body.no-scroll {
  overflow: hidden;
}

.simple-lp-upl-container .topbar-sticky {
    position: sticky;
    top: 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

/* Saat di paling atas (y = 0) */
.simple-lp-upl-container .topbar-sticky.is-top {
    background: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

/* Saat sudah scroll */
.simple-lp-upl-container .topbar-sticky.is-scrolled {
    background: #000000ad;
    -webkit-backdrop-filter: saturate(200%) blur(20px);
    backdrop-filter: saturate(200%) blur(20px);
}
.simple-lp-upl-container .container-topbar{
    background: url(https://digivospaces.b-cdn.net/UniPlay/ResellerLanding/newbglanding.webp), linear-gradient(180deg, #19171D 0%, #1A1626 100%);;
    display: flex;
    flex-shrink: 0;
    align-self: stretch;
    padding: 12px 0px 40px 0px;
    flex-direction: column;
    align-content: center;
    align-items: center;
	background-size: cover;
	background-position: center;
    justify-content: space-between;
}
.as-primary {
    display: flex;
    padding: 16px 44px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid #EF620A;
    text-decoration: none;
    background: linear-gradient(180deg, #EF890A 0%, #EF620A 100%);
    color: var(--BaseWhite, #FFF);
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 133.333% */
    transition: background 0.5s linear;
}

.as-primary:hover{
    opacity: 1;
    background: radial-gradient(59.58% 100% at 50% 0%, #EA8910 0%, #E85B04 100%)!important;

}

.as-primary span{
    color: var(--BaseWhite, #FFF);
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 133.333% */
}
.slider-theme {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.slider-theme.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.slider-wrapper .slick-slide {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 600ms ease, transform 600ms ease;
}

.slider-wrapper .slick-active {
  opacity: 1;
  transform: scale(1);
}
.slider-wrapper {
    width: 550px;
}
.slider-wrapper .slick-dots {
    bottom: -40px!important;
}

.slider-wrapper .slick-dots li button:before {
    background: #ff9400;
    color: #ffffff00;
    border-radius: 20px;
    width: 10px;
    height: 10px;
}
.slider-wrapper .slick-dots li.slick-active button:before {
    color: #ffffff00;
}
.as-outline-primary{
    display: flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    border: 2px solid #EF620A;
    background: rgba(239, 98, 10, 0.10);
    text-decoration: none;
    transition: all 0.2s ease;

}
.as-outline-primary:hover {
	background: rgb(0 0 0 / 10%);
}
.as-outline-primary span{
    color: var(--BaseWhite, #FFF);
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 133.333% */
    text-align: center;
}

.as-outline-secondary{
    display: flex;
    padding: 16px 36px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid #a9a9a9;
    background: transparent;
    text-decoration: none;
    gap: 10px;
    cursor: pointer;
}
.as-outline-secondary:hover {
    border: 1px solid #100E1D;

}
.as-outline-secondary span{
    color: #100E1D;
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 133.333% */
}
.as-outline-secondary i{
    color: #100E1D;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 133.333% */
}
.chip-promo {
    border-radius: 26px;
    display: flex;
    padding: 2px 6px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 13px;
    position: relative;
}
.shine {
    background: linear-gradient(135deg,
        #EF620A 0%,
        #EF620A 40%,
        #EF890A 50%,
        #EF620A 60%,
        #EF620A 100%
    );
    background-size: 200% 100%;
    background-repeat: no-repeat;
    animation: placeholderShimmer 2.5s linear infinite;
}

@keyframes placeholderShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}
.menu-stagger li {
  opacity: 0;
  transform: translateY(10px);
  animation: menuSlideFade 0.6s ease-out forwards;
}

/* keyframes slide + fade */
@keyframes menuSlideFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* stagger delay per item */
.menu-stagger li:nth-child(1) { animation-delay: 0.0s; }
.menu-stagger li:nth-child(2) { animation-delay: 0.1s; }
.menu-stagger li:nth-child(3) { animation-delay: 0.2s; }
.menu-stagger li:nth-child(4) { animation-delay: 0.3s; }
.menu-stagger li:nth-child(5) { animation-delay: 0.4s; }
.menu-stagger li:nth-child(6) { animation-delay: 0.5s; }
.menu-stagger li:nth-child(7) { animation-delay: 0.6s; }

.text-gradient a{
  color: #100E1D;
  font-size: 18px;
  font-weight: 500;
}
.text-gradient i{
    width: 20px;
    color: #453D64!important;
}
.text-gradient svg{
    width: 24px;
    height: auto;
    color: #453D64!important;
}
.topbar{
    display: flex;
    width: 1100px;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}
.topbar img{
    width: auto;
    height: 45px;
    flex-shrink: 0;
}
.topbar ul.navbar{
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.topbar ul.navbar li{

}
.topbar ul.navbar li a{
    color: var(--BaseWhite, #FFF);
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    transition: color 0.1s ease; /* Smooth transition */
}
.topbar ul.navbar li a:hover {
	color: #ff950b;
}

.topbar .action-bar{
    display: flex;
    align-items: center;
    gap: 20px;
}
.matrix-section {
    color: #fff;
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
    padding-right: 40px;

}
.matrix-content span {
    color: #EBEBEB;
    font-family: "Hanken Grotesk";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.matrix-content h4 {
    font-variant-numeric: tabular-nums;
    color: #FFF;
    font-family: "Hanken Grotesk";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}
.headline-wrapper {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: row;
    margin-top: 40px;
    gap: 20px;
}
.matrix-content {
    display: flex;
    flex-direction: row;
    gap: 0px;
}

.wof-section {
    width: 100%;
    margin-top: 40px;
}
.wof-section h4{
    color: #FFF;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.wof-section .wof-item {
    display: flex!important;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    display: flex;
    width: 210px;
    padding: 16px;
    align-items: center;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.80);
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 0 36.4px 0 rgba(255, 255, 255, 0.25) inset;
    backdrop-filter: blur(4px);
}
.wof-ticker {
    margin-top: 24px;
    width: 100%;
    overflow: hidden;
    display: flex;
    z-index: 4;
    justify-content: center;
    position: relative;
    /* flex-direction: row; */
}
.wof-track {
    display: flex;
    width: max-content;
    will-change: transform;
}
.wof-item {
  margin: 0 12px; /* setengah dari gap */
      display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 40px;
    white-space: nowrap;
    flex-shrink: 0;
}

.wof-item .slick-slide {
  padding: 0 12px;
}
.wof-item .wof-info {
    color: #fff;
    font-family: "Hanken Grotesk";
    display: flex;
    flex-direction: column;
}
.wof-item img {
    width: 55px!important;
    height: 55px!important;
    flex-shrink: 0;
}
.wof-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #fff;
    background-image: url('../../img/reseller/wof-sprite.webp');
    background-repeat: no-repeat;
    background-size: 495px 55px;
    flex-shrink: 0;
    display: inline-block;
}
.wof-icon-acekgaming { background-position: 0 0; }
.wof-icon-arbstore { background-position: -55px 0; }
.wof-icon-betatopup { background-position: -110px 0; }
.wof-icon-fantasigamer { background-position: -165px 0; }
.wof-icon-indoarmy { background-position: -220px 0; }
.wof-icon-murahmeriah { background-position: -275px 0; }
.wof-icon-pawsupply { background-position: -330px 0; }
.wof-icon-phsstore { background-position: -385px 0; }
.wof-icon-rollystore { background-position: -440px 0; }
.wof-item .wof-info .wof-name {
    font-size: 14px;
}
.wof-item .wof-info .wof-earnings {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
}
.container-topbar .headline{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: stretch;
    width: 50%;
}
.matrix-section span {
    color: #FFFFFF;
    font-family: "Hanken Grotesk";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
}
.matrix-section .matrix-item {
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.container-topbar .slider-theme {
    width: 50%;
    z-index: 2;
}
.frame-theme img{
    position: absolute;
    z-index: 4;
        width: 550px !important;
        height: auto !important;
}
.slider-wrapper .slick-slide img{
    max-width: 100%;
    height: auto;
}
.container-topbar .headline h1{
    color: var(--BaseWhite, #FFF);
    font-family: "Hanken Grotesk";
    font-size: 41px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.container-topbar .headline h1 b{
    font-weight: 700;
    background: linear-gradient(90deg, #FC0 0%, #FB5E24 100%);
    /* background:
        linear-gradient(90deg, #FC0 0%, #FB5E24 50%, #FC0 100%) no-repeat,
        linear-gradient(90deg, #FC0 0%, #FB5E24 50%, #FC0 100%); */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@keyframes shineMove {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}
.container-topbar .headline h2{
    margin: 0;
    color: #fff;
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
    margin-top: -10px;
    margin-bottom: 10px;
}
.container-section-lp{
    display: flex;
    padding: 60px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.header-section-lp  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.header-section-lp h3{
    color: #100E1D;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    margin: 0px;
}
.header-section-lp h5{
    color: #453D64;
    text-align: center;
    font-family: "Hanken Grotesk"; 
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px;
}
.header-section-lp h4{
    margin: 0px;
    color: #EF620A;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.content-section-lp {
    display: flex;
    width: 1100px;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.item-section-lp h4 {
    color: #000;
    font-family: "Hanken Grotesk";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 4px;
}
.item-section-lp p {
    margin: 0px;
    color: #6D6C6F;
    font-family: "Hanken Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.content-section-lp .item-section-lp {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #EF620A;
    background: linear-gradient(180deg, #FFF7EE 0%, #FFF 37.28%);
    box-shadow: 0 4px 8px 0 rgba(148, 148, 148, 0.05);
    flex: 1;
}
.left-button-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.content-compare-lp {
    max-width: 900px;
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #A8A8A8;
}
table.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    overflow: clip;
}

table.compare-table td:first-child, table.compare-table  th:first-child {
    border-collapse: collapse;
    text-align: left;
}

table.compare-table th, table.compare-table td {
    padding: 16px 12px 16px 12px;
}
.compare-table tbody tr {
    color: #28283B;
    font-family: "Hanken Grotesk";
}
table.compare-table tr:nth-child(even) {
    background: #FAFAFA;
    overflow: auto;
}
table.compare-table tr:nth-child(odd) {
    background: #FFFFFF;
}

.compare-table thead tr {
}

.light-orange {
    border-radius: 999px;
    background: #FD5006;
    filter: blur(48px);
    width: 1100px;
    height: 144.904px;
    position: absolute;
    top: -115px;
    z-index: 0;
}
.ra-content-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.overlay-ra {
    position: absolute;
    right: -100px;
    top: -30px;
}
.overlay-ra-money-r {
    position: absolute;
    right: -50px;
    bottom: 90px;
    animation: floatY 2s ease-in-out infinite alternate;
    will-change: transform;
}
@keyframes random-chip-move {
    0% { 
        transform: translate(0, 14%) scale(.9);
    }
    30% {
        transform: translate(15%, 0%) scale(1.05);
    }
    60% {
        transform: translate(10%, 10%) scale(1.05);
    }
    100% {
        transform: translate(0, 0%) scale(1);
    }
}
@keyframes floatY{
  from { transform: translateY(-10px); }
  to   { transform: translateY( 10px); }
}
.overlay-ra-money-l {
    position: absolute;
    left: -80px;
    top: 100px;
    animation: floatY 2.4s ease-in-out infinite alternate;
    will-change: transform;
}
.upl-container-widget{
    position: relative;
    /* border: 5px solid #f7f7f7; */
    border-radius: 20px;
    /* box-shadow: 0 4px 20px rgb(161 72 142 / 29%); */
    padding: 6px;
	background: conic-gradient(from 180deg at 50% 50%, #FF763B 0deg, #5853F9 180deg, #9934FD 270deg, #FA711C 315deg, #FF763B 360deg);
	transition: all 0.1s cubic-bezier(0.4, 0, 1, 1);

}

/* animation */
.gsap-fade {
  opacity: 0;
  /* visibility: hidden; */
}

.small-info p {
    color: #6D6C6F;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.upl-container-imagereveal {
    position: relative;
    width: 100%;
    height: 100%;
    /* border: 5px solid #f7f7f7; */
    overflow: hidden;
    border-radius: 16px;
    /* box-shadow: 0 4px 20px rgb(161 72 142 / 29%); */
    background-color: rgba(255, 255, 255, 0.30);
    display: flex;
    justify-content: center;
    align-items: center;
}
.upl-container-imagereveal img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 580px;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}
.upl-container-imagereveal img.hidden {
    opacity: 0;
}
.upl-container-imagereveal .hover-button {
    font-family: 'Hanken Grotesk';
    font-weight: 500;
    display: flex;
    position: absolute;
    top: 60%;
    /* left: 42.7%;  */
    padding: 10px 20px;
    background: linear-gradient(180deg, #EF890A 0%, #EF620A 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    align-content: center;
    justify-content: center;
    align-items: center;
    opacity: 0.4;
    transition: all 0.2s ease;
    gap: 10px;
    /* transition: opacity 0.2s ease-in-out; */
}
.upl-container-imagereveal:hover .hover-button {
    opacity: 1;
    top: 58%;
    box-shadow: 0px 12px 10px 0px rgb(0 0 0 / 15%);
}
.upl-container-imagereveal .hover-button.hidden {
    opacity: 0;
}

.upl-container-imagereveal .background-img {
    background-image: url('../../img/landing-left-side.webp');
    background-repeat: no-repeat;
    width: 1100px;
    height: 589px;
    margin-left: 20%;
    background-size: auto;
}
.upl-container-imagereveal .foreground-img {
    background-image: url('../../img/landing-right-side.webp');
    background-repeat: no-repeat;
    height: 589px;
    width: 50%;
    background-size: auto;
}
.upl-container-imagereveal .slider {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: rgba(242, 242, 242, 0.0);
    outline: none;
    margin: 0;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.upl-container-imagereveal .slider:hover {
    background: rgba(242, 242, 242, 0.0);
}
.upl-container-imagereveal .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 589px;
    background: #EF620A;
    cursor: pointer;
}
.upl-container-imagereveal .slider::-moz-range-thumb {
    width: 10px;
    height: 589px;
    background: #EF620A;
    cursor: pointer;
}
.upl-container-imagereveal .slider-button {
    cursor: pointer;
    pointer-events: none;
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #EF620A;
    left: calc(50% - 31px);
    top: calc(50% - 28px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.upl-container-imagereveal .slider-button .slider-button-content{
    margin-top: -5px;
}
.upl-container-imagereveal .slider-button .slider-button-content:after {
    content: "";
    padding: 3px;
    display: inline-block;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
}
.upl-container-imagereveal .slider-button .slider-button-content:before {
    content: "";
    padding: 3px;
    display: inline-block;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(135deg);
}

.upl-container-imagereveal .slider-button:before{
    animation: 2s ease 0s infinite normal none running pulsesendiri;
    border-radius: 50%;
    border: 2px solid #da336b;
    content: "";
    height: 32px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate3d(-50%, -50%, 0px);
    width: 32px;
    z-index: 1;
}

.upl-container-imagereveal .slider-button:after{
    animation: 2s ease 0s infinite normal none running pulsesendiri;
    border-radius: 50%;
    border: 2px solid #da336b;
    content: "";
    height: 32px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate3d(-50%, -50%, 0px);
    width: 32px;
    z-index: 1;
    animation-delay: 0.3s;
}

@-webkit-keyframes pulsesendiri{
    0%{height:32px;opacity:1;width:32px;}
    80%{height:86px;opacity:0;width:86px;}
    100%{height:32px;opacity:0;width:32px;}
}
@keyframes pulsesendiri{
    0%{height:32px;opacity:1;width:32px;}
    80%{height:86px;opacity:0;width:86px;}
    100%{height:32px;opacity:0;width:32px;}
}
/* Selection Theme*/

/* css input sukses  */

/* css input gagal  */
.container-panel-demo {
    display: flex;
    padding: 60px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: #FFF9F4;
}

.container-panel-demo .header-panel{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}
.container-panel-demo .header-panel h4{
    color: #EF620A;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-self: stretch;
    margin: 0;
}
.container-panel-demo .header-panel h3{
    color: #100E1D;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 46px; /* 127.778% */
    align-self: stretch;
    margin: 0;
}
.container-panel-demo .header-panel h5{
    color: #453D64;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-self: stretch;
    margin: 0;
}
.demo-card-wrapper {
    display: flex;
    flex-direction: row;
    max-width: 1100px;
    width: 100%;
    justify-content: center;
    gap: 40px;
}

.demo-card-panel {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 50%;
    align-items: center;
    height: 443px;
    border: 1px solid #CDCDCD;
    justify-content: flex-end;
    border-radius: 12px;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 90%), url("https://digivospaces.b-cdn.net/UniPlay/ResellerLanding/demopanel.png");
    background-size: cover;
}
.demo-card-web {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 50%;
    align-items: center;
    height: 443px;
    border: 1px solid #CDCDCD;
    justify-content: flex-end;
    border-radius: 12px;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 90%), url("https://digivospaces.b-cdn.net/UniPlay/ResellerLanding/demowebsite.png");
    background-size: cover;
}
.demo-card-wrapper b {
    color: var(--Midnight-500, #28283B);
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin:0px;
}

.demo-card-wrapper p {
    color: #6D6C6F;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin:0px;
    margin-top: -10px;
}

.demo-card-wrapper a {
    border-radius: 999px;
    border: 1px solid #EF620A;
    background: #FFF;
    padding: 10px 18px;
    text-decoration: none;
    color: #1A1820;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 30px;
    transition: all 0.1s ease;
}

.demo-card-wrapper i {
    color: #EF620A;
    margin-left: 4px;
}
.demo-card-wrapper a:hover {
    background: rgba(255, 148, 81, 0.10);
    color: #EF620A;
}
/* .image-more-theme span {
    color: #FFF;
    font-family: "Hanken Grotesk";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
} */
.refund-policy-note {
    border-radius: 20px;
    border: 1px solid #EF620A;
    display: flex;
    padding: 20px 25px 20px 25px;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
    width: 100%;
    max-width: 700px;
    margin-top: 50px;
}
.refund-policy-note h4 {
    color: #EF620A;
    font-family: "Hanken Grotesk";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 8px;
}
.refund-policy-note p {
    color: #453D64;
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 5px;
}
.refund-policy-note small {
    color: #8e8b99;
    font-family: "Hanken Grotesk";
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
}
.container-pricing-modal{
    display: flex;
    /* width: 1440px; */
    padding: 60px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* background: rgba(74, 43, 172, 0.04); */
}
.container-pricing-modal .header-pricing-modal{
    display: flex;
    width: 635.286px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.container-pricing-modal .header-pricing-modal h4{
    color: #EF620A;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-self: stretch;
    margin: 0;
}
.container-pricing-modal .header-pricing-modal h3{
    color: #100E1D;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 46px; /* 127.778% */
    align-self: stretch;
    margin: 0;
}
.container-pricing-modal .header-pricing-modal h5{
    color: #453D64;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-self: stretch;
    margin: 0;
}

.container-pricing-modal .content-pricing-modal{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    width: 1100px;
    /* margin-top: 30px; */
    margin: 0 auto;
}
.container-pricing-modal .content-pricing-modal .navbar-pricing{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}
.container-pricing-modal .content-pricing-modal .navbar-pricing .left-bar{
    display: flex;
    align-items: center;
    gap: 16px;
}
.container-pricing-modal .content-pricing-modal .navbar-pricing .left-bar a{
    display: flex;
    padding: 6px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 33px;
    border: 1px solid #CBCBCB;
    background: var(--BaseWhite, #FFF);
    text-decoration: none;
    color: #424146;
    font-family: "Hanken Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: all ease .1s;
}
.container-pricing-modal .content-pricing-modal .navbar-pricing .left-bar a:hover{
    border-radius: 33px;
    border: 1px solid #B05800;
    background: rgba(255, 148, 81, 0.10);
    color: #EF620A;
}
.container-pricing-modal .content-pricing-modal .navbar-pricing .left-bar a.active{
    border-radius: 33px;
    border: 1px solid #B05800;
    background: rgba(255, 148, 81, 0.10);
    color: #EF620A;
}
.container-pricing-modal .content-pricing-modal .navbar-pricing .right-bar{
    display: flex;
    align-items: center;
    gap: 16px;
}
.container-pricing-modal .content-pricing-modal .navbar-pricing .right-bar .last-updated{
    color: #6D6C6F;
    font-family: "Hanken Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.container-pricing-modal .content-pricing-modal .navbar-pricing .right-bar .button-with-dropdwon{
    position: relative;
}
.container-pricing-modal .content-pricing-modal .navbar-pricing .right-bar .button-with-dropdwon a.trigger-dropdown{
    text-decoration: none;
    display: flex;
    padding: 6px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 33px;
    border: 1px solid #CBCBCB;
    background: var(--BaseWhite, #FFF);
    color: #EF620A;
    font-family: "Hanken Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.container-pricing-modal .content-pricing-modal .navbar-pricing .right-bar .button-with-dropdwon a.trigger-dropdown i{

}
.container-pricing-modal .content-pricing-modal .navbar-pricing .right-bar .button-with-dropdwon a.trigger-dropdown span{

}
.container-pricing-modal .content-pricing-modal .navbar-pricing .right-bar .button-with-dropdwon ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 8px;
    background: var(--BaseWhite, #FFF);
    position: absolute;
    /* left: 0; */
    right: 0;
    width: 210px;
    top: 45px;
    display: none;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.container-pricing-modal .content-pricing-modal .navbar-pricing .right-bar .button-with-dropdwon li{
    width: 100%;
}
.container-pricing-modal .content-pricing-modal .navbar-pricing .right-bar .button-with-dropdwon li a{
    display: flex;
    padding: 6px 12px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    color: #6D6C6F;
    font-family: "Hanken Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    /* border-top: 1px solid #E7E7E7; */
    border-bottom: 1px solid #E7E7E7;
    background: var(--BaseWhite, #FFF);
    transition: all ease .1s;
}
.container-pricing-modal .content-pricing-modal .navbar-pricing .right-bar .button-with-dropdwon li:first-child a{
    border-top: none !important;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.container-pricing-modal .content-pricing-modal .navbar-pricing .right-bar .button-with-dropdwon li:last-child a{
    border-bottom: none !important;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.container-pricing-modal .content-pricing-modal .navbar-pricing .right-bar .button-with-dropdwon li a:hover{
    color: #EF620A;
}

.container-pricing-modal .content-pricing-modal .navbar-pricing .right-bar .button-with-dropdwon li a i{
    width: 14px;
}

.frame-game-entity{
    display: flex;
    width: 1100px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 12px;
    border: 1px solid #CDCDCD;
    box-shadow: 0px 5px 0px 0px #FF9A5B;
    background: #EF620A;
}
.frame-game-entity .heading-game-entity{
    display: flex;
    height: 40px;
    padding: 6px 12px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}
.frame-game-entity .heading-game-entity b{
    color: var(--BaseWhite, #FFF);
    font-family: "Hanken Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.frame-game-entity .frame-content-game-entity{
    width: 100%;
    display: flex;
    background: white;
    flex-direction: column;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.frame-game-entity .frame-content-game-entity .search-content-game-entity{
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-top: 1px solid #CDCDCD;
    border-bottom: 1px solid #CDCDCD;
    background: #fff;
}
.frame-game-entity .frame-content-game-entity .search-content-game-entity i{
    font-size: 16px;
    color: #EF620A;
}
.frame-game-entity .frame-content-game-entity .search-content-game-entity input{
    width: 100%;
    color: #6D6C6F;
    font-family: "Hanken Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    outline: none !important;
    border: none !important;
}
.frame-game-entity .frame-content-game-entity .frame-content-game-lists{
    display: flex;
    padding: 0px 12px 10px 12px;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    overflow-x: scroll;
    overflow-y: hidden;
    cursor: grab;
}
.frame-content-game-entity .frame-content-game-lists:active {
    cursor: grabbing; /* Saat di-drag */
}
.frame-game-entity .frame-content-game-entity .frame-content-game-lists::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.frame-game-entity .frame-content-game-entity .frame-content-game-lists::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.1);
}

.frame-game-entity .frame-content-game-entity .frame-content-game-lists::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
}

.frame-game-entity .frame-content-game-entity .frame-content-game-lists::-webkit-scrollbar-thumb:hover{
    background: rgba(0, 0, 0, 0.4);
}

.frame-game-entity .frame-content-game-entity .frame-content-game-lists::-webkit-scrollbar-thumb:active{
    background: rgba(0, 0, 0, 0.9);
}

.frame-game-entity .frame-content-game-entity .frame-content-game-lists .item-content-game-lists{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    margin-top: 12px;
    margin-bottom: 12px;
    position: relative;
    user-select: none;
}
.frame-game-entity .frame-content-game-entity .frame-content-game-lists .item-content-game-lists svg{
    position: absolute;
    width: 100px;
    height: 100px;
    left: 0;
    top: 0;
    right: 0;
    visibility: hidden;
    z-index: -0;
}
.frame-game-entity .frame-content-game-entity .frame-content-game-lists .item-content-game-lists svg.show{
    visibility: visible;
    z-index: 99;
}
.frame-game-entity .frame-content-game-entity .frame-content-game-lists .item-content-game-lists .item-info-content-game-lists{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    align-self: stretch;
    cursor: pointer;
    user-select: none;
}
.frame-game-entity .frame-content-game-entity .frame-content-game-lists .item-content-game-lists img{
    width: 100px;
    height: 100px;
    border-radius: 8px;
    transition: all ease .1s;
}
.frame-game-entity .frame-content-game-entity .frame-content-game-lists .item-content-game-lists.inactive img{
    filter: grayscale(.6);
}
.frame-game-entity .frame-content-game-entity .frame-content-game-lists .item-content-game-lists:hover img{
    transform: scale(1.04);
}
.frame-game-entity .frame-content-game-entity .frame-content-game-lists .item-content-game-lists b{
    overflow: hidden;
    color: #100E1D;
    text-overflow: ellipsis;
    font-family: "Hanken Grotesk";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    align-self: stretch;
    width: 100%;
}
.frame-game-entity .frame-content-game-entity .frame-content-game-lists .item-content-game-lists.active b{
    color: #EF620A;
}
.frame-game-entity .frame-content-game-entity .frame-content-game-lists .item-content-game-lists small{
    color: #AAA9AE;
    font-family: "Hanken Grotesk";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-self: stretch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100px;
}
.frame-game-entity .frame-content-game-entity .subheading-game-entity{
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    background: #F3F3F3;
}
.frame-game-entity .frame-content-game-entity .subheading-game-entity b{
    color: #100E1D;
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.frame-game-entity .frame-content-game-entity .table-container{
    width: 100%;
    border-bottom-left-radius: 8px; /* Apply the border radius to the container */
    border-bottom-right-radius: 8px; /* Apply the border radius to the container */
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    margin-bottom: 10px;
}
.frame-game-entity .frame-content-game-entity table.game-denom-lists{
    width: 100%;
    border-collapse: collapse;
}
.frame-game-entity .frame-content-game-entity table.game-denom-lists thead{
    background: #424242;
}
.frame-game-entity .frame-content-game-entity table.game-denom-lists thead tr{

}
.frame-game-entity .frame-content-game-entity table.game-denom-lists thead tr th{
    height: 40px;
    padding: 6px 12px;
    color: var(--BaseWhite, #FFF);
    font-family: "Hanken Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: left;
}
.frame-game-entity .frame-content-game-entity table.game-denom-lists tbody tr:nth-child(odd) td{
    background: white;
}
.frame-game-entity .frame-content-game-entity table.game-denom-lists tbody tr:nth-child(even) td{
    background: #F6F6F6;
}

.frame-game-entity .frame-content-game-entity table.game-denom-lists tbody tr, .frame-game-entity .frame-content-game-entity table.game-denom-lists thead{
    display: table;
    width: 100%;
    table-layout: fixed;
}

.frame-game-entity .frame-content-game-entity table.game-denom-lists tbody{
    display: block;
    height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.frame-game-entity .frame-content-game-entity table.game-denom-lists tbody tr{

}
.frame-game-entity .frame-content-game-entity table.game-denom-lists tbody tr td{
    padding: 10px 12px;
    color: #6D6C6F;
    font-family: "Hanken Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.frame-cta-center{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.frame-cta-center a{

}

.container-pricing{
    display: flex;
    /* width: 1440px; */
    padding: 60px 0px 60px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.container-pricing .header-pricing{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.container-pricing .header-pricing h4{
    margin: 0px;
    color: #EF620A;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.container-pricing .header-pricing h3{
    margin: 0px;
    color: #100E1D;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 46px;
}
.container-pricing .header-pricing h5{
    margin: 0px;
    color: #453D64;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-self: stretch;
}
/*
.container-pricing .content-pricing{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    width: 1100px;
    margin: 0 auto;
}*/
.item-pricing-wrapper{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    width: 1120px;
    margin: 0 auto;
}
.container-pricing .content-pricing .item-pricing{
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    flex: 1 0 0;
    align-self: stretch;
    position: relative;
}
.container-pricing .content-pricing .item-pricing.newbie{
    border-radius: 6px;
    border: 1px solid #CDCDCD;
    background: var(--BaseWhite, #FFF);
    box-shadow: 0px 7px 0px 0px #109c3f;
}
.container-pricing .content-pricing .item-pricing.pro{
    border-radius: 6px;
    border: 1px solid #109c3f;
    background: #fff;
    box-shadow: 0px 7px 0px 0px #109c3f;
    margin-right: 16px;
    margin-left: -5px;
}

.container-pricing .content-pricing .item-pricing.pro .reason-recomended-pricing{
    display: flex;
    padding: 5px 0px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    background: #109c3f;
    color: var(--BaseWhite, #FFF);
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    left: -1px;
    right: -1px;
    top: -32px;
    position: absolute;
    border: 1px solid #109c3f;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.container-pricing .content-pricing .item-pricing.legend{
    border-radius: 6px;
    background: #F9F8FF;
    box-shadow: 0px 7px 0px 0px #161296;
    border: 1px solid #161296;
}

.container-pricing .content-pricing .item-pricing.legend .reason-recomended-pricing{
    display: flex;
    padding: 5px 0px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    background: #4A2BAC;
    color: var(--BaseWhite, #FFF);
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    left: -1px;
    right: -1px;
    top: -32px;
    position: absolute;
    border: 1px solid #4A2BAC;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.container-pricing .content-pricing .item-pricing.supreme{
    border-radius: 0px 0px 6px 6px;
    background: #F9F8FF;
    /* box-shadow: 0px 7px 0px 0px #161296; */
    /* border: 1px solid #161296; */
}

.container-pricing .content-pricing .item-pricing.supreme .reason-recomended-pricing{
    display: flex;
    padding: 5px 0px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    background: linear-gradient(180deg, #EF890A 0%, #EF620A 100%);
    color: var(--BaseWhite, #FFF);
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    left: -1px;
    right: -1px;
    top: -32px;
    position: absolute;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.container-pricing .content-pricing .item-pricing .header-item-pricing{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    align-self: stretch;
}
.container-pricing .content-pricing .item-pricing .header-item-pricing h4{
    margin: 0;
    font-family: "Hanken Grotesk";
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.container-pricing .content-pricing .item-pricing .header-item-pricing h5{
    margin: 0;
    color: #59575E;
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-self: stretch;
}
.container-pricing .content-pricing .item-pricing .subheader-item-pricing{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}
.container-pricing .content-pricing .item-pricing .subheader-item-pricing small{
    color: #EE3B3B;
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: line-through;
}
.container-pricing .content-pricing .item-pricing .subheader-item-pricing .highlight-pricing{
    display: flex;
    align-items: flex-end;
    gap: 4px;
}
.container-pricing .content-pricing .item-pricing .subheader-item-pricing .highlight-pricing b{
    color: #100E1D;
    font-family: "Hanken Grotesk";
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.container-pricing .content-pricing .item-pricing .subheader-item-pricing .highlight-pricing span{
    color: #757575;
    font-family: "Hanken Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.container-pricing .content-pricing .item-pricing .subheader-item-pricing p{
    color: #100E1D;
    font-family: "Hanken Grotesk";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}
.container-pricing .content-pricing .item-pricing .subheader-item-pricing p b{
    color: #100E1D;
    font-family: "Hanken Grotesk";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.container-pricing .content-pricing .item-pricing a{
    text-decoration: none;

}
.button-domain-wrapper {
    width: 100%;
    transition: all 0.1s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Animasi marquee */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-60%); }
}
.content-pricing a.cta-package:hover .button-domain-wrapper{
	transform: translateY(-4px);

}
.container-pricing .content-pricing a.cta-package {
	transition: all 0.1s;
}
.container-pricing .content-pricing a.cta-package:hover {
	transform: scale(1.02);
	z-index: 1;
}
.container-pricing .content-pricing .item-pricing.newbie a.cta-package:hover {
	transform: translateY(0px);
}
.container-pricing .content-pricing .item-pricing.newbie a.cta-package{
    display: flex;
    padding: 12px 36px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 999px;
    border: 1px solid #d3d3d3;
    color: #d3d3d3;
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 133.333% */
	background: #fafafa;
}
.container-pricing .content-pricing .item-pricing.pro a.cta-package{
    display: flex;
    padding: 12px 36px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 999px;
	border: 1px solid #1C9E3F;
	background: #22C04D;
    color: #fff;
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 133.333% */
}
.container-pricing .content-pricing .item-pricing.legend a.cta-package{
    display: flex;
    padding: 12px 36px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 999px;
    border: 1px solid #4A2BAC;
    background: linear-gradient(180deg, #603BD3 0%, #4A2BAC 100%);
    color: var(--BaseWhite, #FFF);
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 133.333% */
}
.container-pricing .content-pricing .item-pricing.supreme a.cta-package{
    display: flex;
    padding: 12px 36px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 999px;
    border: 1px solid #EF620A;
    background: linear-gradient(180deg, #EF890A 0%, #EF620A 100%);
    color: var(--BaseWhite, #FFF);
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 133.333% */
}

.container-pricing .content-pricing .item-pricing ul.list-featured{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
}
.container-pricing .content-pricing .item-pricing ul.list-featured li{
    display: flex;
    padding: 4px 0px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}
.container-pricing .content-pricing .item-pricing ul.list-featured li.benefit-item-extra{
    display: none;
}
.container-pricing .content-pricing .item-pricing ul.list-featured li.benefit-item-extra.is-visible{
    display: flex;
    animation: benefitItemReveal .4s ease both;
}
@keyframes benefitItemReveal{
    from{opacity:0; transform: translateY(-6px); max-height:0}
    to{opacity:1; transform: translateY(0); max-height:60px}
}
.container-pricing .content-pricing .item-pricing ul.list-featured li i.fa-check{
    color: #6EC929;
    font-size: 16px;
}
.container-pricing .content-pricing .item-pricing ul.list-featured li i.fa-times{
    color: #e45252;
    font-size: 16px;
}
.container-pricing .content-pricing .item-pricing ul.list-featured li span{
    color: #453D64;
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.container-pricing .content-pricing .item-pricing .frame-list-featured{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    gap: 14px;
    margin-top: 6px;
}
.container-pricing .content-pricing .item-pricing .frame-list-featured b{
    color: #3F3F3F;
    font-family: "Hanken Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    flex: 1 0 0;
}

 ul.list-featured a {
    text-decoration: none;
    border-bottom: 2px dotted #abaaaf;
    color: inherit;
    transition: border-color 0.3s;
}

/* Sembunyikan ikon secara default */
ul.list-featured a i.fas.fa-external-link-alt {
    display: hidden;
	position: absolute;
    font-size: 12px; /* Ukuran ikon */
    width: 12px;
    height: 12px;
	margin-top: 6px;
	margin-left: 5px;
    vertical-align: middle; /* Selaraskan ikon dengan teks */
    opacity: 0;
	transition: opacity 0.2s ease; /* Efek transisi saat hover */
}
/* Tampilkan ikon saat link di-hover */
ul.list-featured a:hover i.fas.fa-external-link-alt {
    display: inline-block;
    opacity: 1; /* Pastikan ikon terlihat */
}
/* Sembunyikan ikon secara default */
/* Tampilkan ikon saat link di-hover */
ul.list-featured i.fas.fa-times {
    display: flex;
    width: 16px;
    justify-content: center;
}
.tooltip-pricing {
    position: relative;
}
.tooltip-pricing[data-tooltip]:after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 102%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    color: #59575e;
    padding: 12px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 220px;
    text-align: center;
    white-space: normal; /* Allow multiline text */
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    opacity: 0; /* Tidak terlihat awalnya */
    visibility: hidden; /* Hilangkan dari layout */
    transition: opacity 0.2s ease, transform 0.3s ease; /* Tambahkan transisi */
    white-space: normal;
    transform: translateX(-50%) translateY(5px);
    font-family: "Hanken Grotesk";
    font-weight: 400;
}
.tooltip-pricing[data-tooltip]:hover:after {
    opacity: 1; /* Muncul dengan transisi */
    visibility: visible; /* Tampilkan di layout */
    transform: translateX(-50%) translateY(0px); /* Sedikit naik */
}
.dashed-title {
    text-decoration: none;
    border-bottom: 2px dotted #abaaaf;
    color: inherit;
    transition: border-color 0.3s;
    cursor: pointer;
}
/* Atur tooltip dasar */
.tooltip-img {
    position: relative;
}
.tooltip-img::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 99%; /* Tampilkan tooltip di atas elemen */
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #59575e;
    padding: 12px 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 290px; /* Maksimal lebar tooltip */
    height: 220px;
    text-align: center;
    z-index: 9;
    white-space: normal;
    font-size: 14px;
    opacity: 0; /* Tidak terlihat awalnya */
    visibility: hidden; /* Hilangkan dari layout */
    transition: opacity 0.2s ease, transform 0.3s ease; /* Tambahkan transisi */
    white-space: normal;
    transform: translateX(-50%) translateY(5px);
}
/* Tampilan teks tooltip saat hover */
.tooltip-img:hover::after {
    opacity: 1; /* Muncul dengan transisi */
    visibility: visible; /* Tampilkan di layout */
    transform: translateX(-50%) translateY(0px);
}
/* Tambahkan gambar di tooltip */
 .tooltip-img::before {
    content: '';
    position: absolute;
	bottom: 139%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    width: 290px;
    height: 201px;
    background-image: url('../../img/cektransaksi-min.webp');
    background-position: center;
    z-index: 10;
	border-radius: 4px;
    opacity: 0;
    visibility: hidden; /* Hilangkan dari layout */
    transition: opacity 0.2s ease, transform 0.3s ease; /* Tambahkan transisi */
    white-space: normal;
}
.tooltip-img:hover::before {
    opacity: 1; /* Muncul dengan transisi */
    visibility: visible; /* Tampilkan di layout */
    transform: translateX(-50%) translateY(0px);
}
.tooltip-img:hover img {
    display: block;
    margin: 10px auto 0;
    width: 50px; /* Ukuran gambar kecil di tooltip */
    height: 50px;
    cursor: pointer;
}
/* Atur tooltip dasar */
.tooltip-img-panel {
    position: relative;
}
.tooltip-img-panel::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 99%; /* Tampilkan tooltip di atas elemen */
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #59575e;
    padding: 12px 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 306px; /* Maksimal lebar tooltip */
    height: 238px;
    text-align: center;
    z-index: 9;
    white-space: normal;
    font-size: 14px;
    opacity: 0; /* Tidak terlihat awalnya */
    visibility: hidden; /* Hilangkan dari layout */
    transition: opacity 0.2s ease, transform 0.3s ease; /* Tambahkan transisi */
    white-space: normal;
    transform: translateX(-50%) translateY(5px);
}
/* Tampilan teks tooltip saat hover */
.tooltip-img-panel:hover::after {
    opacity: 1; /* Muncul dengan transisi */
    visibility: visible; /* Tampilkan di layout */
    transform: translateX(-50%) translateY(0px);
}
/* gambar di tooltip  */
.tooltip-img-panel::before {
    content: '';
    position: absolute;
	bottom: 139%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    width: 290px;
    height: 201px;
    background-image: url('../../img/panel-reseller-min.webp');
    background-position: center;
    z-index: 10;
	border-radius: 4px;
    opacity: 0;
    visibility: hidden; /* Hilangkan dari layout */
    transition: opacity 0.2s ease, transform 0.3s ease; /* Tambahkan transisi */
    white-space: normal;
}
.tooltip-img-panel:hover::before {
    opacity: 1; /* Muncul dengan transisi */
    visibility: visible; /* Tampilkan di layout */
    transform: translateX(-50%) translateY(0px);
}
.tooltip-img-panel:hover img {
    display: block;
    margin: 10px auto 0;
    width: 50px; /* Ukuran gambar kecil di tooltip */
    height: 50px;
    cursor: pointer;
}

/* Popup gambar */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 100;
}
/* Thumbnail */
.upl-container-widget .thumbnail-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.upl-container-widget .thumbnail-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.upl-container-widget .play-buttons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  padding: 20px 22px 20px 24px;
  transition: 0.3s;
}
.upl-container-widget .thumbnail-wrapper:hover .play-buttons {
  background: rgba(0,0,0,0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Modal Popup */
.upl-container-widget .modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
}
.upl-container-widget .modal-content {
  position: relative;
  margin: 5% auto;
  width: 80%;
  max-width: 800px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}
.upl-container-widget .video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
}
.upl-container-widget .video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.upl-container-widget .close {
  position: absolute;
  top: 10px; right: 20px;
  color: white;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
}
/* Modal Popup */
/* Gambar dalam popup */
.popup img {
    max-width: 90%;
    max-height: 90%;
    /* box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2); */
    border-radius: 8px;
    padding: 3px;
    background: #fff;
}

/* Tutup tombol */
.popup .close {
    position: absolute;
    top: 40px;
    right: 40px;
    color: #000000;
    font-size: 24px;
    cursor: pointer;
    background: #ffff;
    border: solid 1px #000;
    border-radius: 30px;
    width: 40px;
    height: 40px;
    /* padding-bottom: 35px; */
    /* padding: 0; */
}

.container-testimoni{
    display: flex;
    padding: 0px 0px 60px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    /* background: linear-gradient(180deg, #0D0D0D 0%, #1A1626 100%); */
    position: relative;
}
.container-testimoni .header-testimoni{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    padding-top: 60px;
}
.container-testimoni .header-testimoni h3{
    margin: 0px;
    color: #EF620A;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.container-testimoni .header-testimoni h4{
    margin: 0px;
    color: var(--BaseWhite, #FFF);
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 46px; /* 127.778% */
}
.container-testimoni .header-testimoni h5{
    margin: 0px;
    color: #DBD5F3;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.parent-overflow-content-testimoni{
    width: 100%;
    overflow: hidden;
    will-change: transform;
    margin-top: 30px;
}
.container-testimoni .overflow-content-testimoni{
    display: block;
    width: fit-content;
    margin-left: 20px;
}
.container-testimoni::before {
    content: "";
    z-index: -1;
    background: radial-gradient(120% 120% at 50% 14%, #0000 60%, #fd5006 84%, #fff 100%), linear-gradient(180deg, #0D0D0D 0%, #1A1626 100%);
    width: 100%;
    position: absolute;
    height: -webkit-fill-available;
    top: 0;
    left: 0;
}

.testimoni-ticker  {
    display: flex;
    /* animation: scrollTestimoni 40s linear infinite; */
    gap: 26px;
}

@keyframes scrollTestimoni {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.testimoni-item {
    display: flex!important;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 18px;
    border: 1px solid #EF620A;
    background: rgba(226, 232, 255, 0.05);
    box-shadow: 0 0 4px 0 rgba(255, 255, 255, 0.25) inset;
    width: 465px;
    backdrop-filter: blur(6px);
    height: 280px!important;
    justify-content: space-between;
}
.testimoni-ticker {
  margin: 0 -16px;
}

.testimoni-ticker .slick-slide {
  margin: 0 16px;
}
.testimoni-item p {
    color: #FFF;
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.testimoni-item .info-reviewer {
    display: flex;
    align-items: center;
    gap: 33px;
    align-self: stretch;
    justify-content: space-between;
}
.author-reviewer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.info-reviewer img {
    width: fit-content!important;
    height: auto!important;
}
.author-reviewer span {
    color: #fff;
    font-family: "Hanken Grotesk"; 
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.author-reviewer b {
    color: #FFA357;
    font-family: "Hanken Grotesk";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.container-faq-area{
    display: flex;
    /* width: 1440px; */
    padding: 60px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.container-faq-area .wrapper-faq-area{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 44px;
    align-self: stretch;
    margin: 0 auto;
}
.container-faq-area .laft-area-faq{
    display: flex;
    width: 457px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.container-faq-area .laft-area-faq h4{
    margin: 0px;
    color: #EF620A;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.container-faq-area .laft-area-faq h3{
    margin: 0px;
    color: #100E1D;
    font-family: "Hanken Grotesk";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 46px;
}
.container-faq-area .laft-area-faq h5{
    margin: 0px;
    color: #453D64;
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
    align-self: stretch;
}
.container-faq-area .laft-area-faq a{
    text-decoration: none;
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    border: 2px solid #0DC152;
    background: #0DC152;
    margin-top: 10px;
}
.container-faq-area .laft-area-faq a:hover {
	background: #11ac4c;
}
.container-faq-area .laft-area-faq a i{
    font-size: 24px;
    color: #FFFFFF;
}
.container-faq-area .laft-area-faq a span{
    color: var(--BaseWhite, #FFF);
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 133.333% */
}
.container-faq-area .right-area-faq{
    display: flex;
    width: 599px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.container-faq-area .right-area-faq .item-faq{
    display: flex;
    padding: 0px;
    flex-direction: column;
    align-items: flex-start;
    /* gap: 16px; */
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #CDCDCD;
    background: var(--BaseWhite, #FFF);
}
.container-faq-area .right-area-faq .item-faq .header-item-faq{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    cursor: pointer;
    padding: 16px;
}
.container-faq-area .right-area-faq .item-faq .header-item-faq b{
    color: #100E1D;
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    transition: all ease .1s;
}
.container-faq-area .right-area-faq .item-faq.opened .header-item-faq b{
    color: #EF620A;
}
.container-faq-area .right-area-faq .item-faq .header-item-faq i{
    display: flex;
    padding: 6px;
    gap: 10px;
    border-radius: 999px;
    background: #FFF0E7;
    color: #EF620A;
    width: 26px;
    height: 26px;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}
.container-faq-area .right-area-faq .item-faq.opened .header-item-faq i{
    transform: rotate(45deg);
}
.container-faq-area .right-area-faq .item-faq .content-item-faq{
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
}
.container-faq-area .right-area-faq .item-faq .content-item-faq p{
    color: #59575E;
    font-family: "Hanken Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
    align-self: stretch;
    margin: 0;
}
.link-on-faq {
    color: #EF620A!important;
    text-decoration: none;
}
.link-on-faq:hover {
    color: #ff8f00!important;
}

.footer-landing-reseller{
    display: flex;
    /* width: 1440px; */
    padding: 20px 80px;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(226, 232, 255, 0.10);
    background: #242424;
}
.footer-landing-reseller .left-content-footer{
    display: flex;
    align-items: center;
    gap: 7px;
    flex: 1 0 0;
}
.footer-landing-reseller .left-content-footer img{
    width: 179.1px;
    height: 45px;
}
.footer-landing-reseller .left-content-footer p{
    color: var(--BaseWhite, #FFF);
    font-family: "Hanken Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
}

.footer-landing-reseller .right-content-footer{
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-landing-reseller .footer-links {
    display: flex;
    gap: 15px;
}
.footer-landing-reseller .footer-links a {
    color: var(--BaseWhite, #FFF);
    text-decoration: none;
    font-family: "Hanken Grotesk";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    transition: color 0.1s ease;
}
.footer-landing-reseller .footer-links a:hover {
     color: #ff8f00;
}
.footer-landing-reseller .right-content-footer p{
    color: var(--BaseWhite, #FFF);
    font-family: "Hanken Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin: 0;
    white-space: nowrap;
}

/* CUSTOM DOMAIN ALERT */

/* DOMAIN AVAILABLE AREA */
/* Iframe untuk Video */

/* Konten Popup */

/* Tombol Close */
.switcher-wrapper {
    display: flex;
    /* gap: 20px; */
    border: 1px solid #B5B5B5;
    border-radius: 60px;
    /* height: 49px; */
}

.package-switcher {
    margin-bottom: 60px;
    margin-top: 10px;
}

.switcher {
    display: flex;
    justify-content: center;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #100E1D;
    padding: 14px 30px;
    cursor: pointer;
    text-align: center;
}

.switcher.active {
    display: flex;
    justify-content: center;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    background: linear-gradient(90deg, #020202 0%, #3C3737 51%, #202020 100%);
    padding: 14px 30px;
    border-radius: inherit;
    box-shadow: 0 2px 8px rgba(239, 98, 10, 0.35);
}


.switcher:not(.active):hover {
    background: #e2e2e24d;
    border-radius:inherit;
}


.percentage-tooltip {
    border-radius: 26px;
    background: linear-gradient(270deg, #EF890A 0%, #EF620A 100%);
    display: flex;
    padding: 2px 6px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    color: #fff;
    margin-top: -26px;
    font-size: 14px;
}
.bottom-tooltip {
    border-radius: 20px;
    background: #ffd510;
    color: #000;
    display: flex;
    padding: 5px 12px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    position: absolute;
    margin-top: 40px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0px 2px 6px 0px #CEB540;
    white-space: nowrap;
}

.bottom-tooltip::before {
    border-bottom: 10px solid #ffd510;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    content: "";
    height: 0;
    transform: translateX(-50%) translateY(calc(-100% + 1px));
    width: 0;
    z-index: 1;
    position: absolute;
    bottom: 69%;
    top: auto;
    left: 50%;
}
/* fade effect made by mego  :p  */
.mask-image {
    -webkit-mask-image:linear-gradient(90deg,#0000,#000 20% 80%,#0000);
    mask-image: linear-gradient(90deg,#0000,#000 20% 80%,#0000)
}
.social-proof-wrapper {
    position: absolute;
    height: auto;
    bottom: 105px;
    left: -10px;
}
.social-proof-badge {
    position: absolute;
    z-index: 6;
    border-radius: 6px;
    padding: 6px 10px;
    background: rgba(246, 246, 246, 0.95);
    box-shadow: 0 0 10.2px 0 rgba(10, 21, 48, 0.25), 0 0 10.1px 0 #E8E8E8 inset;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #111827;
    min-width: 240px;
    max-width: 260px;
    opacity: 0;
    transform: translateY(10px) scale(0.75);
    transition: 
        opacity 0.5s ease,
        transform 0.5s ease;
}
.social-proof-badge.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.sp-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.sp-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 11px;
    color: #6B7280;
}
.sp-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.sp-status-icon {
    font-size: 10px;
}
.sp-body {
    font-size: 12px;
    color: #111827;
}
.sp-buyer {
    font-weight: 600;
}
.sp-product {
    font-weight: 600;
}
.sp-thumb img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}
.chip-hero-overlay {
    border-radius: 5px;
    background: rgba(246, 246, 246, 0.35);
    box-shadow: 0 0 10.2px 0 rgba(10, 21, 48, 0.25), 0 0 10.1px 0 #E8E8E8 inset;
    backdrop-filter: blur(7.8px);
    display: inline-flex;
    padding: 6px 8px 6px 6px;
    align-items: center;
    gap: 10px;
    position: absolute;
    z-index: 6;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.chip-hero-overlay.is-fading {
  opacity: 0;
  transform: scale(0.92);
}
.chip-hero-overlay span {
    font-family: "Hanken Grotesk", sans-serif;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.chip-hero-overlay img {
    width: 26.816px;
    height: 26.816px;
    aspect-ratio: 26.82/26.82;
    border-radius: 5px;
}
 /* TABLET */
@media (min-width: 481px) and (max-width: 1024px) {
    .simple-lp-upl-container .container-topbar {
        padding: 90px 12px 35px 12px;
        box-sizing: border-box;
        margin-top: -80px;
        height: fit-content;
    }
    .matrix-section {
        padding-right: 0px;
        gap: 40px;
    }
    .matrix-content h4 {
        font-size: 26px;
    }
    .matrix-section span {
        font-size: 18px;
    }
    .matrix-section .matrix-item {
        text-align: center;
    }
    .matrix-content {
        display: flex;
        flex-direction: row;
        gap: 0px;
        justify-content: center;
    }
    .topbar ul.navbar{
        display: none;
    }
    .topbar .action-bar{
        display: none;
    }
    .topbar {
        width: calc(100% - 20px);
    }
    .simple-lp-upl-container .container-topbar {
        height: auto;
    }
    .container-topbar .headline h1 {
        font-size: 32px;
        text-align: center;
    }
    .container-topbar .headline h2 {
        font-size: 16px;
        text-align: center;
    }
    .container-topbar .headline {
        width: 100%;
        align-items: center;
        padding-inline: 10px;
    }
    .headline-wrapper {
        margin-top: 20px;
        flex-direction: column-reverse;
        align-items: center;
    }
    .container-topbar .headline > .desktop-only.row {
        display: none;
    }
    .container-topbar .headline.mobile-only {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-bottom: 16px;
    }
    .container-topbar .headline.mobile-only h2.mobile-only {
        display: block !important;
    }
    .as-outline-primary span {
        font-size: 16px;
        line-height: normal
    }
    .as-primary {
        padding: 10px 18px;
    }
    .as-outline-primary {
        padding: 16px 24px;
    }
    .container-topbar .slider-theme {
        width: auto;
        margin-bottom: 34px;
    }
    .slider-wrapper .slick-dots {
        bottom: -26px !important;
    }
    .demo-card-wrapper {
        gap: 20px;
        padding-inline: 10px;
    }
    .content-section-lp {
        display: flex;
        width: 100%;
        flex-direction: row;
        gap: 20px;
        /* align-items: center; */
        overflow-x: scroll;
        position: relative;
        justify-content: flex-start;
        padding-left: 5px;
        padding-right: 5px;
    }
    .fade-mobile-nc {
        position: relative;
        width: -webkit-fill-available;
        overflow-x: auto;
        overflow-y: hidden;
    }
    .container-pricing-modal .content-pricing-modal {
        width: 100%;
        padding-inline: 10px;
    }
    .container-pricing-modal .content-pricing-modal .navbar-pricing {
        gap: 12px;
        flex-direction: column-reverse;
    }
    .container-section-lp {
        padding-inline: 10px;
    }
    .frame-game-entity {
        width: 100%;
    }
    .frame-kalkulasi-keuntungan .frame-content-kalkulasi {
        flex-direction: column;
        gap: 20px;
    }
    .frame-kalkulasi-keuntungan .frame-content-kalkulasi .card-list-package {
        flex: auto;
    }
    .frame-kalkulasi-keuntungan .frame-content-kalkulasi {
        gap: 20px!important;
    }
    .main-ra {
        width: 80%!important;
        height: auto!important;
    }
    .overlay-ra {
        position: absolute;
        right: 0px;
        top: -20px;
    }
    .overlay-ra-money-r {
        right: 10px;
    }
    .overlay-ra-money-l {
        left: -10px;
    }
    .container-pricing .content-pricing {
        width: 100%;
        padding-top: 15px;
        position: relative;
    }
    .content-pricing .item-pricing-wrapper {
        display: flex;
        /* width: calc(100% - 10px); */
        width: 100%;
        /* padding: 0px 15px; */
        overflow: scroll;
        padding-top: 33px;
        justify-content: flex-start;
        gap: 22px;
        padding: 50px 0px 30px 0px;
        padding-inline: 20px;
    }
    .show_before::before{
	    top: 0;
	    left: 0;
        transform: rotateZ(180deg);
        background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0.03) 80%);
	    content: "";
	    position: absolute;
	    z-index: 2;
	    width: 60px;
	    height: 100%;
	    /* overflow-x: hidden; */
	}
    .show_after::after{
        top: 0;
        right: 0;
        background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0.03) 80%);
        content: "";
        position: absolute;
        z-index: 2;
        width: 60px;
        height: 100%;
    }
    @keyframes fade_in_show {
        0% {
            width: 0px;
             opacity: 0;
            z-index: -1;
        }

        100% {
            width: 50px;
            opacity: 1;
            z-index: 500;
        }
   }
    .container-pricing .content-pricing .item-pricing{
        /* width: 265px; */
        flex: none !important;
        padding: 20px;
    }
    .package-switcher {
        margin-bottom: 25px;
        width: 100%;
        box-sizing: border-box;
    }
    .package-switcher .switcher-wrapper {
        width: 100%;
        margin: 0 auto;
        overflow: visible;
        background: #fff;
        position: relative;
        max-width: 600px;
    }
    .package-switcher .switcher {
        flex: 1;
        align-items: center;
        min-height: 46px;
        font-size: 14px;
        line-height: 1.2;
        padding: 10px 8px;
        position: relative;
    }
    .package-switcher .switcher.active {
        font-size: 14px;
        line-height: 1.2;
        padding: 10px 8px;
    }
    .package-switcher .percentage-tooltip {
        top: 0;
        left: 50%;
        min-width: clamp(32px, 7vw, 42px);
        margin-top: 0;
        padding: 2px 7px;
        border-radius: 999px;
        font-size: clamp(10px, 1.7vw, 12px);
        line-height: 1.1;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 2;
    }
    .package-switcher .bottom-tooltip {
        top: calc(100% + 10px);
        left: 50%;
        right: auto;
        width: max-content;
        max-width: min(220px, 44vw);
        margin-top: 0;
        padding: 5px 10px;
        border-radius: 4px;
        font-size: clamp(11px, 1.7vw, 13px);
        line-height: 1.25;
        text-align: center;
        white-space: normal;
        transform: translateX(-50%);
        z-index: 2;
    }
    .package-switcher .bottom-tooltip::before {
        top: -8px;
        bottom: auto;
        left: 50%;
        border-bottom-width: 8px;
        border-left-width: 8px;
        border-right-width: 8px;
        transform: translateX(-50%);
    }
    .content-section-lp .item-section-lp {
        min-width: 320px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .container-faq-area .wrapper-faq-area {
        flex-direction: column;
    }
    .footer-landing-reseller {
        gap: 20px;
        flex-direction: column;
    }
}
 
@media (min-width: 320px) and (max-width: 480px) {
    .social-proof-wrapper{
        display: none;
    }
    .wof-section {
        margin-top: 10px;
    }
    .container-pricing .content-pricing .item-pricing ul.list-featured li i.fa-check{
        font-size: 13px;
    }
    .small-info p {
        color: #6D6C6F;
        text-align: center;
        font-family: "Hanken Grotesk";
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .package-switcher {
        margin-bottom: 20px;
        margin-top: 5px;
        width: 100%;
        padding-top: 0px !important;
        padding-inline: 8px;
        box-sizing: border-box;
    }
    .switcher-wrapper {
        width: 100%;
        margin: 0 auto;
        border-radius: 36px;
        overflow: visible;
        position: relative;
    }
    .switcher {
        flex: 1;
        align-items: center;
        min-height: 42px;
        font-size: 13px;
        line-height: 1.2;
        padding: 0 !important;
        position: relative;
    }
    .switcher.active {
        font-size: 13px;
        line-height: 1.2;
        padding: 0 !important;
        border-radius: 36px;
    }
    .percentage-tooltip {
        top: -8px;
        left: 50%;
        min-width: 28px;
        margin-top: 0;
        padding: 1px 5px;
        border-radius: 12px;
        font-size: 12px;
        line-height: 1.1;
        transform: translateX(-50%);
        pointer-events: none;
    }
    .bottom-tooltip {
        top: calc(100% + 8px);
        left: 50%;
        right: auto;
        width: max-content;
        max-width: 168px;
        margin-top: 0;
        padding: 4px 8px;
        border-radius: 3px;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.25;
        text-align: center;
        white-space: normal;
        transform: translateX(-50%);
        box-shadow: 0 1px 4px rgba(206, 181, 64, 0.45);
    }
    .bottom-tooltip::before {
        top: -6px;
        bottom: auto;
        left: 50%;
        border-bottom-width: 7px;
        border-left-width: 7px;
        border-right-width: 7px;
        transform: translateX(-50%);
    }
    .frame-theme img {
        width: 91vw!important;
        height: auto!important;
        margin-left: 6px;
    }
    .slider-wrapper {
        width: 91vw!important;
    }
    .slider-wrapper .slick-slide img {
        width: 91vw!important;
        height: auto!important;
        margin-left: 6px;
    }
    .slider-wrapper .slick-dots {
        width: 91vw!important;
    }
    .slider-wrapper .slick-dots {
        bottom: -26px!important;
    }
    .container-topbar .slider-theme {
        margin-bottom: 34px;
    }

    .slider-wrapper .slick-dots li button:before {
        background: #ff9400;
        color: #ffffff00;
        border-radius: 20px;
        width: 10px;
        height: 10px;
    }
.left-button-wrapper {
        gap: 16px;
        justify-content: space-between;
        flex-direction: column-reverse;
    }
    .left-button-wrapper .as-primary span i {
        /* display: none; */
    }
    .left-button-wrapper .as-outline-primary {
        width: -webkit-fill-available;
        height: min-content;
    }
    .left-button-wrapper .as-primary {
        width: -webkit-fill-available;
        height: min-content;
    }
    .left-button-wrapper .as-outline-primary span {
        font-size: 16px;
        text-align: center;
    }
    .left-button-wrapper .as-primary span {
        font-size: 16px;
        text-align: center;
        text-wrap-mode: nowrap;
    }
    .desktop-only {
        display: none !important;
    }
    .slider-theme .chip-hero-overlay {
        display: inline-flex !important;
        padding: 4px 6px;
        gap: 6px;
        transform: none;
        max-width: 70vw;
        white-space: normal;
    }
    .slider-theme .chip-hero-overlay span {
        font-size: 12px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
    }
    .slider-theme .chip-hero-overlay img {
        width: 20px;
        height: 20px;
        border-radius: 4px;
    }
    .slider-theme .chip-hero-overlay:nth-of-type(1) {
        top: 12px !important;
        right: 10px !important;
        left: auto !important;
        bottom: auto !important;
    }
    .slider-theme .chip-hero-overlay:nth-of-type(2) {
        bottom: 44px !important;
        left: 10px !important;
        right: auto !important;
        top: auto !important;
    }
    .slider-theme .chip-hero-overlay:nth-of-type(3) {
        display: none !important;
    }
    .slider-theme .chip-hero-overlay:nth-of-type(4) {
        bottom: auto !important;
        right: 20px !important;
        left: auto !important;
        top: 15px !important;
    }
    .slider-theme .desktop-only {
        display: block !important;
    }
    .mobile-only {
        display: block !important;
    }
    /* .switcher.monthly-package {
        border-top-right-radius: 0px!important;
        border-bottom-right-radius: 0px!important;
    }
     */
    .frame-game-entity .frame-content-game-entity .table-container{
        overflow: auto;
    }
    .frame-game-entity .frame-content-game-entity table.game-denom-lists{
        width: 1000px;
    }
    .simple-lp-upl-container .container-topbar{
        padding: 90px 12px 35px 12px;
        box-sizing: border-box;
        margin-top: -80px;
        height: fit-content;
    }
    /* #hargafinalsupreme {
        display: none;
    } */
    .refund-policy-note p {
        font-size: 15px;
    }
    .frame-cta-center{
        margin-top: 20px;
    }
    .container-topbar{
        width: 100%;
    }
    .topbar{
        width: 100%;
    }
    .matrix-section {
        gap: 15px;
        justify-content: center;
        padding-right: 0px;
    }
    .matrix-item {
        margin-top: 14px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .matrix-section span {
        font-size: 14px;
    }
    .matrix-content h4 {
        font-size: 24px;
    }
    .wof-section h4 {
        font-size: 15px;
    }
    .container-pricing-modal .header-pricing-modal{
        width: 100%;
    }
	.content-pricing {
		position: relative;
	}
    .purp-show_before::before{
	    top: 0;
	    left: 0;
        transform: rotateZ(180deg);
        background: linear-gradient(270deg, #F6F4FB 0%, rgba(255, 255, 255, 0.03) 80%);
	    content: "";
	    position: absolute;
	    z-index: 2;
	    width: 40px;
	    height: 100%;
	    /* overflow-x: hidden; */
	}
    .purp-show_after::after{
        top: 0;
        right: 0;
        background: linear-gradient(270deg, #F6F4FB 0%, rgba(255, 255, 255, 0.03) 80%);
        content: "";
        position: absolute;
        z-index: 2;
        width: 40px;
        height: 100%;
    }
    .show_before::before{
	    top: 0;
	    left: 0;
        transform: rotateZ(180deg);
        background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0.03) 80%);
	    content: "";
	    position: absolute;
	    z-index: 2;
	    width: 60px;
	    height: 100%;
	    /* overflow-x: hidden; */
	}
    .show_after::after{
        top: 0;
        right: 0;
        background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0.03) 80%);
        content: "";
        position: absolute;
        z-index: 2;
        width: 60px;
        height: 100%;
    }
    @keyframes fade_in_show {
        0% {
            width: 0px;
             opacity: 0;
            z-index: -1;
        }

        100% {
            width: 50px;
            opacity: 1;
            z-index: 500;
        }
   }
	.content-pricing .item-pricing-wrapper {
        display: flex;
        /* width: calc(100% - 10px); */
        width: 100%;
        /* padding: 0px 15px; */
        overflow: scroll;
        padding-top: 33px;
        justify-content: flex-start;
        gap: 22px;
        padding: 50px 0px 30px 0px;

    }
    .item-pricing.newbie {
        margin-right: 20px;
    }
    .container-pricing .content-pricing .item-pricing.supreme {
        margin-left: 20px;
    }
    /* .content-pricing.show_after::after {
    	animation: fade_in_show 0.3s;
		animation-fill-mode: forwards;
		-webkit-animation-fill-mode: forwards;
    }
    .content-pricing.show_before::before {
    	animation: fade_in_show 0.3s;
		animation-fill-mode: forwards;
		-webkit-animation-fill-mode: forwards;
    } */
    .container-pricing-modal .content-pricing-modal{
        width: 100%;
    }
    /* .fitur-wrapper::before {
        transform: rotateZ(180deg);
        background: linear-gradient(270deg, #fff 0%, rgb(255 255 255 / 0%) 80%);
        content: "";
        position: absolute;
        z-index: 5;
        width: 30px;
        height: 100%;
    }
    .fitur-wrapper::after {
        right:0;
        background: linear-gradient(270deg, #fff 0%, rgb(255 255 255 / 0%) 80%);
        content: "";
        position: absolute;
        z-index: 5;
        width: 30px;
        height: 100%;
    } */
	/* .cara-bergabung-wrapper::before {
	    transform: rotateZ(180deg);
	    background: linear-gradient(270deg, #f6f4fb 0%, rgb(246 244 251 / 0%) 80%);
	    content: "";
	    position: absolute;
	    z-index: 5;
	    width: 30px;
		height: 100%;
	}
	.cara-bergabung-wrapper::after {
        right: 0;
        background: linear-gradient(270deg, #f6f4fb 0%, rgb(246 244 251 / 0%) 80%);
        content: "";
        position: absolute;
        z-index: 5;
        width: 30px;
        height: 100%;
    } */
    .container-testimoni::before {
        background: none;
     }
    .testimoni-item {
        width: 320px;
    }
    .testimoni-item p {
        font-size: 14px;
    }
    .author-reviewer b {
        font-size: 13px;
    }
    .info-reviewer img {
        /* display: none!important; */
        width: 30%;
    }
     .container-pricing .content-pricing .item-pricing .header-item-pricing h5 {
        font-size: 15px;
     }
    .frame-kalkulasi-keuntungan .frame-content-kalkulasi {
        flex-direction: column;
        gap: 16px;
    }
    .overlay-ra-mobile {
        display: block;
        width: 80%;
        height: auto;
    }
    .overlay-ra {
        width: 60%;
        height: auto;
        position: absolute;
        right: 0px;
        top: 46px;
    }
    .overlay-ra-money-l {
        position: absolute;
        left: -30px;
        bottom: 30px;
    }
    .container-pricing .header-pricing{
        padding: 0px 7px 0px 7px;
    }
    .container-pricing .content-pricing{
        width: 100%;
        /* padding: 0px 15px;
        overflow: scroll;*/
        padding-top: 10px;
        justify-content: flex-start;
        flex-direction: row-reverse;
        gap: 12px;
    }
    .container-faq-area .laft-area-faq{
        width: 100%;
    }
    .container-faq-area .right-area-faq{
        width: 100%;
    }
    .container-testimoni {
        padding: 0px 0px 30px;
        margin-top: -1px;
        background-color: #0D0D0D;
        background-image: linear-gradient(180deg, #0D0D0D 0%, #1A1626 100%);
    }
    .frame-game-entity{
        width: 100%;
    }
    .upl-container-widget{
        width: 90vw;
        max-height: 53vw;
    }
    .upl-container-imagereveal .hover-button {
        top: 45%;
        opacity: 1;
        padding: 8px 14px;
        /* transition: opacity 0.2s ease-in-out; */
    }
    .upl-container-imagereveal:hover .hover-button {
        top: 34%;
    }
    .upl-container-imagereveal .background-img{
        width: 100%;
    }
    .upl-container-imagereveal .foreground-img{
        width: 100%;
    }
    .topbar ul.navbar{
        display: none;
    }
    .topbar .action-bar{
        display: none;
    }
    .headline-wrapper {
        flex-direction: column-reverse;
        margin-top: 0px;
        gap: 12px;
    }
    
    .container-topbar .headline{
        margin-bottom: 16px;
        width: 100%;
    }
    .container-topbar .headline h1{
        color: var(--BaseWhite, #FFF);
        font-family: "Hanken Grotesk";
        font-size: 26px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        width: 100%;
        text-align: center;
    }
    .container-topbar .headline h2{
        color: #DBD5F3;
        font-family: "Hanken Grotesk";
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
        text-align: center;
        margin-top: 10px;
        margin-bottom: 0px;
    }
    .container-topbar .slider-theme {
        width: 100%;
    }
    .content-section-lp {
        display: flex;
        width: 100%;
        flex-direction: row;
        gap: 20px;
        /* align-items: center; */
        overflow-x: scroll;
        position: relative;
        justify-content: flex-start;
        padding-left: 5px;
        padding-right: 5px;
    }
    .content-section-lp .item-section-lp {
        min-width: 320px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .wrapper-faq-area {
        flex-direction: column;
        align-items: center;
    }
    .container-faq-area .laft-area-faq {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .container-faq-area .laft-area-faq h4 {
        width: 100%;
        display: block;
        text-align: center;
    }
    .container-pricing-modal{
        display: flex;
        /* width: 1440px; */
        padding: 30px 15px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .container-pricing-modal .header-pricing-modal h4{
        color: #EF620A;
        text-align: center;
        font-family: "Hanken Grotesk";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .container-pricing-modal .header-pricing-modal h3{
        color: #100E1D;
        text-align: center;
        font-family: "Hanken Grotesk";
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    .container-pricing-modal .header-pricing-modal h5{
        color: #453D64;
        text-align: center;
        font-family: "Hanken Grotesk";
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .container-pricing-modal .content-pricing-modal .navbar-pricing{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        align-self: stretch;
        flex-direction: column;
        gap: 10px;
        overflow-x: scroll;
    }
    .container-pricing-modal .content-pricing-modal .navbar-pricing .left-bar{
        display: flex;
        align-items: center;
        gap: 12px;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        width: fit-content;
        padding-right: 30px;
    }
    .container-pricing-modal .content-pricing-modal .navbar-pricing .left-bar a{
        font-size: 14px;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .container-pricing-modal .content-pricing-modal .navbar-pricing .right-bar{
        display: none !important;
    }
    .container-pricing .content-pricing .item-pricing ul.list-featured li span {
        font-size: 16px;
    }
    .container-pricing{
        padding: 30px 0px 30px 0px;
    }
    .container-pricing .header-pricing h4{
        color: #EF620A;
        text-align: center;
        font-family: "Hanken Grotesk";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .container-pricing .header-pricing h3{
        color: #100E1D;
        text-align: center;
        font-family: "Hanken Grotesk";
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    .container-pricing .header-pricing h5{
        color: #453D64;
        text-align: center;
        font-family: "Hanken Grotesk";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        padding: 0 15px;
        margin-bottom: 10px;
    }
    .container-pricing .content-pricing .item-pricing{
        /* width: 265px; */
        flex: none !important;
        padding: 20px;
    }
       /* .container-pricing .content-pricing .newbie {
        margin-right: 15px!important;
    } */
    /* .container-pricing .content-pricing .legend {
        margin-left: 15px!important;
    }  */
    /* .overflow-content-testimoni::after {
       top: 0;
       right: 0;
       background: linear-gradient(270deg, #242424 0%, rgb(36 36 36 / 0%) 100%);
       content: "";
       position: absolute;
       z-index: 2;
       width: 20px;
       height: 100%;
    }
    .overflow-content-testimoni::before {
        top:0;
        left:0;
        transform: rotateZ(180deg);
        background: linear-gradient(270deg, #242424 0%, rgb(36 36 36 / 0%) 100%);
        content: "";
        position: absolute;
        z-index: 2;
        width: 20px;
        height: 100%;
    } */
    .container-testimoni .header-testimoni{
        padding: 0px 12px;
    }
    .container-testimoni .header-testimoni h4 {
        font-size: 30px;
        line-height: 40px; /* 127.778% */
    }
    .container-testimoni .header-testimoni h5 {
        font-size: 15px;
    }

    .container-faq-area{
        padding: 30px 15px;
    }
    .container-faq-area .laft-area-faq h3 {
        font-size: 26px;
        line-height: 40px;
    }
    .container-faq-area .laft-area-faq h5 {
        font-size: 15px;
        line-height: 22px;
    }
    .container-faq-area .laft-area-faq a {
        margin-top: 10px;
    }
    .container-faq-area .wrapper-faq-area{
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 30px;
        align-self: stretch;
        margin: 0 auto;
        flex-direction: column;
    }
    .footer-landing-reseller{
        display: flex;
        /* width: 1440px; */
        padding: 30px 15px;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid rgba(226, 232, 255, 0.10);
        background: #242424;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
    }
    .footer-landing-reseller .left-content-footer{
        display: flex;
        align-items: center;
        gap: 7px;
        flex: 1 0 0;
        flex-direction: column;
    }
    .footer-landing-reseller .left-content-footer p{
        margin: 0px;
        text-align: center;
        font-size: 13px;
        margin-bottom: 30px;
    }
    .footer-landing-reseller .right-content-footer {
            flex-direction: column;
    }
    .ph-item {
        flex: none!important;
    }
    .tooltip-img {
        position: unset;
    }
    .tooltip-img::before, .tooltip-img:hover::before, .tooltip-img:hover::after, .tooltip-img:hover img {
        display: none;
        background-image: none;
    }
    /* Tutup tombol */
    .popup .close {
        position: absolute;
        top: 15px;
        right: 15px;
        color: #000000;
        font-size: 24px;
        cursor: pointer;
        background: #ffff;
        border: solid 1px #000;
        border-radius: 30px;
        width: 40px;
        height: 40px;
        padding-bottom: 0px;
        padding: 0;
    }
    .container-panel-demo {
        padding: 30px 15px;
    }
    .demo-card-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 0px;
    }
    .demo-card-panel, .demo-card-web {
        width: 100%;
        height: 365px;
    }
    .container-panel-demo .header-panel h3 {
        text-align: center;
        font-family: "Hanken Grotesk";
        font-size: 26px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    .container-panel-demo .header-panel h5 {
        text-align: center;
        font-family: "Hanken Grotesk";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        width: 100%!important;
    }
    /* New container */
    .container-section-lp {
        padding: 30px 15px;
    }
    .container-section-lp .header-section-lp h3{
        text-align: center;
        font-family: "Hanken Grotesk";
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    table.compare-table {
        width: 144%;
    }
    table.compare-table td:first-child, table.compare-table  th:first-child {
        border-collapse: collapse;
        text-align: left;
        position: sticky;
        left: 0;
        width: 180px;
        background: inherit;
        /* box-shadow: inherit 4px 0px 4px 3px #000; */
        padding-right: 5px;
        border-right: 1px solid #9d9d9d63;
    }
    .content-compare-lp {
        overflow: clip;
    }
    /* Baris 1: "Komponen Biaya" */
    .compare-table-mobile thead tr:first-child th {
        position: sticky;
        top: 66px;
        z-index: 1;
        background: #2B2B2B;
        color: #fff;
    }

    /* Baris 2: "Bikin Web Sendiri" & "UniPlay" */
    .compare-table-mobile thead tr:nth-child(2) th {
        position: sticky;
        top: calc(65px + 44px);            /* sesuaikan dengan tinggi baris pertama */
        z-index: 1;
        color: #fff;
    }
    .compare-table-mobile {
        border-collapse: separate; /* sticky header lebih aman */
        border-spacing: 0;
    }
    /* .compare-table-mobile .tb-sticky {
        position: sticky;
        top: 0;
        z-index: 2;
        border-collapse: collapse;
        width: 100%;;

    } */
    table.compare-table th, table.compare-table td {
        font-size: 13.5px;
    }
    .compare-table-mobile .cost-item{
        background-color: #F8F8F8;
    }
    .compare-table-mobile tr td{
        border-bottom: 1px solid #E0E0E0;
    }
    .compare-table-mobile tr td:last-child{
        border-left: 1px solid #E0E0E0;
    }
    .compare-table-mobile tr td, .compare-table-mobile tr th{
        padding: 12px 16px;
        font-family: "Hanken Grotesk";
        font-size: 15px;
        font-style: normal;
        line-height: normal;
        text-align: center;
    }
    .social-proof-wrapper {
        left: 5px;
    }
    .fade-mobile-nc {
        position: relative;
        width: -webkit-fill-available;
        overflow-x: auto;
        overflow-y: hidden;
    }
}
.disabled-domain {
    color: #023e00;
    cursor: not-allowed;
}

.sticky-nav {
    background: #442998ed;
    padding: 10px 0px;
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: none;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease;
    z-index: 1000;
    -webkit-backdrop-filter: saturate(200%) blur(20px);
    backdrop-filter: saturate(203%) blur(14px);
}

.sticky-nav.show {
    opacity: 1;
    transform: translateY(0);
	border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}


  @keyframes spinaurora {
    0% { --angle: 0deg; }
    50% { --angle: 360deg; }
    100% { --angle: 0deg; }
  }

  @property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }

@keyframes scaleLoop {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1.0);
    }
}
.supreme{
    --first-color: #ff770b;
    --second-color: #e33cae;
    --third-color: #e3d442;
	--four-color: #a0f479;
}
@property --rotate {
  syntax: "<angle>";
  initial-value: 132deg;
  inherits: false;
}
.supreme::before, .supreme::after{
    opacity: 0;
    content: "";
    transition: all 0.4s ease-in-out;
    position: absolute;
    z-index: -1;
    background-image: linear-gradient(
    var(--rotate)
    , var(--first-color), var(--second-color) 43%, var(--third-color));
    animation: spin 3s linear infinite;
    opacity: 0.8;
    border-radius: 12px;
    top: -41px;
    left: -2.5%;
    height: calc(100% + 51px);
    width: 105%;
    transform: scale(1);
    filter: blur(0px);
}

@keyframes spin {
  0% {
    --rotate: 0deg;
  }
  100% {
    --rotate: 360deg;
  }
}
/* promo popup */

.frame-kalkulasi-keuntungan {
    display: flex;
    width: 100%;
    padding: 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.frame-kalkulasi-keuntungan .frame-content-kalkulasi {
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 40px;
}

.frame-kalkulasi-keuntungan .frame-content-kalkulasi .card-list-package {
    display: flex;
    padding: 24px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #CDCDCD;
    background: #FFF;
    box-shadow: 0px 2px 4px 0px rgba(41, 41, 41, 0.20);
    gap: 26px;
}

.frame-kalkulasi-keuntungan .frame-content-kalkulasi .card-list-package .text-title-card{
    color: #424146;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 0px;
    margin-top: 0px;
    font-family: "Hanken Grotesk";

}

.frame-kalkulasi-keuntungan .frame-content-kalkulasi .card-result-keuntungan {
    display: flex;
    padding: 24px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #EF620A;
    background: url(https://digivospaces.b-cdn.net/UniPlay/Icons/bgarrow.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 2px 4px 0px rgba(41, 41, 41, 0.20);
}

.frame-kalkulasi-keuntungan .frame-content-kalkulasi .card-result-keuntungan .header-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.frame-kalkulasi-keuntungan .frame-content-kalkulasi .card-result-keuntungan .header-card .text-title-card {
    color: #000;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0px;
    margin-top: 0px;
}

.frame-kalkulasi-keuntungan .frame-content-kalkulasi .card-result-keuntungan .header-card .text-result {
    color: #EF620A;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0px;
    margin-top: 0px;
}
.header-calc-keuntungan {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}
.header-calc-keuntungan h4{
    color: #EF620A;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-self: stretch;
    margin: 0;
}
.header-calc-keuntungan h3{
    color: #100E1D;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 46px;
    align-self: stretch;
    margin: 0;
}
.header-calc-keuntungan h5{
    color: #453D64;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-self: stretch;
    margin: 0;
}
.group-select-package {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-direction: row;
        cursor: pointer;

}
.item-select-group {
    display: flex;
    flex-direction: column;
    gap:6px;
    align-self: stretch;
}
.calc-select-package {
    display: flex;
    border-radius: 6px;
    border: 1px solid #CDCDCD;
    background: #FFF;
    padding: 10px 12px;
    gap: 6px;
    color: #424146;
    font-family: "Hanken Grotesk";
    font-size: 16px;
    flex: 1 0 0;
    font-weight: 500;
    justify-content: center;
}
.calc-select-package:hover {
    border: 1px solid #EF620A;
}
.calc-select-package.selected{
    display: flex;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid #EF620A;
    background: rgba(255, 148, 81, 0.10);
    padding: 10px 12px;
    gap: 6px;
    color: #EF620A;
    font-family: "Hanken Grotesk";
    font-size: 16px;
    flex: 1 0 0;
    font-weight: 500;
}
.disabled-field-price {
    display: flex;
    padding: 12px 16px;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    align-self: stretch;
    border-radius: 6px;
    border: 1px solid #CDCDCD;
    background: #F0F0F0;
    flex-direction: row;
        font-size: 16px;
            font-family: "Hanken Grotesk";
}
.sell-price {
    border-radius: 6px;
    border: 1px solid #CDCDCD;
    background: #FFF;
    display: flex;
    padding: 12px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;
    align-self: stretch;
            font-size: 16px;
        font-family: "Hanken Grotesk";
}
.sell-price:hover {
    border: 1px solid #EF890A;
}
.sell-price:focus {
    border: 1px solid #EF890A;
    outline: none;
}
.price-group-slider {
    display: flex;
    flex-direction: row;
    gap: 16px;
        align-items: center;
}
/* Chrome, Safari, Edge, Opera */
input.sell-price ::-webkit-outer-spin-button,
input.sell-price ::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.price-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;
    background: #ffdbc5;
  outline: none;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.price-slider:hover {
  opacity: 1;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
    border: 1px solid #EF620A;
    background: #FFF;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.10);
  cursor: pointer;
}

.item-select-group span #total-hari {
    width: 48px;
    padding: 4px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #EF620A;
}

.price-group-slider p {
    color: #FFF;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 125% */
    margin: 0px;
    border-radius: 5px;
    background: #EF620A;
    padding: 4px 10px;
}

.price-slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
    border: 1px solid #EF620A;
    background: #FFF;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.10);
  cursor: pointer;
}

input[type=range]::-webkit-slider-runnable-track {
      accent-color: #EE8103;
}
/* Firefox */
input[type=number].sell-price {
  -moz-appearance: textfield;
}
.error-hint p {
    color: #E34C4C;
    font-family: "Hanken Grotesk";
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
    margin: 0px;
}
.group-card-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    padding-top: 10px;
}
.card-benefit-lp {
    display: flex;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 2px;
    flex: 1 0 0;
    border-radius: 8px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    flex-direction: column;
    align-self: stretch;
    margin-top: 20px;
}

.card-benefit-lp h4{
    color: #EF620A;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0px;
}
.card-benefit-lp p{
    color: #6D6C6F;
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px;
}
.group-more-benefit {
    display: flex;
    padding-top: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    align-self: stretch;
    border-top: 1px solid #EFEFEF;
}
.group-more-benefit span{
    color: #424146;
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0px;
}

.group-more-benefit p {
    color: #6D6C6F;
    font-family: "Hanken Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px;
}
.card-result-keuntungan .as-primary {
        align-self: stretch;
}
.group-all-benefit {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}
@media (max-width: 450px){
    .frame-kalkulasi-keuntungan .frame-content-kalkulasi {
        flex-direction: column;
        gap: 24px;
    }
    .card-result-keuntungan {
        gap: 20px;
        padding: 15px!important;
        max-height: 454px;
    }
    .frame-kalkulasi-keuntungan .frame-content-kalkulasi .card-list-package {
        padding: 15px;
    }
    .header-calc-keuntungan h4 {
        color: #EF620A;
        text-align: center;
        font-family: "Hanken Grotesk";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .header-calc-keuntungan h3 {
        color: #100E1D;
        text-align: center;
        font-family: "Hanken Grotesk";
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    .header-calc-keuntungan {
        width: 100%;
        margin-bottom: 20px;
    }

    .card-benefit-lp {
        margin-top: 0px;
    }
    .group-select-package {
        gap: 10px
    }
    .frame-kalkulasi-keuntungan .frame-content-kalkulasi .card-result-keuntungan .header-card .text-result {
        font-size: 38px;
    }
    .calc-select-package {
        padding: 10px 10px;
        gap: 2px;
    }
    .calc-select-package.selected {
        padding: 10px 10px;
        gap: 2px;
    }
    .calc-select-package img {
        display: none;
    }
    .refund-policy-note {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    .container-pricing .content-pricing .item-pricing .subheader-item-pricing .highlight-pricing b {
        font-size: 32px;
    }
}
    #particles-js {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background-color: transparent;
      overflow: hidden;
      pointer-events: none;
    }
    #particles-js::before,
    #particles-js::after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 2px;
      height: 2px;
      border-radius: 50%;
      background: transparent;
      box-shadow:
        40px 620px #fff, 120px 180px #fff, 210px 470px #fff, 280px 90px #fff,
        360px 560px #fff, 430px 300px #fff, 520px 640px #fff, 610px 140px #fff,
        700px 420px #fff, 790px 520px #fff, 880px 60px #fff, 960px 360px #fff,
        1080px 600px #fff, 1180px 220px #fff, 1290px 480px #fff, 1370px 120px #fff,
        1460px 540px #fff, 1560px 320px #fff, 1670px 640px #fff, 1780px 200px #fff;
      opacity: .5;
      animation: uplParticleDrift 24s linear infinite;
    }
    #particles-js::after {
      top: 340px;
      opacity: .28;
      animation-duration: 40s;
    }
    @keyframes uplParticleDrift {
      from { transform: translateY(0); }
      to   { transform: translateY(-680px); }
    }
    @media (prefers-reduced-motion: reduce) {
      #particles-js::before,
      #particles-js::after { animation: none; }
    }

/* Desktop-only: tooltip to the right of the 1-year switcher tab */
@media (min-width: 1025px) {
    .switcher {
        position: relative;
    }
    .bottom-tooltip {
        top: 50%;
        left: calc(100% + 8px);
        margin-top: 0;
        transform: translateY(-50%);
    }
    .bottom-tooltip::before {
        border-right: 8px solid #ffd510;
        border-top: 7px solid transparent;
        border-bottom: 7px solid transparent;
        border-left: none;
        border-bottom-width: 7px;
        left: -8px;
        right: auto;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }
}

.lp-bg-orange {
    background: #FFF0E7;
}
.lp-bg-white {
    background: #FFFFFF;
}

.lp-profit-sim {
    width: min(680px, 92vw);
    background: #FFFFFF;
    border: 1px solid #F0D9C9;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(239, 98, 10, 0.10);
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
}
.lp-profit-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.lp-profit-badge {
    background: linear-gradient(180deg, #EF890A 0%, #EF620A 100%);
    color: #FFFFFF;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 999px;
}
.lp-profit-product {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #100E1D;
}
.lp-profit-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.lp-profit-label {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 15px;
    color: #453D64;
}
.lp-profit-value {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    color: #EF620A;
}
.lp-profit-unit {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 14px;
    color: #453D64;
}
.lp-profit-sub {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
    padding-top: 12px;
    border-top: 1px dashed #F0D9C9;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 14px;
    color: #453D64;
}
.lp-profit-sub b {
    color: #100E1D;
    font-weight: 700;
}
.lp-profit-note {
    margin: 0;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 12px;
    color: #8A82A6;
}
@media (max-width: 576px) {
    .lp-profit-sim {
        padding: 22px 18px;
    }
    .lp-profit-value {
        font-size: 34px;
    }
}

/* ==== Animasi reveal & marquee (pengganti GSAP + ScrollTrigger) ====
   Kelas animasi ditambahkan oleh JS saat elemen masuk viewport. Tanpa JS
   elemen tetap terlihat, jadi kegagalan script tidak pernah menyembunyikan konten. */
@keyframes upl-fade-up   { from { opacity:0; transform:translateY(50px) } to { opacity:1; transform:none } }
@keyframes upl-slide-left  { from { opacity:0; transform:translateX(-40px) } to { opacity:1; transform:none } }
@keyframes upl-slide-right { from { opacity:0; transform:translateX(40px) } to { opacity:1; transform:none } }
@keyframes upl-fade-in   { from { opacity:0; transform:translateY(var(--upl-fade-y, 12px)) } to { opacity:1; transform:none } }

.upl-anim-fade-up    { animation: upl-fade-up   1s   cubic-bezier(.25,.46,.45,.94) both }
.upl-anim-slide-left { animation: upl-slide-left 1.3s cubic-bezier(.25,.46,.45,.94) both }
.upl-anim-slide-right{ animation: upl-slide-right 1.3s cubic-bezier(.25,.46,.45,.94) both }
.upl-anim-fade-in    { animation: upl-fade-in var(--upl-fade-duration, .8s) cubic-bezier(.25,.46,.45,.94) var(--upl-fade-delay, .8s) both }

@keyframes upl-marquee { from { transform:translateX(0) } to { transform:translateX(var(--upl-marquee-x, 0)) } }
.upl-marquee { animation: upl-marquee var(--upl-marquee-duration, 120s) linear infinite; will-change: transform }
.wof-ticker:hover .upl-marquee,
.contents-testimoni:hover .upl-marquee { animation-play-state: paused }

/* Tinggi carousel hero dikunci sebelum slick init supaya 7 slide tidak menumpuk. */
.slider-wrapper { aspect-ratio: 606 / 392; overflow: hidden }
.slider-wrapper.slick-initialized { aspect-ratio: auto; overflow: visible }
.slider-wrapper > div img { max-width: 100%; height: auto }

.slider-wrapper.upl-slider { position: relative; overflow: visible }
.slider-wrapper.upl-slider > div.slick-slide { position: absolute; inset: 0; width: 100% }
.slider-wrapper.upl-slider > div.slick-slide.slick-active { position: relative }
.slider-wrapper.upl-slider .slick-dots {
    position: absolute; left: 0; right: 0;
    display: flex; gap: 8px; justify-content: center; align-items: center;
    list-style: none; padding: 0; margin: 0;
}
.slider-wrapper.upl-slider .slick-dots li { width: 10px; height: 10px; line-height: 0 }
.slider-wrapper.upl-slider .slick-dots li button {
    position: relative; display: block; width: 10px; height: 10px;
    padding: 0; border: 0; font-size: 0; line-height: 0; background: transparent; cursor: pointer;
}
.slider-wrapper.upl-slider .slick-dots li button:before {
    content: ""; position: absolute; inset: 0; display: block;
    border-radius: 999px; background: #ffd9b8;
}
.slider-wrapper.upl-slider .slick-dots li.slick-active button:before { background: #ff9400 }

@media (prefers-reduced-motion: reduce) {
  .upl-anim-fade-up, .upl-anim-slide-left, .upl-anim-slide-right, .upl-anim-fade-in { animation: none }
  .upl-marquee { animation: none }
}

/* Feedback klik tombol CTA "Mulai Sekarang" di section pertama —
   press singkat lalu smooth-scroll ke #header-pricing (lihat reseller-landing.js) */
.upl-cta-press { animation: uplCtaPress 300ms cubic-bezier(0.34, 1.56, 0.64, 1); }

@keyframes uplCtaPress {
  0%   { transform: scale(1); }
  30%  { transform: scale(0.93); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .upl-cta-press { animation: none; }
}

.lp-disclaimer {
    display: block;
    margin: 10px 0 0;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.55;
    color: #697586;
}

.lp-disclaimer-block {
    max-width: 720px;
    margin: 12px auto 0;
    text-align: center;
}

.lp-variant-offer .frame-kalkulasi-keuntungan .frame-content-kalkulasi .card-result-keuntungan .header-card .text-result {
    font-size: 32px;
    color: #202939;
}

.lp-variant-offer .card-result-keuntungan .header-card .lp-disclaimer {
    text-align: center;
}

@media (max-width: 768px) {
    .lp-variant-offer .frame-kalkulasi-keuntungan .frame-content-kalkulasi .card-result-keuntungan .header-card .text-result {
        font-size: 26px;
    }
}

.lp-variant-offer .headline-wrapper {
    margin-top: 72px;
}

@media (min-width: 481px) and (max-width: 1024px) {
    .lp-variant-offer .headline-wrapper {
        margin-top: 44px;
    }
}

@media (min-width: 320px) and (max-width: 480px) {
    .lp-variant-offer .headline-wrapper {
        margin-top: 28px;
    }
}

@media (min-width: 1025px) {
    .lp-variant-offer .container-topbar .headline {
        align-self: flex-start;
        margin-top: 24px;
    }
}

@media (min-width: 481px) {
    .lp-variant-offer .content-section-lp .item-section-lp {
        gap: 12px;
    }
}

.lp-variant-offer .item-section-lp h4 {
    margin-top: 0;
}

.lp-variant-offer .simple-lp-upl-container .container-topbar {
    padding-bottom: 56px;
}

.lp-variant-offer .container-topbar + .container-section-lp {
    z-index: 1;
    margin-top: -20px;
    border-radius: 20px 20px 0 0;
}

@media (min-width: 481px) and (max-width: 1024px) {
    .lp-variant-offer .simple-lp-upl-container .container-topbar {
        padding-bottom: 72px;
    }
    .lp-variant-offer .container-topbar + .container-section-lp {
        margin-top: -28px;
        border-radius: 26px 26px 0 0;
    }
}

@media (min-width: 1025px) {
    .lp-variant-offer .simple-lp-upl-container .container-topbar {
        padding-bottom: 96px;
    }
    .lp-variant-offer .container-topbar + .container-section-lp {
        margin-top: -36px;
        border-radius: 32px 32px 0 0;
    }
}

.lp-calc-hint {
    margin: 6px 0 0;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #697586;
    text-align: center;
}

.refund-policy-note img {
    max-height: 150px;
    width: auto;
}

.lp-variant-offer .refund-policy-note {
    padding: 18px 22px;
    gap: 20px;
    margin-top: 28px;
    justify-content: center;
}

.lp-variant-offer .refund-policy-note img {
    max-height: 104px;
}

.lp-variant-offer .refund-policy-note h4 {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 19px;
}

.lp-variant-offer .refund-policy-note p {
    margin-bottom: 6px;
    font-size: 16px;
}

.lp-variant-offer .testimoni-item p {
    margin-top: 0;
}
