/* ========================================
   Pricing Page
   ======================================== */
.header-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.9);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1rem;
}

.pricing-table thead th {
    text-align: left;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
    padding: 0 1.5rem 0.5rem;
}

.pricing-table tbody tr {
    background: #ffffff;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.pricing-table tbody tr:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pricing-table tbody tr.featured {
    border-color: #ff6b00;
    box-shadow: 0 10px 35px rgba(255, 107, 0, 0.12);
}

.pricing-table td {
    padding: 1.5rem;
    vertical-align: top;
    border-top: 2px solid #e5e5e5;
    border-bottom: 2px solid #e5e5e5;
}

.pricing-table tbody tr.featured td {
    border-color: #ff6b00;
}

.pricing-table td:first-child {
    border-left: 2px solid #e5e5e5;
    border-radius: 12px 0 0 12px;
}

.pricing-table tbody tr.featured td:first-child {
    border-color: #ff6b00;
}

.pricing-table td:last-child {
    border-right: 2px solid #e5e5e5;
    border-radius: 0 12px 12px 0;
}

.pricing-table tbody tr.featured td:last-child {
    border-color: #ff6b00;
}

.pricing-title-cell {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    min-width: 220px;
}

.pricing-title-cell i {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.pricing-title-cell strong {
    font-size: 1.1rem;
    color: #1a1a1a;
}

.pricing-featured-badge {
    display: inline-block;
    margin-top: 0.35rem;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-title-cell strong {
    display: block;
}

.pricing-desc {
    color: #6b7280;
    font-size: 0.85rem;
    margin-top: 0.35rem;
}

.pricing-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    white-space: nowrap;
}

.pricing-period {
    display: block;
    color: #9ca3af;
    font-size: 0.8rem;
}

.pricing-price-cell {
    min-width: 130px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 220px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.25rem 0;
    color: #333333;
    font-size: 0.85rem;
}

.pricing-features i {
    color: #ff6b00;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

@media (max-width: 991.98px) {
    .pricing-table thead {
        display: none;
    }

    .pricing-table, .pricing-table tbody, .pricing-table tr, .pricing-table td {
        display: block;
        width: 100%;
    }

    .pricing-table td {
        border: none !important;
        border-radius: 0 !important;
        padding: 0.5rem 1.25rem;
    }

    .pricing-table tr {
        border: 2px solid #e5e5e5 !important;
        border-radius: 12px !important;
        padding: 1rem 0;
    }

    .pricing-table tr.featured {
        border-color: #ff6b00 !important;
    }

    .pricing-price-cell {
        text-align: left !important;
    }

    .pricing-table td:last-child {
        text-align: left !important;
    }
}

/* ========================================
   CTA Section - Blends with Footer
   ======================================== */
.section-dark {
    background: linear-gradient(180deg, #0a1628 0%, #0d1e35 100%);
    color: #ffffff;
    padding: 4rem 0;
}

.cta-box {
    background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 100%);
    border-radius: 16px;
    padding: 3rem;
}

.cta-box h2 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.cta-box p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}
