/* === PRICING PAGE STYLES === */
.pricing-container {
    padding: 120px 24px 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-header h1 { font-size: 3.5rem; margin-bottom: 16px; color: #fff; }
.pricing-header p { font-size: 1.2rem; color: #94a3b8; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.price-card {
    background: rgba(30, 30, 35, 0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 40px;
    color: #fff;
    position: relative;
    backdrop-filter: blur(10px);
}

.price-card.popular {
    background: rgba(40, 40, 45, 0.9);
    border: 1px solid #3b82f6;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
    transform: scale(1.05);
    z-index: 2;
}

.pop-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: #3b82f6; color: white; padding: 4px 12px;
    border-radius: 20px; font-size: 0.8rem; font-weight: 800;
}

.plan-name { font-size: 1.2rem; color: #94a3b8; margin-bottom: 10px; font-weight: 600; }
.price { font-size: 3rem; font-weight: 800; color: #fff; }
.price span { font-size: 1rem; color: #64748b; font-weight: 400; }
.plan-desc { color: #cbd5e1; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 30px; }

.btn-price {
    display: block; width: 100%; text-align: center;
    padding: 14px; border-radius: 12px; font-weight: 700;
    text-decoration: none; margin-bottom: 30px;
    background: rgba(255,255,255,0.1); color: #fff;
    transition: 0.2s;
}
.btn-price:hover { background: rgba(255,255,255,0.2); }
.btn-price.primary { background: #3b82f6; color: white; }
.btn-price.primary:hover { background: #2563eb; }

.feature-list { list-style: none; padding: 0; }
.feature-list li { margin-bottom: 12px; color: #cbd5e1; display: flex; gap: 12px; }
.feature-list li i { color: #3b82f6; }