/* Reload Pulsa — tema seragam + mode gelap/terang */
:root {
    --rp-bg-deep: #141f45;
    --rp-bg-mid: #1e2f6b;
    --rp-bg-soft: #2a408f;
    --rp-glass: rgba(255, 255, 255, 0.11);
    --rp-glass-border: rgba(255, 255, 255, 0.22);
    --rp-text: #eef2ff;
    --rp-text-muted: rgba(238, 242, 255, 0.82);
    --rp-banner-fade: #1a2d5c;
}

html[data-theme="light"] {
    --rp-bg-deep: #e8eef8;
    --rp-bg-mid: #d4dff5;
    --rp-bg-soft: #c5d4f0;
    --rp-glass: rgba(255, 255, 255, 0.82);
    --rp-glass-border: rgba(30, 47, 107, 0.14);
    --rp-text: #1e2f6b;
    --rp-text-muted: #3b4a6b;
    --rp-banner-fade: #c5d4f0;
}

.section-header .title {
    margin-bottom: 18px !important;
}

.section-header p {
    margin-top: 0;
    display: block;
}

body.rp-theme {
    background: var(--rp-bg-deep) !important;
    color: var(--rp-text-muted);
    transition: background 0.35s ease, color 0.35s ease;
}

.feature-shapes {
    display: none !important;
}

.rp-theme-toggle {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--rp-glass-border);
    background: var(--rp-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--rp-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease;
}

.rp-theme-toggle:hover {
    transform: scale(1.08);
}

/* Banner + body: satu palet biru (transisi halus) */
.rp-theme .banner-18.bg_img {
    background-color: var(--rp-bg-mid) !important;
    background-image: linear-gradient(165deg, var(--rp-bg-deep) 0%, var(--rp-bg-mid) 50%, var(--rp-bg-soft) 100%) !important;
    background-size: cover !important;
    background-position: center !important;
}

.rp-theme .banner-18.bg_img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/extra-2/banner/banner-bg-18.png) center/cover no-repeat;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

html[data-theme="light"] .rp-theme .banner-18.bg_img::before {
    opacity: 0.2;
}

.banner-18 {
    position: relative;
    margin-bottom: 0 !important;
    padding-bottom: 56px !important;
    overflow: hidden;
}

.banner-18 .container {
    position: relative;
    z-index: 2;
}

.banner-18::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: linear-gradient(to bottom, transparent, var(--rp-bg-deep));
    pointer-events: none;
    z-index: 1;
}

.banner-content-18 {
    padding: 36px 40px !important;
    background: var(--rp-glass);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--rp-glass-border);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.banner-content-18 .title {
    font-size: 36px !important;
    margin-bottom: 20px !important;
    line-height: 1.35;
}

.banner-content-18 p {
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin-bottom: 28px !important;
}

