/* 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;
}

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: 108px;
    padding-bottom: 36px;
    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: 28px 36px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.rp-page-hero .title,
.rp-page-hero h1.title {
    color: var(--rp-text) !important;
    margin-bottom: 12px;
    font-size: 2rem;
}

.rp-page-hero .breadcrumb {
    justify-content: center;
    margin: 0;
    padding: 0;
}

.rp-page-hero .breadcrumb li,
.rp-page-hero .breadcrumb li a {
    color: var(--rp-text-muted) !important;
}

.rp-page-hero .breadcrumb li a:hover {
    color: #ee4730 !important;
}

.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;
}

.rp-theme.rp-inner .blog-section {
    padding-top: 48px;
    padding-bottom: 56px;
}

.rp-theme.rp-inner .blog-section > .container > h2.title,
.rp-theme.rp-page-light .blog-section > .container > h2.title {
    background: var(--rp-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--rp-glass-border);
    border-radius: 14px;
    padding: 18px 24px;
    font-size: 1.35rem;
    color: var(--rp-text) !important;
}

.rp-theme.rp-inner .blog-section > .container > h2.title i,
.rp-theme.rp-page-light .blog-section > .container > h2.title i {
    color: #5d50f0;
}

.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-page-light .legal-info-card {
    background: var(--rp-glass);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--rp-glass-border);
}

.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;
}

.rp-page-light .blog-card {
    background: var(--rp-glass) !important;
    border: 1px solid var(--rp-glass-border) !important;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    margin-bottom: 25px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rp-page-light .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.rp-page-light .blog-card .thumb {
    height: 160px;
    background: linear-gradient(135deg, var(--rp-bg-mid), var(--rp-bg-soft));
    display: flex;
    align-items: center;
    justify-content: center;
}

.rp-page-light .blog-card .thumb i {
    font-size: 42px;
    color: rgba(255, 255, 255, 0.9);
}

.rp-page-light .blog-card .content {
    padding: 22px;
}

.rp-page-light .blog-card .cate {
    color: #ff8a00 !important;
}

.rp-page-light .blog-card .card-title,
.rp-page-light .blog-card .card-title a {
    color: var(--rp-text) !important;
}

.rp-page-light .blog-card p {
    color: var(--rp-text-muted) !important;
}

.rp-page-light .blog-section h2.title {
    color: var(--rp-text) !important;
    margin-bottom: 28px;
}

html[data-theme="light"] .rp-page-light .blog-card .card-title,
html[data-theme="light"] .rp-page-light .blog-card .card-title a {
    color: #1e2f6b !important;
}

html[data-theme="light"] .rp-page-light .blog-card p {
    color: #3b4a6b !important;
}

.rp-page-light .legal-info-card h5,
.rp-page-light .legal-info-card p,
.rp-page-light .legal-info-card li {
    color: var(--rp-text) !important;
}

.rp-page-light .legal-info-card p,
.rp-page-light .legal-info-card li {
    color: var(--rp-text-muted) !important;
}

.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;
    }
}
