/* Стили для страницы цен */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.pricing-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.2s ease;
}

.pricing-card:hover {
    border-color: #3a3a3a;
}

.pricing-card h3 {
    color: #fff;
    font-size: 1.5em;
    margin-bottom: 16px;
    font-weight: 600;
}

.price {
    font-size: 2em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.description {
    color: #a0a0a0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.features {
    list-style: none;
    padding: 0;
}

.features li {
    color: #e0e0e0;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.features li::before {
    content: '✓';
    color: #4a9eff;
    position: absolute;
    left: 0;
}

.note {
    background: #2a2a2a;
    border-radius: 8px;
    padding: 20px;
    margin-top: 40px;
    text-align: center;
    color: #a0a0a0;
}

.note h3 {
    color: #fff;
    margin-bottom: 12px;
}

@media (max-width: 600px) {
    .pricing-card {
        padding: 20px;
    }
}