.banner-content-18 .button-4 {
    padding: 12px 22px !important;
    font-size: 14px !important;
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Mockup HP — satu gambar per tema, tampilan rapi */
.rp-mockup-wrap {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rp-mockup-wrap::before {
    content: "";
    position: absolute;
    width: 70%;
    height: 55%;
    left: 15%;
    top: 22%;
    background: radial-gradient(ellipse at center, rgba(100, 140, 255, 0.25), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.rp-mockup-wrap .rp-app-mockup {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 300px;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35));
    border: none;
    background: transparent;
}

.rp-mockup-wrap .rp-app-mockup--light {
    display: none !important;
}

html[data-theme="light"] .rp-mockup-wrap .rp-app-mockup--dark {
    display: none !important;
}

html[data-theme="light"] .rp-mockup-wrap .rp-app-mockup--light {
    display: block !important;
}

.banner-thumb .rp-mockup-wrap {
    max-width: 300px;
    min-height: 300px;
}

.banner-thumb .rp-mockup-wrap .rp-app-mockup {
    max-height: 400px;
}

.feat-slider .main-thumb {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

/* Owl: sembunyikan slide non-aktif agar tidak ada HP dobel */
.feat-slider.owl-carousel .owl-item {
    opacity: 0;
    transition: opacity 0.35s ease;
}

.feat-slider.owl-carousel .owl-item.active {
    opacity: 1;
}

.feat-slider .owl-stage-outer {
    overflow: hidden;
}

.feat-slider .owl-item:not(.active) .rp-mockup-wrap {
    visibility: hidden;
    pointer-events: none;
}

.feature-section,
.to-access-section,
.convence-feature,
.rp-cta-section {
    background: linear-gradient(165deg, var(--rp-bg-deep) 0%, var(--rp-bg-mid) 45%, var(--rp-bg-soft) 100%) !important;
    background-image: linear-gradient(165deg, var(--rp-bg-deep) 0%, var(--rp-bg-mid) 45%, var(--rp-bg-soft) 100%) !important;
    position: relative;
    overflow: hidden;
}

.feature-section::before,
.to-access-section::before,
.convence-feature::before,
.rp-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 20% 0%, rgba(79, 124, 255, 0.18), transparent 60%),
                radial-gradient(ellipse 60% 40% at 90% 80%, rgba(120, 80, 255, 0.12), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.feature-section .container,
.to-access-section .container,
.convence-feature .container,
.convence-feature .lg-oh,
.rp-cta-section .container {
    position: relative;
    z-index: 1;
}

.rp-theme .header-section {
    background: rgba(10, 20, 55, 0.55) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--rp-glass-border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

html:not([data-theme="light"]) .rp-theme .header-section .menu li a,
html:not([data-theme="light"]) .rp-theme .header-section.active .menu li a,
html:not([data-theme="light"]) .rp-theme .header-section.header-fixed .menu li a {
    color: #ffffff !important;
}

html:not([data-theme="light"]) .rp-theme .header-section .header-button.light {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.65) !important;
}

/* Mode terang: top bar biru tipis + teks gelap terbaca */
html[data-theme="light"] .rp-theme .header-section,
html[data-theme="light"] .rp-theme .header-section.active,
html[data-theme="light"] .rp-theme .header-section.header-fixed {
    background: rgba(198, 218, 252, 0.95) !important;
    border-bottom: 1px solid rgba(30, 47, 107, 0.14) !important;
    box-shadow: 0 4px 20px rgba(30, 60, 120, 0.12) !important;
}

html[data-theme="light"] .rp-theme .header-section .menu li a {
    color: #1e2f6b !important;
}

html[data-theme="light"] .rp-theme .header-section .menu li a:hover {
    color: #ee4730 !important;
}

html[data-theme="light"] .rp-theme .header-section .header-button,
html[data-theme="light"] .rp-theme .header-section .header-button.light {
    color: #1e2f6b !important;
    border-color: #3b5fc4 !important;
    background: rgba(255, 255, 255, 0.6) !important;
}

html[data-theme="light"] .rp-theme .header-section .header-button:hover {
    background: #ffffff !important;
    color: #1e2f6b !important;
}

html[data-theme="light"] .rp-theme .header-bar span {
    background-color: #1e2f6b !important;
}

/* Dropdown Harga & Blog — panel glass, terbaca di mode terang/gelap */
@media (min-width: 992px) {
    .rp-theme .header-section .menu > li.menu-item-has-children > a {
        display: inline-flex;
        align-items: center;
        gap: 2px;
    }

    .rp-theme .header-section .menu > li.menu-item-has-children > a::after {
        content: "";
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 5px;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid currentColor;
        opacity: 0.7;
        transition: transform 0.2s ease;
    }

    .rp-theme .header-section .menu > li.menu-item-has-children:hover > a::after {
        transform: rotate(180deg);
    }

    .rp-theme .header-section .menu li .submenu {
        min-width: 230px !important;
        padding: 8px !important;
        margin-top: 10px !important;
        border-radius: 14px !important;
        border: 1px solid var(--rp-glass-border) !important;
        background: rgba(18, 28, 62, 0.94) !important;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32) !important;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
    }

    .rp-theme .header-section .menu li:hover > .submenu {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .rp-theme .header-section .menu li .submenu li a {
        color: #eef2ff !important;
        background: transparent !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 10px !important;
        padding: 11px 16px !important;
        font-weight: 500 !important;
        font-size: 15px !important;
        line-height: 1.4 !important;
        transition: background 0.2s ease, color 0.2s ease, padding 0.2s ease;
    }

    .rp-theme .header-section .menu li .submenu li:last-child a {
        border-bottom: none !important;
    }

    .rp-theme .header-section .menu li .submenu li a:hover {
        background: rgba(255, 255, 255, 0.12) !important;
        color: #ffffff !important;
        padding-left: 20px !important;
    }

    /* Mode terang: panel putih/biru, teks gelap */
    html[data-theme="light"] .rp-theme .header-section .menu li .submenu {
        background: rgba(255, 255, 255, 0.98) !important;
        border: 1px solid rgba(30, 47, 107, 0.2) !important;
        box-shadow: 0 14px 40px rgba(30, 60, 120, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.8) inset !important;
    }

    html[data-theme="light"] .rp-theme .header-section .menu li .submenu li a {
        color: #1e2f6b !important;
        border-bottom-color: rgba(30, 47, 107, 0.1) !important;
    }

    html[data-theme="light"] .rp-theme .header-section .menu li .submenu li a:hover {
        background: linear-gradient(90deg, rgba(93, 80, 240, 0.14), rgba(93, 80, 240, 0.06)) !important;
        color: #5d50f0 !important;
        padding-left: 20px !important;
    }

    html[data-theme="light"] .rp-theme .header-section.active .menu li .submenu li a,
    html[data-theme="light"] .rp-theme .header-section.header-fixed .menu li .submenu li a {
        color: #1e2f6b !important;
    }
}

/* Mobile: submenu Harga & Blog */
@media (max-width: 991px) {
    .rp-theme .header-section .header-wrapper .menu li .submenu {
        padding: 4px 12px 10px 8px !important;
        background: rgba(0, 0, 0, 0.04);
        border-left: 3px solid rgba(93, 80, 240, 0.45);
        margin: 0 10px 8px;
        border-radius: 0 10px 10px 0;
    }

    .rp-theme .header-section .header-wrapper .menu li .submenu li a {
        border: none !important;
        border-radius: 8px !important;
        padding: 10px 14px !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        color: #3b368c !important;
        background: transparent !important;
    }

    .rp-theme .header-section .header-wrapper .menu li .submenu li a:hover {
        background: rgba(93, 80, 240, 0.1) !important;
        color: #5d50f0 !important;
        padding-left: 18px !important;
    }

    html[data-theme="light"] .rp-theme .header-section .header-wrapper .menu {
        background: rgba(255, 255, 255, 0.98) !important;
        border: 1px solid rgba(30, 47, 107, 0.12);
        border-radius: 0 0 14px 14px;
    }

    html[data-theme="light"] .rp-theme .header-section .header-wrapper .menu li a {
        color: #1e2f6b !important;
        border-top-color: rgba(30, 47, 107, 0.1) !important;
    }

    html[data-theme="light"] .rp-theme .header-section .header-wrapper .menu li a:hover {
        background: rgba(93, 80, 240, 0.08) !important;
        color: #5d50f0 !important;
    }

    html[data-theme="light"] .rp-theme .header-section .header-wrapper .menu li .submenu {
        background: rgba(232, 238, 248, 0.95) !important;
        border-left-color: #5d50f0;
    }

    html[data-theme="light"] .rp-theme .header-section .header-wrapper .menu li .submenu li a {
        color: #1e2f6b !important;
    }

    html:not([data-theme="light"]) .rp-theme .header-section .header-wrapper .menu li .submenu {
        background: rgba(30, 40, 80, 0.5) !important;
        border-left-color: rgba(255, 255, 255, 0.35);
    }

    html:not([data-theme="light"]) .rp-theme .header-section .header-wrapper .menu li .submenu li a {
        color: #eef2ff !important;
    }

    html:not([data-theme="light"]) .rp-theme .header-section .header-wrapper .menu li .submenu li a:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        color: #ffffff !important;
    }
}

html[data-theme="light"] .banner-content-18 {
    background: rgba(255, 255, 255, 0.82) !important;
    border-color: rgba(30, 47, 107, 0.16) !important;
    box-shadow: 0 12px 36px rgba(30, 60, 120, 0.14) !important;
}

html[data-theme="light"] .banner-content-18.cl-white,
html[data-theme="light"] .banner-content-18.cl-white .title,
html[data-theme="light"] .banner-content-18.cl-white h1 {
    color: #1e2f6b !important;
}

html[data-theme="light"] .banner-content-18.cl-white p {
    color: #3b4a6b !important;
}

html[data-theme="light"] .banner-content-18.cl-white * {
    color: #3b4a6b !important;
}

html[data-theme="light"] .banner-content-18.cl-white .title,
html[data-theme="light"] .banner-content-18.cl-white h1 {
    color: #1e2f6b !important;
}

html[data-theme="light"] .banner-content-18.cl-white .button-4,
html[data-theme="light"] .banner-content-18.cl-white a.button-4 {
    color: #ffffff !important;
}

.feature-section .section-header,
.to-access-section .section-header,
.convence-feature .section-header {
    background: var(--rp-glass);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--rp-glass-border);
    border-radius: 16px;
    padding: 24px 32px !important;
    margin-bottom: 32px;
}

.rp-cta-box {
    background: var(--rp-glass);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--rp-glass-border);
    border-radius: 16px;
    text-align: center;
    padding: 48px 40px;
    max-width: 820px;
    margin: 0 auto;
}

