/* Price Box Improvements */
.price-header h3 {
    color: #ffd700;
    font-size: 1.8em;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
}

.price-features {
    margin: 30px 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.price-feature {
    color: #d0d0d0;
    font-size: 1.1em;
    margin: 12px 0;
    padding-left: 10px;
    position: relative;
}

.price-feature::before {
    content: '✓';
    color: #ffd700;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

.price-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.price-btn {
    padding: 14px 35px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.price-btn.primary {
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    color: #000;
    box-shadow: 0 8px 25px rgba(255,140,0,0.4);
}

.price-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,140,0,0.6);
}

.price-btn.secondary {
    background: rgba(255,140,0,0.15);
    border: 2px solid #ff8c00;
    color: #ffd700;
}

.price-btn.secondary:hover {
    background: rgba(255,140,0,0.25);
    border-color: #ffd700;
    transform: translateY(-3px);
}

.guarantee-box {
    background: linear-gradient(135deg, rgba(255,140,0,0.12), rgba(139,69,19,0.08));
    border: 2px solid rgba(255,140,0,0.5);
    border-radius: 12px;
    padding: 30px;
    margin: 25px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.guarantee-icon {
    font-size: 3.5em;
    filter: drop-shadow(0 0 15px rgba(255,140,0,0.5));
}

.guarantee-content {
    flex: 1;
}

/* Additional Price Box Enhancements */
.price-box {
    position: relative;
    z-index: 1;
}

.price-box::before {
    z-index: -1;
}

.price-header {
    position: relative;
    z-index: 1;
}

.price {
    position: relative;
    z-index: 1;
    animation: priceGlow 3s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255,215,0,0.5);
    }
    50% {
        text-shadow: 0 0 35px rgba(255,215,0,0.8), 0 0 50px rgba(255,140,0,0.4);
    }
}
