/* === premium.css – poprawiona wersja === */

.pricing-section {
    background-color: #1c1c2b;
    color: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* === Plan Box === */
.plan-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    border-radius: 14px;
    background-color: #232334;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    min-height: 580px; /* możesz dopasować wysokość jak chcesz */
    text-align: center;
    position: relative;
}

.plan-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.plan-box .price {
    font-size: 22px;
    color: #00d9ff;
    margin: 15px 0;
    font-weight: bold;
}

/* === Plan Box: Lista funkcji === */
.plan-box ul {
    flex-grow: 1;
    margin: 25px 0;
    text-align: left;
    list-style: none;
    padding: 0;
}

.plan-box ul li {
    position: relative;
    padding-left: 28px; /* więcej miejsca na ikonę */
    margin-bottom: 12px;
    min-height: 24px; /* dodane minimum wysokości */
    display: flex;
    align-items: center;
    font-size: 15px;
}

/* ✅ Ikona - available */
.plan-box ul li.available::before {
    content: "";
    background-image: url('data:image/svg+xml;utf8,<svg fill="%2300d9ff" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M16.707 5.293a1 1 0 00-1.414 0L7.5 13.086 4.707 10.293a1 1 0 10-1.414 1.414l3.5 3.5a1 1 0 001.414 0l8-8a1 1 0 000-1.414z" clip-rule="evenodd"/></svg>');
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: center left;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 12px;
    transform: translateY(-50%);
}

/* ❌ Ikona - unavailable */
.plan-box ul li.unavailable::before {
    content: "";
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23ff4c4c" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 011.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clip-rule="evenodd"/></svg>');
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: center left;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 12px;
    transform: translateY(-50%);
}

.most-popular {
    border: 2px solid #ffd700;
    position: relative;
}

.label-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffd700;
    color: #000;
    font-weight: bold;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}