.feature-section .section-header .title,
.to-access-section .section-header .title,
.convence-feature .section-header .title,
.feature-section .feature-item .feature-content .title,
.to-access-section .how-item .how-content .title,
.convence-feature .feature-item-2 .feature-content .title,
.convence-feature .spon-cont p,
.rp-cta-box .title {
    color: var(--rp-text) !important;
}

.feature-section .section-header p,
.to-access-section .section-header p,
.convence-feature .section-header p,
.feature-section .feature-item .feature-content p,
.to-access-section .how-item .how-content p,
.convence-feature .feature-item-2 .feature-content p,
.rp-cta-box p {
    color: var(--rp-text-muted) !important;
}

.feature-section .section-header .title,
.to-access-section .section-header .title,
.convence-feature .section-header .title {
    line-height: 1.35 !important;
    margin-bottom: 16px !important;
}

.feature-section .section-header p,
.to-access-section .section-header p,
.convence-feature .section-header p {
    line-height: 1.75 !important;
    margin-top: 8px !important;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item,
.how-item,
.feature-item-2 {
    background: var(--rp-glass) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--rp-glass-border) !important;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.35s ease,
                background 0.35s ease,
                border-color 0.35s ease;
    transform-origin: center center;
}

.feature-item::before,
.feature-item.active::before,
.feature-item:hover::before {
    display: none !important;
    opacity: 0 !important;
}

/* Ikon fitur = cuplikan mockup app (selaras slider) */
.feature-item .feature-thumb {
    width: 88px !important;
    height: auto !important;
    min-height: auto !important;
    border: none !important;
    background: transparent !important;
    animation: none !important;
    -webkit-animation: none !important;
    flex-shrink: 0;
}

.feature-item .feature-thumb::before,
.feature-item .feature-thumb::after {
    display: none !important;
    content: none !important;
}

.feature-item .feature-thumb .thumb {
    width: 76px !important;
    height: 76px !important;
    border-radius: 14px !important;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    animation: none !important;
    -webkit-animation: none !important;
    border: 1px solid var(--rp-glass-border) !important;
}

.feature-item .feature-thumb .thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.feature-item {
    padding: 28px 32px !important;
    margin-bottom: 24px !important;
}

.feature-item .feature-content {
    padding-left: 28px !important;
}

.feature-item .feature-content .title {
    margin-bottom: 14px !important;
    line-height: 1.4 !important;
}

.feature-item .feature-content p {
    margin-top: 0 !important;
    line-height: 1.7 !important;
}

.how-item {
    padding: 36px 28px 40px !important;
}

.how-item .how-content {
    padding: 8px 16px 0 !important;
}

.how-item .how-content .title {
    margin-bottom: 16px !important;
    line-height: 1.45 !important;
}

.how-item .how-content p {
    line-height: 1.7 !important;
    margin-top: 0 !important;
}

.how-item .how-content .button-3,
.how-item .how-content span.button-3 {
    margin-bottom: 24px !important;
    display: block;
}

.feature-item-2 {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 28px 24px 32px !important;
    margin: 12px 8px !important;
    min-height: 260px;
    text-align: center;
}

.feature-item-2 .feature-thumb {
    flex-shrink: 0;
    margin-bottom: 16px;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item-2 .feature-thumb img {
    max-height: 64px;
    width: auto;
}

.feature-item-2 .feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    padding-top: 0 !important;
}

.feature-item-2 .feature-content .title {
    margin-bottom: 10px !important;
    line-height: 1.35 !important;
    font-size: 1.05rem !important;
}

.feature-item-2 .feature-content p {
    line-height: 1.6 !important;
    margin: 0 !important;
    font-size: 0.92rem !important;
}

.feature-item:hover,
.feature-item.active,
.how-item:hover,
.feature-item-2:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.38) !important;
}

html[data-theme="light"] .feature-item:hover,
html[data-theme="light"] .feature-item.active,
html[data-theme="light"] .how-item:hover,
html[data-theme="light"] .feature-item-2:hover {
    background: rgba(255, 255, 255, 0.95) !important;
}

.feature-item:hover .feature-content .title,
.feature-item.active .feature-content .title,
.feature-item:hover .feature-content p,
.feature-item.active .feature-content p {
    color: #ffffff !important;
}

html[data-theme="light"] .feature-item:hover .feature-content .title,
html[data-theme="light"] .feature-item.active .feature-content .title,
html[data-theme="light"] .feature-item:hover .feature-content p,
html[data-theme="light"] .feature-item.active .feature-content p {
    color: var(--rp-text) !important;
}

.rp-theme .wow {
    visibility: visible !important;
}

.rp-cta-section {
    padding-top: 48px;
    padding-bottom: 48px;
}

.rp-cta-box .title {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.rp-cta-box p {
    margin-bottom: 28px;
    line-height: 1.7;
}

.rp-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.rp-cta-actions .button-4 {
    padding: 12px 24px !important;
}

.rp-theme .footer-section {
    background: linear-gradient(180deg, var(--rp-bg-soft) 0%, var(--rp-bg-deep) 100%) !important;
    background-image: linear-gradient(180deg, var(--rp-bg-soft) 0%, var(--rp-bg-deep) 100%) !important;
    position: relative;
}

.rp-theme .footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 40, 0.72);
    pointer-events: none;
}

.rp-theme .footer-section .container {
    position: relative;
    z-index: 1;
}

.rp-theme .footer-section,
.rp-theme .footer-section p,
.rp-theme .footer-section a,
.rp-theme .footer-section li a,
.rp-theme .footer-section .copyright {
    color: var(--rp-text) !important;
}

