/* ─── PRICING GRID ─── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.pricing-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pricing-card--featured {
    border-color: #0079bf;
    box-shadow: 0 4px 24px rgba(0, 121, 191, 0.14);
    position: relative;
}

.pricing-badge-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.pricing-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
}

.pricing-label--featured {
    color: #0079bf;
}

.pricing-popular {
    font-size: 0.75rem;
    font-weight: 600;
    background: #0079bf;
    color: #fff;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.1;
}

.pricing-period {
    font-size: 0.82rem;
    color: #94a3b8;
    margin-top: 0.3rem;
    margin-bottom: 1rem;
}

.pricing-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: #374151;
    line-height: 1.4;
}

.pricing-features li i {
    flex-shrink: 0;
    margin-top: 0.1rem;
    font-size: 0.95rem;
    color: #0079bf;
}

.pricing-feature--off {
    color: #9ca3af !important;
}

.pricing-feature--off i {
    color: #d1d5db !important;
}

.pricing-renewal {
    font-size: 0.82rem;
    color: #64748b;
    background: #f8fafc;
    border-radius: 8px;
    padding: 0.55rem 0.85rem;
    margin-bottom: 1rem;
}

.pricing-renewal--featured {
    background: #e8f3fb;
    color: #0079bf;
}

.pricing-renewal i {
    margin-right: 0.3rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* ─── COMPARISON TABLE ─── */
.about-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    font-size: 0.9rem;
}

.about-table thead tr {
    background: #1e293b;
    color: #fff;
}

.about-table th {
    padding: 1rem 1.25rem;
    font-weight: 400;
    white-space: nowrap;
}

.about-table td {
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    color: #374151;
}

.about-table tr:last-child td {
    border-bottom: none;
}

.about-table tbody tr:hover {
    background: #f8fafc;
}

.about-table__group td {
    background: #f1f5f9;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #64748b;
    padding: 0.55rem 1.25rem;
}

.about-table__featured {
    background: #f0f7ff;
    color: #0079bf;
    font-weight: 500;
}

.about-table thead .about-table__featured {
    background: #0079bf;
    color: #fff;
}

.text-accent {
    color: #0079bf;
}

.text-muted {
    color: #9ca3af !important;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .pricing-card--featured {
        order: -1;
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        padding: 0 1.25rem 2rem;
    }
}
