/* ═══════════════════════════════════════════════════════════════════════════
   PRICING PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* Header */
.pricing-header {
    padding: 120px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Cards Grid */
.pricing-cards {
    padding: 0 0 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* Card */
.pricing-card {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.pricing-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Features */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
}

.pricing-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(34, 197, 94, 0.15);
    color: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.pricing-features li.feature-disabled {
    color: var(--text-muted);
}

.pricing-features li.feature-disabled::before {
    content: '✕';
    background: rgba(113, 113, 122, 0.15);
    color: var(--text-muted);
}

/* Button */
.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Schools Section */
.pricing-schools {
    padding: 0 0 80px;
}

.schools-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.schools-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.schools-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 500px;
}

/* Responsive */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        order: -1;
    }
}

@media (max-width: 600px) {
    .pricing-header {
        padding: 100px 0 40px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .schools-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    
    .schools-content p {
        max-width: none;
    }
}