.rp-theme .footer-top {
    background: var(--rp-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid var(--rp-glass-border);
}

.sponsor-thumb {
    background: var(--rp-glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--rp-glass-border);
    border-radius: 12px;
    padding: 12px;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sponsor-thumb:hover {
    transform: scale(1.08);
}

.convence-feature .spon-cont {
    padding: 16px 24px;
}

.rp-theme .scrollToTop {
    background: var(--rp-glass) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--rp-glass-border);
    color: #fff !important;
    transition: transform 0.3s ease;
}

.rp-theme .scrollToTop:hover {
    transform: scale(1.1);
}

/* ========== Halaman dalam — tema glass (selaras index) ========== */
.rp-theme.rp-inner .about-section,
.rp-theme.rp-inner .history-section,
.rp-theme.rp-inner .privacy-section,
.rp-theme.rp-inner .feature-section,
.rp-theme.rp-inner .blog-section,
.rp-theme.rp-page-light .about-section,
.rp-theme.rp-page-light .history-section,
.rp-theme.rp-page-light .privacy-section,
.rp-theme.rp-page-light .feature-section,
.rp-theme.rp-page-light .blog-section {
    background: linear-gradient(165deg, var(--rp-bg-deep) 0%, var(--rp-bg-mid) 45%, var(--rp-bg-soft) 100%) !important;
    background-image: linear-gradient(165deg, var(--rp-bg-deep) 0%, var(--rp-bg-mid) 45%, var(--rp-bg-soft) 100%) !important;
    position: relative;
    overflow: hidden;
}

.rp-theme.rp-inner .about-section::before,
.rp-theme.rp-inner .history-section::before,
.rp-theme.rp-inner .privacy-section::before,
.rp-theme.rp-inner .feature-section::before,
.rp-theme.rp-inner .blog-section::before,
.rp-theme.rp-page-light .about-section::before,
.rp-theme.rp-page-light .history-section::before,
.rp-theme.rp-page-light .privacy-section::before,
.rp-theme.rp-page-light .feature-section::before,
.rp-theme.rp-page-light .blog-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 20% 0%, rgba(79, 124, 255, 0.18), transparent 60%),
                radial-gradient(ellipse 60% 40% at 90% 80%, rgba(120, 80, 255, 0.12), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.rp-theme.rp-inner .about-section .container,
.rp-theme.rp-inner .history-section .container,
.rp-theme.rp-inner .privacy-section .container,
.rp-theme.rp-inner .feature-section .container,
.rp-theme.rp-inner .blog-section .container,
.rp-theme.rp-page-light .about-section .container,
.rp-theme.rp-page-light .history-section .container,
.rp-theme.rp-page-light .privacy-section .container,
.rp-theme.rp-page-light .feature-section .container,
.rp-theme.rp-page-light .blog-section .container {
    position: relative;
    z-index: 1;
}

.rp-page-hero {
    padding-top: 118px;
    padding-bottom: 40px;
    background: linear-gradient(165deg, var(--rp-bg-deep) 0%, var(--rp-bg-mid) 50%, var(--rp-bg-soft) 100%) !important;
    position: relative;
}

.rp-page-hero .rp-hero-inner {
    background: var(--rp-glass);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--rp-glass-border);
    border-radius: 16px;
    padding: 22px 36px 28px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 720px;
    margin: 0 auto;
}

.rp-page-hero .rp-hero-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 10px;
    width: 100%;
    margin: 0 0 18px;
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.9rem;
    line-height: 1.5;
}

.rp-page-hero .rp-hero-breadcrumb a {
    color: #a8c4ff !important;
    font-weight: 600;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.rp-page-hero .rp-hero-breadcrumb a:hover {
    color: #ffffff !important;
}

.rp-page-hero .rp-hero-breadcrumb .rp-bc-sep {
    color: rgba(238, 242, 255, 0.45) !important;
    font-weight: 400;
    user-select: none;
}

.rp-page-hero .rp-hero-breadcrumb .rp-bc-current {
    color: rgba(238, 242, 255, 0.88) !important;
    font-weight: 500;
}

.rp-page-hero .rp-hero-title,
.rp-page-hero h1.rp-hero-title {
    color: #ffffff !important;
    margin: 0 !important;
    padding: 0;
    font-size: 1.85rem !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.02em;
    width: 100%;
}

/* Matikan style breadcrumb template (flaticon / warna gelap) */
.rp-page-hero .breadcrumb li a::after {
    display: none !important;
    content: none !important;
}

html[data-theme="light"] .rp-page-hero .rp-hero-inner {
    background: rgba(255, 255, 255, 0.94) !important;
    border-color: rgba(30, 47, 107, 0.16) !important;
}

html[data-theme="light"] .rp-page-hero .rp-hero-breadcrumb {
    border-bottom-color: rgba(30, 47, 107, 0.12);
}

html[data-theme="light"] .rp-page-hero .rp-hero-breadcrumb a {
    color: #5d50f0 !important;
}

html[data-theme="light"] .rp-page-hero .rp-hero-breadcrumb a:hover {
    color: #3b368c !important;
}

html[data-theme="light"] .rp-page-hero .rp-hero-breadcrumb .rp-bc-sep {
    color: rgba(30, 47, 107, 0.35) !important;
}

html[data-theme="light"] .rp-page-hero .rp-hero-breadcrumb .rp-bc-current {
    color: #3b4a6b !important;
}

html[data-theme="light"] .rp-page-hero .rp-hero-title,
html[data-theme="light"] .rp-page-hero h1.rp-hero-title {
    color: #1e2f6b !important;
}

@media (max-width: 575px) {
    .rp-page-hero {
        padding-top: 100px;
        padding-bottom: 28px;
    }

    .rp-page-hero .rp-hero-inner {
        padding: 18px 20px 22px;
    }

    .rp-page-hero .rp-hero-title {
        font-size: 1.45rem !important;
    }

    .rp-page-hero .rp-hero-breadcrumb {
        font-size: 0.85rem;
        margin-bottom: 14px;
        padding-bottom: 14px;
    }
}

.rp-glass-card {
    background: var(--rp-glass);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--rp-glass-border);
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.rp-theme.rp-inner .section-header .cate,
.rp-theme.rp-page-light .section-header .cate {
    color: #ff8a00 !important;
}

.rp-theme.rp-inner .section-header .title,
.rp-theme.rp-inner .section-header h2.title,
.rp-theme.rp-page-light .section-header .title,
.rp-theme.rp-page-light .section-header h2.title {
    color: var(--rp-text) !important;
}

.rp-theme.rp-inner .section-header p,
.rp-theme.rp-page-light .section-header p {
    color: var(--rp-text-muted) !important;
}

.rp-theme.rp-inner .about-section .section-header.left-style,
.rp-theme.rp-page-light .about-section .section-header.left-style {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 0;
}

.rp-theme.rp-inner .about-section h4,
.rp-theme.rp-page-light .about-section h4 {
    color: var(--rp-text) !important;
}

.rp-theme.rp-inner .about-section p,
.rp-theme.rp-page-light .about-section p {
    color: var(--rp-text-muted) !important;
}

.rp-theme.rp-inner .about-thumb img,
.rp-theme.rp-page-light .about-thumb img {
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
    max-height: 380px;
    width: auto;
}

.rp-theme.rp-inner .history-section .section-header,
.rp-theme.rp-page-light .history-section .section-header,
.rp-theme.rp-inner .privacy-section > .container > .row > .col-lg-8 > .section-header,
.rp-theme.rp-page-light .privacy-section > .container > .row > .col-lg-8 > .section-header {
    background: var(--rp-glass);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--rp-glass-border);
    border-radius: 16px;
    padding: 24px 32px !important;
    margin-bottom: 32px;
    text-align: center;
}

