/* ===== Секция тарифов на тёмном фоне ===== */
.pricing-section {
    background: transparent; /* фон — как у body (чёрный градиент) */
    color: #ffffff;
}

.pricing-section .section-title {
    color: #ffffff;
}

.pricing-section .section-sub {
    color: #b0b0b0;
}

/* Карточки */
.pricing-section .card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 28px 24px 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff;
}

.pricing-section .card:hover {
    transform: translateY(-6px);
}

/* Популярная карточка — акцентное свечение в центре */
.pricing-section .card-popular {
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 0 60px rgba(255, 107, 53, 0.25), 0 8px 32px rgba(0, 0, 0, 0.6);
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

.pricing-section .card-popular:hover {
    box-shadow: 0 0 80px rgba(255, 107, 53, 0.4), 0 12px 48px rgba(0, 0, 0, 0.7);
}

/* Бейджи */
.pricing-section .card-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 14px;
}

.pricing-section .card-icon {
    font-size: 28px;
    line-height: 1;
}

.pricing-section .popular-tag {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #ff6b35;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 40px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* Заголовки и текст */
.pricing-section .card h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 2px;
}

.pricing-section .card-sub {
    color: #b0b0b0;
    font-size: 15px;
    margin-bottom: 12px;
}

/* Цены */
.pricing-section .price {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.pricing-section .old-price {
    font-size: 18px;
    color: #888;
    text-decoration: line-through;
    font-weight: 400;
}

.pricing-section .discount {
    background: #ff6b35;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 40px;
    margin-left: 4px;
}

/* Список (галочки) */
.pricing-section .card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}

.pricing-section .card ul li {
    padding: 6px 0 6px 32px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="%23ff6b35" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') left center no-repeat;
    background-size: 18px;
    color: #d0d0d0;
    font-size: 15px;
}

/* Кнопки */
.pricing-section .btn-primary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 60px;
    width: 100%;
    justify-content: center;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}

.pricing-section .btn-primary:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    transform: scale(1.02);
}

/* Кнопка на популярной карточке — более яркая */
.pricing-section .card-popular .btn-primary {
    background: #ff6b35;
    border-color: #ff6b35;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.pricing-section .card-popular .btn-primary:hover {
    background: #e55a2b;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.5);
}

/* Адаптивность */
@media (max-width: 768px) {
    .pricing-section .cards {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .pricing-section .card {
        padding: 24px 20px;
    }

    .pricing-section .price {
        font-size: 24px;
    }

    .pricing-section .popular-tag {
        right: 16px;
        font-size: 11px;
        padding: 3px 12px;
    }
}

