/* Pricing Page */

.pricing-hero {
    padding-top: 140px;
    padding-bottom: 20px;
}

/* Table Wrapper */
.pricing-table-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    overflow: hidden;
}

/* Table */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 0.85rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Header */
.pricing-table thead th {
    padding: 1.5rem;
    background: rgba(124, 58, 237, 0.08);
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    vertical-align: bottom;
}

.feature-col {
    text-align: left !important;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    width: 50%;
}

.plan-col {
    width: 25%;
    position: relative;
}

.plan-label {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.plan-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.plan-highlight {
    background: rgba(124, 58, 237, 0.12) !important;
}

.popular-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--pipeline-primary), var(--pipeline-secondary));
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.5rem;
}

/* Section Headers */
.section-header td {
    text-align: left !important;
    padding: 1.25rem 1.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.section-title i {
    color: var(--pipeline-primary);
    margin-right: 0.5rem;
    font-size: 1rem;
}

.section-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Feature Rows */
.feature-name {
    text-align: left !important;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.check {
    color: #10b981;
    font-size: 0.9rem;
}

.dash {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.75rem;
}

.highlight-cell {
    background: rgba(124, 58, 237, 0.05);
}

/* Price Rows */
.price-row td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
}

.price-cell {
    vertical-align: middle;
}

.price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.price-period {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.saving {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
}

/* Total Row */
.total-row td {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: none;
    background: rgba(124, 58, 237, 0.06);
}

.total-row .highlight-cell {
    background: rgba(124, 58, 237, 0.12);
}

.total-price {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--pipeline-primary), var(--pipeline-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.saving-big {
    font-size: 0.8rem;
    padding: 0.2rem 0.75rem;
}

/* Mobile */
@media (max-width: 768px) {
    .pricing-hero {
        padding-top: 120px;
        padding-bottom: 20px;
    }

    .pricing-hero h1 {
        font-size: 2rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
    }

    .feature-col {
        width: 45%;
    }

    .plan-col {
        width: 27.5%;
    }

    .plan-label {
        font-size: 0.95rem;
    }

    .price {
        font-size: 1.15rem;
    }

    .total-price {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 0.95rem;
    }

    .section-desc {
        font-size: 0.7rem;
    }

    .popular-badge {
        font-size: 0.55rem;
        padding: 0.2rem 0.5rem;
    }
}
