/* ===== SECTION 005: PRICING ===== */
.section-container-005 {
    max-width: 500px;
    width: 100%;
    margin: 0 auto; /* Center the container */
    padding: 20px; /* Add padding for mobile */
}

/* Main Pricing Card */
.pricing-card-005 {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    padding: 35px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%; /* Ensure full width */
    margin: 0 auto; /* Center the card */
}

.pricing-card-005::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1877F2, #0d5dbd);
}

.pricing-header-005 {
    margin-bottom: 25px;
}

.pricing-title-005 {
    font-size: 1.8rem;
    color: #1877F2;
    margin-bottom: 10px;
    font-weight: 700;
}

.pricing-subtitle-005 {
    color: #666;
    font-size: 1rem;
    margin-bottom: 5px;
}

/* Price Display */
.price-container-005 {
    background: linear-gradient(135deg, #1877F2, #0d5dbd);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    color: white;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
    position: relative;
}

.price-label-005 {
    font-size: 1rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.price-amount-005 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.price-note-005 {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Comparison Section */
.comparison-005 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.comparison-item-005 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comparison-price-005 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.comparison-label-005 {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

.vs-005 {
    font-weight: 700;
    color: #1877F2;
    font-size: 1.1rem;
}

/* Savings Badge */
.savings-badge-005 {
    background: linear-gradient(135deg, #34A853, #2E8B57);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    margin: 20px 0;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(52, 168, 83, 0.3);
    animation: pulse-005 2s infinite;
}

@keyframes pulse-005 {
    0% {
        box-shadow: 0 5px 15px rgba(52, 168, 83, 0.3);
    }
    50% {
        box-shadow: 0 5px 20px rgba(52, 168, 83, 0.5);
    }
    100% {
        box-shadow: 0 5px 15px rgba(52, 168, 83, 0.3);
    }
}

/* Value Proposition */
.value-prop-005 {
    background: rgba(24, 119, 242, 0.08);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid #1877F2;
}

.value-title-005 {
    font-size: 1.1rem;
    color: #1877F2;
    margin-bottom: 10px;
    font-weight: 600;
}

.value-text-005 {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Original Price */
.original-price-005 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.original-amount-005 {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
}

.discount-badge-005 {
    background: #FF4444;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* CTA Button */
.cta-button-005 {
    background: linear-gradient(135deg, #1877F2, #0d5dbd);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
    margin-top: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.cta-button-005:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(24, 119, 242, 0.5);
}

/* Guarantee Badge */
.guarantee-005 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-container-005 {
        max-width: 90%;
        padding: 15px;
    }
    
    .pricing-card-005 {
        padding: 25px 20px;
    }
    
    .price-amount-005 {
        font-size: 3rem;
    }
    
    .pricing-title-005 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .section-container-005 {
        max-width: 95%;
        padding: 10px;
    }
    
    .pricing-card-005 {
        padding: 20px 15px;
    }
    
    .price-amount-005 {
        font-size: 2.5rem;
    }
    
    .pricing-title-005 {
        font-size: 1.4rem;
    }
    
    .price-container-005 {
        padding: 20px 15px;
    }
    
    .comparison-005 {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-button-005 {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .value-prop-005 {
        padding: 15px;
    }
}