.wss-wrap {
    margin: 10px 0 30px;
}

.wss-title {
    margin: 0 0 14px;
}

.wss-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

@media (max-width: 768px) {
    .wss-grid {
        grid-template-columns: 1fr;
    }
}

.wss-card {
    border-radius: 14px;
    background: #fff;
    padding: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
}

.wss-card-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.wss-plan {
    font-weight: 700;
    font-size: 16px;
}

.wss-price {
    font-weight: 800;
    font-size: 22px;
}

.wss-per {
    font-weight: 600;
    font-size: 12px;
    opacity: .7;
    margin-left: 4px;
}

.wss-benefits {
    margin-top: 12px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(0, 180, 160, .06);
}

.wss-benefits-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.wss-benefits ul {
    margin: 0;
    padding-left: 16px;
}

.wss-actions {
    margin-top: 14px;
}

.wss-btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    background: #00b4a0;
    color: #fff;
}

.wss-btn-secondary {
    background: #222;
    color: #fff;
}