/* ===== PRICE PAGE CSS (extracted from bang-gia.html inline) ===== */
.price-page{padding:40px 0 64px}
.price-section{margin-bottom:48px}
.price-section__title{font-size:20px;font-weight:800;margin-bottom:20px;display:flex;align-items:center;gap:12px}
.price-section__bar{width:4px;height:24px;background:var(--red-dark);border-radius:2px;flex-shrink:0}

/* Price Page CTA Style - Premium Light Version */
.price-page .cta { 
    margin-top: 64px; 
    padding-bottom: 32px;
}
.price-page .cta__inner { 
    background: #f9fafb; 
    padding: 64px 24px; 
    border-radius: 32px;
    border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
}
.price-page .cta__glow1, .price-page .cta__glow2 { display: none; }
.price-page .cta__title { 
    color: var(--dark); 
    font-size: 28px; 
    margin-bottom: 16px;
    text-align: center;
}
.price-page .cta__desc { 
    color: var(--text-muted); 
    max-width: 600px; 
    margin: 0 auto 32px; 
    text-align: center;
    line-height: 1.6;
}
.price-page .cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.price-page .cta .btn--white { 
    background: var(--red); 
    color: #fff; 
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.2); 
}
.price-page .cta .btn--white:hover {
    background: var(--red-darker);
    transform: translateY(-3px);
}
.price-page .cta .btn--outline { 
    border-color: rgba(220, 20, 60, 0.3); 
    color: var(--red); 
    background: #fff;
}
.price-page .cta .btn--outline:hover { 
    border-color: var(--red);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

@media (max-width: 767px) {
    .price-page .cta__inner {
        padding: 48px 20px;
        border-radius: 24px;
    }
    .price-page .cta__title {
        font-size: 24px;
    }
    .price-page .cta__desc {
        font-size: 15px;
    }
    .price-page .cta__actions {
        flex-direction: column;
        gap: 12px;
    }
    .price-page .cta__actions .btn {
        width: 100%;
        justify-content: center;
    }
}
