/* Pricing Notes Section */

.pricing-notes {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(46, 204, 113, 0.05);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 16px;
}

.pricing-notes h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.pricing-notes h3 i {
    margin-right: 0.5rem;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.note-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.note-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.note-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--light-text);
}

.note-item p {
    color: var(--gray-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

.note-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .notes-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-notes {
        padding: 1.5rem;
    }
}
