/* Styling for features comparison page */
.bpq-pricing-container {
    max-width: 1000px;
    margin: 30px auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1e293b;
}

.bpq-pricing-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.bpq-pricing-header h1 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 15px 0;
    color: #ffffff;
    background: linear-gradient(to right, #a7f3d0, #6ee7b7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bpq-pricing-header p {
    font-size: 16px;
    color: #d1fae5;
    margin: 0;
    line-height: 1.6;
}

.bpq-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.bpq-plan-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.025);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bpq-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.bpq-plan-card.premium-card {
    border: 2px solid #10b981;
}

.bpq-plan-card.premium-card::before {
    content: "POPULAR";
    position: absolute;
    top: 25px;
    right: -35px;
    background: #10b981;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
}

.bpq-plan-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0f172a;
}

.bpq-plan-price {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #0f172a;
}

.bpq-plan-price span {
    font-size: 15px;
    color: #64748b;
    font-weight: 400;
}

.bpq-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    flex-grow: 1;
}

.bpq-plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: #475569;
}

.bpq-plan-features li i {
    font-size: 14px;
}

.bpq-plan-features li.disabled {
    color: #94a3b8;
    text-decoration: line-through;
}

.bpq-btn-upgrade {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff !important;
    text-decoration: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.4);
}

.bpq-btn-upgrade:hover {
    box-shadow: 0 6px 20px 0 rgba(16, 185, 129, 0.6);
    transform: translateY(-2px);
}

.bpq-btn-free {
    display: block;
    text-align: center;
    background: #f1f5f9;
    color: #475569 !important;
    text-decoration: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid #e2e8f0;
}

.bpq-table-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.bpq-table-card h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #0f172a;
}

.bpq-compare-table {
    width: 100%;
    border-collapse: collapse;
}

.bpq-compare-table th,
.bpq-compare-table td {
    padding: 18px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
}

.bpq-compare-table th {
    font-weight: 700;
    color: #475569;
    background-color: #f8fafc;
}

.bpq-compare-table td {
    color: #334155;
}

.bpq-compare-table td small {
    color: #64748b;
    display: inline-block;
    margin-top: 4px;
}

.bpq-compare-table td.center,
.bpq-compare-table th.center {
    text-align: center;
}
