.pricing-section {
    width: 100%;
    font-family: 'MuseoSansCyrl-100';
    padding-bottom: 50px;
}

.section-title {
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    position: relative;

    background-color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    border-radius: 30px;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.06),
        0 10px 20px rgba(0, 0, 0, 0.06),
        0 15px 40px rgba(0, 0, 0, 0.10);
    position: relative;
    transition: transform 0.5s ease;
}

.pricing-card img {
    width: 250px;
}

.pricing-card.basic {
    transform: scale(0.95);
    background-image: url('../images/background_infoblock1.png');
}

.pricing-card.premium {
    transform: scale(1);
    border: 3px solid #38b6fe;
    z-index: 2;
    background-image: url('../images/background_infoblock1.png');
}

.pricing-card.enterprise {
    transform: scale(0.95);
    background-image: url('../images/background_infoblock1.png');
}

.pricing-card:hover {
    /*transform: translateY(-10px);*/
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(45deg, #38b6fe, #38b6fe);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(56,182,254,0.3);
}

.plan-name {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #39B8FF;
    margin-bottom: 10px;
}

.price-period {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.features {
    list-style: none;
    margin-bottom: 30px;
    margin-left: -30px;

}

.features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.features li:last-child {
    border-bottom: none;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #764ba2, #667eea);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102,126,234,0.3);
}

.btn-secondary {
    background: #f8f9fa;
    color: #39B8FF;
    border: 2px solid #39B8FF;
}

.btn-secondary:hover {
    background: #39B8FF;
    color: white;
    box-shadow: 0 10px 20px rgba(102,126,234,0.3);
}

/* Адаптивность */
@media (max-width: 968px) {
    .pricing-container {
        flex-direction: column;
        gap: 40px;
        margin-right: 12px;
        margin-left: 12px;
        margin-top: 20px;
    }

    .pricing-card {
        min-width: 100%;
        max-width: 400px;
    }

    .pricing-card.basic,
    .pricing-card.premium,
    .pricing-card.enterprise {
        transform: none;
    }

    .pricing-card.premium {
        order: -1; /* Премиум карточка первой на мобильных */
    }
}