.rp-theme.rp-inner .feature-section#harga-retail,
.rp-theme.rp-inner .feature-section#harga-h2h,
.rp-theme.rp-page-light .feature-section#harga-retail,
.rp-theme.rp-page-light .feature-section#harga-h2h {
    padding-top: 108px !important;
}

/* blog-section head: lihat .rp-blog-section-head */

.rp-theme .header-section.header-cl-white {
    background: rgba(10, 20, 55, 0.55) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

html[data-theme="light"] .rp-theme .header-section.header-cl-white {
    background: rgba(198, 218, 252, 0.95) !important;
}

.rp-theme.rp-inner .faq-menu.bg_img,
.rp-theme.rp-page-light .faq-menu.bg_img {
    background: var(--rp-glass) !important;
    background-image: none !important;
    border: 1px solid var(--rp-glass-border);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 12px;
}

.rp-theme.rp-inner .faq-menu .nav-link,
.rp-theme.rp-page-light .faq-menu .nav-link {
    color: var(--rp-text-muted) !important;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.88rem;
}

.rp-theme.rp-inner .faq-menu .nav-link:hover,
.rp-theme.rp-inner .faq-menu .nav-link.active,
.rp-theme.rp-page-light .faq-menu .nav-link:hover,
.rp-theme.rp-page-light .faq-menu .nav-link.active {
    color: var(--rp-text) !important;
    background: rgba(255, 255, 255, 0.1);
}

.rp-theme.rp-inner .privacy-item,
.rp-theme.rp-page-light .privacy-item {
    background: var(--rp-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--rp-glass-border);
    border-radius: 14px;
    padding: 22px 26px;
    margin-bottom: 18px;
}

.rp-theme.rp-inner .privacy-item .title,
.rp-theme.rp-inner .privacy-item h3.title,
.rp-theme.rp-page-light .privacy-item .title,
.rp-theme.rp-page-light .privacy-item h3.title {
    color: var(--rp-text) !important;
    margin-bottom: 14px;
}

.rp-theme.rp-inner .privacy-item p,
.rp-theme.rp-inner .privacy-item li,
.rp-theme.rp-page-light .privacy-item p,
.rp-theme.rp-page-light .privacy-item li {
    color: var(--rp-text-muted) !important;
}

.rp-theme.rp-inner .privacy-item a,
.rp-theme.rp-page-light .privacy-item a {
    color: #7b9fff !important;
}

.rp-theme.rp-inner .page-header,
.rp-theme.rp-page-light .page-header {
    display: none !important;
}

.rp-theme.rp-inner #tips,
.rp-theme.rp-inner #berita,
.rp-theme.rp-inner #promo,
.rp-theme.rp-inner #faq,
.rp-theme.rp-inner #harga-retail,
.rp-theme.rp-inner #harga-h2h,
.rp-theme.rp-page-light #tips,
.rp-theme.rp-page-light #berita,
.rp-theme.rp-page-light #promo,
.rp-theme.rp-page-light #faq,
.rp-theme.rp-page-light #harga-retail,
.rp-theme.rp-page-light #harga-h2h {
    scroll-margin-top: 100px;
}

html[data-theme="light"] .rp-page-light .about-section p,
html[data-theme="light"] .rp-page-light .about-section h2,
html[data-theme="light"] .rp-page-light .about-section h4,
html[data-theme="light"] .rp-page-light .about-section h5,
html[data-theme="light"] .rp-page-light .history-section h2,
html[data-theme="light"] .rp-page-light .history-section h5,
html[data-theme="light"] .rp-page-light .history-section p,
html[data-theme="light"] .rp-page-light .section-header .title,
html[data-theme="light"] .rp-page-light .section-header p {
    color: #3b368c !important;
}

.rp-page-light .about-section,
.rp-page-light .privacy-section {
    background: var(--rp-bg-deep);
}

.rp-page-light .history-section {
    background: linear-gradient(165deg, var(--rp-bg-deep) 0%, var(--rp-bg-mid) 45%, var(--rp-bg-soft) 100%) !important;
    background-image: linear-gradient(165deg, var(--rp-bg-deep) 0%, var(--rp-bg-mid) 45%, var(--rp-bg-soft) 100%) !important;
    position: relative;
}

html:not([data-theme="light"]) .rp-page-light .about-section p,
html:not([data-theme="light"]) .rp-page-light .about-section h2,
html:not([data-theme="light"]) .rp-page-light .about-section h4,
html:not([data-theme="light"]) .rp-page-light .about-section h5,
html:not([data-theme="light"]) .rp-page-light .history-section h2,
html:not([data-theme="light"]) .rp-page-light .history-section h5,
html:not([data-theme="light"]) .rp-page-light .history-section p,
html:not([data-theme="light"]) .rp-page-light .section-header .title,
html:not([data-theme="light"]) .rp-page-light .section-header p {
    color: var(--rp-text) !important;
}

