 @keyframes spin-slow {
     from {
         transform: rotate(0deg)
     }

     to {
         transform: rotate(360deg)
     }
 }

 .pip-icon {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: #FFF8E7;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     border: 0.5px solid #EF9F27
 }

 .pip-icon i {
     font-size: 20px;
     color: #854F0B
 }

 .cta-wa {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: #c68e41;
     color: #fff;
     border: none;
     border-radius: 8px;
     padding: 9px 22px;
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     text-decoration: none;
     font-family: var(--font-sans)
 }

 .cta-call {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: #FAEEDA;
     color: #633806;
     border: 0.5px solid #EF9F27;
     border-radius: 8px;
     padding: 9px 22px;
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     text-decoration: none;
     font-family: var(--font-sans)
 }
 /* ===== Golden Program Box ===== */

.golden-program-box {
    background: var(--color-background-primary);
    border: 1px solid #EF9F27;
    border-radius: 12px;
    overflow: hidden;
}

/* Header */
.golden-header {
    background: #BA7517;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.golden-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.golden-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.golden-title-small {
    font-size: 10px;
    font-weight: 500;
    color: #FAC775;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.golden-title {
    font-size: 15px;
    font-weight: 600;
    color: #FFF8E7;
    line-height: 1.2;
}

.golden-tag {
    background: rgba(255,255,255,.15);
    border-radius: 20px;
    padding: 4px 14px;
    border: 1px solid rgba(255,255,255,.25);
    font-size: 12px;
    font-weight: 600;
    color: #FFF8E7;
}

/* Feature slider */
/* .golden-features {
    padding: 10px 24px;
} */

/* Feature item */
.golden-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pip-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFF8E7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #EF9F27;
}

/* CTA section */
.golden-cta {
    padding: 10px 24px 14px;
    border-top: 1px solid #FAC775;
}

.golden-cta-title {
    font-size: 13px;
    color: #854F0B;
    font-weight: 500;
    margin-bottom: 10px;
}

.cta-wa, .cta-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.cta-wa {
    background: #c68e41;
    color: #fff;
}

.cta-call {
    background: #FAEEDA;
    color: #633806;
    border: 1px solid #EF9F27;
}

/* Mobile spacing fix */
@media (max-width: 576px) {
    .golden-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Make CTA responsive */
@media(max-width:768px){
    .cta-wa, .cta-call{
        width: 100%;
        justify-content: center;
    }
}
.golden-features{
    text-align:start;
    padding:12px 0;
}

.feature-text{
    font-size:16px;
    font-weight:600;
    color:#854F0B;
    line-height:1.5;
}