/* [BEGIN: /home/nxscom/cx-or.com/assets/css/pricing.css] */

/* Page Header Specific Styles */
.page-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.page-header h1 {
    color: #343a40;
}

/* Pricing Tiers Section */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.75rem; /* Slightly more rounded cards */
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1) !important;
}

.pricing-card.recommended {
    transform: scale(1.03); /* Make recommended plan slightly larger */
     z-index: 1;
}

.pricing-card .card-header {
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    border-bottom: 0;
}

.pricing-card .card-title {
    font-size: 2.5rem;
    font-weight: 600;
}

.pricing-card ul {
    padding-left: 0; /* Remove default padding */
}

.pricing-card ul li {
    margin-bottom: 0.75rem; /* Spacing between features */
    display: flex;
    align-items: start;
}

.pricing-card ul li i {
    width: 1.2em; /* Icon alignment */
    margin-top: 0.15em; /* Align icon slightly better with text */
    flex-shrink: 0;
}

.pricing-card .btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
}

/* Styles for Annual/Monthly Toggle (If Implemented) */
/*
.annual-price {
    display: none; // Hidden by default
}
.form-switch .form-check-input:checked ~ .form-check-label .monthly-price {
    display: none;
}
.form-switch .form-check-input:checked ~ .form-check-label .annual-price {
    display: inline;
}
*/

/* FAQ Section */
.faq-section .accordion-button {
    font-weight: 600;
    color: #495057;
}
.faq-section .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #E94057; /* Match primary button */
}

.faq-section .accordion-button:not(.collapsed)::after {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); /* White arrow when open */
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(233, 64, 87, 0.25);
    border-color: transparent;
}
.faq-section .accordion-body a {
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(233, 64, 87, 0.5);
    transition: text-decoration-color 0.2s ease;
}
.faq-section .accordion-body a:hover {
    text-decoration-color: rgba(233, 64, 87, 1);
}

/* Still Have Questions CTA */
.still-questions-cta {
    border-top: 1px solid #e9ecef;
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-card.recommended {
        transform: scale(1); /* Disable scaling effect on smaller screens */
    }
     .pricing-tiers .col-lg-4 {
         margin-bottom: 1.5rem; /* Add space between stacked cards */
     }
}


/* [END: /home/nxscom/cx-or.com/assets/css/pricing.css] */