/**
 * Dynamic Pricing Page Styles
 * File: platform/assets/css/pricing-dynamic.css
 * Built to work with existing database fields only
 */

/* ========================================
   PRICING HERO SECTION
   ======================================== */
.pricing_hero_section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.pricing_hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(102, 126, 234, 0.1), transparent);
    pointer-events: none;
}

.pricing_badge_tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    color: #667eea;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing_hero_title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pricing_hero_subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Billing Toggle */
.pricing_billing_toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.billing_label {
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

#billingToggle:checked ~ #yearlyLabel,
#billingToggle:not(:checked) ~ #monthlyLabel {
    color: #667eea;
}

.billing_save_badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.billing_switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.billing_switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.billing_slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.3s;
    border-radius: 34px;
}

.billing_slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked + .billing_slider {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

input:checked + .billing_slider:before {
    transform: translateX(28px);
}

/* Trial Banner */
.pricing_trial_banner {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-weight: 600;
    color: #1e293b;
}

.pricing_trial_banner i {
    color: #10b981;
    font-size: 1.25rem;
}

/* ========================================
   PRICING CARDS
   ======================================== */
.pricing_cards_section {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.pricing_card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

.pricing_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

.pricing_card_featured {
    border-color: #667eea;
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.25);
    position: relative;
}

.pricing_card_featured:hover {
    box-shadow: 0 20px 45px rgba(102, 126, 234, 0.35);
}

.pricing_card_free {
    border-color: #10b981;
}

.pricing_featured_badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Card Header */
.pricing_card_header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing_icon_wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.pricing_card:hover .pricing_icon_wrapper {
    transform: scale(1.08) rotate(-5deg);
}

.pricing_card_free .pricing_icon_wrapper {
    background: linear-gradient(135deg, #10b981, #059669);
}

.pricing_icon_wrapper i {
    font-size: 2.5rem;
    color: white;
}

.pricing_plan_name {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.pricing_plan_description {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Pricing Amount */
.pricing_amount_section {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 2rem;
}

.pricing_amount_wrapper {
    position: relative;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing_amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.pricing_hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.95);
}

.pricing_currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #64748b;
}

.pricing_value {
    font-size: 3.5rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
}

.pricing_card_featured .pricing_value {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing_period {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
}

.pricing_savings_badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #166534;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    margin-top: 1rem;
    border: 1px solid #86efac;
}

.pricing_trial_badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

/* CTA Button */
.pricing_cta_section {
    margin-bottom: 2rem;
}

.pricing_cta_button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #e0e7ff, #ddd6fe);
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing_cta_button:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.pricing_cta_featured {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
}

.pricing_cta_featured:hover {
    background: linear-gradient(135deg, #5568d3, #6841a0);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.pricing_card_free .pricing_cta_button {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-color: transparent;
}

.pricing_card_free .pricing_cta_button:hover {
    background: linear-gradient(135deg, #059669, #047857);
}

/* Features List */
.pricing_features_section {
    flex: 1;
}

.pricing_features_title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.pricing_features_list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.pricing_feature_item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.pricing_feature_item:last-child {
    border-bottom: none;
}

.pricing_feature_item i {
    color: #10b981;
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing_feature_item span {
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.pricing_view_all_features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    color: #667eea;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing_view_all_features:hover {
    background: #e0e7ff;
    border-color: #667eea;
}

/* Empty State */
.pricing_empty_state {
    text-align: center;
    padding: 5rem 2rem;
    color: #94a3b8;
}

.pricing_empty_state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* ========================================
   TRUST SECTION
   ======================================== */
.pricing_trust_section {
    padding: 3rem 0;
    background: #f8fafc;
}

.pricing_trust_card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
}

.pricing_trust_title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing_trust_title i {
    color: #10b981;
    font-size: 2.5rem;
}

.pricing_trust_description {
    color: #64748b;
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
}

.pricing_trust_badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust_badge_item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: #f0fdf4;
    border-radius: 0.75rem;
    border: 1px solid #86efac;
    color: #166534;
    font-weight: 600;
}

.trust_badge_item i {
    font-size: 1.5rem;
    color: #10b981;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.pricing_faq_section {
    padding: 5rem 0;
    background: white;
}

.pricing_section_title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.pricing_section_subtitle {
    font-size: 1.125rem;
    color: #64748b;
}

.pricing_faq_list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing_faq_item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing_faq_item:hover {
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.pricing_faq_question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing_faq_question:hover {
    color: #667eea;
}

.pricing_faq_question i {
    font-size: 1.25rem;
    color: #667eea;
    transition: transform 0.3s ease;
}

.pricing_faq_active .pricing_faq_question i {
    transform: rotate(180deg);
}

.pricing_faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    color: #64748b;
    line-height: 1.7;
}

.pricing_faq_active .pricing_faq_answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

/* ========================================
   FINAL CTA
   ======================================== */
.pricing_final_cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
}

.pricing_cta_title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.pricing_cta_description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.pricing_cta_buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn_pricing_primary,
.btn_pricing_secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn_pricing_primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: 2px solid transparent;
}

.btn_pricing_primary:hover {
    background: linear-gradient(135deg, #5568d3, #6841a0);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn_pricing_secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn_pricing_secondary:hover {
    background: white;
    color: #1e293b;
    transform: translateY(-3px);
}

/* ========================================
   MODAL
   ======================================== */
.pricing_modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.pricing_modal_active {
    opacity: 1;
    pointer-events: all;
}

.pricing_modal_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.pricing_modal_content {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.pricing_modal_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    border-bottom: 2px solid #f1f5f9;
}

.pricing_modal_header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.pricing_modal_close {
    background: #f1f5f9;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
}

.pricing_modal_close:hover {
    background: #667eea;
    color: white;
    transform: rotate(90deg);
}

.pricing_modal_body {
    padding: 2rem;
    max-height: calc(80vh - 100px);
    overflow-y: auto;
}

.pricing_features_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.pricing_feature_grid_item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border-left: 3px solid #10b981;
}

.pricing_feature_grid_item i {
    color: #10b981;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pricing_feature_grid_item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pricing_feature_grid_item strong {
    color: #1e293b;
    font-size: 0.9375rem;
}

.pricing_feature_grid_item span {
    color: #667eea;
    font-size: 1.125rem;
    font-weight: 700;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    .pricing_hero_title {
        font-size: 2.5rem;
    }
    
    .pricing_card {
        margin-bottom: 2rem;
    }
    
    .pricing_trust_card {
        text-align: center;
    }
    
    .pricing_trust_badges {
        align-items: center;
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .pricing_hero_title {
        font-size: 2rem;
    }
    
    .pricing_hero_subtitle {
        font-size: 1.125rem;
    }
    
    .pricing_billing_toggle {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .pricing_value {
        font-size: 3rem;
    }
    
    .pricing_cta_buttons {
        flex-direction: column;
    }
    
    .btn_pricing_primary,
    .btn_pricing_secondary {
        width: 100%;
        justify-content: center;
    }
    
    .pricing_trust_title {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing_features_grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   COMPACT PRICING CARDS
   ======================================== */
.pricing_card_compact {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1.25rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

.pricing_card_compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

.pricing_card_featured {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.pricing_card_free {
    border-color: #10b981;
}

.pricing_featured_badge_compact {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

/* Compact Card Header */
.pricing_card_header_compact {
    text-align: center;
    margin-bottom: 1.25rem;
}

.pricing_icon_compact {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.pricing_card_compact:hover .pricing_icon_compact {
    transform: scale(1.05) rotate(-3deg);
}

.pricing_card_free .pricing_icon_compact {
    background: linear-gradient(135deg, #10b981, #059669);
}

.pricing_icon_compact i {
    font-size: 2rem;
    color: white;
}

.pricing_plan_name_compact {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

/* Compact Pricing Section */
.pricing_amount_section_compact {
    text-align: center;
    padding: 1.25rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 1.25rem;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pricing_amount_compact {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    transition: opacity 0.3s ease;
}

.pricing_currency_compact {
    font-size: 1.25rem;
    font-weight: 600;
    color: #64748b;
}

.pricing_value_compact {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
}

.pricing_card_featured .pricing_value_compact {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing_period_compact {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
}

.pricing_savings_badge_compact {
    display: inline-block;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #166534;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.5rem;
    border: 1px solid #86efac;
}

/* Compact Features Section */
.pricing_features_compact {
    flex: 1;
    margin-bottom: 1rem;
}

.pricing_features_list_compact {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.pricing_features_list_compact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #475569;
}

.pricing_features_list_compact li i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

.pricing_view_more_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.625rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    color: #667eea;
    font-weight: 600;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing_view_more_btn:hover {
    background: #e0e7ff;
    border-color: #667eea;
    transform: translateY(-1px);
}

/* Subscribe Button */
.pricing_cta_section_compact {
    margin-top: auto;
}

.pricing_subscribe_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #e0e7ff, #ddd6fe);
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 0.625rem;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing_subscribe_btn:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.pricing_subscribe_featured {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
}

.pricing_subscribe_featured:hover {
    background: linear-gradient(135deg, #5568d3, #6841a0);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.pricing_card_free .pricing_subscribe_btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-color: transparent;
}

.pricing_card_free .pricing_subscribe_btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
}

/* Modal Enhancements */
.pricing_modal_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.pricing_modal_section {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 3px solid #667eea;
}

.pricing_modal_section h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing_modal_section h5 i {
    color: #667eea;
    font-size: 1.25rem;
}

.pricing_modal_section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing_modal_section ul li {
    padding: 0.5rem 0;
    color: #475569;
    border-bottom: 1px solid #e5e7eb;
}

.pricing_modal_section ul li:last-child {
    border-bottom: none;
}

.pricing_modal_section ul li strong {
    color: #1e293b;
}

/* Responsive for Compact Cards */
@media (max-width: 991px) {
    .pricing_card_compact {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .pricing_value_compact {
        font-size: 2rem;
    }
    
    .pricing_modal_grid {
        grid-template-columns: 1fr;
    }
}