.rp-theme .legal-info-card,
.rp-page-light .legal-info-card {
    background: var(--rp-glass);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 36px 40px !important;
    border-radius: 16px;
    border: 1px solid var(--rp-glass-border);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.rp-theme .legal-info-card .rp-legal-col.border-right {
    border-right: 1px solid var(--rp-glass-border) !important;
}

.rp-theme .legal-info-card .rp-legal-block {
    margin-bottom: 28px;
}

.rp-theme .legal-info-card .rp-legal-block:last-child {
    margin-bottom: 0;
}

.rp-theme .legal-info-card .rp-legal-label,
.rp-theme .legal-info-card h5.rp-legal-label,
.rp-theme .legal-info-card h5 {
    color: #ff9f43 !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 12px !important;
    line-height: 1.3 !important;
}

.rp-theme .legal-info-card p {
    color: var(--rp-text) !important;
    margin: 0 !important;
    line-height: 1.7 !important;
    font-size: 1rem;
}

.rp-theme .legal-info-card .rp-legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rp-theme .legal-info-card .rp-legal-list li {
    color: var(--rp-text) !important;
    padding: 8px 0;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.rp-theme .legal-info-card .rp-legal-list li i {
    color: #3dd68c !important;
    margin-top: 4px;
    flex-shrink: 0;
}

.rp-theme .legal-info-card hr {
    display: none;
}

html[data-theme="light"] .rp-theme .legal-info-card .rp-legal-label,
html[data-theme="light"] .rp-theme .legal-info-card h5 {
    color: #5d50f0 !important;
}

html[data-theme="light"] .rp-theme .legal-info-card p,
html[data-theme="light"] .rp-theme .legal-info-card .rp-legal-list li {
    color: #1e2f6b !important;
}

@media (max-width: 767px) {
    .rp-theme .legal-info-card {
        padding: 28px 24px !important;
    }

    .rp-theme .legal-info-card .rp-legal-col.border-right {
        border-right: none !important;
        border-bottom: 1px solid var(--rp-glass-border);
        padding-bottom: 24px !important;
        margin-bottom: 24px;
    }
}

.rp-page-light .page-header-content h2,
.rp-page-light .page-header-content li,
.rp-page-light .page-header-content li a {
    color: #ffffff !important;
}

/* Halaman dalam: header & section seragam */
.rp-page-light .page-header.bg_img,
.rp-page-light .page-header {
    background: linear-gradient(165deg, var(--rp-bg-mid) 0%, var(--rp-bg-soft) 100%) !important;
    background-image: none !important;
    padding-top: 130px !important;
    padding-bottom: 70px !important;
    margin-bottom: 0;
}

.rp-page-light .page-header .bottom-shape,
.rp-page-light .page-header .page-left-thumb {
    display: none !important;
}

.rp-page-light .about-section,
.rp-page-light .blog-section,
.rp-page-light .privacy-section {
    background: transparent;
}

.rp-page-light .feature-section,
.rp-page-light .blog-section {
    background: linear-gradient(165deg, var(--rp-bg-deep) 0%, var(--rp-bg-mid) 45%, var(--rp-bg-soft) 100%) !important;
    background-image: linear-gradient(165deg, var(--rp-bg-deep) 0%, var(--rp-bg-mid) 45%, var(--rp-bg-soft) 100%) !important;
    position: relative;
}

.rp-theme.rp-inner .feature-section .section-header,
.rp-theme.rp-page-light .feature-section .section-header {
    background: var(--rp-glass);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--rp-glass-border);
    border-radius: 16px;
    padding: 24px 32px !important;
    margin-bottom: 32px;
}

.rp-theme.rp-inner .feature-section .section-header .title,
.rp-theme.rp-inner .feature-section .section-header p,
.rp-theme.rp-inner .feature-section .section-header .cate,
.rp-theme.rp-page-light .feature-section .section-header .title,
.rp-theme.rp-page-light .feature-section .section-header p,
.rp-theme.rp-page-light .feature-section .section-header .cate {
    color: var(--rp-text) !important;
}

.rp-theme.rp-inner .feature-section .section-header p,
.rp-theme.rp-page-light .feature-section .section-header p {
    color: var(--rp-text-muted) !important;
}

/* Blog — kartu glass (rp-inner / semua halaman rp-theme) */
.rp-theme .blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--rp-glass) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--rp-glass-border) !important;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
    overflow: hidden;
    margin-bottom: 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.rp-theme .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    border-color: rgba(255, 255, 255, 0.28) !important;
}

.rp-theme .blog-card .thumb {
    height: 120px;
    min-height: 120px;
    background: linear-gradient(135deg, rgba(42, 64, 143, 0.85), rgba(30, 47, 107, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--rp-glass-border);
}

.rp-theme .blog-card .thumb i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.92);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.rp-theme .blog-card .content {
    padding: 22px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rp-theme .blog-card .cate {
    display: inline-block;
    color: #ff9f43 !important;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    line-height: 1.2;
}

.rp-theme .blog-card .card-title,
.rp-theme .blog-card h3.card-title {
    margin: 0 0 14px !important;
    padding: 0;
    line-height: 1.45 !important;
    font-size: 1.08rem !important;
    font-weight: 600 !important;
}

.rp-theme .blog-card .card-title a,
.rp-theme .blog-card h3.card-title a,
.rp-theme .feature-section .blog-card .card-title a,
.rp-theme .blog-section .blog-card .card-title a {
    color: #eef2ff !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.rp-theme .blog-card .card-title a:hover,
.rp-theme .blog-card h3.card-title a:hover {
    color: #a8c4ff !important;
}

.rp-theme .blog-card p,
.rp-theme .feature-section .blog-card p,
.rp-theme .blog-section .blog-card p {
    color: rgba(238, 242, 255, 0.82) !important;
    margin: 0 !important;
    font-size: 0.94rem;
    line-height: 1.65;
    flex: 1;
}

.rp-theme .rp-blog-section-head {
    background: var(--rp-glass);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--rp-glass-border);
    border-radius: 14px;
    padding: 18px 24px;
    margin-bottom: 28px;
    text-align: center;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--rp-text) !important;
}

.rp-theme .rp-blog-section-head i {
    color: #7b9fff;
    margin-right: 8px;
}

.rp-theme .blog-section {
    padding-top: 48px;
    padding-bottom: 56px;
}

.rp-theme .rp-blog-page .feature-section#tips {
    padding-top: 48px !important;
}

/* Halaman kebijakan privasi */
.rp-theme.rp-privacy-page .privacy-section {
    padding-top: 48px !important;
}

.rp-theme.rp-privacy-page .privacy-section > .container > .row > .col-lg-8 > .section-header {
    text-align: center;
}

.rp-theme.rp-privacy-page .privacy-section > .container > .row > .col-lg-8 > .section-header .title {
    font-size: 1.35rem !important;
    line-height: 1.45 !important;
}

.rp-theme.rp-privacy-page .privacy-section > .container > .row > .col-lg-8 > .section-header p {
    text-align: left;
    max-width: 100%;
}

.rp-theme.rp-privacy-page .sticky-menu {
    position: sticky;
    top: 100px;
}

.rp-theme.rp-privacy-page .faq-menu #faq-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rp-theme.rp-privacy-page .faq-menu .nav-item {
    padding: 0;
    margin: 0;
}

@media (max-width: 991px) {
    .rp-theme.rp-privacy-page .sticky-menu {
        position: static;
        margin-bottom: 28px;
    }
}

.rp-theme .row.rp-blog-row > [class*="col"] {
    margin-bottom: 8px;
}

html[data-theme="light"] .rp-theme .blog-card {
    background: rgba(255, 255, 255, 0.92) !important;
    border-color: rgba(30, 47, 107, 0.14) !important;
}

html[data-theme="light"] .rp-theme .blog-card .thumb {
    background: linear-gradient(135deg, #c5d4f0, #d4dff5);
}

html[data-theme="light"] .rp-theme .blog-card .thumb i {
    color: #5d50f0;
}

html[data-theme="light"] .rp-theme .blog-card .cate {
    color: #e67e00 !important;
}

html[data-theme="light"] .rp-theme .blog-card .card-title a,
html[data-theme="light"] .rp-theme .blog-card h3.card-title a {
    color: #1e2f6b !important;
}

html[data-theme="light"] .rp-theme .blog-card .card-title a:hover {
    color: #5d50f0 !important;
}

html[data-theme="light"] .rp-theme .blog-card p {
    color: #3b4a6b !important;
}

html[data-theme="light"] .rp-theme .rp-blog-section-head {
    color: #1e2f6b !important;
}

/* legal-info-card: aturan di atas (.rp-theme .legal-info-card) */

.rp-price-panel {
    background: var(--rp-glass) !important;
    border: 1px solid var(--rp-glass-border) !important;
    border-radius: 16px;
    padding: 28px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.rp-price-panel label {
    color: var(--rp-text) !important;
}

.rp-price-panel #searchProduct {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid var(--rp-glass-border) !important;
    color: var(--rp-text) !important;
    padding: 12px 40px 12px 15px;
    border-radius: 8px;
}

.rp-price-panel .rp-search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rp-text-muted);
    pointer-events: none;
}

