/* =========================================
   SECTION HARGA (PRD 3 PAKET - CLEAN NAVY)
   ========================================= */
.tp-harga {
    padding: 50px 0 120px;
    background: #FDFBFF;
    /* Nyambung dari background Alur */
    position: relative;
}

.tp-harga .text-dark {
    color: var(--tp-text-main);
}

.tp-harga .text-dark span {
    color: var(--tp-light);
    background: rgba(226, 211, 244, 0.4);
    padding: 4px 14px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
}

.tp-harga .text-dark-muted {
    color: var(--tp-text-muted);
    font-weight: 500;
}

/* GRID 3 KOLOM HARGA */
.harga-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 60px auto 0;
}

/* KARTU HARGA (CLEAN NO GLOW) */
.prd-pass-card {
    background: #0B1333;
    /* Biru Navy Gelap */
    border: 1px solid rgba(226, 211, 244, 0.2);
    border-radius: 24px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.prd-pass-card:hover {
    transform: translateY(-8px);
    border-color: var(--tp-light);
    /* Cukup hover ganti border aja, gak usah glow */
}

/* KARTU PRO/PREMIUM (Tengah) */
.pro-pass {
    border: 2px solid var(--tp-light);
    transform: scale(1.02);
}

.pro-pass:hover {
    transform: scale(1.02) translateY(-8px);
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--tp-green);
    /* Lilac */
    color: var(--tp-light);
    /* Biru Elektrik */
    padding: 4px 40px;
    font-size: 12px;
    font-weight: 800;
    transform: rotate(45deg);
    z-index: 1;
}

/* HEADER & SKEMA DP */
.pass-header {
    padding: 30px 25px 15px;
    text-align: center;
}

.pass-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.pass-header h3 span {
    font-size: 14px;
    color: var(--tp-green);
    font-weight: 600;
}

.pass-header p {
    font-size: 13px;
    color: rgba(226, 211, 244, 0.7);
    margin: 0;
    line-height: 1.4;
}

.pass-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--tp-light);
    padding-bottom: 10px;
}

.pass-price .currency {
    font-size: 18px;
    font-weight: 700;
    margin-right: 4px;
    color: var(--tp-green);
}

.pass-price .amount {
    font-size: 50px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    color: #fff;
}

.pass-price .suffix {
    font-size: 16px;
    font-weight: 600;
    color: var(--tp-green);
    margin-left: 5px;
}

/* KOTAK INFO DP */
.pass-skema {
    background: rgba(255, 255, 255, 0.05);
    margin: 0 25px 20px;
    padding: 10px;
    border-radius: 8px;
    border: 1px dashed rgba(226, 211, 244, 0.3);
    text-align: center;
    font-size: 13px;
    color: #E2D3F4;
    font-weight: 600;
}

.pass-skema span {
    color: #FFF;
    background: rgba(1, 61, 196, 0.5);
    padding: 2px 6px;
    border-radius: 4px;
}

/* PEMISAH PUTUS-PUTUS */
.pass-divider {
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(226, 211, 244, 0.2), rgba(226, 211, 244, 0.2) 5px, transparent 5px, transparent 10px);
    position: relative;
}

.pass-divider::before,
.pass-divider::after {
    content: '';
    position: absolute;
    top: -10px;
    width: 20px;
    height: 20px;
    background: #FDFBFF;
    /* Bolongan disamakan warna background Section Harga */
    border-radius: 50%;
}

.pass-divider::before {
    left: -10px;
}

.pass-divider::after {
    right: -10px;
}

/* BODY FITUR */
.pass-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pass-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pass-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #E2E8F0;
    font-weight: 500;
    line-height: 1.4;
}

.pass-features li i {
    font-size: 18px;
    color: var(--tp-light);
    margin-top: 2px;
}

.pass-features li small {
    display: block;
    color: rgba(226, 211, 244, 0.6);
    font-size: 12px;
    margin-top: 3px;
}

