/* ===== Pricing Page Styles ===== */

.pricing-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Hero background removed for global consistency */

.pricing-hero::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1.5px;
    background: linear-gradient(180deg, #19191D 20%, #1e3a5f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.pricing-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    position: relative;
    z-index: 1;
}

/* Pricing Cards */
.pricing-cards-section {
    padding: 0 0 80px;
    background: transparent;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 32px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(30, 58, 95, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pricing-card-popular {
    border-color: rgba(30, 58, 95, 0.3);
    border-width: 2px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 12px 40px rgba(30, 58, 95, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-brand);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.pricing-card-header {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.plan-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--color-text-primary);
}

.price-period {
    font-size: 16px;
    color: var(--color-text-muted);
    font-weight: 400;
}

.plan-desc {
    font-size: 14px;
    color: var(--color-text-muted);
}

.pricing-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 24px;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.plan-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Comparison Table */
.comparison-table-section {
    padding: 80px 0 100px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Section background removed for global consistency */

.comparison-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison-table thead th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.3);
}

.comparison-table thead th:first-child {
    color: var(--color-text-primary);
    text-transform: none;
    font-size: 14px;
    letter-spacing: 0;
}

.comparison-table tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--color-text-secondary);
}

.comparison-table tbody td:first-child {
    font-weight: 500;
    color: var(--color-text-primary);
}

.comparison-table tbody td svg {
    display: block;
}

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

.comparison-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-title {
        font-size: 32px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

    .comparison-table-wrapper {
        margin: 0 -16px;
        padding: 0;
        border-radius: var(--radius-sm);
    }
}