.rp-price-table-wrap {
    width: 100%;
    max-height: 500px;
    overflow-y: auto;
    border-radius: 8px;
    border: 1px solid var(--rp-glass-border);
    padding: 10px;
    scroll-behavior: smooth;
}

html[data-theme="light"] .rp-price-panel #searchProduct {
    background: #ffffff !important;
    color: #1e2f6b !important;
}

.rp-page-light #tips,
.rp-page-light #berita,
.rp-page-light #promo,
.rp-page-light #faq,
.rp-page-light #harga-retail,
.rp-page-light #harga-h2h {
    scroll-margin-top: 100px;
}

.rp-theme .preloader {
    display: none !important;
}

body.rp-theme {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Desktop: kurangi ruang kosong vertikal & horizontal */
@media (min-width: 992px) {
    .rp-theme .padding-top {
        padding-top: 56px !important;
    }

    .rp-theme .padding-bottom {
        padding-bottom: 56px !important;
    }

    .rp-theme .padding-top-2 {
        padding-top: 32px !important;
    }

    .rp-theme .padding-bottom-2 {
        padding-bottom: 32px !important;
    }

    .rp-theme .banner-18 {
        padding-top: 108px !important;
        padding-bottom: 40px !important;
    }

    .rp-theme .banner-18::after {
        height: 72px;
    }

    .rp-theme .banner-content-18 {
        padding: 28px 32px !important;
    }

    .rp-theme .banner-content-18 .title {
        font-size: 32px !important;
        margin-bottom: 14px !important;
    }

    .rp-theme .banner-content-18 p {
        margin-bottom: 20px !important;
    }

    .rp-theme .rp-mockup-wrap {
        min-height: 260px;
    }

    .rp-theme .banner-thumb .rp-mockup-wrap {
        min-height: 280px;
    }

    .rp-theme .banner-thumb .rp-app-mockup {
        max-height: 360px;
    }

    .rp-theme .feat-slider .main-thumb {
        min-height: 280px;
    }

    .rp-theme .feature-item {
        padding: 20px 24px !important;
        margin-bottom: 16px !important;
    }

    .rp-theme .how-item {
        padding: 24px 20px 28px !important;
        margin-bottom: 0;
    }

    .rp-theme .how-item .how-thumb {
        margin-bottom: 20px;
    }

    .rp-theme .how-item .how-thumb img {
        max-height: 140px;
        width: auto;
    }

    .rp-theme .feature-item-2 {
        min-height: 200px !important;
        padding: 18px 14px 22px !important;
        margin: 8px 6px !important;
    }

    .rp-theme .feature-item-2 .feature-thumb img {
        max-height: 52px;
    }

    .rp-theme .convence-feature .lg-oh.padding-top {
        padding-top: 48px !important;
    }

    .rp-theme .rp-products-section .section-header {
        margin-bottom: 24px !important;
        padding: 20px 28px !important;
    }

    .rp-theme .rp-cta-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .rp-theme .rp-cta-box {
        padding: 36px 32px;
    }

    .rp-theme .footer-top.padding-top {
        padding-top: 32px !important;
    }

    .rp-theme .footer-top.padding-bottom {
        padding-bottom: 32px !important;
    }

    .rp-theme .to-access-section .row.justify-content-xl-between {
        --bs-gutter-x: 1.25rem;
    }

    .rp-theme .convence-feature .spon-cont {
        padding: 8px 16px;
        margin-bottom: 12px;
    }
}

@media (min-width: 1200px) {
    .rp-theme .container {
        max-width: 1140px;
    }

    .rp-theme .feature-item-2-slider .owl-stage-outer {
        overflow: visible;
    }
}

@media (max-width: 575px) {
    .feature-item {
        padding: 24px 20px !important;
    }

    .feature-item .feature-content {
        padding-left: 0 !important;
        padding-top: 20px !important;
    }

    .feature-section .section-header,
    .to-access-section .section-header,
    .convence-feature .section-header {
        padding: 24px 22px !important;
    }

    .rp-cta-box {
        padding: 32px 24px;
    }

    .banner-18 {
        padding-bottom: 80px !important;
    }
}

/* ========== Homepage redesign (.rp-home) ========== */
.rp-home .rp-hero {
    position: relative;
    padding: 112px 0 64px;
    overflow: hidden;
    background: linear-gradient(160deg, #0f1838 0%, #1a2d5c 42%, #243672 100%) !important;
}

.rp-home .rp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 85% 20%, rgba(93, 80, 240, 0.35), transparent 55%),
        radial-gradient(ellipse 40% 35% at 10% 80%, rgba(56, 189, 248, 0.15), transparent 50%);
    pointer-events: none;
}

.rp-home .rp-hero .container {
    position: relative;
    z-index: 1;
}

.rp-home .rp-hero-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ff9f43 !important;
    background: rgba(255, 159, 67, 0.15);
    border: 1px solid rgba(255, 159, 67, 0.35);
    margin-bottom: 16px;
}

.rp-home .rp-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.65rem) !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    margin: 0 0 16px !important;
}

.rp-home .rp-hero-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(238, 242, 255, 0.88) !important;
    margin: 0 0 24px;
    max-width: 520px;
}

.rp-home .rp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.rp-home .rp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.rp-home .rp-btn:hover {
    transform: translateY(-2px);
}