/* TOMBOL KARTU */
.btn-pass-outline,
.btn-pass-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-pass-outline {
    border: 1px solid rgba(226, 211, 244, 0.3);
    color: var(--tp-green);
    background: transparent;
}

.btn-pass-outline:hover {
    border-color: var(--tp-green);
    background: rgba(226, 211, 244, 0.05);
}

.btn-pass-primary {
    background: var(--tp-green);
    color: var(--tp-light) !important;
    font-weight: 800;
    border: none;
}

.btn-pass-primary:hover {
    background: var(--tp-light);
    color: #fff !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .harga-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }

    .pro-pass {
        transform: scale(1);
    }

    .pro-pass:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .harga-grid-3 {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 40px;
    }
}

/* =========================================
   CUSTOM CSS CTA HARGA (PREMIUM LIGHT BANNER)
   ========================================= */
.cta-harga-premium-wrap {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.cta-harga-premium {
    /* Gradasi ungu muda ke putih */
    background: linear-gradient(135deg, #F7F2FF 0%, #FFFFFF 100%); 
    border: 1px solid rgba(138, 43, 226, 0.15); /* Garis batas samar biar rapi */
    border-radius: 30px;
    padding: 50px 60px;
    max-width: 900px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.08); /* Shadow ungu sangat lembut */
    transition: transform 0.4s ease;
}

.cta-harga-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(138, 43, 226, 0.12);
}

/* --- Teks & Konten --- */
.premium-content {
    position: relative;
    z-index: 2; 
    max-width: 500px;
}

.premium-content h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--tp-text-main, #0b1333); /* Teks diubah gelap */
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.premium-content p {
    font-size: 15px;
    color: var(--tp-text-muted, #666); /* Teks abu-abu elegan */
    line-height: 1.7;
    margin-bottom: 30px;
}

.premium-content span {
    color: var(--tp-light, #8a2be2); /* Teks highlight jadi ungu */
    font-weight: 800;
    border-bottom: 2px dashed rgba(138, 43, 226, 0.4);
}

/* --- Tombol --- */
.btn-premium-harga {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--tp-light, #8a2be2); /* Tombol jadi ungu/biru terang */
    color: #FFFFFF;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.05);
}

.btn-premium-harga i {
    font-size: 22px;
    transition: transform 0.2s ease;
}

.btn-premium-harga:hover {
    background: var(--tp-green);
    color: var(--tp-light);
    box-shadow: 0 10px 25px rgba(11, 19, 51, 0.05);
}

.btn-premium-harga:hover i {
    transform: translateX(5px);
}

/* --- Ornamen & Watermark Ikon --- */
.premium-big-icon {
    position: absolute;
    right: -20px;
    bottom: -40px;
    font-size: 250px;
    color: rgba(138, 43, 226, 0.04); /* Watermark warna ungu super tipis */
    z-index: 1;
    transform: rotate(-15deg);
    pointer-events: none;
}

/* Lingkaran Estetik di Background */
.premium-deco {
    position: absolute;
    border-radius: 50%;
    background: var(--tp-light, #8a2be2);
    filter: blur(60px);
    z-index: 0;
    opacity: 0.15; /* Dibuat lebih tipis agar teks tetap terbaca */
    pointer-events: none;
}

.deco-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -50px;
}

.deco-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: 50px;
}

/* --- Responsive HP --- */
@media (max-width: 768px) {
    .cta-harga-premium {
        padding: 40px 25px;
        text-align: center;
        border-radius: 24px;
    }
    
    .premium-content {
        margin: 0 auto;
    }

    .premium-content h3 {
        font-size: 24px;
    }
    
    .premium-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .btn-premium-harga {
        width: 100%;
        justify-content: center;
    }

    .premium-big-icon {
        right: 50%;
        bottom: 50%;
        transform: translate(50%, 50%) rotate(0deg);
        font-size: 200px;
        opacity: 0.03;
    }
}