.plan-hero {
    position: relative;
    top:100px;
    background: linear-gradient(135deg, #D6FAE3 0%, #E9FFF9 100%);
    padding: 80px 0 40px;
    text-align: center;
}
.ai-plan-badge {
    background: linear-gradient(135deg, #D6FAE3 0%, #E9FFF9 100%);
    color: white;
    border-radius: 50px;
    padding: 8px 20px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
}
.plan-card {
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    background: white;
    position: relative;
}
.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}
.plan-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 30px 20px;
    text-align: center;
    border-bottom: 2px solid #e2e8f0;
}
.plan-category {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 15px 0;
}
.plan-price small {
    font-size: 1rem;
    color: #64748b;
}
.ai-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ai-feature-list li {
    padding: 12px 20px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
}
.ai-feature-list li:last-child {
    border-bottom: none;
}
.ai-feature-list i {
    color: #10b981;
    margin-right: 10px;
    font-size: 1.1rem;
}
.plan-popular {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #D6FAE3 0%, #E9FFF9 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}
.ai-plan-btn {
    background: linear-gradient(135deg, #D6FAE3 0%, #E9FFF9 100%);
    border: none;
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: calc(100% - 40px);
    margin: 20px;
    color: white;
}
.ai-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.2);
    color: white;
}
.school-plan-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
}
.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.comparison-table th {
    background: linear-gradient(135deg, #D6FAE3 0%, #E9FFF9 100%);
    color: white;
    padding: 20px;
    font-weight: 600;
}
.ai-benefit-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    border-top: 4px solid #667eea;
}
.tier-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
}
.tier-badge.basic {
    background: #e2e8f0;
    color: #64748b;
}
.tier-badge.pro {
    background: #c7d2fe;
    color: #4f46e5;
}
.tier-badge.enterprise {
    background: linear-gradient(135deg, #D6FAE3 0%, #E9FFF9 100%);
    color: white;
}
@media (max-width: 768px) {
    .plan-hero {
        padding: 40px 0 20px;
    }
    .school-plan-section {
        padding: 20px;
        margin: 30px 0;
    }
}