.rp-home .rp-btn-primary {
    background: linear-gradient(135deg, #5d50f0, #7b6ef5) !important;
    color: #fff !important;
    border: none;
    box-shadow: 0 8px 24px rgba(93, 80, 240, 0.45);
}

.rp-home .rp-btn-outline {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

.rp-home .rp-btn-ghost {
    background: transparent !important;
    color: #a8c4ff !important;
    border: 1px solid rgba(168, 196, 255, 0.4) !important;
}

.rp-home .rp-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.rp-home .rp-hero-tags li {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: rgba(238, 242, 255, 0.9) !important;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.rp-home .rp-hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.rp-home .rp-hero-visual .rp-mockup-wrap {
    min-height: 340px;
    max-width: 320px;
}

.rp-home .rp-hero-visual .rp-app-mockup {
    max-height: 420px;
}

.rp-home .rp-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* main.css: h2 margin-top negatif & p margin-top negatif — reset agar tidak bertabrakan */
.rp-home .rp-section-head .cate,
.rp-home .rp-section-head h2.title,
.rp-home .rp-section-head .title,
.rp-home .rp-section-head p {
    margin: 0 !important;
}

.rp-home .rp-section-head .cate {
    color: #ff9f43 !important;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    line-height: 1.4;
}

.rp-home .rp-section-head h2.title,
.rp-home .rp-section-head .title {
    color: var(--rp-text) !important;
    font-size: clamp(1.4rem, 3vw, 1.85rem) !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
}

.rp-home .rp-section-head p {
    color: var(--rp-text-muted) !important;
    line-height: 1.65 !important;
    max-width: 100%;
}

.rp-home .rp-section-head p:last-child {
    margin-bottom: 0 !important;
}

.rp-home .rp-features {
    padding: 56px 0;
}

.rp-home .rp-feature-showcase {
    background: var(--rp-glass);
    border: 1px solid var(--rp-glass-border);
    border-radius: 20px;
    padding: 24px;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.rp-home .rp-feature-showcase .rp-mockup-wrap {
    min-height: 320px;
}

.rp-home .rp-feature-tabs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

/* main.css: button { height: 50px } — paksa tinggi mengikuti konten */
.rp-home button.rp-feature-tab,
.rp-home .rp-feature-tab {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    text-align: left;
    padding: 18px 20px;
    color: inherit;
    font-family: inherit;
    border-radius: 14px;
    border: 1px solid var(--rp-glass-border);
    background: var(--rp-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.rp-home .rp-feature-tab:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
}

.rp-home .rp-feature-tab.active {
    border-color: rgba(93, 80, 240, 0.65);
    background: rgba(93, 80, 240, 0.18);
    box-shadow: 0 8px 28px rgba(93, 80, 240, 0.2);
}

.rp-home .rp-feature-tab__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--rp-glass-border);
}

.rp-home .rp-feature-tab__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.rp-home .rp-feature-tab__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.rp-home .rp-feature-tab__body h4 {
    margin: 0 !important;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35 !important;
    color: var(--rp-text) !important;
}

.rp-home .rp-feature-tab__body p {
    margin: 0 !important;
    font-size: 0.9rem;
    line-height: 1.55 !important;
    color: var(--rp-text-muted) !important;
}

.rp-home .rp-steps {
    padding: 56px 0;
}

.rp-home .rp-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rp-home .rp-step-card {
    background: var(--rp-glass);
    border: 1px solid var(--rp-glass-border);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    height: 100%;
    transition: transform 0.25s ease;
}

.rp-home .rp-step-card:hover {
    transform: translateY(-4px);
}

.rp-home .rp-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1rem;
    color: #fff !important;
    background: linear-gradient(135deg, #5d50f0, #7b6ef5);
    margin-bottom: 16px;
}

.rp-home .rp-step-card h4 {
    color: var(--rp-text) !important;
    font-size: 1.1rem;
    margin: 0 0 10px;
}

.rp-home .rp-step-card p {
    color: var(--rp-text-muted) !important;
    margin: 0 0 16px;
    font-size: 0.92rem;
    line-height: 1.6;
}

.rp-home .rp-step-card .rp-btn {
    font-size: 0.85rem;
    padding: 10px 18px;
}

.rp-home .rp-step-downloads {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.rp-home .rp-step-downloads a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(93, 80, 240, 0.25);
    color: #fff !important;
    font-size: 1.25rem;
    text-decoration: none !important;
    transition: background 0.2s;
}

.rp-home .rp-step-downloads a:hover {
    background: rgba(93, 80, 240, 0.45);
}

.rp-home .rp-products {
    padding: 56px 0 48px;
}

.rp-home .rp-product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.rp-home .rp-product-card {
    background: var(--rp-glass);
    border: 1px solid var(--rp-glass-border);
    border-radius: 14px;
    padding: 20px 14px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rp-home .rp-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.rp-home .rp-product-card img {
    max-height: 48px;
    width: auto;
    margin-bottom: 12px;
}

.rp-home .rp-product-card h4 {
    margin: 0 0 6px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--rp-text) !important;
    line-height: 1.3;
}

.rp-home .rp-product-card p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--rp-text-muted) !important;
}

.rp-home .rp-mitra {
    padding: 40px 0 56px;
    border-top: 1px solid var(--rp-glass-border);
}

.rp-home .rp-mitra-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--rp-text-muted) !important;
    margin: 0 0 16px;
    text-align: center;
}

.rp-home .rp-mitra-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.rp-home .rp-mitra-logos .sponsor-thumb {
    padding: 10px 16px;
    margin: 0;
}

.rp-home .rp-mitra-logos img {
    max-height: 36px;
    width: auto;
}

.rp-home .rp-cta-section .rp-cta-box {
    background: linear-gradient(135deg, rgba(93, 80, 240, 0.35), rgba(42, 64, 143, 0.5));
    border: 1px solid var(--rp-glass-border);
}

.rp-home .rp-cta-section .rp-cta-box .title {
    font-size: 1.75rem !important;
}

.rp-home .rp-cta-section .rp-cta-actions .rp-btn-outline {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.45) !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

.rp-home .rp-cta-section .rp-cta-actions .rp-btn-ghost {
    color: #eef2ff !important;
    border-color: rgba(238, 242, 255, 0.45) !important;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .rp-home .rp-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

html[data-theme="light"] .rp-home .rp-hero {
    background: linear-gradient(160deg, #e8eef8 0%, #d4dff5 50%, #c5d4f0 100%) !important;
}

html[data-theme="light"] .rp-home .rp-hero-title {
    color: #1e2f6b !important;
}

html[data-theme="light"] .rp-home .rp-hero-lead {
    color: #3b4a6b !important;
}

html[data-theme="light"] .rp-home .rp-hero-tags li {
    color: #1e2f6b !important;
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(30, 47, 107, 0.12);
}

html[data-theme="light"] .rp-home .rp-btn-outline {
    color: #1e2f6b !important;
    border-color: rgba(30, 47, 107, 0.25) !important;
    background: rgba(255, 255, 255, 0.65) !important;
}

html[data-theme="light"] .rp-home .rp-feature-tab.active {
    background: rgba(93, 80, 240, 0.12);
}

@media (max-width: 991px) {
    .rp-home .rp-hero {
        padding-top: 100px;
        text-align: center;
    }

    .rp-home .rp-hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .rp-home .rp-hero-actions,
    .rp-home .rp-hero-tags {
        justify-content: center;
    }

    .rp-home .rp-feature-showcase {
        margin-bottom: 24px;
        min-height: 300px;
    }

    .rp-home .rp-steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .rp-home .rp-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .rp-home .rp-product-grid {
        grid-template-columns: 1fr;
    }

    .rp-home .rp-hero-actions .rp-btn {
        width: 100%;
    }
}
