.pricing-section {
    background-color: black;
    padding: 60px 20px;
    text-align: center;
}

.pricing-title {
    color: white;
    font-size: clamp(16px, 3vw, 30px);
    font-family: 'Press Start 2P', monospace;
    margin-bottom: 40px;
}

/* Карточки */
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.pricing-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px 20px;
    width: clamp(200px, 22%, 280px);
    color: white;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: #888;
}

.pricing-card.featured {
    border-color: white;
    background-color: #222;
}

.pricing-card h3 {
    font-size: clamp(14px, 2vw, 20px);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.price {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: bold;
    margin: 15px 0;
    font-family: 'Press Start 2P', monospace;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card ul li {
    padding: 6px 0;
    font-size: clamp(12px, 1.5vw, 15px);
    color: #ccc;
    border-bottom: 1px solid #2a2a2a;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: black;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Телевизор */
.tv-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: #1a1a1a;
    border: 1px dashed #555;
    border-radius: 12px;
    padding: 20px 30px;
    margin: 0 auto 60px auto;
    max-width: 500px;
    color: white;
    transition: border-color 0.3s ease;
}

.tv-block:hover {
    border-color: white;
}

.tv-icon {
    font-size: 40px;
}

.tv-info h3 {
    font-size: clamp(16px, 2vw, 20px);
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 5px 0;
}

.tv-info p {
    font-size: clamp(12px, 1.5vw, 15px);
    color: #aaa;
    margin: 0;
}

.tv-price {
    font-size: clamp(20px, 2.5vw, 28px);
    font-family: 'Press Start 2P', monospace;
    white-space: nowrap;
}

/* Шаги */
.how-to-book {
    margin-top: 20px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: clamp(180px, 25%, 250px);
    color: white;
}

.step-num {
    width: 50px;
    height: 50px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Press Start 2P', monospace;
}

.step p {
    font-size: clamp(13px, 1.8vw, 17px);
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    color: #ccc;
}

/* Мобильные */
@media (max-width: 480px) {
    .pricing-card {
        width: 85%;
    }

    .step {
        width: 80%;
    }

    .tv-block {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}